From 175ffa5c4ea914bcffcf139902857b8d35ded5f6 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sun, 1 May 2011 22:58:47 +0700 Subject: [PATCH 0001/1652] Recently used tables (simple version, only works with LeftDefaultTablTable=tbl_structure.php) --- libraries/common.lib.php | 18 ++++++++++++++++++ navigation.php | 19 +++++++++++++++++++ tbl_structure.php | 1 + 3 files changed, 38 insertions(+) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 8be5c0e7e4..df434ea06a 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -3023,4 +3023,22 @@ function PMA_buildActionTitles() { $titles['Edit'] = PMA_getIcon('b_edit.png', __('Edit'), true); return $titles; } + +/** + * Add recently used tables + */ +function PMA_addRecentTable($table, $db) { + if (isset($_SESSION['tmp_user_values']['recent_tables'])) { + array_unshift($_SESSION['tmp_user_values']['recent_tables'], $db . '.' . $table); + $_SESSION['tmp_user_values']['recent_tables'] = array_unique($_SESSION['tmp_user_values']['recent_tables']); + while (count($_SESSION['tmp_user_values']['recent_tables']) > 5) { + array_pop($_SESSION['tmp_user_values']['recent_tables']); + } + } else { + $_SESSION['tmp_user_values']['recent_tables'] = array(); + array_unshift($_SESSION['tmp_user_values']['recent_tables'], $db . '.' . $table); + } + $GLOBALS['reload'] = true; + PMA_reloadNavigation(); +} ?> diff --git a/navigation.php b/navigation.php index 167c060d3d..47bcf1d597 100644 --- a/navigation.php +++ b/navigation.php @@ -179,6 +179,25 @@ require_once './libraries/header_http.inc.php'; +
+ +
+' . "\n"; +PMA_addRecentTable($table, $db); /** * Displays the footer From 4b7e65e6107706b9d9ea9b671f509935ed49f3f0 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Mon, 2 May 2011 10:09:05 +0700 Subject: [PATCH 0002/1652] Recently used tables (works, but only in temporary session variable) --- libraries/header.inc.php | 3 +++ tbl_structure.php | 1 - themes/original/css/theme_left.css.php | 10 ++++++++++ themes/pmahomme/css/theme_left.css.php | 12 +++++++++++- 4 files changed, 24 insertions(+), 2 deletions(-) diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 807ec0af20..9e37e32033 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -151,6 +151,9 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) { .'"' . htmlspecialchars($show_comment) .'"' . "\n"; } // end if + + // remember accessed table + PMA_addRecentTable($table, $db); } else { // no table selected, display database comment if present /** diff --git a/tbl_structure.php b/tbl_structure.php index 6286287a1f..73374d7a5e 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -934,7 +934,6 @@ if ($cfg['ShowStats']) { require './libraries/tbl_triggers.lib.php'; echo '
' . "\n"; -PMA_addRecentTable($table, $db); /** * Displays the footer diff --git a/themes/original/css/theme_left.css.php b/themes/original/css/theme_left.css.php index 50ffc3984e..f21bca27f0 100644 --- a/themes/original/css/theme_left.css.php +++ b/themes/original/css/theme_left.css.php @@ -83,6 +83,16 @@ div#pmalogo { background-color: ; padding:.3em; } + +div#recentTableList { + text-align: center; + margin-bottom: 0.5em; +} + +div#recentTableList select { + width: 100%; +} + div#pmalogo, div#leftframelinks, div#databaseList { diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php index 467e70a255..e0a6393c5e 100644 --- a/themes/pmahomme/css/theme_left.css.php +++ b/themes/pmahomme/css/theme_left.css.php @@ -94,11 +94,21 @@ button { div#pmalogo { } + +div#recentTableList { + text-align: center; + margin: 20px 10px 0px 10px; +} + +div#recentTableList select { + width: 100%; +} + div#pmalogo, div#leftframelinks, div#databaseList { text-align: center; - margin: 20px 10px 0px 10px; + margin: 5px 10px 0px 10px; } ul#databaseList { From 21bceed4148081c50f0b2b03126717d41b65f10a Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sat, 7 May 2011 14:52:07 +0700 Subject: [PATCH 0003/1652] Recently used tables (now with configuration) --- libraries/common.lib.php | 33 ++++++++++++++------- libraries/config.default.php | 7 +++++ libraries/config/setup.forms.php | 3 +- libraries/config/user_preferences.forms.php | 3 +- libraries/header.inc.php | 2 +- navigation.php | 15 ++++++---- 6 files changed, 45 insertions(+), 18 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index df434ea06a..ca4eebefcd 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -3025,18 +3025,31 @@ function PMA_buildActionTitles() { } /** - * Add recently used tables + * Trim recent table according to the LeftRecentTable configuration */ -function PMA_addRecentTable($table, $db) { - if (isset($_SESSION['tmp_user_values']['recent_tables'])) { - array_unshift($_SESSION['tmp_user_values']['recent_tables'], $db . '.' . $table); - $_SESSION['tmp_user_values']['recent_tables'] = array_unique($_SESSION['tmp_user_values']['recent_tables']); - while (count($_SESSION['tmp_user_values']['recent_tables']) > 5) { - array_pop($_SESSION['tmp_user_values']['recent_tables']); - } +function PMA_trimRecentTable() { + while (count($_SESSION['tmp_user_values']['recent_tables']) > $GLOBALS['cfg']['LeftRecentTable']) { + array_pop($_SESSION['tmp_user_values']['recent_tables']); + } +} + +/** + * Add recently used tables + * + * @param string $db Database name where the table is located + * @param string $table Table name + * + * @uses PMA_trimRecentTable() + */ +function PMA_addRecentTable($db, $table) { + $recent_tables =& $_SESSION['tmp_user_values']['recent_tables']; + if (isset($recent_tables)) { + array_unshift($recent_tables, $db . '.' . $table); + $recent_tables = array_unique($recent_tables); + PMA_trimRecentTable(); } else { - $_SESSION['tmp_user_values']['recent_tables'] = array(); - array_unshift($_SESSION['tmp_user_values']['recent_tables'], $db . '.' . $table); + $recent_tables = array(); + array_unshift($recent_tables, $db . '.' . $table); } $GLOBALS['reload'] = true; PMA_reloadNavigation(); diff --git a/libraries/config.default.php b/libraries/config.default.php index 4ca31e78f5..9111aec89d 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -794,6 +794,13 @@ $cfg['LeftLogoLink'] = 'main.php'; */ $cfg['LeftLogoLinkWindow'] = 'main'; +/** + * number of recently used tables displayed in the navigation frame + * + * @global integer $cfg['LeftRecentTable'] + */ +$cfg['LeftRecentTable'] = 5; + /** * display a JavaScript table filter in the left frame * when more then x tables are present diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php index 5287aade93..acf477ea72 100644 --- a/libraries/config/setup.forms.php +++ b/libraries/config/setup.forms.php @@ -162,7 +162,8 @@ $forms['Left_frame']['Left_frame'] = array( 'LeftDisplayLogo', 'LeftLogoLink', 'LeftLogoLinkWindow', - 'LeftPointerEnable'); + 'LeftPointerEnable', + 'LeftRecentTable'); $forms['Left_frame']['Left_servers'] = array( 'LeftDisplayServers', 'DisplayServersList'); diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php index d23eddafef..ffe036632f 100644 --- a/libraries/config/user_preferences.forms.php +++ b/libraries/config/user_preferences.forms.php @@ -77,7 +77,8 @@ $forms['Left_frame']['Left_frame'] = array( 'LeftDisplayLogo', 'LeftLogoLink', 'LeftLogoLinkWindow', - 'LeftPointerEnable'); + 'LeftPointerEnable', + 'LeftRecentTable'); $forms['Left_frame']['Left_databases'] = array( 'DisplayDatabasesList', 'LeftFrameDBTree', diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 9e37e32033..af9d4c6356 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -153,7 +153,7 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) { } // end if // remember accessed table - PMA_addRecentTable($table, $db); + PMA_addRecentTable($GLOBALS['db'], $GLOBALS['table']); } else { // no table selected, display database comment if present /** diff --git a/navigation.php b/navigation.php index 47bcf1d597..1c9bcd7cbb 100644 --- a/navigation.php +++ b/navigation.php @@ -180,19 +180,24 @@ require_once './libraries/header_http.inc.php';
- + ' . $table . ''; } ?> -
Date: Sun, 8 May 2011 02:42:38 +0700 Subject: [PATCH 0004/1652] Recently used tables (class, configuration, remember in pma database) --- config.sample.inc.php | 1 + libraries/RecentTable.class.php | 198 ++++++++++++++++++++++++++++++ libraries/common.lib.php | 31 ----- libraries/config.default.php | 7 ++ libraries/config/messages.inc.php | 2 + libraries/header.inc.php | 15 ++- libraries/relation.lib.php | 16 ++- navigation.php | 24 +--- 8 files changed, 237 insertions(+), 57 deletions(-) create mode 100644 libraries/RecentTable.class.php diff --git a/config.sample.inc.php b/config.sample.inc.php index 0ea16d5f76..95d3a1a911 100644 --- a/config.sample.inc.php +++ b/config.sample.inc.php @@ -52,6 +52,7 @@ $cfg['Servers'][$i]['AllowNoPassword'] = false; // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; // $cfg['Servers'][$i]['column_info'] = 'pma_column_info'; // $cfg['Servers'][$i]['history'] = 'pma_history'; +// $cfg['Servers'][$i]['recent'] = 'pma_recent'; // $cfg['Servers'][$i]['tracking'] = 'pma_tracking'; // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords'; // $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig'; diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php new file mode 100644 index 0000000000..12eb7f5112 --- /dev/null +++ b/libraries/RecentTable.class.php @@ -0,0 +1,198 @@ +pma_table = PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) .".". + PMA_backquote($GLOBALS['cfg']['Server']['recent']); + } + if (!isset($_SESSION['tmp_user_values']['recent_tables'])) { + $_SESSION['tmp_user_values']['recent_tables'] = + isset($this->pma_table) ? $this->getFromDb() : array(); + } + $this->tables =& $_SESSION['tmp_user_values']['recent_tables']; + } + + /** + * Returns class instance. + * + * @return RecentTable + */ + public static function getInstance() + { + if (is_null(self::$_instance)) { + self::$_instance = new RecentTable(); + } + return self::$_instance; + } + + /** + * Returns recently used tables from phpMyAdmin database. + * + * @uses $pma_table + * @uses PMA_query_as_controluser() + * @uses PMA_DBI_fetch_array() + * @uses json_decode() + * + * @return array + */ + public function getFromDb() + { + // Read from phpMyAdmin database, if recent tables is not in session + $sql_query = + " SELECT `tables` FROM " . $this->pma_table . + " WHERE `username` = '" . $GLOBALS['cfg']['Server']['user'] . "'"; + + $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); + if (isset($row[0])) { + return json_decode($row[0]); + } else { + return array(); + } + } + + /** + * Save recent tables into phpMyAdmin database. + * + * @uses PMA_query_as_controluser() + * @uses PMA_DBI_fetch_value() + * @uses PMA_DBI_try_query() + * @uses json_decode() + * @uses PMA_Message + * + * @return true|PMA_Message + */ + public function saveToDb() + { + $username = $GLOBALS['cfg']['Server']['user']; + $sql_query = + " SELECT COUNT(*) FROM " . $this->pma_table . + " WHERE `username` = '" . $username . "'"; + + $exist = PMA_DBI_fetch_value(PMA_query_as_controluser($sql_query)); + if ($exist) { + $sql_query = + " UPDATE " . $this->pma_table . + " SET `tables` = '" . PMA_sqlAddslashes(json_encode($this->tables)) . "'" . + " WHERE `username` = '" . $username . "'"; + + $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']); + } else { + $sql_query = + " INSERT INTO " . $this->pma_table . " (`username`, `tables`)" . + " VALUES ('" . $username . "', '" . PMA_sqlAddslashes(json_encode($this->tables)) . "')"; + + $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']); + } + + if (!$success) { + $message = PMA_Message::error(__('Could not save configuration')); + $message->addMessage('

'); + $message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink']))); + return $message; + } + return true; + } + + /** + * Trim recent table according to the LeftRecentTable configuration. + */ + public function trim() + { + while (count($this->tables) > $GLOBALS['cfg']['LeftRecentTable']) { + array_pop($this->tables); + } + } + + /** + * Return HTML code "select" for recently used tables. + * + * @return string + */ + public function getHtmlSelect() + { + $this->trim(); + + $html = ''; + + return $html; + } + + /** + * Add recently used tables. + * + * @param string $db Database name where the table is located + * @param string $table Table name + * + * @return true|PMA_Message True if success, PMA_Message if not + */ + public function add($db, $table) + { + $table_str = $db . '.' . $table; + + // add only if this is new table + if (!isset($this->tables[0]) || $this->tables[0] != $table_str) { + array_unshift($this->tables, $table_str); + $this->tables = array_unique($this->tables); + $this->trim(); + if (isset($this->pma_table)) { + return $this->saveToDb(); + } + } + return true; + } + +} +?> diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 4ff850b242..56618a180a 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -3023,35 +3023,4 @@ function PMA_buildActionTitles() { $titles['Edit'] = PMA_getIcon('b_edit.png', __('Edit'), true); return $titles; } - -/** - * Trim recent table according to the LeftRecentTable configuration - */ -function PMA_trimRecentTable() { - while (count($_SESSION['tmp_user_values']['recent_tables']) > $GLOBALS['cfg']['LeftRecentTable']) { - array_pop($_SESSION['tmp_user_values']['recent_tables']); - } -} - -/** - * Add recently used tables - * - * @param string $db Database name where the table is located - * @param string $table Table name - * - * @uses PMA_trimRecentTable() - */ -function PMA_addRecentTable($db, $table) { - $recent_tables =& $_SESSION['tmp_user_values']['recent_tables']; - if (isset($recent_tables)) { - array_unshift($recent_tables, $db . '.' . $table); - $recent_tables = array_unique($recent_tables); - PMA_trimRecentTable(); - } else { - $recent_tables = array(); - array_unshift($recent_tables, $db . '.' . $table); - } - $GLOBALS['reload'] = true; - PMA_reloadNavigation(); -} ?> diff --git a/libraries/config.default.php b/libraries/config.default.php index 9111aec89d..ae4018c5e2 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -338,6 +338,13 @@ $cfg['Servers'][$i]['history'] = ''; */ $cfg['Servers'][$i]['designer_coords'] = ''; +/** + * table to store recently used tables + * - leave blank for no "persistent" recently used tables + * SUGGESTED: 'pma_recent' + */ +$cfg['Servers'][$i]['recent'] = ''; + /** * table to store SQL tracking * - leave blank for no SQL tracking diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 9ebbfea8f6..47ccf7febf 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -282,6 +282,8 @@ $strConfigLeftLogoLinkWindow_desc = __('Open the linked page in the main window $strConfigLeftLogoLinkWindow_name = __('Logo link target'); $strConfigLeftPointerEnable_desc = __('Highlight server under the mouse cursor'); $strConfigLeftPointerEnable_name = __('Enable highlighting'); +$strConfigLeftRecentTable_desc = __('Maximum number of recently used tables; set 0 to disable'); +$strConfigLeftRecentTable_name = __('Recently used tables'); $strConfigLightTabs_desc = __('Use less graphically intense tabs'); $strConfigLightTabs_name = __('Light tabs'); $strConfigLimitChars_desc = __('Maximum number of characters shown in any non-numeric column on browse view'); diff --git a/libraries/header.inc.php b/libraries/header.inc.php index af9d4c6356..b581070e6c 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -8,10 +8,8 @@ if (! defined('PHPMYADMIN')) { exit; } -/** - * - */ require_once './libraries/common.inc.php'; +require_once './libraries/RecentTable.class.php'; /** @@ -152,8 +150,15 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) { .'"' . "\n"; } // end if - // remember accessed table - PMA_addRecentTable($GLOBALS['db'], $GLOBALS['table']); + // add recently used table and reload the navigation + $result = RecentTable::getInstance()->add($GLOBALS['db'], $GLOBALS['table']); + if ($result === true) { + $GLOBALS['reload'] = true; + PMA_reloadNavigation(); + } else { + $error = $result; + $error->display(); + } } else { // no table selected, display database comment if present /** diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 9588853f94..1236275dd9 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -138,6 +138,10 @@ function PMA_printRelationsParamDiagnostic($cfgRelation) PMA_printDiagMessageForFeature(__('Designer'), 'designerwork', $messages); + PMA_printDiagMessageForParameter('recent', isset($cfgRelation['recent']), $messages, 'recent'); + + PMA_printDiagMessageForFeature(__('Recently used tables'), 'recentwork', $messages); + PMA_printDiagMessageForParameter('tracking', isset($cfgRelation['tracking']), $messages, 'tracking'); PMA_printDiagMessageForFeature(__('Tracking'), 'trackingwork', $messages); @@ -220,6 +224,7 @@ function PMA__getRelationsParam() $cfgRelation['commwork'] = false; $cfgRelation['mimework'] = false; $cfgRelation['historywork'] = false; + $cfgRelation['recentwork'] = false; $cfgRelation['trackingwork'] = false; $cfgRelation['designerwork'] = false; $cfgRelation['userconfigwork'] = false; @@ -271,6 +276,8 @@ function PMA__getRelationsParam() $cfgRelation['pdf_pages'] = $curr_table[0]; } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['history']) { $cfgRelation['history'] = $curr_table[0]; + } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['recent']) { + $cfgRelation['recent'] = $curr_table[0]; } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['tracking']) { $cfgRelation['tracking'] = $curr_table[0]; } elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['userconfig']) { @@ -325,6 +332,10 @@ function PMA__getRelationsParam() $cfgRelation['historywork'] = true; } + if (isset($cfgRelation['recent'])) { + $cfgRelation['recentwork'] = true; + } + if (isset($cfgRelation['tracking'])) { $cfgRelation['trackingwork'] = true; } @@ -346,8 +357,9 @@ function PMA__getRelationsParam() if ($cfgRelation['relwork'] && $cfgRelation['displaywork'] && $cfgRelation['pdfwork'] && $cfgRelation['commwork'] && $cfgRelation['mimework'] && $cfgRelation['historywork'] - && $cfgRelation['trackingwork'] && $cfgRelation['userconfigwork'] - && $cfgRelation['bookmarkwork'] && $cfgRelation['designerwork']) { + && $cfgRelation['recentwork'] && $cfgRelation['trackingwork'] + && $cfgRelation['userconfigwork'] && $cfgRelation['bookmarkwork'] + && $cfgRelation['designerwork']) { $cfgRelation['allworks'] = true; } diff --git a/navigation.php b/navigation.php index 86f360a5af..2bff387795 100644 --- a/navigation.php +++ b/navigation.php @@ -180,27 +180,13 @@ require_once './libraries/header_http.inc.php'; -
- -
-tables)) { + echo '
'; + echo RecentTable::getInstance()->getHtmlSelect(); + echo '
'; } if (! $GLOBALS['server']) { From d5421a41f9491edeebfde55c49823ada7f5dabed Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sun, 8 May 2011 03:11:09 +0700 Subject: [PATCH 0005/1652] Recently used tables (add SQL in scripts/create_tables.sql) --- scripts/create_tables.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/scripts/create_tables.sql b/scripts/create_tables.sql index 1efdaadfde..2d6cb56886 100644 --- a/scripts/create_tables.sql +++ b/scripts/create_tables.sql @@ -105,6 +105,18 @@ CREATE TABLE IF NOT EXISTS `pma_pdf_pages` ( -- -------------------------------------------------------- +-- +-- Table structure for table `pma_recent` +-- + +CREATE TABLE IF NOT EXISTS `pma_recent` ( + `username` varchar(64) COLLATE utf8_bin NOT NULL, + `tables` blob NOT NULL, + PRIMARY KEY (`username`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin; + +-- -------------------------------------------------------- + -- -- Table structure for table `pma_relation` -- From 04bbe91b52ca660d0743d0bc644823e8960fffb0 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sun, 8 May 2011 22:40:46 +0700 Subject: [PATCH 0006/1652] Recently used tables (fix bug & add pma_recent in /setup) --- libraries/RecentTable.class.php | 29 ++++++----------------------- libraries/config/messages.inc.php | 2 ++ libraries/config/setup.forms.php | 1 + libraries/header.inc.php | 6 +++--- 4 files changed, 12 insertions(+), 26 deletions(-) diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index 12eb7f5112..d9faf59c44 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -12,7 +12,6 @@ require_once './libraries/Message.class.php'; * * @TODO Add documentation about configuration LeftRecentTable * @TODO Add documentation about table pma_recent (#recent) in Documentation.html - * @TODO Add SQL script to generate pma_recent table * * @package phpMyAdmin */ @@ -48,7 +47,7 @@ class RecentTable $this->pma_table = PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) .".". PMA_backquote($GLOBALS['cfg']['Server']['recent']); } - if (!isset($_SESSION['tmp_user_values']['recent_tables'])) { + if (! isset($_SESSION['tmp_user_values']['recent_tables'])) { $_SESSION['tmp_user_values']['recent_tables'] = isset($this->pma_table) ? $this->getFromDb() : array(); } @@ -96,8 +95,6 @@ class RecentTable /** * Save recent tables into phpMyAdmin database. * - * @uses PMA_query_as_controluser() - * @uses PMA_DBI_fetch_value() * @uses PMA_DBI_try_query() * @uses json_decode() * @uses PMA_Message @@ -108,27 +105,13 @@ class RecentTable { $username = $GLOBALS['cfg']['Server']['user']; $sql_query = - " SELECT COUNT(*) FROM " . $this->pma_table . - " WHERE `username` = '" . $username . "'"; + " REPLACE INTO " . $this->pma_table . " (`username`, `tables`)" . + " VALUES ('" . $username . "', '" . PMA_sqlAddslashes(json_encode($this->tables)) . "')"; - $exist = PMA_DBI_fetch_value(PMA_query_as_controluser($sql_query)); - if ($exist) { - $sql_query = - " UPDATE " . $this->pma_table . - " SET `tables` = '" . PMA_sqlAddslashes(json_encode($this->tables)) . "'" . - " WHERE `username` = '" . $username . "'"; - - $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']); - } else { - $sql_query = - " INSERT INTO " . $this->pma_table . " (`username`, `tables`)" . - " VALUES ('" . $username . "', '" . PMA_sqlAddslashes(json_encode($this->tables)) . "')"; - - $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']); - } + $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']); if (!$success) { - $message = PMA_Message::error(__('Could not save configuration')); + $message = PMA_Message::error(__('Could not save recent table')); $message->addMessage('

'); $message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink']))); return $message; @@ -183,7 +166,7 @@ class RecentTable $table_str = $db . '.' . $table; // add only if this is new table - if (!isset($this->tables[0]) || $this->tables[0] != $table_str) { + if (! isset($this->tables[0]) || $this->tables[0] != $table_str) { array_unshift($this->tables, $table_str); $this->tables = array_unique($this->tables); $this->trim(); diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 47ccf7febf..6d3f121f7b 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -402,6 +402,8 @@ $strConfigServers_pmadb_desc = __('Database used for relations, bookmarks, and P $strConfigServers_pmadb_name = __('Database name'); $strConfigServers_port_desc = __('Port on which MySQL server is listening, leave empty for default'); $strConfigServers_port_name = __('Server port'); +$strConfigServers_recent_desc = __('Leave blank for no "persistent" recently used tables across sessions, suggested: [kbd]pma_recent[/kbd]'); +$strConfigServers_recent_name = __('Recently used table'); $strConfigServers_relation_desc = __('Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links[/a] support, suggested: [kbd]pma_relation[/kbd]'); $strConfigServers_relation_name = __('Relation table'); $strConfigServers_ShowDatabasesCommand_desc = __('SQL command to fetch available databases'); diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php index acf477ea72..7269823d2d 100644 --- a/libraries/config/setup.forms.php +++ b/libraries/config/setup.forms.php @@ -73,6 +73,7 @@ $forms['Servers']['Server_pmadb'] = array('Servers' => array(1 => array( 'table_info' => 'pma_table_info', 'column_info' => 'pma_column_info', 'history' => 'pma_history', + 'recent' => 'pma_recent', 'tracking' => 'pma_tracking', 'table_coords' => 'pma_table_coords', 'pdf_pages' => 'pma_pdf_pages', diff --git a/libraries/header.inc.php b/libraries/header.inc.php index b581070e6c..3d10821782 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -151,12 +151,12 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) { } // end if // add recently used table and reload the navigation - $result = RecentTable::getInstance()->add($GLOBALS['db'], $GLOBALS['table']); - if ($result === true) { + $tmp_result = RecentTable::getInstance()->add($GLOBALS['db'], $GLOBALS['table']); + if ($tmp_result === true) { $GLOBALS['reload'] = true; PMA_reloadNavigation(); } else { - $error = $result; + $error = $tmp_result; $error->display(); } } else { From ed646a067f057ba8e133a06c3224a7ab9f98a1c1 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Mon, 9 May 2011 20:35:08 +0700 Subject: [PATCH 0007/1652] Added array_merge (RecentTable.class.php) to ensure the keys are continuous --- libraries/RecentTable.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index d9faf59c44..387879e7a2 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -168,7 +168,7 @@ class RecentTable // add only if this is new table if (! isset($this->tables[0]) || $this->tables[0] != $table_str) { array_unshift($this->tables, $table_str); - $this->tables = array_unique($this->tables); + $this->tables = array_merge(array_unique($this->tables)); $this->trim(); if (isset($this->pma_table)) { return $this->saveToDb(); From c468705538f034e06447b85123063cdcfffc1b59 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Tue, 10 May 2011 01:55:02 +0700 Subject: [PATCH 0008/1652] Add PMA_addRecentTable function, jQuery for recent tables 'onchange' event --- Documentation.html | 25 +++++++++++++++++++++++++ js/navigation.js | 10 ++++++++++ libraries/RecentTable.class.php | 17 +++++++---------- libraries/header.inc.php | 26 ++++++++++++++++++-------- navigation.php | 2 +- 5 files changed, 61 insertions(+), 19 deletions(-) diff --git a/Documentation.html b/Documentation.html index cee6a4211e..55bc56d0c1 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1054,6 +1054,27 @@ ALTER TABLE `pma_column_comments` +
+ $cfg['Servers'][$i]['recent'] string +
+
+ Since release ??? you can show recently used tables in the left navigation frame. + It helps you to jump across table directly, without the need to select the database, + and then select the table. Using + $cfg['LeftRecentTable'] + you can configure the maximum number of recent tables shown.

+ + Without configuring the storage, you can still access the recently used tables, + but it will disappear after you logout.

+ + To allow the usage of this functionality: + +
    +
  • set up pmadb and the phpMyAdmin configuration storage
  • +
  • put the table name in $cfg['Servers'][$i]['recent'] (e.g. 'pma_recent')
  • +
+
+
$cfg['Servers'][$i]['tracking'] string
@@ -1467,6 +1488,10 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE
Defines how many sublevels should be displayed when splitting up tables by the above separator.
+
$cfg['LeftRecentTable'] integer
+
The maximum number of recently used tables shown in the left navigation + frame. Set this to 0 (zero) to disable the recent tables.
+
$cfg['ShowTooltip'] boolean
Defines whether to display table comment as tool-tip in left frame or not.
diff --git a/js/navigation.js b/js/navigation.js index ed6dcb1049..9403ade8d4 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -177,4 +177,14 @@ $(document).ready(function(){ $('#clear_fast_filter').click(clear_fast_filter); $('#fast_filter').focus(function (evt) {evt.target.select();}); $('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);}); + + /* Jump to recent table */ + $('#recentTable').change(function() { + if (this.value != '') { + var arr = this.value.split('.'); + window.parent.setDb(arr[0]); + window.parent.setTable(arr[1]); + window.parent.refreshMain($('#LeftDefaultTabTable')[0].value); + } + }); }); diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index 387879e7a2..635b659a02 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -10,8 +10,7 @@ require_once './libraries/Message.class.php'; /** * Handles the recently used tables. * - * @TODO Add documentation about configuration LeftRecentTable - * @TODO Add documentation about table pma_recent (#recent) in Documentation.html + * @TODO Change the release version in table pma_recent (#recent in Documentation.html) * * @package phpMyAdmin */ @@ -124,7 +123,8 @@ class RecentTable */ public function trim() { - while (count($this->tables) > $GLOBALS['cfg']['LeftRecentTable']) { + $max = max($GLOBALS['cfg']['LeftRecentTable'], 0); + while (count($this->tables) > $max) { array_pop($this->tables); } } @@ -137,13 +137,10 @@ class RecentTable public function getHtmlSelect() { $this->trim(); - - $html = ''; + $html .= ''; diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 3b4384326f..6549cb67fd 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -168,7 +168,9 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) { } // end if // add recently used table and reload the navigation - PMA_addRecentTable($GLOBALS['db'], $GLOBALS['table']); + if ($GLOBALS['cfg']['LeftRecentTable'] > 0) { + PMA_addRecentTable($GLOBALS['db'], $GLOBALS['table']); + } } else { // no table selected, display database comment if present /** From b8c654d748c7de1fde1c388743c734a6a6b30d9c Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Tue, 10 May 2011 09:56:24 +0700 Subject: [PATCH 0010/1652] Updated target release 3.5.0 for 'recent' feature in Documentation.html --- Documentation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation.html b/Documentation.html index 55bc56d0c1..d9afdde79a 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1058,7 +1058,7 @@ ALTER TABLE `pma_column_comments` $cfg['Servers'][$i]['recent'] string
- Since release ??? you can show recently used tables in the left navigation frame. + Since release 3.5.0 you can show recently used tables in the left navigation frame. It helps you to jump across table directly, without the need to select the database, and then select the table. Using $cfg['LeftRecentTable'] From 6e4abf02d6af2a32fc9ebff6410a3603dc50ba4b Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Tue, 10 May 2011 16:18:18 +0700 Subject: [PATCH 0011/1652] Validation (non-negative number) for LeftRecentTable --- libraries/config.values.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/config.values.php b/libraries/config.values.php index b5190370a4..d884e59a01 100644 --- a/libraries/config.values.php +++ b/libraries/config.values.php @@ -159,6 +159,7 @@ $cfg_db['_validators'] = array( 'Import/skip_queries' => 'validate_non_negative_number', 'InsertRows' => 'validate_positive_number', 'LeftFrameTableLevel' => 'validate_positive_number', + 'LeftRecentTable' => 'validate_non_negative_number', 'LimitChars' => 'validate_positive_number', 'LoginCookieValidity' => 'validate_positive_number', 'LoginCookieStore' => 'validate_non_negative_number', From 4ab5d6aded69bd4ce43777326cc225324cbbd39a Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Tue, 10 May 2011 20:42:48 +0700 Subject: [PATCH 0012/1652] Update documentation and string for the pma_recent --- Documentation.html | 4 +++- libraries/relation.lib.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation.html b/Documentation.html index d9afdde79a..019b15d8a8 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1062,7 +1062,9 @@ ALTER TABLE `pma_column_comments` It helps you to jump across table directly, without the need to select the database, and then select the table. Using $cfg['LeftRecentTable'] - you can configure the maximum number of recent tables shown.

+ you can configure the maximum number of recent tables shown. When you select a table + from the list, it will jump to the page specified in + $cfg['LeftDefaultTabTable'].

Without configuring the storage, you can still access the recently used tables, but it will disappear after you logout.

diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 1236275dd9..e45a8752ca 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -140,7 +140,7 @@ function PMA_printRelationsParamDiagnostic($cfgRelation) PMA_printDiagMessageForParameter('recent', isset($cfgRelation['recent']), $messages, 'recent'); - PMA_printDiagMessageForFeature(__('Recently used tables'), 'recentwork', $messages); + PMA_printDiagMessageForFeature(__('Persistent recently used tables'), 'recentwork', $messages); PMA_printDiagMessageForParameter('tracking', isset($cfgRelation['tracking']), $messages, 'tracking'); From fadd8994ccc41f1a7bc74509428a50a89d8789ac Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Wed, 11 May 2011 11:27:47 +0700 Subject: [PATCH 0013/1652] Documentation for cfg_LeftRecentTable updated --- Documentation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation.html b/Documentation.html index 019b15d8a8..624616596e 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1492,7 +1492,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE
$cfg['LeftRecentTable'] integer
The maximum number of recently used tables shown in the left navigation - frame. Set this to 0 (zero) to disable the recent tables.
+ frame. Set this to 0 (zero) to disable the listing of recent tables.
$cfg['ShowTooltip'] boolean
Defines whether to display table comment as tool-tip in left frame or From 963d77e3bef98f6f8624dd5ee28b92405ad77149 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sat, 14 May 2011 02:46:15 +0700 Subject: [PATCH 0014/1652] Ajaxification of recent tables list --- js/navigation.js | 13 +++++++++++++ libraries/RecentTable.class.php | 21 ++++++++++++++++----- libraries/header.inc.php | 5 +++-- navigation.php | 18 ++++++++++++++---- 4 files changed, 46 insertions(+), 11 deletions(-) diff --git a/js/navigation.js b/js/navigation.js index 9403ade8d4..cb7ffac568 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -165,6 +165,19 @@ function clear_fast_filter() { elm.focus(); } +/** + * Reloads the recent tables list. + */ +function PMA_reloadRecentTable() { + $.get('navigation.php', + { 'token' : window.parent.token, 'ajax_request' : true, 'recent_table' : true }, + function (data) { + if (data.success == true) { + $('#recentTable').html(data.options); + } + }); +} + /* Performed on load */ $(document).ready(function(){ /* Display filter */ diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index 91a6e2a180..9252601754 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -134,7 +134,21 @@ class RecentTable } /** - * Return HTML code "select" for recently used tables. + * Return options for HTML select. + * + * @return string + */ + public function getHtmlSelectOption() + { + $html = ''; + foreach ($this->tables as $table) { + $html .= ''; + } + return $html; + } + + /** + * Return HTML select. * * @return string */ @@ -148,10 +162,7 @@ class RecentTable $html = ''; $html .= ''; return $html; diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 3a84e2ec31..05d272effb 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -21,8 +21,9 @@ require_once './libraries/RecentTable.class.php'; function PMA_addRecentTable($db, $table) { $tmp_result = RecentTable::getInstance()->add($db, $table); if ($tmp_result === true) { - $GLOBALS['reload'] = true; - PMA_reloadNavigation(); + echo ''; } else { $error = $tmp_result; $error->display(); diff --git a/navigation.php b/navigation.php index 6c39e52073..f498a91dc5 100644 --- a/navigation.php +++ b/navigation.php @@ -53,6 +53,16 @@ function PMA_exitNavigationFrame() exit; } +require_once './libraries/common.lib.php'; +require_once './libraries/RecentTable.class.php'; + +/** + * Check if it is an ajax request to reload the recent tables list. + */ +if ($GLOBALS['is_ajax_request'] && $_REQUEST['recent_table']) { + PMA_ajaxResponse('', true, array('options' => RecentTable::getInstance()->getHtmlSelectOption()) ); +} + // keep the offset of the db list in session before closing it if (! isset($_SESSION['tmp_user_values']['navi_limit_offset'])) { $_SESSION['tmp_user_values']['navi_limit_offset'] = 0; @@ -180,12 +190,12 @@ require_once './libraries/header_http.inc.php'; 0) && count(RecentTable::getInstance()->tables)) { +if ($GLOBALS['cfg']['LeftRecentTable'] > 0) { echo '
'; - echo RecentTable::getInstance()->getHtmlSelect(); + if (count(RecentTable::getInstance()->tables)) { + echo RecentTable::getInstance()->getHtmlSelect(); + } echo '
'; } From 456640c457d62ff0e0a0d7965cca4aa0135aed93 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sat, 14 May 2011 12:21:49 +0700 Subject: [PATCH 0015/1652] Some fix for ajaxification --- libraries/RecentTable.class.php | 8 ++++++-- navigation.php | 4 +--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index 9252601754..add2876b87 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -141,8 +141,12 @@ class RecentTable public function getHtmlSelectOption() { $html = ''; - foreach ($this->tables as $table) { - $html .= ''; + if (count($this->tables)) { + foreach ($this->tables as $table) { + $html .= ''; + } + } else { + $html .= ''; } return $html; } diff --git a/navigation.php b/navigation.php index f498a91dc5..2c6f58d132 100644 --- a/navigation.php +++ b/navigation.php @@ -193,9 +193,7 @@ require './libraries/navigation_header.inc.php'; // display recently used tables if ($GLOBALS['cfg']['LeftRecentTable'] > 0) { echo '
'; - if (count(RecentTable::getInstance()->tables)) { - echo RecentTable::getInstance()->getHtmlSelect(); - } + echo RecentTable::getInstance()->getHtmlSelect(); echo '
'; } From 5dee868bfff80abfb7aea70d1d41a083117fd2ba Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Sat, 14 May 2011 12:34:13 +0700 Subject: [PATCH 0016/1652] Move recent tables trimming to correct place --- libraries/RecentTable.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index add2876b87..ebe93f5fd7 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -140,6 +140,11 @@ class RecentTable */ public function getHtmlSelectOption() { + // trim and save, in case where the configuration is changed + if ($this->trim() && isset($this->pma_table)) { + $this->saveToDb(); + } + $html = ''; if (count($this->tables)) { foreach ($this->tables as $table) { @@ -158,11 +163,6 @@ class RecentTable */ public function getHtmlSelect() { - // trim and save, in case where the configuration is changed - if ($this->trim() && isset($this->pma_table)) { - $this->saveToDb(); - } - $html = ''; $html .= '/> + From d7e07ce6ab688daa6459e83a62d0bc2d0ada78e0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:44:34 +0200 Subject: [PATCH 0208/1652] Translation update done using Pootle. --- po/bg.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5ba4e8e3e3..c6b9ad7fff 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 16:08+0200\n" +"PO-Revision-Date: 2011-05-16 19:44+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -958,10 +958,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" +msgstr "Вие ще УНИЩОЖИТЕ цяла таблица!" #: js/messages.php:33 #, fuzzy From a4a948d4d026ceed764e65445086e5a88c3e072c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:44:59 +0200 Subject: [PATCH 0209/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c6b9ad7fff..e127ca7e35 100644 --- a/po/bg.po +++ b/po/bg.po @@ -963,10 +963,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "Вие ще УНИЩОЖИТЕ цяла таблица!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" +msgstr "Вие ще ИЗПРАЗНИТЕ цяла таблица!" #: js/messages.php:34 msgid "Dropping Event" From a2dc0f90cdf16dfcef56e9f85cfd19795f5aaa9d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:46:08 +0200 Subject: [PATCH 0210/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index e127ca7e35..e780896578 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:44+0200\n" +"PO-Revision-Date: 2011-05-16 19:46+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1212,9 +1212,8 @@ msgid ", latest stable version:" msgstr ", последна стабилна версия:" #: js/messages.php:128 -#, fuzzy msgid "up to date" -msgstr "Няма бази от данни" +msgstr "актуално" #. l10n: Display text for calendar close link #: js/messages.php:146 From cd8bae529399f5b39725558d2a651d6900f157ed Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:46:20 +0200 Subject: [PATCH 0211/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e780896578..e4c4276b4b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5404,9 +5404,8 @@ msgid "Triggers" msgstr "" #: libraries/export/sql.php:885 -#, fuzzy msgid "Structure for view" -msgstr "Само структурата" +msgstr "" #: libraries/export/sql.php:894 msgid "Stand-in structure for view" From b4ad239000c7f3585b8f367f7a3bc2b83afe2bfd Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:46:26 +0200 Subject: [PATCH 0212/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e4c4276b4b..e6314a6718 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5464,9 +5464,8 @@ msgid "Edit its structure by following the \"Structure\" link" msgstr "" #: libraries/import.lib.php:1147 -#, fuzzy msgid "Go to database" -msgstr "Няма бази от данни" +msgstr "" #: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" From 2f7c0df3063827d0c5bab71c6328fdeef570ef88 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:46:32 +0200 Subject: [PATCH 0213/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e6314a6718..898a4164b2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5571,10 +5571,9 @@ msgid "Convert to Kana" msgstr "" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "пт" +msgstr "От" #: libraries/mult_submits.inc.php:252 msgid "To" From 9334982def9bfe38276d8c75c3c3e24591ddf28c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:46:45 +0200 Subject: [PATCH 0214/1652] Translation update done using Pootle. --- po/bg.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 898a4164b2..7f73636a35 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5806,7 +5806,6 @@ msgid "Reload navigation frame" msgstr "" #: libraries/plugin_interface.lib.php:336 -#, fuzzy #| msgid "This format has no options" msgid "This format has no options" msgstr "Този формат няма опции" From 8361420af4dc4d6cfce1d0c975e3dd9a0ab69784 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:46:52 +0200 Subject: [PATCH 0215/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7f73636a35..fc4110432b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6039,10 +6039,9 @@ msgid "Page name" msgstr "Име на страница" #: libraries/schema/User_Schema.class.php:103 -#, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" -msgstr "Автоматичен лейаут" +msgstr "" #: libraries/schema/User_Schema.class.php:106 msgid "Internal relations" From 090e889a12802d294049d583863e0d7486a1baca Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:47:14 +0200 Subject: [PATCH 0216/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index fc4110432b..78ba31ff3b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:46+0200\n" +"PO-Revision-Date: 2011-05-16 19:47+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6065,10 +6065,9 @@ msgid "Select Tables" msgstr "Избери таблици" #: libraries/schema/User_Schema.class.php:346 -#, fuzzy #| msgid "Relational schema" msgid "Display relational schema" -msgstr "Релационна схема" +msgstr "" #: libraries/schema/User_Schema.class.php:356 msgid "Select Export Relational Type" From 942de8d5fc9695cb85eea8a9c3a3c18af319996d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:47:28 +0200 Subject: [PATCH 0217/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 78ba31ff3b..5df46a8b1e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6102,10 +6102,9 @@ msgid "Portrait" msgstr "Портретно" #: libraries/schema/User_Schema.class.php:394 -#, fuzzy #| msgid "Creation" msgid "Orientation" -msgstr "Дата на създаване" +msgstr "Посока" #: libraries/schema/User_Schema.class.php:407 msgid "Paper size" From d796376636c0f168f81037d2e9f275462a96cb28 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:47:37 +0200 Subject: [PATCH 0218/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5df46a8b1e..5d8c280b6d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6171,9 +6171,8 @@ msgid "Settings" msgstr "Настройки" #: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1115 -#, fuzzy msgid "Source database" -msgstr "Търсене в базата от данни" +msgstr "" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 From cf7fed94075e994b89c017930ff323de7195cea7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:48:28 +0200 Subject: [PATCH 0219/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5d8c280b6d..9be459a9ff 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:47+0200\n" +"PO-Revision-Date: 2011-05-16 19:48+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6566,10 +6566,9 @@ msgstr "" "изведени залепени от края в слъчай на скъсяване (По подразбиране: \"...\")." #: libraries/user_preferences.inc.php:32 -#, fuzzy #| msgid "General relation features" msgid "Manage your settings" -msgstr "Общи възможности на релациите" +msgstr "Управление мои настройки" #: libraries/user_preferences.inc.php:47 prefs_manage.php:291 #| msgid "Modifications have been saved" From 88e704ccf405636298efa60134893cb3c9576bbe Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:48:45 +0200 Subject: [PATCH 0220/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 9be459a9ff..7035cb3f13 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6602,10 +6602,9 @@ msgid "Error in ZIP archive:" msgstr "Грешка в ZIP архива:" #: main.php:65 -#, fuzzy #| msgid "General relation features" msgid "General Settings" -msgstr "Общи възможности на релациите" +msgstr "Общи настройки" #: main.php:103 msgid "MySQL connection collation" From da8c0d1c8a825b119122698007c1d45883fd8d07 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:48:52 +0200 Subject: [PATCH 0221/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7035cb3f13..99fd8f75bc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6642,9 +6642,8 @@ msgid "MySQL client version" msgstr "Версия на клиента за MySQL" #: main.php:189 -#, fuzzy msgid "PHP extension" -msgstr "Версия на PHP" +msgstr "" #: main.php:195 msgid "Show PHP information" From 877b1bac59ef102f9b969cbdfd60811c1bd2e73a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:49:00 +0200 Subject: [PATCH 0222/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 99fd8f75bc..75c8519a9e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:48+0200\n" +"PO-Revision-Date: 2011-05-16 19:49+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6824,10 +6824,9 @@ msgid "Import/Export coordinates for PDF schema" msgstr "" #: pmd_general.php:120 -#, fuzzy #| msgid "Submit Query" msgid "Build Query" -msgstr "Изпълни заявката" +msgstr "" #: pmd_general.php:125 msgid "Move Menu" From fcf8bbf08b45d01031aeb9f1df2f6db83cb57930 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:49:05 +0200 Subject: [PATCH 0223/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 75c8519a9e..73c0e99711 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6849,9 +6849,8 @@ msgid "Delete relation" msgstr "" #: pmd_general.php:460 pmd_general.php:519 -#, fuzzy msgid "Relation operator" -msgstr "Преглед на релациите" +msgstr "" #: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652 #: pmd_general.php:769 From 799e86d56ed64519ce7ba24831accf80556b0bac Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:49:14 +0200 Subject: [PATCH 0224/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 73c0e99711..e04d84db51 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6854,10 +6854,9 @@ msgstr "" #: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652 #: pmd_general.php:769 -#, fuzzy #| msgid "Export" msgid "Except" -msgstr "Експортиране" +msgstr "Освен" #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 #: pmd_general.php:775 From c06d753c5b2643dcaeeba73bc1863beb5b782531 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:49:19 +0200 Subject: [PATCH 0225/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e04d84db51..dc276567ea 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6870,10 +6870,9 @@ msgid "Rename to" msgstr "Преименуване на" #: pmd_general.php:482 pmd_general.php:581 -#, fuzzy #| msgid "User name" msgid "New name" -msgstr "Потребителско име" +msgstr "" #: pmd_general.php:485 pmd_general.php:700 #, fuzzy From 986f5ded0e32578b1fb770e87ff4bdc946dc8e64 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:49:23 +0200 Subject: [PATCH 0226/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index dc276567ea..f80413ba32 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6875,10 +6875,9 @@ msgid "New name" msgstr "" #: pmd_general.php:485 pmd_general.php:700 -#, fuzzy #| msgid "Create" msgid "Aggregate" -msgstr "Създай" +msgstr "" #: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629 #: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759 From 3336edcaf50e3e30ff172b6b6394d4b99d65ae29 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:49:36 +0200 Subject: [PATCH 0227/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f80413ba32..59fabdbba1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6886,10 +6886,9 @@ msgid "Operator" msgstr "Оператор" #: pmd_general.php:810 -#, fuzzy #| msgid "Table options" msgid "Active options" -msgstr "Опции на таблицата" +msgstr "Активни опции" #: pmd_help.php:26 msgid "To select relation, click :" From 3e73335ba75edb78474a6ba3ba85676a7eca9f62 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:52:13 +0200 Subject: [PATCH 0228/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 59fabdbba1..6ef623f6e6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:49+0200\n" +"PO-Revision-Date: 2011-05-16 19:52+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6914,10 +6914,9 @@ msgid "Page" msgstr "Страница" #: pmd_pdf.php:99 -#, fuzzy #| msgid "Import files" msgid "Import from selected page" -msgstr "Импортиране на файлове" +msgstr "Импорт от избрания файл" #: pmd_pdf.php:100 #, fuzzy From 60b27a719d6454ad01cb03e11768d350a424d8c1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:52:44 +0200 Subject: [PATCH 0229/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 6ef623f6e6..05eff171f7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6919,10 +6919,9 @@ msgid "Import from selected page" msgstr "Импорт от избрания файл" #: pmd_pdf.php:100 -#, fuzzy #| msgid "No rows selected" msgid "Export to selected page" -msgstr "Няма върнати редове" +msgstr "" #: pmd_pdf.php:102 #, fuzzy From 5f4b8a4981aed16d1e8708be6b0cba1a391d6267 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:52:54 +0200 Subject: [PATCH 0230/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 05eff171f7..65bc244061 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6924,10 +6924,9 @@ msgid "Export to selected page" msgstr "" #: pmd_pdf.php:102 -#, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" -msgstr "Създай нов индекс" +msgstr "" #: pmd_pdf.php:111 msgid "New page name: " From be5b35c1547c8d6b93c467da6501cfa0233efb16 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:54:03 +0200 Subject: [PATCH 0231/1652] Translation update done using Pootle. --- po/bg.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 65bc244061..5bf55a5b79 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:52+0200\n" +"PO-Revision-Date: 2011-05-16 19:54+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7258,10 +7258,10 @@ msgstr "" #: server_privileges.php:54 server_privileges.php:634 #: server_privileges.php:636 -#, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" -"Ограничава броя на новите конекции, които потребителя може да отвори на час." +"Ограничава броя на едновременните връзки, които потребителят може да държи " +"отворени." #: server_privileges.php:55 server_privileges.php:198 #: server_privileges.php:558 From 53050cabfbf423291a5c55ebcddbe515a281ba31 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:54:32 +0200 Subject: [PATCH 0232/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5bf55a5b79..c781b58deb 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7694,9 +7694,8 @@ msgid "Control slave:" msgstr "" #: server_replication.php:323 -#, fuzzy msgid "Full start" -msgstr "Пълнотекстово" +msgstr "" #: server_replication.php:323 msgid "Full stop" From 2b4e34a8421b894d8724ce45cb1b2013e2971642 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:54:38 +0200 Subject: [PATCH 0233/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c781b58deb..01ddd8e697 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7879,9 +7879,8 @@ msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" #: server_status.php:70 -#, fuzzy msgid "The number of free pages." -msgstr "Брой на сортираните редове." +msgstr "" #: server_status.php:71 msgid "" From 4ae356a436862de9e8688fb2eb60cb8338a3a08d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:55:19 +0200 Subject: [PATCH 0234/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 01ddd8e697..180bece38f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:54+0200\n" +"PO-Revision-Date: 2011-05-16 19:55+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7983,9 +7983,8 @@ msgid "" msgstr "" #: server_status.php:91 -#, fuzzy msgid "The number of log write requests." -msgstr "Брой на сортираните редове." +msgstr "Броят на заявки за запис в дневника." #: server_status.php:92 msgid "The number of physical writes to the log file." From c75f5b3245eefa3d43727f3c32be63d9806e83ef Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:55:29 +0200 Subject: [PATCH 0235/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 180bece38f..7908964622 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8007,9 +8007,8 @@ msgid "The number of bytes written to the log file." msgstr "" #: server_status.php:97 -#, fuzzy msgid "The number of pages created." -msgstr "Брой на отвотените таблици." +msgstr "" #: server_status.php:98 msgid "" From 56edf4540e317ecba3cf96ef88679ca484fddd75 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:55:34 +0200 Subject: [PATCH 0236/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7908964622..d6f1ada00b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8017,9 +8017,8 @@ msgid "" msgstr "" #: server_status.php:99 -#, fuzzy msgid "The number of pages read." -msgstr "Брой на сортираните редове." +msgstr "" #: server_status.php:100 #, fuzzy From 9a381a7a6a2b4421d6848e1ddf4edc58e2b2362c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:55:38 +0200 Subject: [PATCH 0237/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index d6f1ada00b..c48432ca27 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8021,9 +8021,8 @@ msgid "The number of pages read." msgstr "" #: server_status.php:100 -#, fuzzy msgid "The number of pages written." -msgstr "Брой на отвотените таблици." +msgstr "" #: server_status.php:101 msgid "The number of row locks currently being waited for." From e3e974f2426a8af3a4981acbc56378c4b1100af6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:56:25 +0200 Subject: [PATCH 0238/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index c48432ca27..b99a3a6502 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:55+0200\n" +"PO-Revision-Date: 2011-05-16 19:56+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8049,9 +8049,8 @@ msgid "The number of rows deleted from InnoDB tables." msgstr "" #: server_status.php:107 -#, fuzzy msgid "The number of rows inserted in InnoDB tables." -msgstr "Брой заявки за вмъкване на ред в таблица." +msgstr "Броят вмъкнати редове в InnoDB таблици." #: server_status.php:108 msgid "The number of rows read from InnoDB tables." From 15e61a9c63a54b33b4f961107450bd0fc8e31ac0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:57:34 +0200 Subject: [PATCH 0239/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index b99a3a6502..b994245565 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:56+0200\n" +"PO-Revision-Date: 2011-05-16 19:57+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8057,9 +8057,8 @@ msgid "The number of rows read from InnoDB tables." msgstr "" #: server_status.php:109 -#, fuzzy msgid "The number of rows updated in InnoDB tables." -msgstr "Брой заявки за обновяване на ред в таблица." +msgstr "Броят обновени редове в InnoDB таблици." #: server_status.php:110 msgid "" From ba6fdf8254b6c1bc731da1818269e7e06e8e0601 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:57:41 +0200 Subject: [PATCH 0240/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b994245565..c445bc9889 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8080,9 +8080,8 @@ msgid "" msgstr "" #: server_status.php:113 -#, fuzzy msgid "The number of requests to read a key block from the cache." -msgstr "Брой заявки за обновяване на ред в таблица." +msgstr "" #: server_status.php:114 msgid "" From 97f570a4d2f5958343532efed213c78e6081c0e9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:57:47 +0200 Subject: [PATCH 0241/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c445bc9889..31edfe3701 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8091,9 +8091,8 @@ msgid "" msgstr "" #: server_status.php:115 -#, fuzzy msgid "The number of requests to write a key block to the cache." -msgstr "Брой заявки за обновяване на ред в таблица." +msgstr "" #: server_status.php:116 msgid "The number of physical writes of a key block to disk." From 42a2cc825d45ac08ec07eaafa0537ce71b2172cb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:58:13 +0200 Subject: [PATCH 0242/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 31edfe3701..4778f4d8ce 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:57+0200\n" +"PO-Revision-Date: 2011-05-16 19:58+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8136,9 +8136,8 @@ msgid "The amount of free memory for query cache." msgstr "" #: server_status.php:125 -#, fuzzy msgid "The number of cache hits." -msgstr "Брой на сортираните редове." +msgstr "Броят попадения в кеш." #: server_status.php:126 msgid "The number of queries added to the cache." From aa9bde04d8fb7cfbf31dce48a4b07ff8f09ab160 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 19:58:57 +0200 Subject: [PATCH 0243/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 4778f4d8ce..ddd18478de 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8276,9 +8276,8 @@ msgid "" msgstr "" #: server_status.php:152 -#, fuzzy msgid "The number of threads that are not sleeping." -msgstr "Брой на отворените файлове." +msgstr "Броят на нишките, които не са спящи." #: server_status.php:163 msgid "Runtime Information" From 6865888719ec062aabbcce51945c90b53e77a16d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:00:57 +0200 Subject: [PATCH 0244/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index ddd18478de..07a1c27131 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 19:58+0200\n" +"PO-Revision-Date: 2011-05-16 20:00+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8300,9 +8300,8 @@ msgid "Temporary data" msgstr "Временни данни" #: server_status.php:380 -#, fuzzy msgid "Delayed inserts" -msgstr "Използване на отложени вмъквания" +msgstr "Забавени вмъквания" #: server_status.php:381 #, fuzzy From 4bb603243b67283886d03a95024fbc50c0d67de0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:01:14 +0200 Subject: [PATCH 0245/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 07a1c27131..46beddf34f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:00+0200\n" +"PO-Revision-Date: 2011-05-16 20:01+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8304,9 +8304,8 @@ msgid "Delayed inserts" msgstr "Забавени вмъквания" #: server_status.php:381 -#, fuzzy msgid "Key cache" -msgstr "Кеш на заявките" +msgstr "Кеш на ключове" #: server_status.php:382 msgid "Joins" From 905d39ed2d8f68cf4197193b5a4426adffdac651 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:01:27 +0200 Subject: [PATCH 0246/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 46beddf34f..31074746c1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8442,9 +8442,8 @@ msgid "Query type" msgstr "Тип на заявката" #: server_status.php:725 server_status.php:726 -#, fuzzy msgid "Show query chart" -msgstr "SQL заявка" +msgstr "" #: server_status.php:727 msgid "Note: Generating the query chart can take a long time." From 88aeb2aee827207a8bf9910069987c8a80e78da5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:02:04 +0200 Subject: [PATCH 0247/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 31074746c1..ebbd58b5ce 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:01+0200\n" +"PO-Revision-Date: 2011-05-16 20:02+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8450,9 +8450,8 @@ msgid "Note: Generating the query chart can take a long time." msgstr "" #: server_status.php:872 -#, fuzzy msgid "Replication status" -msgstr "Репликация" +msgstr "Статус репликация" #: server_synchronize.php:92 msgid "Could not connect to the source" From d61c2e38efe7f6bc325894e6c5db6ffeb2865bdb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:02:30 +0200 Subject: [PATCH 0248/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ebbd58b5ce..5a22de5ba1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8544,10 +8544,9 @@ msgid "Enter manually" msgstr "" #: server_synchronize.php:1138 -#, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" -msgstr "Максимален брой на едновременните конекции" +msgstr "Текуща връзка" #: server_synchronize.php:1167 #, php-format From 5f4b4f07f20d705da7e0288d3083c056ae8ff294 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:03:04 +0200 Subject: [PATCH 0249/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5a22de5ba1..2088c0be5a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:02+0200\n" +"PO-Revision-Date: 2011-05-16 20:03+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8608,10 +8608,9 @@ msgid "Insecure connection" msgstr "" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." -msgstr "Промените бяха съхранени" +msgstr "Конфигурацията запазена." #: setup/frames/index.inc.php:93 msgid "" From 7efb4a2f330ccedd343187ca18f11103b6d9dae8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:03:15 +0200 Subject: [PATCH 0250/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2088c0be5a..599374feef 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8663,9 +8663,8 @@ msgid "Load" msgstr "Зареждане" #: setup/frames/index.inc.php:239 -#, fuzzy msgid "phpMyAdmin homepage" -msgstr "phpMyAdmin документация" +msgstr "phpMyAdmin страница" #: setup/frames/index.inc.php:240 msgid "Donate" From f1116683044887fbef7687774022cf32c706e565 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:03:31 +0200 Subject: [PATCH 0251/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 599374feef..58e8e85dfb 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8695,9 +8695,8 @@ msgid "Ignore errors" msgstr "" #: setup/lib/form_processing.lib.php:49 -#, fuzzy msgid "Show form" -msgstr "Покажи цвят" +msgstr "Показване формуляр" #: setup/lib/index.lib.php:119 msgid "" From 6d968cba4281f1a98c6c5f25f18461a09da685ff Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:03:49 +0200 Subject: [PATCH 0252/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 58e8e85dfb..2094e446a9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8868,10 +8868,9 @@ msgid "Showing SQL query" msgstr "" #: sql.php:622 -#, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" -msgstr "Валидирай SQL-а" +msgstr "Валидиран SQL" #: sql.php:897 #, php-format From 1dc48722d87988a17b2bfda04b3a689ee93b40ce Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:04:34 +0200 Subject: [PATCH 0253/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2094e446a9..3fc67ea35c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:03+0200\n" +"PO-Revision-Date: 2011-05-16 20:04+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8891,10 +8891,9 @@ msgid "Function" msgstr "Функция" #: tbl_change.php:758 -#, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " -msgstr " Поради дължината си,
това поле може да не е редактируемо " +msgstr " Поради дължината си,
това поле може да е нередактируемо " #: tbl_change.php:875 msgid "Remove BLOB Repository Reference" From 0df496f86863ad2821e7d4a9f1a649904cb98214 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:04:41 +0200 Subject: [PATCH 0254/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 3fc67ea35c..0aec111b36 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8952,10 +8952,9 @@ msgid "Continue insertion with %s rows" msgstr "" #: tbl_chart.php:56 -#, fuzzy #| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." -msgstr "Привилегиите бяха презаредени успешно." +msgstr "" #: tbl_chart.php:59 msgid "" From 5843f7173e384bc875030ef3dcb96794bc4ce374 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:04:56 +0200 Subject: [PATCH 0255/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0aec111b36..85919017ec 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9003,10 +9003,9 @@ msgid "Radar" msgstr "" #: tbl_chart.php:138 -#, fuzzy #| msgid "PiB" msgid "Pie" -msgstr "ПБ" +msgstr "Пита" #: tbl_chart.php:144 #, fuzzy From 22d8ecb3939b00b49b87562afbf6f5c37fc1a8f2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:05:15 +0200 Subject: [PATCH 0256/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 85919017ec..a30f0ad4f3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:04+0200\n" +"PO-Revision-Date: 2011-05-16 20:05+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9008,10 +9008,9 @@ msgid "Pie" msgstr "Пита" #: tbl_chart.php:144 -#, fuzzy #| msgid "Query type" msgid "Bar type" -msgstr "Тип на заявката" +msgstr "Стълбове" #: tbl_chart.php:146 msgid "Stacked" From 91ba7c1e9c6bc466c63ab433b03e975615fe23f7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:05:21 +0200 Subject: [PATCH 0257/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a30f0ad4f3..37c6f28091 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9183,9 +9183,8 @@ msgid "Delete the table (DROP)" msgstr "Изтриване на таблица (DROP)" #: tbl_operations.php:734 -#, fuzzy msgid "Partition maintenance" -msgstr "Поддръжка на таблицата" +msgstr "" #: tbl_operations.php:742 #, php-format From 01d58f5bd391f24b6cd5f01d9ca940f2da2d92bb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:05:38 +0200 Subject: [PATCH 0258/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 37c6f28091..b900e2a8cb 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9196,9 +9196,8 @@ msgid "Analyze" msgstr "" #: tbl_operations.php:746 -#, fuzzy msgid "Check" -msgstr "Чешки" +msgstr "Проверка" #: tbl_operations.php:747 msgid "Optimize" From bc0761a41be92d8b2ea375aa7c3fd14f609c5cf7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:06:04 +0200 Subject: [PATCH 0259/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b900e2a8cb..f1a04e1cff 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:05+0200\n" +"PO-Revision-Date: 2011-05-16 20:06+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9257,7 +9257,7 @@ msgstr "Дължина на реда" #: tbl_printview.php:411 tbl_structure.php:888 msgid " Row size " -msgstr " Размер на ред " +msgstr " Размер ред " #: tbl_relation.php:276 #, php-format From 7f8a0d0aa0bac65118c825a48f7f41bb135b5b18 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:06:16 +0200 Subject: [PATCH 0260/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index f1a04e1cff..80a4acc3ab 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9253,7 +9253,7 @@ msgstr "динамичен" #: tbl_printview.php:401 tbl_structure.php:880 msgid "Row length" -msgstr "Дължина на реда" +msgstr "Дължина ред" #: tbl_printview.php:411 tbl_structure.php:888 msgid " Row size " From ad41ecec0928d35f15c0dc463b916bae68d25aab Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:06:39 +0200 Subject: [PATCH 0261/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 80a4acc3ab..127a44fff8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9265,10 +9265,9 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "" #: tbl_relation.php:402 -#, fuzzy #| msgid "Internal relations" msgid "Internal relation" -msgstr "Вътрешни релации" +msgstr "Вътрешна релация" #: tbl_relation.php:404 msgid "" From 93e4c4da421624e1a3b57158e93c124f50005ba1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:07:14 +0200 Subject: [PATCH 0262/1652] Translation update done using Pootle. --- po/bg.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 127a44fff8..9d5e8e1ab4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:06+0200\n" +"PO-Revision-Date: 2011-05-16 20:07+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9329,10 +9329,10 @@ msgid "None" msgstr "Няма" #: tbl_structure.php:398 -#, fuzzy, php-format +#, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" -msgstr "Таблицата %s беше изтрита" +msgstr "Колоната %s беше изтрита" #: tbl_structure.php:409 tbl_structure.php:483 #, php-format From 204706680dc0e16e90bdcc4ee54cf43b07fb6b3f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:07:26 +0200 Subject: [PATCH 0263/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 9d5e8e1ab4..5ea83ccf28 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9346,10 +9346,9 @@ msgid "An index has been added on %s" msgstr "Беше добавен индекс на %s" #: tbl_structure.php:471 -#, fuzzy #| msgid "Show versions" msgid "Show more actions" -msgstr "Показване на версиите" +msgstr "Показване повече действия" #: tbl_structure.php:600 tbl_structure.php:602 msgid "Relation view" From 115a661098b284285cb6628ad355b3817e782792 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:07:48 +0200 Subject: [PATCH 0264/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 5ea83ccf28..2631104439 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9376,7 +9376,7 @@ msgid "After %s" msgstr "След %s" #: tbl_structure.php:689 -#, fuzzy, php-format +#, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" From 6b7a0a3ab87d2b535fd7de0cec5a93c510a0d58d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:08:11 +0200 Subject: [PATCH 0265/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2631104439..30106047d3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:07+0200\n" +"PO-Revision-Date: 2011-05-16 20:08+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9433,10 +9433,9 @@ msgid "Tracking data definition succesfully deleted" msgstr "" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Query type" msgid "Query error" -msgstr "Тип на заявката" +msgstr "Грешка в заявката" #: tbl_tracking.php:399 msgid "Tracking data manipulation succesfully deleted" From f1e604e699c33c47d3b0f7fc1cfeec45b788ec3f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:08:20 +0200 Subject: [PATCH 0266/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 30106047d3..b444c42621 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9455,10 +9455,9 @@ msgid "Delete tracking data row from report" msgstr "" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Няма бази от данни" +msgstr "Няма данни" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From 286d0649c51c631870592dc1b5fd7058fada024f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:08:26 +0200 Subject: [PATCH 0267/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b444c42621..102d2f64f5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9532,9 +9532,8 @@ msgid "Track these data manipulation statements:" msgstr "" #: tbl_tracking.php:740 -#, fuzzy msgid "Create version" -msgstr "Версия на сървъра" +msgstr "" #: themes.php:31 #, php-format From 2b132484ee4155c7776faa9c3afb61971ea7888c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:11:10 +0200 Subject: [PATCH 0268/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 102d2f64f5..e42907f89f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:08+0200\n" +"PO-Revision-Date: 2011-05-16 20:11+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -708,10 +708,9 @@ msgid "Add prefix to table" msgstr "" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Заместване на данните от таблицата с данните от файла" +msgstr "Заменяне на представката за таблици" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 4053a8c35749ae48992a2bea268f245d84f81214 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:11:44 +0200 Subject: [PATCH 0269/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e42907f89f..d516fc8a55 100644 --- a/po/bg.po +++ b/po/bg.po @@ -713,10 +713,9 @@ msgid "Replace table prefix" msgstr "Заменяне на представката за таблици" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Заместване на данните от таблицата с данните от файла" +msgstr "Копиране на таблицата с представка" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From ffe0439f77c6fb342e5f79a7847f5c5f28ef1d43 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:11:49 +0200 Subject: [PATCH 0270/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index d516fc8a55..3f6e83c604 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1100,10 +1100,9 @@ msgid "Searching" msgstr "Търсене" #: js/messages.php:84 -#, fuzzy #| msgid "Query results" msgid "Hide search results" -msgstr "Резулати от заявка" +msgstr "" #: js/messages.php:85 #, fuzzy From 20bd5e1b0b3f6e627f8429a89e76b676f061366c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:12:22 +0200 Subject: [PATCH 0271/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 3f6e83c604..d79b7d136b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:11+0200\n" +"PO-Revision-Date: 2011-05-16 20:12+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1105,9 +1105,8 @@ msgid "Hide search results" msgstr "" #: js/messages.php:85 -#, fuzzy msgid "Show search results" -msgstr "SQL заявка" +msgstr "Показване резултати от търсенето" #: js/messages.php:90 msgid "" From 9aea1a79a1307e7cff79399b68b4e724497e88b8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:13:16 +0200 Subject: [PATCH 0272/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index d79b7d136b..f5d40a7144 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:12+0200\n" +"PO-Revision-Date: 2011-05-16 20:13+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1093,7 +1093,7 @@ msgstr "Таблицата трябва да има поне една колон #: js/messages.php:78 msgid "Create Table" -msgstr "Създабане Таблица" +msgstr "Създаване таблица" #: js/messages.php:83 msgid "Searching" From 4ca885789ca19a67f63a15474c7e0830b5c5bd86 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:13:47 +0200 Subject: [PATCH 0273/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index f5d40a7144..ad78a9f419 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1102,7 +1102,7 @@ msgstr "Търсене" #: js/messages.php:84 #| msgid "Query results" msgid "Hide search results" -msgstr "" +msgstr "Скриване резултати от търсенето" #: js/messages.php:85 msgid "Show search results" From 2953f2a4cdcfa40460941c9e6f7f50209db9e3a5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:23:55 +0200 Subject: [PATCH 0274/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ad78a9f419..512075da57 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:13+0200\n" +"PO-Revision-Date: 2011-05-16 20:23+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" From 2dfb2bbe022b45bd0f02e07f85da65f54f1fbf65 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:04 +0200 Subject: [PATCH 0275/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 512075da57..7c02ba1945 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:23+0200\n" +"PO-Revision-Date: 2011-05-16 20:24+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -3002,7 +3002,7 @@ msgstr "" #: libraries/config/messages.inc.php:221 msgid "Tabs" -msgstr "" +msgstr "Табулатори" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" From 89b67a52d632b68e3bbe8bf6c7741dca699e9383 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:17 +0200 Subject: [PATCH 0276/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 7c02ba1945..41c650e8c6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3018,7 +3018,7 @@ msgstr "" #: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17 msgid "Texy! text" -msgstr "" +msgstr "Texy! текст" #: libraries/config/messages.inc.php:227 msgid "Warnings" From 8fe00085a122c6ba7809c300b55cde2f7dd665b4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:23 +0200 Subject: [PATCH 0277/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 41c650e8c6..f4bb850529 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3022,7 +3022,7 @@ msgstr "Texy! текст" #: libraries/config/messages.inc.php:227 msgid "Warnings" -msgstr "" +msgstr "Предупреждения" #: libraries/config/messages.inc.php:228 msgid "Disable some of the warnings shown by phpMyAdmin" From 623caefd60279e349a6a520d34f95e02d703fe75 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:29 +0200 Subject: [PATCH 0278/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index f4bb850529..7cb5450431 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3036,7 +3036,7 @@ msgstr "" #: libraries/config/messages.inc.php:230 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" From edca64c8b317bf53d961927d53fce25eea567788 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:35 +0200 Subject: [PATCH 0279/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 7cb5450431..eab0411f36 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3138,7 +3138,7 @@ msgstr "" #: libraries/config/messages.inc.php:266 msgid "Display logo" -msgstr "" +msgstr "Показване лого" #: libraries/config/messages.inc.php:267 msgid "Display server choice at the top of the left frame" From 8a50808e7bc9134953c1f8a5b6a9eda8fe1bfb41 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:39 +0200 Subject: [PATCH 0280/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index eab0411f36..50ee58a702 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4153,7 +4153,7 @@ msgstr "" #: libraries/config/messages.inc.php:502 msgid "ZIP" -msgstr "" +msgstr "ZIP" #: libraries/config/setup.forms.php:41 msgid "Config authentication" From 740c7d24c57e1568666c69f1c65eaa4e83130a30 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:45 +0200 Subject: [PATCH 0281/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 50ee58a702..328f4094ba 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4200,7 +4200,7 @@ msgstr "" #: libraries/config/setup.forms.php:262 #: libraries/config/user_preferences.forms.php:165 msgid "Quick" -msgstr "" +msgstr "Бърз" #: libraries/config/setup.forms.php:266 #: libraries/config/user_preferences.forms.php:169 From caf0e02536ffa064edaf6461f973eeb2686d034c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:24:51 +0200 Subject: [PATCH 0282/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 328f4094ba..38a2f0144b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4272,7 +4272,7 @@ msgstr "" #: libraries/db_events.inc.php:14 libraries/db_events.inc.php:16 #: libraries/export/sql.php:493 msgid "Events" -msgstr "" +msgstr "Събития" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26 From d0b0c0e2782c90439f93ef6f391381a4bd881150 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:00 +0200 Subject: [PATCH 0283/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 38a2f0144b..4e243276a8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:24+0200\n" +"PO-Revision-Date: 2011-05-16 20:25+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -4335,7 +4335,7 @@ msgstr "" #: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703 msgid "Details..." -msgstr "" +msgstr "Подробности..." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 From 532ea21318411542d4fc52a381228557f8a6b048 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:04 +0200 Subject: [PATCH 0284/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 4e243276a8..3acbd08d5c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4446,7 +4446,7 @@ msgstr "Дъмп-ни всички редове" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" -msgstr "" +msgstr "Изход:" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 #, php-format From 891e79c97d6d7d37f376fffa897d812bdf167d66 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:21 +0200 Subject: [PATCH 0285/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 3acbd08d5c..d77d4dc115 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4463,7 +4463,7 @@ msgstr "Шаблон на файловото име:" #: libraries/display_export.lib.php:229 msgid "@SERVER@ will become the server name" -msgstr "" +msgstr "@SERVER@ ще стане името на сървъра" #: libraries/display_export.lib.php:231 msgid ", @DATABASE@ will become the database name" From e457792c6e35c1566db1069db2aa789c9ad7f876 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:30 +0200 Subject: [PATCH 0286/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d77d4dc115..61204cb1ff 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4467,7 +4467,7 @@ msgstr "@SERVER@ ще стане името на сървъра" #: libraries/display_export.lib.php:231 msgid ", @DATABASE@ will become the database name" -msgstr "" +msgstr ", @DATABASE@ ще стане името на базата от данни" #: libraries/display_export.lib.php:233 msgid ", @TABLE@ will become the table name" From 4fe42e576adc11d296cda064c1e0b12411a88b2b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:35 +0200 Subject: [PATCH 0287/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 61204cb1ff..b243072078 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4471,7 +4471,7 @@ msgstr ", @DATABASE@ ще стане името на базата от данн #: libraries/display_export.lib.php:233 msgid ", @TABLE@ will become the table name" -msgstr "" +msgstr ", @TABLE@ ще стане името на таблицата" #: libraries/display_export.lib.php:237 #, php-format From e9511711a03b6981098e34e5defa28ed85f51d79 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:42 +0200 Subject: [PATCH 0288/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index b243072078..a5cdec3e79 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4694,7 +4694,7 @@ msgstr "Браузърна трансформация" #: libraries/display_tbl.lib.php:1188 msgid "Copy" -msgstr "" +msgstr "Копиране" #: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215 msgid "The row has been deleted" From 549f2fe3aa7d35986378008a098715660dd10369 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:25:46 +0200 Subject: [PATCH 0289/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a5cdec3e79..81e7e1bebd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5255,7 +5255,7 @@ msgstr "" #: libraries/export/pdf.php:17 msgid "PDF" -msgstr "" +msgstr "PDF" #: libraries/export/pdf.php:23 msgid "(Generates a report containing the data of a single table)" From 4bf29657484302c679ff0bf15c2eaa36d9f7bdc5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:27:51 +0200 Subject: [PATCH 0290/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 81e7e1bebd..a7d86b7ee8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:25+0200\n" +"PO-Revision-Date: 2011-05-16 20:27+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9552,7 +9552,7 @@ msgstr "Достъпни MIME-типове" msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -"MIME-types показани в наклонен шрифт не притежават отделна функция за " +"MIME типове показани в наклонен шрифт не притежават отделна функция за " "трансформация" #: transformation_overview.php:42 From 56c32524f9683e0d898025d9f16fb8214c3934c0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:28:09 +0200 Subject: [PATCH 0291/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a7d86b7ee8..5ff2dc2de5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:27+0200\n" +"PO-Revision-Date: 2011-05-16 20:28+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9546,7 +9546,7 @@ msgstr "Вземете си нови теми!" #: transformation_overview.php:24 msgid "Available MIME types" -msgstr "Достъпни MIME-типове" +msgstr "Достъпни MIME типове" #: transformation_overview.php:37 msgid "" From 357c62d21294e3548083ef37074b97d5c7b035ca Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:28:33 +0200 Subject: [PATCH 0292/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 5ff2dc2de5..0f504ed76f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2638,7 +2638,7 @@ msgstr "Етикет на ключа" #: libraries/config/messages.inc.php:131 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" -msgstr "MIME-тип" +msgstr "MIME тип" #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 #: libraries/config/messages.inc.php:133 tbl_relation.php:396 From 804850fca48a87915e6d919f82d8643dc48d6f31 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:28:49 +0200 Subject: [PATCH 0293/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0f504ed76f..d30d2e7e1f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5221,7 +5221,7 @@ msgstr "Показване коментари" #: libraries/export/sql.php:44 #| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Показване MIME-типове" +msgstr "Показване MIME типове" #: libraries/export/latex.php:139 libraries/export/sql.php:341 #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 From be8dea41221cdffa48d91db45eae045e4c7ae499 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:29:39 +0200 Subject: [PATCH 0294/1652] Translation update done using Pootle. --- po/bg.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index d30d2e7e1f..d44fecf3b6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:28+0200\n" +"PO-Revision-Date: 2011-05-16 20:29+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6362,8 +6362,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 тип натиснете на %sописания на трансформацията%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" From fd0924c464ebd3303b076ee2fcefa34921ce6956 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:33:22 +0200 Subject: [PATCH 0295/1652] Translation update done using Pootle. --- po/bg.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/bg.po b/po/bg.po index d44fecf3b6..b942c7b5d4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:29+0200\n" +"PO-Revision-Date: 2011-05-16 20:33+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6674,9 +6674,9 @@ msgid "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." msgstr "" -"Вашият конфигурационен файл съдържа настройки (root без парола), които " -"съответстват на привилегирования акаунт на MySQL по подразбиране. Вашият " -"MySQL сървър е стартиран така и може да бъде лесно хакнат, наистина трябва " +"Вашият конфигурационен файл съдържа настройки (root без парола), " +"съответстващи на привилегирования акаунт на MySQL по подразбиране. Вашият " +"MySQL сървър е стартиран така и може лесно да бъде хакнат, наистина трябва " "да оправите тази дупка в сигурността като зададете парола на потребителя " "'root'." From e0c46cb51a12b33081c2579c679bde3faf25215c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:35:13 +0200 Subject: [PATCH 0296/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b942c7b5d4..2d4a12ad5b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:33+0200\n" +"PO-Revision-Date: 2011-05-16 20:35+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2758,7 +2758,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:213 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" -msgstr "CSV данни" +msgstr "CSV" #: libraries/config/messages.inc.php:157 msgid "Developer" From f12750605789e1911c6bbc402f74dc5d621d43e7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:35:43 +0200 Subject: [PATCH 0297/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2d4a12ad5b..ed519aa44d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4364,7 +4364,7 @@ msgstr "MySQL 4.0 съвместимо" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 msgid "Create new database" -msgstr "Създаване на нова БД" +msgstr "Създаване нова БД" #: libraries/display_create_database.lib.php:33 msgid "Create" From ac33283bdfe111ea474445322f179736e9cfd2c7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:36:12 +0200 Subject: [PATCH 0298/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ed519aa44d..0d0eb57e0c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:35+0200\n" +"PO-Revision-Date: 2011-05-16 20:36+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -4378,7 +4378,7 @@ msgstr "Няма привилегии" #: libraries/display_create_table.lib.php:46 #, php-format msgid "Create table on database %s" -msgstr "Създаване на нова таблица в БД %s" +msgstr "Създаване нова таблица в БД %s" #: libraries/display_create_table.lib.php:55 msgid "Number of columns" From 49f6794c6f66d8bfa175a794be6ac7d3d47e0fc9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:36:25 +0200 Subject: [PATCH 0299/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0d0eb57e0c..f5ac0f255d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4703,7 +4703,7 @@ msgstr "Редът беше изтрит" #: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153 #: server_processlist.php:92 msgid "Kill" -msgstr "СТОП" +msgstr "Убиване" #: libraries/display_tbl.lib.php:2027 msgid "in query" From 5cfe50a60d60fa9b0738927b392d931186f1fa15 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:37:31 +0200 Subject: [PATCH 0300/1652] Translation update done using Pootle. --- po/bg.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index f5ac0f255d..03d6a6f120 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:36+0200\n" +"PO-Revision-Date: 2011-05-16 20:37+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -5835,8 +5835,8 @@ msgstr "Показване на коментари към Колоните" msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -"Моля прегледайте информацията в Документацията относно това как да обновите " -"вашата Column_comments таблица" +"Моля консултирайте се с документацията относно обновяването на вашата " +"column_comments таблица" #: libraries/relation.lib.php:131 libraries/sql_query_form.lib.php:411 msgid "Bookmarked SQL query" From 1cd70e341c1af568f0a1dc406bd04a4eede92c5f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:37:42 +0200 Subject: [PATCH 0301/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 03d6a6f120..26d47a00e0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6028,7 +6028,7 @@ msgstr "Допълнително" #: libraries/schema/User_Schema.class.php:93 msgid "Create a page" -msgstr "Създай нова Страница" +msgstr "Създаване нова страница" #: libraries/schema/User_Schema.class.php:99 msgid "Page name" From 930d271e00ba265af7c50a203e04dd22aeda7256 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:39:20 +0200 Subject: [PATCH 0302/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 26d47a00e0..182fde617b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:37+0200\n" +"PO-Revision-Date: 2011-05-16 20:39+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7145,7 +7145,7 @@ msgstr "Позволява променяне на структурата на #: server_privileges.php:34 server_privileges.php:218 #: server_privileges.php:535 msgid "Allows altering and dropping stored routines." -msgstr "Позволяване на променяне и издриване на Съхранени Процедури." +msgstr "Позволяване промяна и изтриване на запазени процедури." #: server_privileges.php:35 server_privileges.php:194 #: server_privileges.php:528 From 94216255dd61369bb9b34ac1acaf1f8f4e944dd6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:39:57 +0200 Subject: [PATCH 0303/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 182fde617b..162f6d7a23 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7155,7 +7155,7 @@ msgstr "Позволява създаване на нови бази от дан #: server_privileges.php:36 server_privileges.php:217 #: server_privileges.php:534 msgid "Allows creating stored routines." -msgstr "Позволяване на създаването на Съхранени Процедури." +msgstr "Позволява създаване на запазени процедури." #: server_privileges.php:37 server_privileges.php:528 msgid "Allows creating new tables." From 15df3fcdd2609c6b80ebb86b3950808d3ee836f3 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:40:03 +0200 Subject: [PATCH 0304/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 162f6d7a23..4a52fb0ab4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:39+0200\n" +"PO-Revision-Date: 2011-05-16 20:40+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7145,7 +7145,7 @@ msgstr "Позволява променяне на структурата на #: server_privileges.php:34 server_privileges.php:218 #: server_privileges.php:535 msgid "Allows altering and dropping stored routines." -msgstr "Позволяване промяна и изтриване на запазени процедури." +msgstr "Позволява промяна и изтриване на запазени процедури." #: server_privileges.php:35 server_privileges.php:194 #: server_privileges.php:528 From 226fa40161430ffebbdd635d86e23d30b418344c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:40:29 +0200 Subject: [PATCH 0305/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 4a52fb0ab4..843270cb6f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7177,7 +7177,7 @@ msgstr "" #: server_privileges.php:213 server_privileges.php:540 #: server_privileges.php:544 msgid "Allows creating new views." -msgstr "Позволяване на създаването на нови Изгледи." +msgstr "Позволява създаване на изгледи." #: server_privileges.php:41 server_privileges.php:193 #: server_privileges.php:520 From 918101ac72c79518384314ff1bd1e26870af3252 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:40:49 +0200 Subject: [PATCH 0306/1652] Translation update done using Pootle. --- po/bg.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 843270cb6f..1ca174cc15 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7169,9 +7169,7 @@ msgstr "Позволява създаването на временни табл #: server_privileges.php:39 server_privileges.php:219 #: server_privileges.php:568 msgid "Allows creating, dropping and renaming user accounts." -msgstr "" -"Позволяване на създаването, изтриването и преименуването на потребителски " -"акаунти." +msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." #: server_privileges.php:40 server_privileges.php:209 #: server_privileges.php:213 server_privileges.php:540 From bb9543b03fb652cebff0bc02d20250db47a463b1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:41:31 +0200 Subject: [PATCH 0307/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 1ca174cc15..eca9af115f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:40+0200\n" +"PO-Revision-Date: 2011-05-16 20:41+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2319,7 +2319,7 @@ msgstr "" #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" -msgstr "Позволяване на вход към всеки MySQL сървър" +msgstr "Позволяване вход към всеки MySQL сървър" #: libraries/config/messages.inc.php:21 msgid "" From 8e0b8ad9356d948010d1b16a6f72efd6cb2cb841 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:41:54 +0200 Subject: [PATCH 0308/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index eca9af115f..2121c10419 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7199,7 +7199,7 @@ msgstr "" #: server_privileges.php:45 server_privileges.php:220 #: server_privileges.php:536 msgid "Allows executing stored routines." -msgstr "Позволяване на стартирането на Съхранени Процедури." +msgstr "Позволява стартиране на запазени процедури." #: server_privileges.php:46 server_privileges.php:199 #: server_privileges.php:523 From 5153597fe9e3b8b51b8a858eabfca7e9265d610a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:42:16 +0200 Subject: [PATCH 0309/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2121c10419..f5cd064109 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:41+0200\n" +"PO-Revision-Date: 2011-05-16 20:42+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7297,7 +7297,7 @@ msgstr "Дава достъп до пълния списък на базите #: server_privileges.php:62 server_privileges.php:214 #: server_privileges.php:216 server_privileges.php:533 msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Позволяване на изпълнението на SHOW CREATE VIEW заявки." +msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." #: server_privileges.php:63 server_privileges.php:197 #: server_privileges.php:560 From 90fe772db90a9be43051c2d9463779988d42cc65 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:44:13 +0200 Subject: [PATCH 0310/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f5cd064109..15205b0038 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:42+0200\n" +"PO-Revision-Date: 2011-05-16 20:44+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7145,7 +7145,7 @@ msgstr "Позволява променяне на структурата на #: server_privileges.php:34 server_privileges.php:218 #: server_privileges.php:535 msgid "Allows altering and dropping stored routines." -msgstr "Позволява промяна и изтриване на запазени процедури." +msgstr "Позволява промяна и изтриване на съхранени процедури." #: server_privileges.php:35 server_privileges.php:194 #: server_privileges.php:528 From c30d076abec6daff89786375e8b095131d5e834d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:44:17 +0200 Subject: [PATCH 0311/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 15205b0038..46dec1823d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7155,7 +7155,7 @@ msgstr "Позволява създаване на нови бази от дан #: server_privileges.php:36 server_privileges.php:217 #: server_privileges.php:534 msgid "Allows creating stored routines." -msgstr "Позволява създаване на запазени процедури." +msgstr "Позволява създаване на съхранени процедури." #: server_privileges.php:37 server_privileges.php:528 msgid "Allows creating new tables." From 3c5706f2d9137627731875c9adbcc7061d028ba9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:44:21 +0200 Subject: [PATCH 0312/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 46dec1823d..0224ccf3a9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7199,7 +7199,7 @@ msgstr "" #: server_privileges.php:45 server_privileges.php:220 #: server_privileges.php:536 msgid "Allows executing stored routines." -msgstr "Позволява стартиране на запазени процедури." +msgstr "Позволява стартиране на съхранени процедури." #: server_privileges.php:46 server_privileges.php:199 #: server_privileges.php:523 From 37271e655c6b9b4d60fbabdc8a61c9993e437dc6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:44:38 +0200 Subject: [PATCH 0313/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0224ccf3a9..4578ab2379 100644 --- a/po/bg.po +++ b/po/bg.po @@ -118,7 +118,7 @@ msgstr "" #: db_create.php:58 #, php-format msgid "Database %1$s has been created." -msgstr "Базата данни %1$s беше създадена." +msgstr "БД %1$s беше създадена." #: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " From 8feac70e1f52b2db3b652127a358a353fadc47ec Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:44:51 +0200 Subject: [PATCH 0314/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 4578ab2379..6f5f987b05 100644 --- a/po/bg.po +++ b/po/bg.po @@ -122,7 +122,7 @@ msgstr "БД %1$s беше създадена." #: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " -msgstr "Коментар към базата от данни: " +msgstr "Коментар към БД: " #: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213 #: libraries/tbl_properties.inc.php:725 tbl_operations.php:363 From 5f7ff697f503a80e8de000a82a8fb41901928a56 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:44:59 +0200 Subject: [PATCH 0315/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 6f5f987b05..716b47f6e1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -240,7 +240,7 @@ msgstr "Печат" #: db_export.php:30 msgid "View dump (schema) of database" -msgstr "Преглед на схема (дъмп) на база данни" +msgstr "Преглед на схема (дъмп) на БД" #: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48 #: export.php:371 navigation.php:303 From f280011d493b4ec8c98b66cda5212023c2ebde4e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:09 +0200 Subject: [PATCH 0316/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 716b47f6e1..014a2d2c13 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:44+0200\n" +"PO-Revision-Date: 2011-05-16 20:45+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -245,7 +245,7 @@ msgstr "Преглед на схема (дъмп) на БД" #: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48 #: export.php:371 navigation.php:303 msgid "No tables found in database." -msgstr "В базата от данни няма таблици." +msgstr "В БД няма таблици." #: db_export.php:44 db_search.php:340 server_export.php:26 msgid "Select All" From aea7dd1a27f6dc8611f5e9ce8e90c6fdf1d7af4c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:16 +0200 Subject: [PATCH 0317/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 014a2d2c13..790d2cb29f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -257,7 +257,7 @@ msgstr "Размаркиране всички" #: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" -msgstr "Името на базата от данни е празно!" +msgstr "Името на БД е празно!" #: db_operations.php:272 #, php-format From 8d611b7ea1eb5d53e2fda019ecef0bda9bd12248 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:22 +0200 Subject: [PATCH 0318/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 790d2cb29f..47db53dcd5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -262,7 +262,7 @@ msgstr "Името на БД е празно!" #: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" -msgstr "Базата данни %s беше преименувана на %s" +msgstr "БД %s беше преименувана на %s" #: db_operations.php:276 #, php-format From c631eedd7fcab208e711dfdc56ffa1f897c9f348 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:28 +0200 Subject: [PATCH 0319/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 47db53dcd5..68d0e8bfab 100644 --- a/po/bg.po +++ b/po/bg.po @@ -267,7 +267,7 @@ msgstr "БД %s беше преименувана на %s" #: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" -msgstr "Базата данни %s беше копирана като %s" +msgstr "БД %s беше копирана като %s" #: db_operations.php:404 msgid "Rename database to" From 859bd5b2850cb6733857aac1134b48dd24de9608 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:38 +0200 Subject: [PATCH 0320/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 68d0e8bfab..6daf923648 100644 --- a/po/bg.po +++ b/po/bg.po @@ -271,7 +271,7 @@ msgstr "БД %s беше копирана като %s" #: db_operations.php:404 msgid "Rename database to" -msgstr "Преименуване на базата от данни на" +msgstr "Преименуване БД на" #: db_operations.php:409 server_processlist.php:69 msgid "Command" From eabb5d689a511d60d977e3804ee3b5a342e5a0b5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:43 +0200 Subject: [PATCH 0321/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 6daf923648..0e96cc7b40 100644 --- a/po/bg.po +++ b/po/bg.po @@ -279,7 +279,7 @@ msgstr "Команда" #: db_operations.php:440 msgid "Remove database" -msgstr "Изтриване на база данни" +msgstr "Изтриване БД" #: db_operations.php:452 #, php-format From 1518482ec549990cb21b442fe123c25db921b7b9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:48 +0200 Subject: [PATCH 0322/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0e96cc7b40..2bdf9910f6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -284,7 +284,7 @@ msgstr "Изтриване БД" #: db_operations.php:452 #, php-format msgid "Database %s has been dropped." -msgstr "Базата данни %s беше изтрита." +msgstr "БД %s беше изтрита." #: db_operations.php:457 msgid "Drop the database (DROP)" From 66bba9ff854da0e9e7eb73256ea8b2b482e5a34d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:54 +0200 Subject: [PATCH 0323/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2bdf9910f6..72c81866ba 100644 --- a/po/bg.po +++ b/po/bg.po @@ -288,7 +288,7 @@ msgstr "БД %s беше изтрита." #: db_operations.php:457 msgid "Drop the database (DROP)" -msgstr "Изтриване на база данни (DROP)" +msgstr "Изтриване на БД (DROP)" #: db_operations.php:487 msgid "Copy database to" From d8edc0e621cb164539674295d7f4431b94eda67c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:45:59 +0200 Subject: [PATCH 0324/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 72c81866ba..6bd782f325 100644 --- a/po/bg.po +++ b/po/bg.po @@ -292,7 +292,7 @@ msgstr "Изтриване на БД (DROP)" #: db_operations.php:487 msgid "Copy database to" -msgstr "Копиране на базата от данни в" +msgstr "Копиране на БД в" #: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418 msgid "Structure only" From f39205e2917818f4b9826b6e527be80adf6de914 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:46:17 +0200 Subject: [PATCH 0325/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 6bd782f325..154155164f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:45+0200\n" +"PO-Revision-Date: 2011-05-16 20:46+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -328,7 +328,7 @@ msgstr "Добавяне на ограничение" #: db_operations.php:528 msgid "Switch to copied database" -msgstr "Прехвърляна към копираната база от данни" +msgstr "Прехвърляне към копираната БД" #: db_operations.php:552 libraries/Index.class.php:447 #: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 From cb6e4f2ebf14c8811e96c3e18d1ed44413f4726e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:46:33 +0200 Subject: [PATCH 0326/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 154155164f..f519a9c651 100644 --- a/po/bg.po +++ b/po/bg.po @@ -487,7 +487,7 @@ msgstr "Използвай таблицата" #: db_qbe.php:662 #, php-format msgid "SQL query on database %s:" -msgstr "SQL-заявка към базата от данни %s:" +msgstr "SQL заявка към БД %s:" #: db_qbe.php:956 libraries/common.lib.php:1188 msgid "Submit Query" From 60a46d449eb32cc41bc5ee2b63b022b36d3dbd9d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:46:39 +0200 Subject: [PATCH 0327/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index f519a9c651..6263763764 100644 --- a/po/bg.po +++ b/po/bg.po @@ -560,7 +560,7 @@ msgstr[1] "Общо: %s съвпадения" #: db_search.php:295 msgid "Search in database" -msgstr "Търсене в базата от данни" +msgstr "Търсене в БД" #: db_search.php:298 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" From a268a356f6082650e8f2de854764cca18e9a0df1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:46:45 +0200 Subject: [PATCH 0328/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 6263763764..dfa6eb7230 100644 --- a/po/bg.po +++ b/po/bg.po @@ -584,7 +584,7 @@ msgstr "В колона:" #: db_structure.php:59 msgid "No tables found in database" -msgstr "В базата данни няма таблици" +msgstr "В БД няма таблици" #: db_structure.php:277 tbl_operations.php:689 #, php-format From 38e26a6e24211eeb3dc938b2224fcaba4e918e46 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:46:49 +0200 Subject: [PATCH 0329/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index dfa6eb7230..3035d7ca94 100644 --- a/po/bg.po +++ b/po/bg.po @@ -736,7 +736,7 @@ msgstr "Следени таблици" #: server_synchronize.php:1194 server_synchronize.php:1198 #: tbl_tracking.php:642 test/theme.php:64 msgid "Database" -msgstr "База данни" +msgstr "БД" #: db_tracking.php:86 msgid "Last version" From 755f9e8168cb429202c4e6953414924528b23476 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:46:58 +0200 Subject: [PATCH 0330/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 3035d7ca94..4eed818bf2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -798,7 +798,7 @@ msgstr "Следене на таблица" #: db_tracking.php:229 msgid "Database Log" -msgstr "Дневник на база данни" +msgstr "Дневник БД" #: enum_editor.php:21 libraries/tbl_properties.inc.php:793 #, php-format From 86eefd00474bbf3c44a7ad177ddabb6ef29c74ff Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:47:05 +0200 Subject: [PATCH 0331/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 4eed818bf2..96f4fecb83 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:46+0200\n" +"PO-Revision-Date: 2011-05-16 20:47+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -953,7 +953,7 @@ msgstr "Наистина ли искате да изпълните " #: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 msgid "You are about to DESTROY a complete database!" -msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" +msgstr "Вие ще УНИЩОЖИТЕ цялата БД!" #: js/messages.php:32 #| msgid "You are about to DESTROY a complete database!" From 7c037ff9df3e66554e7aa6b70dd4135ca47b669b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:47:12 +0200 Subject: [PATCH 0332/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 96f4fecb83..1717b41e9e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1073,7 +1073,7 @@ msgstr "OK" #: js/messages.php:73 msgid "Renaming Databases" -msgstr "Преименуване на база данни" +msgstr "Преименуване БД" #: js/messages.php:74 msgid "Reload Database" From 469ac83bd4cee98bc86e4aac6931836f257a0eff Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:47:16 +0200 Subject: [PATCH 0333/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 1717b41e9e..d22e7a36b4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1077,7 +1077,7 @@ msgstr "Преименуване БД" #: js/messages.php:74 msgid "Reload Database" -msgstr "Презареждане на база данни" +msgstr "Презареждане БД" #: js/messages.php:75 msgid "Copying Database" From 9bf0e075436e322c97e241a172741868200e00d4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:47:20 +0200 Subject: [PATCH 0334/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d22e7a36b4..6290fc5891 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1081,7 +1081,7 @@ msgstr "Презареждане БД" #: js/messages.php:75 msgid "Copying Database" -msgstr "Копиране на база данни" +msgstr "Копиране БД" #: js/messages.php:76 msgid "Changing Charset" From a54defef0fe90944063fe727e8a149fdc6e88f21 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:47:25 +0200 Subject: [PATCH 0335/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 6290fc5891..a13c8b4154 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1605,7 +1605,7 @@ msgstr "Този MySQL сървър не поддържа хранилището #: libraries/Table.class.php:1017 msgid "Invalid database" -msgstr "Невалидна база от данни" +msgstr "Невалидна БД" #: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" From 0910a19deb2b9ed02a06bbaf01810902c11d9a38 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:47:49 +0200 Subject: [PATCH 0336/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a13c8b4154..9c800287dc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1846,7 +1846,7 @@ msgstr "Реплицирана" #: libraries/build_html_for_db.lib.php:150 #, php-format msgid "Check privileges for database "%s"." -msgstr "Провери привилегиите за база от данни "%s"." +msgstr "Проверка привилегии на БД "%s"." #: libraries/build_html_for_db.lib.php:153 msgid "Check Privileges" From 2122c041ba06fc5803108e228e431c6a034b53d1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:48:12 +0200 Subject: [PATCH 0337/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 9c800287dc..441e144579 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:47+0200\n" +"PO-Revision-Date: 2011-05-16 20:48+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2092,7 +2092,7 @@ msgstr "Край" #: libraries/common.lib.php:2447 #, php-format msgid "Jump to database "%s"." -msgstr "Скочи към база от данни "%s"." +msgstr "Прескочи до БД "%s"." #: libraries/common.lib.php:2466 #, php-format From c99ecb292c8afbd37eb744b00bd0cb4b22e54230 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:48:24 +0200 Subject: [PATCH 0338/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 441e144579..f289bef92c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2598,7 +2598,7 @@ msgstr "Excel версия" #: libraries/config/messages.inc.php:83 msgid "Database name template" -msgstr "Шаблон за име на база данни" +msgstr "Шаблон за име на БД" #: libraries/config/messages.inc.php:84 msgid "Server name template" From 5cdfa1d9b45eb51ec96c048e54e11548dc9476ba Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:48:32 +0200 Subject: [PATCH 0339/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index f289bef92c..93df439151 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2825,7 +2825,7 @@ msgstr "LaTeX" #: libraries/config/messages.inc.php:175 msgid "Databases display options" -msgstr "Опции за показване на база данни" +msgstr "Опции за показване на БД" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" From 9e76c6c5e938a4a77f47de44aec45ccd16c47677 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:48:39 +0200 Subject: [PATCH 0340/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 93df439151..0f4fc993a3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3712,7 +3712,7 @@ msgstr "" #: libraries/config/messages.inc.php:400 msgid "Database name" -msgstr "Име на базата данни" +msgstr "Име БД" #: libraries/config/messages.inc.php:401 msgid "Port on which MySQL server is listening, leave empty for default" From db16a3777ddc5e082fff545013d80dc610501055 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:48:49 +0200 Subject: [PATCH 0341/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0f4fc993a3..8406f7b5a3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4210,7 +4210,7 @@ msgstr "" #: libraries/config/setup.forms.php:287 #: libraries/config/user_preferences.forms.php:189 msgid "Database export options" -msgstr "Опции за експортиране на база от данни" +msgstr "Опции за експорт на БД" #: libraries/config/setup.forms.php:320 #: libraries/config/user_preferences.forms.php:222 From 51dd332111155112a366cc0518bd73d0aa057e41 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:00 +0200 Subject: [PATCH 0342/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 8406f7b5a3..d82d2dec52 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:48+0200\n" +"PO-Revision-Date: 2011-05-16 20:49+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -4397,7 +4397,7 @@ msgstr "" #: libraries/display_export.lib.php:89 #, php-format msgid "Exporting tables from \"%s\" database" -msgstr "Експортиране на таблици от база данни \"%s\"" +msgstr "Експорт на таблици от БД \"%s\"" #: libraries/display_export.lib.php:91 #, php-format From d5ca88c070f6a1dbc92a499bd001449042e5a8d5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:10 +0200 Subject: [PATCH 0343/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d82d2dec52..eac8b8a147 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4467,7 +4467,7 @@ msgstr "@SERVER@ ще стане името на сървъра" #: libraries/display_export.lib.php:231 msgid ", @DATABASE@ will become the database name" -msgstr ", @DATABASE@ ще стане името на базата от данни" +msgstr ", @DATABASE@ ще стане името на БД" #: libraries/display_export.lib.php:233 msgid ", @TABLE@ will become the table name" From 37a0caf461c7a48a112f0943e6edd8c33cbad213 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:16 +0200 Subject: [PATCH 0344/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index eac8b8a147..9ef1406a94 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4559,7 +4559,7 @@ msgstr "Импорт в текущия сървър" #: libraries/display_import.lib.php:131 #, php-format msgid "Importing into the database \"%s\"" -msgstr "Импорт в база данни \"%s\"" +msgstr "Импорт в БД \"%s\"" #: libraries/display_import.lib.php:133 #, php-format From 104a37dcd5f34a521f6562e916e4b19b4e4ac295 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:22 +0200 Subject: [PATCH 0345/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 9ef1406a94..e2a1661ee6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5994,7 +5994,7 @@ msgstr "Моля конфигурирайте координатите за та #: libraries/schema/Visio_Relation_Schema.class.php:502 #, php-format msgid "Schema of the %s database - Page %s" -msgstr "Схема на база данни %s - страница %s" +msgstr "Схема на БД %s - страница %s" #: libraries/schema/Export_Relation_Schema.class.php:174 msgid "This page does not contain any tables!" From 3a7dd60c7aae38e7704f835f22592014e2299431 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:28 +0200 Subject: [PATCH 0346/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index e2a1661ee6..9ea4ea0dbe 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6186,7 +6186,7 @@ msgstr "" #: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117 msgid "Target database" -msgstr "Целева база от данни" +msgstr "Целева БД" #: libraries/sql_query_form.lib.php:224 #, php-format From 0660d3a46d8e68c1bcdf88fa250670842ef74c25 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:37 +0200 Subject: [PATCH 0347/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 9ea4ea0dbe..bfed63982a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6196,7 +6196,7 @@ msgstr "Изпълняване на SQL заявка/заявки на сърв #: libraries/sql_query_form.lib.php:241 libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" -msgstr "Изпълнение на SQL заявка/заявки към база от данни %s" +msgstr "Изпълнение на SQL заявка/заявки към БД %s" #: libraries/sql_query_form.lib.php:297 navigation.php:276 #: setup/frames/index.inc.php:231 From c95a4c8e71d7c42f0610ae3f01172fe179116da5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:44 +0200 Subject: [PATCH 0348/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index bfed63982a..a461dc815c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6769,7 +6769,7 @@ msgstr "Създаване таблица" #: navigation.php:314 navigation.php:486 msgid "Please select a database" -msgstr "Моля изберете база от данни" +msgstr "Моля изберете БД" #: pmd_general.php:74 msgid "Show/Hide left menu" From d6a9aaec50cc42a9e476188db7381704fdf133b7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:49:56 +0200 Subject: [PATCH 0349/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a461dc815c..b736da3119 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7122,8 +7122,8 @@ msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -"Забележка: Разрешаването на статистика на базата от данни може да коства " -"много голям трафик между уеб сървъра и MySQL сървъра." +"Забележка: Разрешаването на статистика на БД може да коства много голям " +"трафик между уеб сървъра и MySQL сървъра." #: server_engines.php:47 msgid "Storage Engines" From 6bf8515e6b0fc05d095621c00f86f86aaad3678f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:50:01 +0200 Subject: [PATCH 0350/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b736da3119..f4c87957a3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:49+0200\n" +"PO-Revision-Date: 2011-05-16 20:50+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7131,7 +7131,7 @@ msgstr "Хранилища на данни" #: server_export.php:20 msgid "View dump (schema) of databases" -msgstr "Преглед на схемата (дъмп) на базата от данни" +msgstr "Преглед на схемата (дъмп) на БД" #: server_privileges.php:32 server_privileges.php:276 msgid "Includes all privileges except GRANT." From efb449cf178262764dcd8fd01f124d54039f8be2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:50:36 +0200 Subject: [PATCH 0351/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f4c87957a3..2ef33a839c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7247,8 +7247,8 @@ msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -"Ограничава броя на командите, които променят някоя таблица или база от " -"данни, които даден потребител може да стартира за час." +"Ограничава броя на командите, които променят някоя таблица или БД, които " +"даден потребител може да инициира за час." #: server_privileges.php:54 server_privileges.php:634 #: server_privileges.php:636 From 902246524f4c6c4cfe9d0420d8cc71f7d65be654 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:50:42 +0200 Subject: [PATCH 0352/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2ef33a839c..87e2f0f480 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7354,7 +7354,7 @@ msgstr "Глобални привилегии" #: server_privileges.php:579 server_privileges.php:1798 msgid "Database-specific privileges" -msgstr "Привилегии специфични за базата от данни" +msgstr "Привилегии специфични за БД" #: server_privileges.php:612 msgid "Resource limits" From 66fc8b1cc1fe6a37992f5aba5223196a49fdbad8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:50:48 +0200 Subject: [PATCH 0353/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 87e2f0f480..22ca97fbf9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7488,7 +7488,7 @@ msgstr "Привилегии специфични за колоната" #: server_privileges.php:2005 msgid "Add privileges on the following database" -msgstr "Добавяне на привилегии към следната база от данни" +msgstr "Добавяне на привилегии към следната БД" #: server_privileges.php:2023 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" From cfa190fb6b82fb2461cfd9c984381491395e6049 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:50:54 +0200 Subject: [PATCH 0354/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 22ca97fbf9..7121536e8a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7530,7 +7530,7 @@ msgstr "" #: server_privileges.php:2114 msgid "Database for user" -msgstr "База от данни за потребителя" +msgstr "БД за потребителя" #: server_privileges.php:2118 msgctxt "Create none database for user" From 05507a21de11ba6221b0dec08fb869e3fe5829ab Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:51:10 +0200 Subject: [PATCH 0355/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7121536e8a..781562c3d3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:50+0200\n" +"PO-Revision-Date: 2011-05-16 20:51+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7539,7 +7539,7 @@ msgstr "Няма" #: server_privileges.php:2119 msgid "Create database with same name and grant all privileges" -msgstr "Създаване на база от данни със същото име и даване на пълни привилегии" +msgstr "Създаване на БД със същото име и даване на пълни привилегии" #: server_privileges.php:2120 msgid "Grant all privileges on wildcard name (username\\_%)" From 19d71d4dc3cc0d15ac9d4aaae5cb526dd3a8ba7b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:51:17 +0200 Subject: [PATCH 0356/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 781562c3d3..5fed329854 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7548,7 +7548,7 @@ msgstr "" #: server_privileges.php:2123 #, php-format msgid "Grant all privileges on database "%s"" -msgstr "Даване на пълни привилегии над база данни "%s"" +msgstr "Даване на пълни привилегии над БД "%s"" #: server_privileges.php:2146 #, php-format From 8b22703340fadaa19b9695eee37caa21843bb27b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:51:22 +0200 Subject: [PATCH 0357/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 5fed329854..ac65f8c334 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7561,7 +7561,7 @@ msgstr "глобален" #: server_privileges.php:2256 msgid "database-specific" -msgstr "специфични за базата от данни" +msgstr "специфични за БД" #: server_privileges.php:2258 msgid "wildcard" From 07f5cfa295eb57ba4e24941517a46178a0dbd5f4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:51:26 +0200 Subject: [PATCH 0358/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ac65f8c334..6bab1a44fd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7647,7 +7647,7 @@ msgstr "" #: server_replication.php:223 msgid "Please select databases:" -msgstr "Изберете база данни:" +msgstr "Изберете БД:" #: server_replication.php:226 msgid "" From 3cff3b49f7a4c57ca4a63c7b118536c3eda7de53 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:51:42 +0200 Subject: [PATCH 0359/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 6bab1a44fd..61f1f42b92 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9129,7 +9129,7 @@ msgstr "(еднократно)" #: tbl_operations.php:294 msgid "Move table to (database.table):" -msgstr "Преместване на таблица към (база от данни.таблица):" +msgstr "Преместване на таблица към (БД.таблица):" #: tbl_operations.php:352 msgid "Table options" From 8c0360ef68431b8583cc3bd85c3056510b87b378 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:51:47 +0200 Subject: [PATCH 0360/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 61f1f42b92..f7f970dab2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9141,7 +9141,7 @@ msgstr "Преименуване на таблицата на" #: tbl_operations.php:532 msgid "Copy table to (database.table):" -msgstr "Копиране на таблица (база от данни.таблица):" +msgstr "Копиране на таблица (БД.таблица):" #: tbl_operations.php:579 msgid "Switch to copied table" From 33af58abf4226565eb9ace8cbda179853b8f8234 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:55:28 +0200 Subject: [PATCH 0361/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f7f970dab2..f49a3b5243 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:51+0200\n" +"PO-Revision-Date: 2011-05-16 20:55+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -705,7 +705,7 @@ msgstr "Анализиране на таблицата" #: db_structure.php:521 msgid "Add prefix to table" -msgstr "" +msgstr "Добавяне представка към таблица" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #| msgid "Replace table data with file" From 43a3bdb2b15b5a85c713585b084c8df0802372ea Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:56:06 +0200 Subject: [PATCH 0362/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f49a3b5243..656bb5ef8f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:55+0200\n" +"PO-Revision-Date: 2011-05-16 20:56+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -823,7 +823,7 @@ msgstr "" #: export.php:73 msgid "Selected export type has to be saved in file!" -msgstr "" +msgstr "Избраният тип експорт трябва да бъде запазен като файл!" #: export.php:164 export.php:189 export.php:671 #, php-format From d2ab376bbff5cfa6282bfdba608a95e98f35f9b8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:56:57 +0200 Subject: [PATCH 0363/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 656bb5ef8f..100e0aa805 100644 --- a/po/bg.po +++ b/po/bg.po @@ -886,7 +886,7 @@ msgstr "" #: import.php:396 msgid "The bookmark has been deleted." -msgstr "Показалецът беше изтрит." +msgstr "Белязката беше изтриа." #: import.php:400 msgid "Showing bookmark" From f4aede85a3bed04a6fc80b6f6523beb4d45b2574 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:57:00 +0200 Subject: [PATCH 0364/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 100e0aa805..aa7cad24fc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:56+0200\n" +"PO-Revision-Date: 2011-05-16 20:57+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" From c67c48e20ec1e533452c900944c3e655cc5b588c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:57:13 +0200 Subject: [PATCH 0365/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index aa7cad24fc..7a12fc45f3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -895,7 +895,7 @@ msgstr "Показване на белязка" #: import.php:402 sql.php:884 #, php-format msgid "Bookmark %s created" -msgstr "Показалец %s беше създаден успешно" +msgstr "Белязка %s беше създадена" #: import.php:408 import.php:414 #, php-format From ded02343e3765f5b326385a0e4a223b45bb496b2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:57:36 +0200 Subject: [PATCH 0366/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 7a12fc45f3..a1435c1b0e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3557,7 +3557,7 @@ msgstr "" #: libraries/config/messages.inc.php:366 msgid "Bookmark table" -msgstr "" +msgstr "Таблица за белязки" #: libraries/config/messages.inc.php:367 msgid "" From 39709d376e4738bd0bd827082b690ac2144799f2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:58:36 +0200 Subject: [PATCH 0367/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a1435c1b0e..29b19a7e04 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:57+0200\n" +"PO-Revision-Date: 2011-05-16 20:58+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -5840,7 +5840,7 @@ msgstr "" #: libraries/relation.lib.php:131 libraries/sql_query_form.lib.php:411 msgid "Bookmarked SQL query" -msgstr "Запазване на SQL заявка" +msgstr "Отбелязана SQL заявка" #: libraries/relation.lib.php:135 querywindow.php:98 querywindow.php:205 msgid "SQL history" From 343a8f5b114d576c1fe47f704b47d1754ba78f04 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:58:51 +0200 Subject: [PATCH 0368/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 29b19a7e04..0b9e51dfdd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6210,7 +6210,7 @@ msgstr "Колони" #: libraries/sql_query_form.lib.php:337 sql.php:923 sql.php:924 sql.php:941 msgid "Bookmark this SQL query" -msgstr "Запази тази SQL заявка" +msgstr "Отбелязване SQL заявката" #: libraries/sql_query_form.lib.php:344 sql.php:935 msgid "Let every user access this bookmark" From a513c8c0ec2072b6b0859ef428d91ec6866dc50c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 20:59:20 +0200 Subject: [PATCH 0369/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0b9e51dfdd..7ce504dbd4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:58+0200\n" +"PO-Revision-Date: 2011-05-16 20:59+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6214,7 +6214,7 @@ msgstr "Отбелязване SQL заявката" #: libraries/sql_query_form.lib.php:344 sql.php:935 msgid "Let every user access this bookmark" -msgstr "Нека всеки потребител има достъп до този показалец" +msgstr "Всеки потребител да има достъп до тази белязка" #: libraries/sql_query_form.lib.php:350 msgid "Replace existing bookmark of same name" From 83ab160266a539bc358085d09c4e2ff59380af49 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:00:55 +0200 Subject: [PATCH 0370/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7ce504dbd4..2904776a73 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 20:59+0200\n" +"PO-Revision-Date: 2011-05-16 21:00+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6218,7 +6218,7 @@ msgstr "Всеки потребител да има достъп до тази #: libraries/sql_query_form.lib.php:350 msgid "Replace existing bookmark of same name" -msgstr "Препокриване не съществуващия показалец със същото име" +msgstr "Замяна белязката със същото име" #: libraries/sql_query_form.lib.php:366 msgid "Do not overwrite this query from outside the window" From eb4ad58feb2a7b3bfe4198a71284ecc98e2397df Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:03:33 +0200 Subject: [PATCH 0371/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2904776a73..694ab742b2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:00+0200\n" +"PO-Revision-Date: 2011-05-16 21:03+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1624,7 +1624,7 @@ msgstr "Таблица %s беше преименувана на %s" #: libraries/Theme.class.php:160 #, php-format msgid "No valid image path for theme %s found!" -msgstr "Не е открит валиден път на тема %s!" +msgstr "Не открито изображение към тема %s!" #: libraries/Theme.class.php:380 msgid "No preview available." From b42298d141362e062db314c3b0fe14807e3c6cd8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:04:08 +0200 Subject: [PATCH 0372/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 694ab742b2..d6d678804d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:03+0200\n" +"PO-Revision-Date: 2011-05-16 21:04+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1628,7 +1628,7 @@ msgstr "Не открито изображение към тема %s!" #: libraries/Theme.class.php:380 msgid "No preview available." -msgstr "" +msgstr "Прегледът не е достъпен." #: libraries/Theme.class.php:383 msgid "take it" From 657fb8b77da57b60cb29fed47e01ea19583baba3 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:04:49 +0200 Subject: [PATCH 0373/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d6d678804d..e688f5fe08 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1647,7 +1647,7 @@ msgstr "Тема %s не е намерена!" #: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" -msgstr "Не е открит пътя на тема %s!" +msgstr "Не е открит път към тема %s!" #: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 From 91f5388f2889be6176df9a090dd0594593e760d2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:05:04 +0200 Subject: [PATCH 0374/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index e688f5fe08..ee1f49c065 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:04+0200\n" +"PO-Revision-Date: 2011-05-16 21:05+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" From be6bc2704b03d3506cde3f7305ecf411cd9727df Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:07:00 +0200 Subject: [PATCH 0375/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ee1f49c065..f22dfb8a24 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:05+0200\n" +"PO-Revision-Date: 2011-05-16 21:07+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1736,7 +1736,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:659 #: libraries/auth/signon.auth.lib.php:216 msgid "Cannot log in to the MySQL server" -msgstr "Не мога да се логна към MySQL сървъра" +msgstr "Невъзможен вход в MySQL сървъра" #: libraries/auth/http.auth.lib.php:69 msgid "Wrong username/password. Access denied." From 4ac64b524a1109048ae5a9e76a1460cfee1a41fd Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:08:12 +0200 Subject: [PATCH 0376/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f22dfb8a24..5244e50546 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:07+0200\n" +"PO-Revision-Date: 2011-05-16 21:08+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1750,7 +1750,7 @@ msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "Хардуерното удостоверяване провалено" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" From d710d9f4052d3439cd7a44cdfd89705319b6cd6d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:08:54 +0200 Subject: [PATCH 0377/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 5244e50546..ceafff66c5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1795,7 +1795,7 @@ msgstr "Изтегляне файл" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Файлът %s не може да бъде отворен" #: libraries/bookmark.lib.php:83 msgid "shared" From 89f01fd777b3c4a506108e06a7d2819f9f8897d2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:09:10 +0200 Subject: [PATCH 0378/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ceafff66c5..92affe2bdc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:08+0200\n" +"PO-Revision-Date: 2011-05-16 21:09+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1833,7 +1833,7 @@ msgstr "Загубено място" #: libraries/build_html_for_db.lib.php:93 msgid "Jump to database" -msgstr "" +msgstr "Прескачане до БД" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" From d7cb4308a3c32d9c608d556a616f5d46bd6c225e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:09:56 +0200 Subject: [PATCH 0379/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 92affe2bdc..492ad97a77 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1866,7 +1866,7 @@ msgstr "Резулат oт заявка" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "" +msgstr "Няма намерени данни за диаграмата." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." From 3f49e3bbe59a76a2c47ed1c65c62ae46ec2819c7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:10:58 +0200 Subject: [PATCH 0380/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 492ad97a77..3f643b1fb3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:09+0200\n" +"PO-Revision-Date: 2011-05-16 21:10+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1870,7 +1870,7 @@ msgstr "Няма намерени данни за диаграмата." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "" +msgstr "Разширението GD е необходимо за диаграмите." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." From 90b36fb41486980fc77f09f8bc6a358f9928e7c1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:13:12 +0200 Subject: [PATCH 0381/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 3f643b1fb3..8209b5238f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:10+0200\n" +"PO-Revision-Date: 2011-05-16 21:13+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -3629,7 +3629,7 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "What PHP extension to use; you should use mysqli if supported" -msgstr "" +msgstr "Кое PHP разширение да бъде използвано; ползвайте mysqli ако е налично" #: libraries/config/messages.inc.php:383 msgid "PHP extension to use" From 6f6da81cdf956736445d9cd8da9e34f619a51ccf Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:13:57 +0200 Subject: [PATCH 0382/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 8209b5238f..6fd241b36f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3633,7 +3633,7 @@ msgstr "Кое PHP разширение да бъде използвано; по #: libraries/config/messages.inc.php:383 msgid "PHP extension to use" -msgstr "" +msgstr "Използвано PHP разширение" #: libraries/config/messages.inc.php:384 msgid "Hide databases matching regular expression (PCRE)" From 035b35d5476753186c06713311ea7d77e25b8864 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:14:24 +0200 Subject: [PATCH 0383/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 6fd241b36f..9f2bef8c17 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:13+0200\n" +"PO-Revision-Date: 2011-05-16 21:14+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6639,7 +6639,7 @@ msgstr "Версия на клиента за MySQL" #: main.php:189 msgid "PHP extension" -msgstr "" +msgstr "PHP разшрение" #: main.php:195 msgid "Show PHP information" From de218b1ec9f47809b552e7724cdb6f513132a661 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:15:08 +0200 Subject: [PATCH 0384/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 9f2bef8c17..2beaca35b4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:14+0200\n" +"PO-Revision-Date: 2011-05-16 21:15+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2250,7 +2250,7 @@ msgstr "" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" изисква разширението %s" #: libraries/config/FormDisplay.class.php:755 #, php-format From 5200a5f9064271ea95257d3526678a04ff86f33d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:15:25 +0200 Subject: [PATCH 0385/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2beaca35b4..ff7102f98c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2268,7 +2268,7 @@ msgstr "" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" -msgstr "" +msgstr "Разширението SOAP не е намерено" #: libraries/config/FormDisplay.class.php:781 #, php-format From ff0c330e0889931ef11a6a1b8a75549a26c0cfbd Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:16:35 +0200 Subject: [PATCH 0386/1652] Translation update done using Pootle. --- po/bg.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/bg.po b/po/bg.po index ff7102f98c..f424c15a59 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:15+0200\n" +"PO-Revision-Date: 2011-05-16 21:16+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6313,9 +6313,9 @@ 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 валидатора не може да бъде инициализиран. Моля проверете дали сте " -"инсталирали необходимите PHP разширения, така както е описано в %" -"sдокументацията%s." +"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" +"s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" From f1734350637001e4fcc0bff8531a32720a43bf89 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:18:53 +0200 Subject: [PATCH 0387/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f424c15a59..0c13d5f9c2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:16+0200\n" +"PO-Revision-Date: 2011-05-16 21:18+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -967,7 +967,7 @@ msgstr "Вие ще ИЗПРАЗНИТЕ цяла таблица!" #: js/messages.php:34 msgid "Dropping Event" -msgstr "" +msgstr "Събитие на изтриване" #: js/messages.php:35 msgid "Dropping Procedure" From 76c69163857bfc73f52b4aa08021912dfba43b50 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:19:48 +0200 Subject: [PATCH 0388/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0c13d5f9c2..14ae037797 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:18+0200\n" +"PO-Revision-Date: 2011-05-16 21:19+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1175,7 +1175,7 @@ msgstr "" #: js/messages.php:114 msgid "Add an option for column " -msgstr "" +msgstr "Добавяне опция към колона " #: js/messages.php:117 msgid "Generate password" From 586e3f901c61c6e416300ef2ec9815826c44a1ac Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:20:51 +0200 Subject: [PATCH 0389/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 14ae037797..24914d6a87 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:19+0200\n" +"PO-Revision-Date: 2011-05-16 21:20+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1464,7 +1464,7 @@ msgstr "Размер шрифт" #: libraries/File.class.php:310 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini." #: libraries/File.class.php:313 msgid "" From 881c4693e3dc519fd6c7a99b216ab8fced7578aa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:21:45 +0200 Subject: [PATCH 0390/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 24914d6a87..e93a8a7967 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:20+0200\n" +"PO-Revision-Date: 2011-05-16 21:21+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1486,7 +1486,7 @@ msgstr "" #: libraries/File.class.php:325 msgid "File upload stopped by extension." -msgstr "" +msgstr "Качването на файлът беше спряно от разширение." #: libraries/File.class.php:328 msgid "Unknown error in file upload." From 60618d489b7b1734f79123940a7e2e0874131a41 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:23:14 +0200 Subject: [PATCH 0391/1652] Translation update done using Pootle. --- po/bg.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index e93a8a7967..a2cfa0faa8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:21+0200\n" +"PO-Revision-Date: 2011-05-16 21:23+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1548,6 +1548,8 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" +"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " +"бъде премахнат." #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174 #: libraries/server_links.inc.php:42 server_databases.php:100 From 999008a57f8a3f5e8d092c11a31ef8dd94a705b9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:24:12 +0200 Subject: [PATCH 0392/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a2cfa0faa8..f5543fd6da 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:23+0200\n" +"PO-Revision-Date: 2011-05-16 21:24+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1726,7 +1726,7 @@ msgstr "Оттук нататък са необходими бисквитки." #: libraries/auth/signon.auth.lib.php:206 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -msgstr "" +msgstr "Входът без парола е забранен от конфигурацията (вж. AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:647 #: libraries/auth/signon.auth.lib.php:210 From a574a086e51c4706be33e7e80d91aed0b4f19702 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:25:05 +0200 Subject: [PATCH 0393/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f5543fd6da..12efee27b4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:24+0200\n" +"PO-Revision-Date: 2011-05-16 21:25+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1732,7 +1732,7 @@ msgstr "Входът без парола е забранен от конфигу #: libraries/auth/signon.auth.lib.php:210 #, php-format msgid "No activity within %s seconds; please log in again" -msgstr "" +msgstr "Няма активност през последните %s секунди; моля влезте отново" #: libraries/auth/cookie.auth.lib.php:657 #: libraries/auth/cookie.auth.lib.php:659 From 351bc8d019db6a5797a5f60630014d937c61ada1 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:26:38 +0200 Subject: [PATCH 0394/1652] Translation update done using Pootle. --- po/sk.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 030912ec8c..2f4e502422 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 15:29+0200\n" +"PO-Revision-Date: 2011-05-16 21:26+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -533,13 +533,13 @@ msgid "Search results for \"%s\" %s:" msgstr "Prehľadať výsledky na \"%s\" %s:" #: db_search.php:247 -#, fuzzy, php-format +#, php-format #| msgid "%s match(es) inside table %s" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "%s výskyt(ov)v tabuľke %s" -msgstr[1] "%s výskyt(ov)v tabuľke %s" -msgstr[2] "%s výskyt(ov)v tabuľke %s" +msgstr[0] "%s výskyt v tabuľke %s" +msgstr[1] "%s výskyty v tabuľke %s" +msgstr[2] "%s výskytov v tabuľke %s" #: db_search.php:254 libraries/common.lib.php:2830 #: libraries/common.lib.php:3012 libraries/common.lib.php:3013 From 98fa8720e60205ebcae8a439a632ba642c68626c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:27:02 +0200 Subject: [PATCH 0395/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 12efee27b4..2f79bebd62 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:25+0200\n" +"PO-Revision-Date: 2011-05-16 21:27+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1910,7 +1910,7 @@ msgstr "" #: libraries/common.inc.php:622 #, php-format msgid "Invalid server index: %s" -msgstr "" +msgstr "Невалиден индекс на сървър: %s" #: libraries/common.inc.php:629 #, php-format From 0155532e8fa7034febe4fc79ad3e3582d3789131 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:27:17 +0200 Subject: [PATCH 0396/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2f4e502422..6f7360c9fb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:26+0200\n" +"PO-Revision-Date: 2011-05-16 21:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -724,10 +724,9 @@ msgid "Analyze table" msgstr "Analyzovať tabuľku" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "Prejsť do tabuľky" +msgstr "Pridať predponu k tabuľke" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From 3f9986b4905da16dd1d8658ff1fc194e1cffba39 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:27:38 +0200 Subject: [PATCH 0397/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6f7360c9fb..e7f1af7769 100644 --- a/po/sk.po +++ b/po/sk.po @@ -729,10 +729,9 @@ msgid "Add prefix to table" msgstr "Pridať predponu k tabuľke" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Nahradiť dáta v tabuľke súborom" +msgstr "Nahradiť predponu tabuľky" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From c4730f5ea8a8675dfddd7c2786400f8dc4fb2790 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:28:45 +0200 Subject: [PATCH 0398/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2f79bebd62..863bfea52d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:27+0200\n" +"PO-Revision-Date: 2011-05-16 21:28+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1915,7 +1915,7 @@ msgstr "Невалиден индекс на сървър: %s" #: libraries/common.inc.php:629 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." -msgstr "" +msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." #: libraries/common.inc.php:638 libraries/config/messages.inc.php:485 #: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174 From 9040a49e2ff52e3c5e7549e06a5e150749e7af6c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Mon, 16 May 2011 21:29:19 +0200 Subject: [PATCH 0399/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 863bfea52d..22127c12de 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:28+0200\n" +"PO-Revision-Date: 2011-05-16 21:29+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1925,7 +1925,7 @@ msgstr "Сървър" #: libraries/common.inc.php:821 msgid "Invalid authentication method set in configuration:" -msgstr "" +msgstr "Невалиден метод за удостоверяване в конфогурацията:" #: libraries/common.inc.php:924 #, php-format From 82bd418ded385e0c941b4e053f7492afb08d25f1 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:32:58 +0200 Subject: [PATCH 0400/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index e7f1af7769..071b8102fc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:27+0200\n" +"PO-Revision-Date: 2011-05-16 21:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -734,10 +734,9 @@ msgid "Replace table prefix" msgstr "Nahradiť predponu tabuľky" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Nahradiť dáta v tabuľke súborom" +msgstr "Skopírovať tabuľku s predponou" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From 23c08dc1e8a45f64555f0c13966ea36bbf0cbc6f Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:33:39 +0200 Subject: [PATCH 0401/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 071b8102fc..02b1dc4593 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:32+0200\n" +"PO-Revision-Date: 2011-05-16 21:33+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -984,10 +984,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZRUŠIŤ celú databázu!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Chystáte sa ZRUŠIŤ celú databázu!" +msgstr "Chystáte sa ZRUŠIŤ celú tabuľku!" #: js/messages.php:33 #, fuzzy From ecb7aa3cc8c7576295008147ff888677297fb25d Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:35:17 +0200 Subject: [PATCH 0402/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 02b1dc4593..73f91b7791 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:33+0200\n" +"PO-Revision-Date: 2011-05-16 21:35+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -989,10 +989,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "Chystáte sa ZRUŠIŤ celú tabuľku!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Chystáte sa ZRUŠIŤ celú databázu!" +msgstr "Chystáte sa VYPRÁZDNIŤ celú tabuľku!" #: js/messages.php:34 msgid "Dropping Event" From 060b545caf2e278645edbd563916b5f169218da4 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:35:41 +0200 Subject: [PATCH 0403/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 73f91b7791..73462e22c5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1136,9 +1136,8 @@ msgid "Searching" msgstr "Vyhľadávam" #: js/messages.php:84 -#, fuzzy msgid "Hide search results" -msgstr "SQL dopyt" +msgstr "Skryť výsledky vyhľadávania" #: js/messages.php:85 #, fuzzy From 42c3f9fd3f63b2f17cd3739403cfc2508b0a0bab Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:35:59 +0200 Subject: [PATCH 0404/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 73462e22c5..ae7dd1798e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1140,9 +1140,8 @@ msgid "Hide search results" msgstr "Skryť výsledky vyhľadávania" #: js/messages.php:85 -#, fuzzy msgid "Show search results" -msgstr "SQL dopyt" +msgstr "Zobraziť výsledky vyhľadávania" #: js/messages.php:90 msgid "" From cc3d860dc3487d7277ee5d0d3712ff5e74ce1761 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:36:56 +0200 Subject: [PATCH 0405/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ae7dd1798e..bdbda443ac 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:35+0200\n" +"PO-Revision-Date: 2011-05-16 21:36+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1146,7 +1146,7 @@ msgstr "Zobraziť výsledky vyhľadávania" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" #: js/messages.php:93 msgid "Hide query box" From d0ce8d707ec52aeaf7d0104ef5e79c585eea935e Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:37:56 +0200 Subject: [PATCH 0406/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index bdbda443ac..6ef5df767a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:36+0200\n" +"PO-Revision-Date: 2011-05-16 21:37+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1157,10 +1157,9 @@ msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" #: js/messages.php:95 -#, fuzzy #| msgid "Engines" msgid "Inline Edit" -msgstr "Systémy" +msgstr "Tu upraviť" #: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 From fa08a11949581964966f09bebd7aea2a2a8bacc0 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:39:48 +0200 Subject: [PATCH 0407/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 6ef5df767a..898df57035 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:37+0200\n" +"PO-Revision-Date: 2011-05-16 21:39+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1209,6 +1209,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " +"Chcete pokračovať?" #: js/messages.php:114 msgid "Add an option for column " From 195f62b12e717d390ed55e55e9bfc5a190730965 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:40:09 +0200 Subject: [PATCH 0408/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 898df57035..a5fd92cca0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:39+0200\n" +"PO-Revision-Date: 2011-05-16 21:40+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1250,10 +1250,9 @@ msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" #: js/messages.php:128 -#, fuzzy #| msgid "Go to database" msgid "up to date" -msgstr "Prejsť do databázy" +msgstr "aktuálne" #. l10n: Display text for calendar close link #: js/messages.php:146 From f55dba22b488fec5fb3425ea1190d0424209ff82 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:41:21 +0200 Subject: [PATCH 0409/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a5fd92cca0..31da1d0e93 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:40+0200\n" +"PO-Revision-Date: 2011-05-16 21:41+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1533,6 +1533,8 @@ msgstr "Veľkosť písma" #: libraries/File.class.php:310 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize " +"v php.ini." #: libraries/File.class.php:313 msgid "" From 1758e0899330339da2e0eddf2e2c88542e299b2d Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:42:28 +0200 Subject: [PATCH 0410/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 31da1d0e93..92aa41024c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:41+0200\n" +"PO-Revision-Date: 2011-05-16 21:42+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1541,6 +1541,8 @@ msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá " +"bola nastavená v HTML formulári." #: libraries/File.class.php:316 msgid "The uploaded file was only partially uploaded." From 6a6ac43009e30c2e72b1da71f8ec6dcc8d357517 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:43:07 +0200 Subject: [PATCH 0411/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 92aa41024c..b1ef9ea934 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:42+0200\n" +"PO-Revision-Date: 2011-05-16 21:43+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1546,7 +1546,7 @@ msgstr "" #: libraries/File.class.php:316 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Súbor bol nahraný len čiastočne." #: libraries/File.class.php:319 msgid "Missing a temporary folder." From 2e733f542b7bd84a8540781f582988567cbd86c8 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:43:33 +0200 Subject: [PATCH 0412/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b1ef9ea934..4a9e8255fa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1550,7 +1550,7 @@ msgstr "Súbor bol nahraný len čiastočne." #: libraries/File.class.php:319 msgid "Missing a temporary folder." -msgstr "" +msgstr "Chýba adresár pre dočasné súbory." #: libraries/File.class.php:322 msgid "Failed to write file to disk." From 846d521c57bdec692ec7afaedf7e20e6156dedb2 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:43:53 +0200 Subject: [PATCH 0413/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4a9e8255fa..0f33d7874a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1554,7 +1554,7 @@ msgstr "Chýba adresár pre dočasné súbory." #: libraries/File.class.php:322 msgid "Failed to write file to disk." -msgstr "" +msgstr "Chyba pri zápise súboru na disk." #: libraries/File.class.php:325 msgid "File upload stopped by extension." From 1e35b3f8a35b29071723b7140e0243df19b8349a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:44:38 +0200 Subject: [PATCH 0414/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0f33d7874a..7d3a5f9776 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:43+0200\n" +"PO-Revision-Date: 2011-05-16 21:44+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1558,7 +1558,7 @@ msgstr "Chyba pri zápise súboru na disk." #: libraries/File.class.php:325 msgid "File upload stopped by extension." -msgstr "" +msgstr "Nahrávanie súboru bolo zastavené rozšírením." #: libraries/File.class.php:328 msgid "Unknown error in file upload." From 085dfb40d9347a402ee115101da338f1a09dac7a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:45:05 +0200 Subject: [PATCH 0415/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7d3a5f9776..7cfc8f68ec 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:44+0200\n" +"PO-Revision-Date: 2011-05-16 21:45+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1562,7 +1562,7 @@ msgstr "Nahrávanie súboru bolo zastavené rozšírením." #: libraries/File.class.php:328 msgid "Unknown error in file upload." -msgstr "" +msgstr "Neznáma chyba pri nahrávaní súboru." #: libraries/File.class.php:559 msgid "" From 2f88cf76382f833fabf75ec991858ef77e8b02a9 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:45:18 +0200 Subject: [PATCH 0416/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7cfc8f68ec..dbffb5bc63 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1587,7 +1587,7 @@ msgstr "Unikátny" #: libraries/Index.class.php:444 tbl_tracking.php:316 msgid "Packed" -msgstr "" +msgstr "Zabalené" #: libraries/Index.class.php:446 tbl_tracking.php:318 msgid "Cardinality" From a9321ae9a1a258b9f2afb5a771f2469ac258be8b Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:46:10 +0200 Subject: [PATCH 0417/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index dbffb5bc63..55bcb02b35 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:45+0200\n" +"PO-Revision-Date: 2011-05-16 21:46+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1620,6 +1620,8 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" +"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " +"odstránený." #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174 #: libraries/server_links.inc.php:42 server_databases.php:100 From 1f4f445fb0587c83fe36c5f51b9475f76eb0c7e6 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:47:52 +0200 Subject: [PATCH 0418/1652] Translation update done using Pootle. --- po/sk.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index 55bcb02b35..ccad22ac0d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:46+0200\n" +"PO-Revision-Date: 2011-05-16 21:47+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1637,12 +1637,13 @@ msgid "Error" msgstr "Chyba" #: libraries/Message.class.php:260 -#, fuzzy, php-format +#, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "%1$d riadok/riadkov ovplyvnených." -msgstr[1] "%1$d riadok/riadkov ovplyvnených." +msgstr[0] "Ovplyvnený bol %1$d riadok." +msgstr[1] "Ovplyvnené boli %1$d riadky." +msgstr[2] "Ovplyvnených bolo %1$d riadkov." #: libraries/Message.class.php:279 #, fuzzy, php-format From 3784f977f3f17b098db36e03809df2db9dabd3ff Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:48:51 +0200 Subject: [PATCH 0419/1652] Translation update done using Pootle. --- po/sk.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index ccad22ac0d..b783dd4c5c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:47+0200\n" +"PO-Revision-Date: 2011-05-16 21:48+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1646,12 +1646,13 @@ msgstr[1] "Ovplyvnené boli %1$d riadky." msgstr[2] "Ovplyvnených bolo %1$d riadkov." #: libraries/Message.class.php:279 -#, fuzzy, php-format +#, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d riadok/riadkov zmazaných." -msgstr[1] "%1$d riadok/riadkov zmazaných." +msgstr[0] "Bol zmazaný %1$d riadok." +msgstr[1] "Boli zmazané %1$d riadky." +msgstr[2] "Bolo zmazaných %1$d riadkov." #: libraries/Message.class.php:298 #, fuzzy, php-format From d25d9d5792055dc600d885802ee04c9f1b36bc77 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:49:45 +0200 Subject: [PATCH 0420/1652] Translation update done using Pootle. --- po/sk.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index b783dd4c5c..05211481e8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:48+0200\n" +"PO-Revision-Date: 2011-05-16 21:49+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1655,12 +1655,13 @@ msgstr[1] "Boli zmazané %1$d riadky." msgstr[2] "Bolo zmazaných %1$d riadkov." #: libraries/Message.class.php:298 -#, fuzzy, php-format +#, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d riadok/riadkov vložených." -msgstr[1] "%1$d riadok/riadkov vložených." +msgstr[0] "Bol vložený %1$d riadok." +msgstr[1] "Boli vložené %1$d riadky." +msgstr[2] "Bolo vložených %1$d riadkov." #: libraries/StorageEngine.class.php:194 msgid "" From 63ad2b10aea9da643208c520b9effa8f5d9289ea Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:50:25 +0200 Subject: [PATCH 0421/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 05211481e8..66a46f537a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:49+0200\n" +"PO-Revision-Date: 2011-05-16 21:50+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1828,7 +1828,7 @@ msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý." #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Súbor %s neobsahuje ID kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 From 5794c3e260f1102190e60d56e42d4652138cc653 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:51:22 +0200 Subject: [PATCH 0422/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 66a46f537a..aff5cb690c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:50+0200\n" +"PO-Revision-Date: 2011-05-16 21:51+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1833,7 +1833,7 @@ msgstr "Súbor %s neobsahuje ID kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "Hardwarové overenie zlyhalo" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" From 4edbb85eb56b2a4820950d0580e3a36cc42bf5e0 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:52:05 +0200 Subject: [PATCH 0423/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index aff5cb690c..d8e25f9f35 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:51+0200\n" +"PO-Revision-Date: 2011-05-16 21:52+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1837,7 +1837,7 @@ msgstr "Hardwarové overenie zlyhalo" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Nie je pripojený žiadny prihlasovací kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." From b6468e40f36434df1382d0a04aa559d27201b67c Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:52:43 +0200 Subject: [PATCH 0424/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d8e25f9f35..10a04982fc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1833,7 +1833,7 @@ msgstr "Súbor %s neobsahuje ID kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "Hardwarové overenie zlyhalo" +msgstr "Hardwarové prihlasovanie zlyhalo" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" From f1a28181738fd5ac8b5bd2d15bad304bafd87f86 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:53:14 +0200 Subject: [PATCH 0425/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 10a04982fc..14d2488c93 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:52+0200\n" +"PO-Revision-Date: 2011-05-16 21:53+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1841,7 +1841,7 @@ msgstr "Nie je pripojený žiadny prihlasovací kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "" +msgstr "Prihlasujem..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" From 67927f963aba32820f7e5db8ce83950ef2d9bb52 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:53:34 +0200 Subject: [PATCH 0426/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 14d2488c93..029a99b4f8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1845,7 +1845,7 @@ msgstr "Prihlasujem..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "Chyba PBMS" #: libraries/blobstreaming.lib.php:267 #, fuzzy From bc15a1b97ec6bc8f659abb8d21961ec825d8f896 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:54:39 +0200 Subject: [PATCH 0427/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 029a99b4f8..d7212779d9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:53+0200\n" +"PO-Revision-Date: 2011-05-16 21:54+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1848,10 +1848,9 @@ msgid "PBMS error" msgstr "Chyba PBMS" #: libraries/blobstreaming.lib.php:267 -#, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" -msgstr "Overenie MySQL spojenia" +msgstr "Pripojenie k PBMS zlyhalo:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" From d221be68fc1e46a779e7f37a1cc867344ac674ac Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:57:08 +0200 Subject: [PATCH 0428/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d7212779d9..af7049bbc6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:54+0200\n" +"PO-Revision-Date: 2011-05-16 21:57+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1854,7 +1854,7 @@ msgstr "Pripojenie k PBMS zlyhalo:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" From cf5d4710fe3a0b9a62a2cd2b7d35c5efc1c6ffd5 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:58:04 +0200 Subject: [PATCH 0429/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index af7049bbc6..947bd8c495 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:57+0200\n" +"PO-Revision-Date: 2011-05-16 21:58+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1858,7 +1858,7 @@ msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "Získavanie Content-Type BLOBu zlyhalo" #: libraries/blobstreaming.lib.php:347 msgid "View image" From 33a7372dbb7359acea85fa71037a398a1c947182 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:58:18 +0200 Subject: [PATCH 0430/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 947bd8c495..abb325083b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1862,7 +1862,7 @@ msgstr "Získavanie Content-Type BLOBu zlyhalo" #: libraries/blobstreaming.lib.php:347 msgid "View image" -msgstr "" +msgstr "Zobraziť obrázok" #: libraries/blobstreaming.lib.php:351 msgid "Play audio" From ce5683c4b1e8ce24e21456d5cf25402f2aeb7766 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:58:31 +0200 Subject: [PATCH 0431/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index abb325083b..c40f12aa73 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1866,7 +1866,7 @@ msgstr "Zobraziť obrázok" #: libraries/blobstreaming.lib.php:351 msgid "Play audio" -msgstr "" +msgstr "Prehrať zvuk" #: libraries/blobstreaming.lib.php:356 msgid "View video" From 8be5541fe2de42cf5274bb2bd26787b6a2c71ffd Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:58:39 +0200 Subject: [PATCH 0432/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c40f12aa73..c6036a99e8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1870,7 +1870,7 @@ msgstr "Prehrať zvuk" #: libraries/blobstreaming.lib.php:356 msgid "View video" -msgstr "" +msgstr "Prehrať video" #: libraries/blobstreaming.lib.php:360 msgid "Download file" From 7d6ccd374e2af3ebf8efc9caaa2e1db9ea7c33d3 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:59:30 +0200 Subject: [PATCH 0433/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c6036a99e8..d2f8c2cfea 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:58+0200\n" +"PO-Revision-Date: 2011-05-16 21:59+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1879,7 +1879,7 @@ msgstr "Stiahnuť súbor" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Nemôžem otvoriť súbor: %s" #: libraries/bookmark.lib.php:83 msgid "shared" From e45e594ca32b604a1cfadc2b491e63cac25ff50b Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 21:59:56 +0200 Subject: [PATCH 0434/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d2f8c2cfea..9c31667c2b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1883,7 +1883,7 @@ msgstr "Nemôžem otvoriť súbor: %s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "" +msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:180 libraries/export/xml.php:36 From bae89abafe126a467a30a0fe5a734b9373c0c140 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:00:01 +0200 Subject: [PATCH 0435/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 9c31667c2b..810d5cd35e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 21:59+0200\n" +"PO-Revision-Date: 2011-05-16 22:00+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 663d3bd916191f602f4ff10cd33bea6d3724c41e Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:00:25 +0200 Subject: [PATCH 0436/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 810d5cd35e..534e6b363e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1916,7 +1916,6 @@ msgid "Overhead" msgstr "Naviac" #: libraries/build_html_for_db.lib.php:93 -#, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Prejsť do databázy" From 3219f93af819937ac5575c74b0e1bad45c9a378a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:00:45 +0200 Subject: [PATCH 0437/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 534e6b363e..24f2ae5d57 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1921,10 +1921,9 @@ msgid "Jump to database" msgstr "Prejsť do databázy" #: libraries/build_html_for_db.lib.php:130 -#, fuzzy #| msgid "Master replication" msgid "Not replicated" -msgstr "Master replikácia" +msgstr "Nie je replikované" #: libraries/build_html_for_db.lib.php:136 #, fuzzy From b21fca92e9250b785f1b2b6f8932a668dca2d06f Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:00:57 +0200 Subject: [PATCH 0438/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 24f2ae5d57..56e001ee3d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1926,10 +1926,9 @@ msgid "Not replicated" msgstr "Nie je replikované" #: libraries/build_html_for_db.lib.php:136 -#, fuzzy #| msgid "Replication" msgid "Replicated" -msgstr "Replikácia" +msgstr "Replikované" #: libraries/build_html_for_db.lib.php:150 #, php-format From 52d11b3b1ae3ada2cd3608bff41ce664225950a0 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:06:06 +0200 Subject: [PATCH 0439/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 56e001ee3d..674ca4c7d8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:00+0200\n" +"PO-Revision-Date: 2011-05-16 22:06+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From a5864f6a757b4896b434ababcc42a79fe068ca10 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:07:59 +0200 Subject: [PATCH 0440/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 674ca4c7d8..3485e732be 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:06+0200\n" +"PO-Revision-Date: 2011-05-16 22:07+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1940,9 +1940,8 @@ msgid "Check Privileges" msgstr "Skontrolovať oprávnenia" #: libraries/chart.lib.php:40 -#, fuzzy msgid "Query statistics" -msgstr "Štatistika riadku" +msgstr "Štatistika dopytu" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" From 84713fb737b5f8d0724c0c73e901ff015f954bcb Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:09:31 +0200 Subject: [PATCH 0441/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3485e732be..5311273286 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:07+0200\n" +"PO-Revision-Date: 2011-05-16 22:09+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1945,7 +1945,7 @@ msgstr "Štatistika dopytu" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" -msgstr "" +msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" #: libraries/chart.lib.php:83 #, fuzzy From 529bcf3e74226a1c651d0eca55e52bf3e4f1b494 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:09:53 +0200 Subject: [PATCH 0442/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5311273286..4a752383c1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1948,10 +1948,9 @@ msgid "Query execution time comparison (in microseconds)" msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" #: libraries/chart.lib.php:83 -#, fuzzy #| msgid "Query results operations" msgid "Query results" -msgstr "Operácie s výsledkami dopytu" +msgstr "Výsledky dopytu" #: libraries/chart.lib.php:109 msgid "No data found for the chart." From 4738b42f9b95e252138d4faeffbb462922e5901d Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:10:24 +0200 Subject: [PATCH 0443/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4a752383c1..703a93dd41 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:09+0200\n" +"PO-Revision-Date: 2011-05-16 22:10+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1954,7 +1954,7 @@ msgstr "Výsledky dopytu" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "" +msgstr "Neboli nájdené žiadne dáta pre graf." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." From 3e234965bc4abfcb9cc0ce467391c15ff21fed07 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:11:20 +0200 Subject: [PATCH 0444/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 703a93dd41..eea0113f4f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:10+0200\n" +"PO-Revision-Date: 2011-05-16 22:11+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1958,7 +1958,7 @@ msgstr "Neboli nájdené žiadne dáta pre graf." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "" +msgstr "Pre grafy je potrené rozšírenie GD." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." From af4875e7987f961123b028f1cf38e2076df832d0 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:12:54 +0200 Subject: [PATCH 0445/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index eea0113f4f..c53a8a2be4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:11+0200\n" +"PO-Revision-Date: 2011-05-16 22:12+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1962,7 +1962,7 @@ msgstr "Pre grafy je potrené rozšírenie GD." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "" +msgstr "Pre tooltipy grafu je potrebný JSON enkóder." #: libraries/common.inc.php:576 msgid "" From 1fec684f46807ae91f27a1ab93a797234b495ef5 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:14:12 +0200 Subject: [PATCH 0446/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index c53a8a2be4..25a1e3a2dc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:12+0200\n" +"PO-Revision-Date: 2011-05-16 22:14+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1974,8 +1974,8 @@ msgid "" "is fine." msgstr "" "phpMyAdmin nebol schopný načítať konfiguračný súbor!
Tento problém sa " -"zvyčajne vyskytne ak súbor obsahuje chybu alebo ho php nemohlo nájsť.
Zavolajte browserom tento súbor priamo použitím nasledujúceho odkazu na " +"zvyčajne vyskytne ak súbor obsahuje chybu alebo ho php nemohlo nájsť.
Zavolajte browserom tento súbor priamo použitím nasledujúceho odkazu na " "získanie chybových hlášok, ktoré sú ním spôsobené. Väčšinou sa jedná o " "chýbajúcu úvodzovku alebo bodkočiarku.
Ak dostanete iba prázdnu " "stránku, všetko je v poriadku." From 33cf04511ed1ddfd14173fd0715789180487f00d Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:14:36 +0200 Subject: [PATCH 0447/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 25a1e3a2dc..6d167cd5ed 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1981,7 +1981,7 @@ msgstr "" "stránku, všetko je v poriadku." #: libraries/common.inc.php:587 -#, fuzzy, php-format +#, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\"" From 279753d23c2b0fb447e1dad9c77b9864c4260341 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:16:03 +0200 Subject: [PATCH 0448/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6d167cd5ed..e38afb61b4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:14+0200\n" +"PO-Revision-Date: 2011-05-16 22:16+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1991,8 +1991,8 @@ msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -"Direktíva $cfg['PmaAbsoluteUri'] v konfiguračnom súbore MUSÍ byť " -"nastavená!" +"Direktíva $cfg['PmaAbsoluteUri'] MUSÍ byť nastavená v konfiguračnom " +"súbore!" #: libraries/common.inc.php:622 #, fuzzy, php-format From 0873b511e6e07f4c3b58889224ced1a1ec15f395 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:16:33 +0200 Subject: [PATCH 0449/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e38afb61b4..e15e066370 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1995,10 +1995,10 @@ msgstr "" "súbore!" #: libraries/common.inc.php:622 -#, fuzzy, php-format +#, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" -msgstr "Chybný index serveru: \"%s\"" +msgstr "Chybný index servera: %s" #: libraries/common.inc.php:629 #, php-format From 421b87989314e66c256e854e4c290b2a59c9a583 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:18:20 +0200 Subject: [PATCH 0450/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e15e066370..c43ca99d40 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:16+0200\n" +"PO-Revision-Date: 2011-05-16 22:18+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2003,7 +2003,7 @@ msgstr "Chybný index servera: %s" #: libraries/common.inc.php:629 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." -msgstr "Chybný názov hostu pre server %1$s. Prosím, skontrolujte konfiguráciu." +msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." #: libraries/common.inc.php:638 libraries/config/messages.inc.php:485 #: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174 From 7cad7d970b8619978de99704cb6f283d2765c5a8 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:19:06 +0200 Subject: [PATCH 0451/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c43ca99d40..fb4eebeb0f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:18+0200\n" +"PO-Revision-Date: 2011-05-16 22:19+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 7af9091122fb14411084a0a54f93aa5e0e18bea3 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:20:08 +0200 Subject: [PATCH 0452/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fb4eebeb0f..a97a8250b8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:19+0200\n" +"PO-Revision-Date: 2011-05-16 22:20+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From fd469399f08c6d5f7ce3e62d90cea5dff96661e9 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:21:04 +0200 Subject: [PATCH 0453/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a97a8250b8..3737313bfb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:20+0200\n" +"PO-Revision-Date: 2011-05-16 22:21+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 09f1b1499cb7a1b33126cbdf1dc69a6ba4417852 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:23:24 +0200 Subject: [PATCH 0454/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3737313bfb..b671fb515c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:21+0200\n" +"PO-Revision-Date: 2011-05-16 22:23+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2064,9 +2064,8 @@ msgid "MySQL said: " msgstr "MySQL hlási: " #: libraries/common.lib.php:1098 -#, fuzzy msgid "Failed to connect to SQL validator!" -msgstr "Nepodarilo sa pripojiť k zdroju" +msgstr "Nepodarilo sa pripojiť k SQL validátoru!" #: libraries/common.lib.php:1139 libraries/config/messages.inc.php:462 msgid "Explain SQL" From 45ad6c15dea1f41982a8889a317ac7936ffa0375 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:24:16 +0200 Subject: [PATCH 0455/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b671fb515c..25da1faec9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:23+0200\n" +"PO-Revision-Date: 2011-05-16 22:24+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2077,7 +2077,7 @@ msgstr "Preskočiť vysvetlenie SQL" #: libraries/common.lib.php:1177 msgid "Without PHP Code" -msgstr "bez PHP kódu" +msgstr "Bez PHP kódu" #: libraries/common.lib.php:1180 libraries/config/messages.inc.php:464 msgid "Create PHP Code" From 279429069ab48b6a9d0ee15c18ed9279b9334268 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:25:08 +0200 Subject: [PATCH 0456/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 25da1faec9..8fd1aacdae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:24+0200\n" +"PO-Revision-Date: 2011-05-16 22:25+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2090,7 +2090,7 @@ msgstr "Obnoviť" #: libraries/common.lib.php:1207 msgid "Skip Validate SQL" -msgstr "Preskočiť potvrdenie platnosti SQL" +msgstr "Bez kontroly SQL" #: libraries/common.lib.php:1210 libraries/config/messages.inc.php:466 msgid "Validate SQL" From 89bd5c21548033a97ea81b423ea174fbbc67ec5c Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:25:29 +0200 Subject: [PATCH 0457/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8fd1aacdae..931e1c5c11 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2094,7 +2094,7 @@ msgstr "Bez kontroly SQL" #: libraries/common.lib.php:1210 libraries/config/messages.inc.php:466 msgid "Validate SQL" -msgstr "Potvrdiť platnosť SQL" +msgstr "Skontrolovať SQL" #: libraries/common.lib.php:1265 msgid "Inline edit of this query" From e87b5a4be2615cc30f0d338860e6147b0ab6800b Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:27:23 +0200 Subject: [PATCH 0458/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 931e1c5c11..4515685f35 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:25+0200\n" +"PO-Revision-Date: 2011-05-16 22:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2108,7 +2108,7 @@ msgstr "Systémy" #: libraries/common.lib.php:1334 libraries/common.lib.php:1350 msgid "Profiling" -msgstr "" +msgstr "Profilovanie" #: libraries/common.lib.php:1355 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:70 From 61332b47c6084a3ae4381bc760bb9b307d5952a7 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:27:39 +0200 Subject: [PATCH 0459/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4515685f35..d12f93d2d5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2118,7 +2118,7 @@ msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1393 msgid "B" -msgstr "Bajtov" +msgstr "B" #: libraries/common.lib.php:1393 msgid "KiB" From 9415d0a4207eda9fc099c58aa0a73b0106900637 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:27:48 +0200 Subject: [PATCH 0460/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d12f93d2d5..b6546d58f3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2122,7 +2122,7 @@ msgstr "B" #: libraries/common.lib.php:1393 msgid "KiB" -msgstr "KB" +msgstr "KiB" #: libraries/common.lib.php:1393 msgid "MiB" From 5c117cfc3e4175ae6c087af1c89facde33e25089 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:27:54 +0200 Subject: [PATCH 0461/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b6546d58f3..ca6daa8099 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2126,7 +2126,7 @@ msgstr "KiB" #: libraries/common.lib.php:1393 msgid "MiB" -msgstr "MB" +msgstr "MiB" #: libraries/common.lib.php:1393 msgid "GiB" From 9f0730a4c3f97bf3187dbd2312a3117ab01cb058 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:27:58 +0200 Subject: [PATCH 0462/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ca6daa8099..7303f40549 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2130,7 +2130,7 @@ msgstr "MiB" #: libraries/common.lib.php:1393 msgid "GiB" -msgstr "GB" +msgstr "GiB" #: libraries/common.lib.php:1393 msgid "TiB" From 1da4df71c96345e6fd722d3dbc50839eb36238fe Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:28:04 +0200 Subject: [PATCH 0463/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7303f40549..5493a65a08 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:27+0200\n" +"PO-Revision-Date: 2011-05-16 22:28+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2134,7 +2134,7 @@ msgstr "GiB" #: libraries/common.lib.php:1393 msgid "TiB" -msgstr "TB" +msgstr "TiB" #: libraries/common.lib.php:1393 msgid "PiB" From 07f0477756bea85ecee41efbe6b6b1d7877d0b4f Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:28:10 +0200 Subject: [PATCH 0464/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 5493a65a08..71062de9c4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2138,7 +2138,7 @@ msgstr "TiB" #: libraries/common.lib.php:1393 msgid "PiB" -msgstr "PB" +msgstr "PiB" #: libraries/common.lib.php:1393 msgid "EiB" From cdee0346e8bc717c50ecfa4fb87c323ca290fb4d Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:28:15 +0200 Subject: [PATCH 0465/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 71062de9c4..132d69ba61 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2142,7 +2142,7 @@ msgstr "PiB" #: libraries/common.lib.php:1393 msgid "EiB" -msgstr "EB" +msgstr "EiB" #. l10n: Thousands separator #: libraries/common.lib.php:1431 From f67213c2ba3d884754b720947cd1487cfd9b4f31 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:32:34 +0200 Subject: [PATCH 0466/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 132d69ba61..fb642826ea 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:28+0200\n" +"PO-Revision-Date: 2011-05-16 22:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2158,7 +2158,7 @@ msgstr "," #: libraries/common.lib.php:1610 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" -msgstr "%d.%B, %Y - %H:%M" +msgstr "%a %d.%B. %Y - %H:%M" #: libraries/common.lib.php:1924 #, php-format From f509c9ac486ce7c34297dadfe63d3e06ce1ccbb4 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:33:01 +0200 Subject: [PATCH 0467/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fb642826ea..36dd38ed06 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:32+0200\n" +"PO-Revision-Date: 2011-05-16 22:33+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From ba3195b6e8d187087bbc897517780b36fd5e1a03 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:33:25 +0200 Subject: [PATCH 0468/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 36dd38ed06..a476200afd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2184,7 +2184,7 @@ msgstr "Koniec" #: libraries/common.lib.php:2447 #, php-format msgid "Jump to database "%s"." -msgstr "Na databázu "%s"." +msgstr "Prejsť na databázu "%s"." #: libraries/common.lib.php:2466 #, php-format From 4d4b92d56e03aa1d4ea1b8a6833b763e7d47f1df Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:34:22 +0200 Subject: [PATCH 0469/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a476200afd..566e0a2506 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:33+0200\n" +"PO-Revision-Date: 2011-05-16 22:34+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2226,7 +2226,7 @@ msgstr "Operácie" #: libraries/common.lib.php:2966 msgid "Browse your computer:" -msgstr "" +msgstr "Prechádzať váš počítač:" #: libraries/common.lib.php:2979 #, fuzzy, php-format From ee45671f7eb4074de8fd52abdc91408fc2a69101 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:37:40 +0200 Subject: [PATCH 0470/1652] Translation update done using Pootle. --- po/sk.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index 566e0a2506..6f043ec507 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:34+0200\n" +"PO-Revision-Date: 2011-05-16 22:37+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -341,7 +341,7 @@ msgid "Collation" msgstr "Zotriedenie" #: db_operations.php:565 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -349,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " -"chcete zistiť prečo, kliknite %ssem%s." +"Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " +"kliknite %ssem%s." #: db_operations.php:600 #| msgid "Relational schema" From 3da070e69f0aeaa9bd67c2ca580f3974b026ee04 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:42:58 +0200 Subject: [PATCH 0471/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6f043ec507..24946e63a3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:37+0200\n" +"PO-Revision-Date: 2011-05-16 22:42+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -477,10 +477,9 @@ msgid "Modify" msgstr "Zmeniť" #: db_qbe.php:606 -#, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" -msgstr "Pridať/Odobrať riadky" +msgstr "Pridať/Odobrať riadky s kritériami" #: db_qbe.php:618 #| msgid "Add/Delete Field Columns" From 6c75dddea7409c8206d1631ac484463fbf911adb Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:44:46 +0200 Subject: [PATCH 0472/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 24946e63a3..7ce4a7c074 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:42+0200\n" +"PO-Revision-Date: 2011-05-16 22:44+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2228,10 +2228,10 @@ msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" #: libraries/common.lib.php:2979 -#, fuzzy, php-format +#, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" -msgstr "upload adresár web serveru" +msgstr "Zvoľte súbor z upload adresára %s web servera:" #: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501 #: tbl_change.php:962 From 210230d6048990187a8964e0fb19e3c36e5717e7 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:47:55 +0200 Subject: [PATCH 0473/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7ce4a7c074..7b22dbd939 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:44+0200\n" +"PO-Revision-Date: 2011-05-16 22:47+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2240,7 +2240,7 @@ msgstr "Adresár určený pre upload súborov sa nedá otvoriť" #: libraries/common.lib.php:2999 msgid "There are no files to upload" -msgstr "" +msgstr "Žiadny súbor pre nahrávanie" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" From d3886ce333b3dee500bf85fe2a03a3c28d99cb72 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:48:18 +0200 Subject: [PATCH 0474/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7b22dbd939..b2a4b4b123 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:47+0200\n" +"PO-Revision-Date: 2011-05-16 22:48+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2244,7 +2244,7 @@ msgstr "Žiadny súbor pre nahrávanie" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "" +msgstr "Obidva" #: libraries/config.values.php:74 msgid "Open" From 06f30801102c2e61211ffcbf8a28dfea44ee6391 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:48:32 +0200 Subject: [PATCH 0475/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b2a4b4b123..90fc98db01 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2248,7 +2248,7 @@ msgstr "Obidva" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "Otvoriť" #: libraries/config.values.php:74 #, fuzzy From 264bfd805e1410991beafd03e0f8d693830dafae Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:48:45 +0200 Subject: [PATCH 0476/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 90fc98db01..9488f8d637 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2251,10 +2251,9 @@ msgid "Open" msgstr "Otvoriť" #: libraries/config.values.php:74 -#, fuzzy #| msgid "Unclosed quote" msgid "Closed" -msgstr "Neuzatvorené úvodzovky" +msgstr "Zatvorené" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From 11e3caa17a25e3f42288a6b2b8b84e175a1903f6 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:48:56 +0200 Subject: [PATCH 0477/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 9488f8d637..6115c812da 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2248,7 +2248,7 @@ msgstr "Obidva" #: libraries/config.values.php:74 msgid "Open" -msgstr "Otvoriť" +msgstr "Otvorené" #: libraries/config.values.php:74 #| msgid "Unclosed quote" From 09e0e4669bb3ed196460f1e38c268bfdfa5184a4 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:49:07 +0200 Subject: [PATCH 0478/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6115c812da..aed4ec7791 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:48+0200\n" +"PO-Revision-Date: 2011-05-16 22:49+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2259,9 +2259,8 @@ msgstr "Zatvorené" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 -#, fuzzy msgid "structure" -msgstr "Štruktúra" +msgstr "štruktúra" #: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From 01d592f186018a9a56b04aaea9f83c38f2b3df69 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:49:15 +0200 Subject: [PATCH 0479/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index aed4ec7791..524c2d4198 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2266,7 +2266,7 @@ msgstr "štruktúra" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "" +msgstr "dáta" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From 33f7d4a2eb3047dce24138da35a0efab4c2561e2 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:49:32 +0200 Subject: [PATCH 0480/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 524c2d4198..6ca1a4de7c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2271,10 +2271,9 @@ msgstr "dáta" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#, fuzzy #| msgid "Structure and data" msgid "structure and data" -msgstr "Štruktúru a dáta" +msgstr "štruktúra a dáta" #: libraries/config.values.php:99 msgid "Quick - display only the minimal options to configure" From c62e0ffff3b60b7f47d7ae02f453fd63e41a6fbc Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:50:45 +0200 Subject: [PATCH 0481/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6ca1a4de7c..fe8f67fc3e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:49+0200\n" +"PO-Revision-Date: 2011-05-16 22:50+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2277,7 +2277,7 @@ msgstr "štruktúra a dáta" #: libraries/config.values.php:99 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Rýchlo - zobrazí len minimum možností pre nastavenie" #: libraries/config.values.php:100 msgid "Custom - display all possible options to configure" From 192e06647af84328d0d6766ec0a12bc20bc62928 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:52:13 +0200 Subject: [PATCH 0482/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index fe8f67fc3e..357a5bb297 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:50+0200\n" +"PO-Revision-Date: 2011-05-16 22:52+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2281,7 +2281,7 @@ msgstr "Rýchlo - zobrazí len minimum možností pre nastavenie" #: libraries/config.values.php:100 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Vlastný - zobrazí všetky voľby nastavenia" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" From b6cfc5da15fa0e79fc185c48752f9e9493da3453 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:52:35 +0200 Subject: [PATCH 0483/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 357a5bb297..df89b907b0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2277,7 +2277,7 @@ msgstr "štruktúra a dáta" #: libraries/config.values.php:99 msgid "Quick - display only the minimal options to configure" -msgstr "Rýchlo - zobrazí len minimum možností pre nastavenie" +msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie" #: libraries/config.values.php:100 msgid "Custom - display all possible options to configure" From 2a9c4714de66ccb00167b4813634fa848cce9034 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:53:46 +0200 Subject: [PATCH 0484/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index df89b907b0..0f3ee04fee 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:52+0200\n" +"PO-Revision-Date: 2011-05-16 22:53+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2285,7 +2285,7 @@ msgstr "Vlastný - zobrazí všetky voľby nastavenia" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" -msgstr "" +msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný" #: libraries/config.values.php:119 #, fuzzy From 411b8113169d10f36168489fb09f07574a398c74 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:54:10 +0200 Subject: [PATCH 0485/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0f3ee04fee..a2a32d5006 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:53+0200\n" +"PO-Revision-Date: 2011-05-16 22:54+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2288,10 +2288,9 @@ msgid "Custom - like above, but without the quick/custom choice" msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný" #: libraries/config.values.php:119 -#, fuzzy #| msgid "Complete inserts" msgid "complete inserts" -msgstr "Úplné vloženie" +msgstr "úplné vloženia" #: libraries/config.values.php:120 #, fuzzy From 1b1fd77dedd3de2eb64f60fe12ee93d14d4b60c7 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:54:21 +0200 Subject: [PATCH 0486/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a2a32d5006..2d2f0c09ce 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2293,10 +2293,9 @@ msgid "complete inserts" msgstr "úplné vloženia" #: libraries/config.values.php:120 -#, fuzzy #| msgid "Extended inserts" msgid "extended inserts" -msgstr "Rozšírené vkladanie" +msgstr "Rozšírené vkladania" #: libraries/config.values.php:121 msgid "both of the above" From 9629450886a3d607f5ff3506ada0d37b2b8e882a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:54:43 +0200 Subject: [PATCH 0487/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2d2f0c09ce..82e13d7019 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2299,7 +2299,7 @@ msgstr "Rozšírené vkladania" #: libraries/config.values.php:121 msgid "both of the above" -msgstr "" +msgstr "obidve vyššie uvedené" #: libraries/config.values.php:122 msgid "neither of the above" From 0da90a3eb5855f4ea9874754582cd267ad2aa6d5 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:55:18 +0200 Subject: [PATCH 0488/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 82e13d7019..529e86d4d3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:54+0200\n" +"PO-Revision-Date: 2011-05-16 22:55+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2303,7 +2303,7 @@ msgstr "obidve vyššie uvedené" #: libraries/config.values.php:122 msgid "neither of the above" -msgstr "" +msgstr "žiadny z vyššie uvedených" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 From 0d67bbfad2481b0f98383c8a52a9b53d85e9848b Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:55:35 +0200 Subject: [PATCH 0489/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 529e86d4d3..eaaa99820b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2308,7 +2308,7 @@ msgstr "žiadny z vyššie uvedených" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 msgid "Not a positive number" -msgstr "" +msgstr "Nie je kladné číslo" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 From d1a6c1f8a3f3b8cec653c8bebc140603cf613e91 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:56:02 +0200 Subject: [PATCH 0490/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index eaaa99820b..954294c3c7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:55+0200\n" +"PO-Revision-Date: 2011-05-16 22:56+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2313,7 +2313,7 @@ msgstr "Nie je kladné číslo" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 msgid "Not a non-negative number" -msgstr "" +msgstr "Nie nezáporné číslo" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 From 4747148089d34753fc2561c52fd10e823955e9e1 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:56:18 +0200 Subject: [PATCH 0491/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 954294c3c7..06ded70876 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2318,7 +2318,7 @@ msgstr "Nie nezáporné číslo" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Neplatné číslo portu" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 From be93f4501f53023c057038ac3b52a760961c59fc Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:56:29 +0200 Subject: [PATCH 0492/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 06ded70876..ce77ab4776 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2324,7 +2324,7 @@ msgstr "Neplatné číslo portu" #: libraries/config/FormDisplay.class.php:574 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 msgid "Incorrect value" -msgstr "" +msgstr "Nesprávna hodnota" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 From d1455922d261e24f197a7c0507d54b22835d5172 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:57:11 +0200 Subject: [PATCH 0493/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ce77ab4776..e9c75ddc3b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:56+0200\n" +"PO-Revision-Date: 2011-05-16 22:57+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2330,7 +2330,7 @@ msgstr "Nesprávna hodnota" #: libraries/config/validate.lib.php:464 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Hodnota musí byť rovná alebo menšia ako %s" #: libraries/config/FormDisplay.class.php:538 #, php-format From 7031320d2ed298b3df0357d48cbc325acf3ff312 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:57:30 +0200 Subject: [PATCH 0494/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index e9c75ddc3b..80fc8786e8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2335,7 +2335,7 @@ msgstr "Hodnota musí byť rovná alebo menšia ako %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Chýba hodnota pre %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 From 7cd38db5118219068a68d983e2581b05efc02b86 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:57:46 +0200 Subject: [PATCH 0495/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 80fc8786e8..871f1bc66c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2339,10 +2339,9 @@ msgstr "Chýba hodnota pre %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 -#, fuzzy #| msgid "Variable" msgid "unavailable" -msgstr "Premenná" +msgstr "nedostupné" #: libraries/config/FormDisplay.class.php:737 #: libraries/config/FormDisplay.class.php:741 From e97cea22a88c24c4eda5469a1ba078ae0cb19b15 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:58:40 +0200 Subject: [PATCH 0496/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 871f1bc66c..500c92e8ae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:57+0200\n" +"PO-Revision-Date: 2011-05-16 22:58+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2347,7 +2347,7 @@ msgstr "nedostupné" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" vyžaduje rozšírenie %s" #: libraries/config/FormDisplay.class.php:755 #, php-format From c8a379bff8b2025fdd95cd91fa5aca11b19a42a0 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:59:27 +0200 Subject: [PATCH 0497/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 500c92e8ae..583918801b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:58+0200\n" +"PO-Revision-Date: 2011-05-16 22:59+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2352,7 +2352,7 @@ msgstr "\"%s\" vyžaduje rozšírenie %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "import nebude funkčný, chýba funkcia (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format From 370dbb63cf3beadd5e3534d58ffb1ceebdc4cb4e Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 22:59:46 +0200 Subject: [PATCH 0498/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 583918801b..875c7865ee 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2357,7 +2357,7 @@ msgstr "import nebude funkčný, chýba funkcia (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "export nebude funkčný, chýba funkcia (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" From 35be5d35850b06c5463e534bd8b162993160068c Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:00:06 +0200 Subject: [PATCH 0499/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 875c7865ee..c5636a5b43 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 22:59+0200\n" +"PO-Revision-Date: 2011-05-16 23:00+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2361,7 +2361,7 @@ msgstr "export nebude funkčný, chýba funkcia (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL validátor je vypnutý" #: libraries/config/FormDisplay.class.php:773 #, fuzzy From 22dffd50aa65227d3aa62ad3c6433b2cb0f815bf Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:00:49 +0200 Subject: [PATCH 0500/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c5636a5b43..87fc45811b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2364,9 +2364,8 @@ msgid "SQL Validator is disabled" msgstr "SQL validátor je vypnutý" #: libraries/config/FormDisplay.class.php:773 -#, fuzzy msgid "SOAP extension not found" -msgstr "rozšírenie PHP" +msgstr "Nebolo nájdené rozšírenie SOAP" #: libraries/config/FormDisplay.class.php:781 #, php-format From b2520659e6b2b077740d2082a6f10666b9330f14 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:01:02 +0200 Subject: [PATCH 0501/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 87fc45811b..f0f10f9974 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:00+0200\n" +"PO-Revision-Date: 2011-05-16 23:01+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2370,7 +2370,7 @@ msgstr "Nebolo nájdené rozšírenie SOAP" #: libraries/config/FormDisplay.class.php:781 #, php-format msgid "maximum %s" -msgstr "" +msgstr "maximálne %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" From 73381ec2c8057f723bb8edb65ddad0d9110231cc Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:06:12 +0200 Subject: [PATCH 0502/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f0f10f9974..d8c5b5308e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:01+0200\n" +"PO-Revision-Date: 2011-05-16 23:06+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2374,7 +2374,7 @@ msgstr "maximálne %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "" +msgstr "Táto voľba je vypnutá, nebude použitá vo vašich nastaveniach" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 From 816faebf70290478a3a3e38ccc059370eb148ff8 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:06:50 +0200 Subject: [PATCH 0503/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d8c5b5308e..47abc09257 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2384,7 +2384,7 @@ msgstr "Vypnuté" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Nastavená hodnota: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:350 From fb4b5827dc0e452fdc75803e474a1d0725b5e494 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:07:31 +0200 Subject: [PATCH 0504/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 47abc09257..19a4e0cfc2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:06+0200\n" +"PO-Revision-Date: 2011-05-16 23:07+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2389,7 +2389,7 @@ msgstr "Nastavená hodnota: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:350 msgid "Restore default value" -msgstr "" +msgstr "Obnoviť východziu hodnotu" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" From 46e2d222bb1a0e0e565115643075877850695adb Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:08:35 +0200 Subject: [PATCH 0505/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 19a4e0cfc2..bd378a727e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:07+0200\n" +"PO-Revision-Date: 2011-05-16 23:08+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2393,7 +2393,7 @@ msgstr "Obnoviť východziu hodnotu" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Povoliť užívateľom prispôsobiť túto hodnotu" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 From 84b4aaa4c61b29542dc8e395b5bb1727a8998b8a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:11:43 +0200 Subject: [PATCH 0506/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index bd378a727e..d107242ba9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:08+0200\n" +"PO-Revision-Date: 2011-05-16 23:11+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2406,9 +2406,8 @@ msgid "Improves efficiency of screen refresh" msgstr "" #: libraries/config/messages.inc.php:18 -#, fuzzy msgid "Enable Ajax" -msgstr "Zapnuté" +msgstr "Povoliť Ajax" #: libraries/config/messages.inc.php:19 msgid "" From 0ba150f1d15681ae109b1093e1c27055fbeecbce Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:12:24 +0200 Subject: [PATCH 0507/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d107242ba9..926946f3a3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:11+0200\n" +"PO-Revision-Date: 2011-05-16 23:12+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2413,7 +2413,7 @@ msgstr "Povoliť Ajax" msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" -"Pokiaľ je povolené, užívateľ može zadať ľuvolný MySQL server pri prihlásené " +"Pokiaľ je povolené, užívateľ može zadať ľuvolný MySQL server pre prihlásenie " "cez cookie autentifikáciu" #: libraries/config/messages.inc.php:20 From d1a2cc55d6274fff1a23ac6f1a980d0641efb88b Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:13:08 +0200 Subject: [PATCH 0508/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 926946f3a3..51ed1f0c0c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:12+0200\n" +"PO-Revision-Date: 2011-05-16 23:13+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2417,9 +2417,8 @@ msgstr "" "cez cookie autentifikáciu" #: libraries/config/messages.inc.php:20 -#, fuzzy msgid "Allow login to any MySQL server" -msgstr "Nedá sa prihlásiť k MySQL serveru" +msgstr "Povoliť prihlásenie k ľubovoľnému MySQL serveru" #: libraries/config/messages.inc.php:21 msgid "" From 5533fa2d89335f8e446236e63b47e42b1a229e11 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:15:26 +0200 Subject: [PATCH 0509/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 51ed1f0c0c..3eac3f018f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:13+0200\n" +"PO-Revision-Date: 2011-05-16 23:15+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2429,7 +2429,7 @@ msgstr "" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Povoliť vkladanie do cudzieho rámu" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" From 9d2f6d9b5a1e6bec8e4912d5a70c058823814e03 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:16:30 +0200 Subject: [PATCH 0510/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3eac3f018f..7e9459a2ea 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:15+0200\n" +"PO-Revision-Date: 2011-05-16 23:16+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2447,7 +2447,7 @@ msgstr "" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Zvýrazniť zvolené riadky" #: libraries/config/messages.inc.php:27 msgid "Row marker" From a06efd55a59c4a53c46df415f297b879856ab642 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:16:57 +0200 Subject: [PATCH 0511/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7e9459a2ea..7f07b3b38e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2451,7 +2451,7 @@ msgstr "Zvýrazniť zvolené riadky" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Značkovač riadkov" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" From d77b7363871b69b8f67a09b848ca8e3b70ca846a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:17:58 +0200 Subject: [PATCH 0512/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7f07b3b38e..f7c65834b5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:16+0200\n" +"PO-Revision-Date: 2011-05-16 23:17+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2455,7 +2455,7 @@ msgstr "Značkovač riadkov" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Zvýrazniť riadok označený kurzórom myši" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" From a0b9399f0148ffbf10c329425b96fc5cbad88e78 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:20:31 +0200 Subject: [PATCH 0513/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f7c65834b5..c7376d5b81 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:17+0200\n" +"PO-Revision-Date: 2011-05-16 23:20+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2500,7 +2500,7 @@ msgstr "" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "" +msgstr "Skontrolujte prístupové práva konfiguračného súboru" #: libraries/config/messages.inc.php:39 msgid "" From ca9b9efd1830a056685232299e9cbce4d7014393 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:20:56 +0200 Subject: [PATCH 0514/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c7376d5b81..459b1ab4f2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2510,7 +2510,7 @@ msgstr "" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" -msgstr "" +msgstr "Komprimovať za behu" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:165 From bd68e2ea467a71ac4ba18b82468ff47ea2761613 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:21:27 +0200 Subject: [PATCH 0515/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 459b1ab4f2..04438eaeae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:20+0200\n" +"PO-Revision-Date: 2011-05-16 23:21+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2525,7 +2525,7 @@ msgstr "" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Potvrdzovať DROP dopyty" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" From 5f60be972f00c78a9053924faf30c2821ed8e945 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:21:40 +0200 Subject: [PATCH 0516/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 04438eaeae..16013cd157 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2529,7 +2529,7 @@ msgstr "Potvrdzovať DROP dopyty" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Ladiť SQL" #: libraries/config/messages.inc.php:45 #, fuzzy From 468f1efbe5f10a975c07da45f17bf61449c13483 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:22:09 +0200 Subject: [PATCH 0517/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 16013cd157..741ca01536 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:21+0200\n" +"PO-Revision-Date: 2011-05-16 23:22+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2532,9 +2532,8 @@ msgid "Debug SQL" msgstr "Ladiť SQL" #: libraries/config/messages.inc.php:45 -#, fuzzy msgid "Default display direction" -msgstr "Nastavenia exportu databáz" +msgstr "Východzí smer zobrazovania" #: libraries/config/messages.inc.php:46 msgid "" From 34e7c66ae9516ea6119649a88d8f8824e7e454b2 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:23:54 +0200 Subject: [PATCH 0518/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 741ca01536..ec401f1ad3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:22+0200\n" +"PO-Revision-Date: 2011-05-16 23:23+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -10228,9 +10228,8 @@ msgid "VIEW name" msgstr "" #: view_operations.php:91 -#, fuzzy msgid "Rename view to" -msgstr "Premenovať tabuľku na" +msgstr "Premenovať pohľad na" #, fuzzy #~| msgid "Dumping data for table" From 863f4319072e7c577ea8bb1a51afde37f2832fea Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:24:21 +0200 Subject: [PATCH 0519/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ec401f1ad3..7e32466e0b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:23+0200\n" +"PO-Revision-Date: 2011-05-16 23:24+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -10225,7 +10225,7 @@ msgstr "Profil bol aktualizovaný." #: view_create.php:141 msgid "VIEW name" -msgstr "" +msgstr "Meno pohľadu" #: view_operations.php:91 msgid "Rename view to" From a43118cdbcebb0a0bbcc965808ddb68440d19289 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:24:36 +0200 Subject: [PATCH 0520/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7e32466e0b..1f12e618ab 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10209,7 +10209,6 @@ msgid "Available transformations" msgstr "Dostupné transformácie" #: transformation_overview.php:47 -#, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" From 92d213ea01bda6168f18a1d6520bd5e867bb356b Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:25:27 +0200 Subject: [PATCH 0521/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 1f12e618ab..bc2d7d71f8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:24+0200\n" +"PO-Revision-Date: 2011-05-16 23:25+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -10178,9 +10178,8 @@ msgid "Track these data manipulation statements:" msgstr "" #: tbl_tracking.php:740 -#, fuzzy msgid "Create version" -msgstr "Vytvoriť relaciu" +msgstr "Vytvoriť verziu" #: themes.php:31 #, php-format From 96fb9f48caf7c0502a92b72b3cb689783ec2d548 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:25:53 +0200 Subject: [PATCH 0522/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bc2d7d71f8..79343f9f6f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10142,9 +10142,8 @@ msgid "Show versions" msgstr "" #: tbl_tracking.php:644 -#, fuzzy msgid "Version" -msgstr "Perština" +msgstr "Verzia" #: tbl_tracking.php:692 #, php-format From 2d9796417b6313d9e3d260807c4bdba91c9f0642 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:26:19 +0200 Subject: [PATCH 0523/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 79343f9f6f..2e15faa956 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:25+0200\n" +"PO-Revision-Date: 2011-05-16 23:26+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -10104,9 +10104,8 @@ msgid "No data" msgstr "Žiadne databázy" #: tbl_tracking.php:453 tbl_tracking.php:510 -#, fuzzy msgid "Date" -msgstr "Dáta" +msgstr "Dátum" #: tbl_tracking.php:455 msgid "Data definition statement" From 675b0236888da000ba4be974300393182d8455e5 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:27:03 +0200 Subject: [PATCH 0524/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2e15faa956..e930fd3825 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:26+0200\n" +"PO-Revision-Date: 2011-05-16 23:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -10098,10 +10098,9 @@ msgid "Delete tracking data row from report" msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Žiadne databázy" +msgstr "Žiadne dáta" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From 47b3dfce3b612fbc0dd3d7aaa7dca1dfe6e6d154 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:27:33 +0200 Subject: [PATCH 0525/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e930fd3825..0f936d014f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10073,10 +10073,9 @@ msgid "Tracking data definition succesfully deleted" msgstr "" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Query type" msgid "Query error" -msgstr "Typ dopytu" +msgstr "Chyba dopytu" #: tbl_tracking.php:399 msgid "Tracking data manipulation succesfully deleted" From d1f02bdd47bb078360e368a56220155c67eb54b9 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:28:15 +0200 Subject: [PATCH 0526/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0f936d014f..ff76a6a33a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:27+0200\n" +"PO-Revision-Date: 2011-05-16 23:28+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -10016,7 +10016,7 @@ msgid "After %s" msgstr "Po %s" #: tbl_structure.php:689 -#, fuzzy, php-format +#, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" From 75ae327e5ce611e9fb04ed9ec3408d0fb7b28fc6 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:28:41 +0200 Subject: [PATCH 0527/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ff76a6a33a..ff57f67df1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9959,7 +9959,6 @@ msgid "Add FULLTEXT index" msgstr "" #: tbl_structure.php:385 -#, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" From 5175c6bf56014fffdd0d0792e38b898faed00349 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:29:08 +0200 Subject: [PATCH 0528/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index ff57f67df1..72ce7f7eb2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:28+0200\n" +"PO-Revision-Date: 2011-05-16 23:29+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9946,9 +9946,8 @@ msgid "Add primary key" msgstr "" #: tbl_structure.php:168 tbl_structure.php:169 -#, fuzzy msgid "Add index" -msgstr "Odstrániť index/indexy" +msgstr "Pridať index" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" From acf97fa9fbdb12d232c018267bb5f8dc8030ec0f Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:29:23 +0200 Subject: [PATCH 0529/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 72ce7f7eb2..9f59eaa333 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9951,7 +9951,7 @@ msgstr "Pridať index" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Pridať unikátny index" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" From 44e9a026fa7caa5853cafecafea80edc7624661d Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:29:45 +0200 Subject: [PATCH 0530/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 9f59eaa333..eb06128193 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9955,7 +9955,7 @@ msgstr "Pridať unikátny index" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" -msgstr "" +msgstr "Pridať fulltextový index" #: tbl_structure.php:385 #| msgid "None" From b769d4cc722a85bf6e7aef517779d9f1b88d9752 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:31:07 +0200 Subject: [PATCH 0531/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index eb06128193..bac81c0954 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:29+0200\n" +"PO-Revision-Date: 2011-05-16 23:31+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9964,10 +9964,10 @@ msgid "None" msgstr "Žiadny" #: tbl_structure.php:398 -#, fuzzy, php-format +#, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" -msgstr "Tabuľka %s bola odstránená" +msgstr "Stĺpec %s bol odstránený" #: tbl_structure.php:409 tbl_structure.php:483 #, php-format From 832fed719b8ceb3187e06bc10dedc47fd263020a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:31:51 +0200 Subject: [PATCH 0532/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bac81c0954..ee49f1adeb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9981,10 +9981,9 @@ msgid "An index has been added on %s" msgstr "Bol pridaný index pre %s" #: tbl_structure.php:471 -#, fuzzy #| msgid "Show PHP information" msgid "Show more actions" -msgstr "Zobraziť informácie o PHP" +msgstr "Zobraziť viac operácii" #: tbl_structure.php:600 tbl_structure.php:602 msgid "Relation view" From a60195d5b0c76947c57adaf40b33eb21a647e605 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:32:02 +0200 Subject: [PATCH 0533/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index ee49f1adeb..f1b63715c2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:31+0200\n" +"PO-Revision-Date: 2011-05-16 23:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9994,10 +9994,9 @@ msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" #: tbl_structure.php:634 -#, fuzzy #| msgid "Add column(s)" msgid "Add column" -msgstr "Pridať stĺpec/stĺpce" +msgstr "Pridať stĺpec" #: tbl_structure.php:648 msgid "At End of Table" From 0b911d41a91025fc9a842031557d1e92c5ba41ef Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:32:38 +0200 Subject: [PATCH 0534/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index f1b63715c2..b479d23e5e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9896,7 +9896,6 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "" #: tbl_relation.php:402 -#, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interné vzťahy" From 81ba853601c300bb3875116f4be3329e65bf6c83 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:33:13 +0200 Subject: [PATCH 0535/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b479d23e5e..8627c657c7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:32+0200\n" +"PO-Revision-Date: 2011-05-16 23:33+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9919,10 +9919,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" #: tbl_select.php:233 -#, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "Zvoliť pole (najmenej jedno):" +msgstr "Zvoliť stĺpec (najmenej jeden):" #: tbl_select.php:251 msgid "Add search conditions (body of the \"where\" clause):" From 7d3f1db368c822173d8509cb4b13f68e5344b5e4 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:33:40 +0200 Subject: [PATCH 0536/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8627c657c7..58b54055c4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9876,7 +9876,7 @@ msgstr "Údaj" #: tbl_printview.php:377 tbl_structure.php:835 msgid "static" -msgstr "" +msgstr "statický" #: tbl_printview.php:379 tbl_structure.php:837 msgid "dynamic" From 0da84cd5e272009fde1687f011690e2609e7fa62 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:35:51 +0200 Subject: [PATCH 0537/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 58b54055c4..f81e3ade5b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:33+0200\n" +"PO-Revision-Date: 2011-05-16 23:35+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -866,7 +866,7 @@ msgstr "Web server nemá oprávenia na uloženie do súboru %s." #: export.php:673 #, php-format msgid "Dump has been saved to file %s." -msgstr "Dump (schéma) bol uložený do súboru %s." +msgstr "Výpis bol uložený do súboru %s." #: import.php:58 #, php-format From 2320cf43d869ed1741eaf3803c2ab336446431fb Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:36:37 +0200 Subject: [PATCH 0538/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index f81e3ade5b..1077fae7fb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:35+0200\n" +"PO-Revision-Date: 2011-05-16 23:36+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2732,10 +2732,9 @@ msgstr "Vzor pre názov súboru" #: libraries/config/messages.inc.php:140 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 -#, fuzzy #| msgid "%s table(s)" msgid "Dump table" -msgstr "%s tabuľka(y)" +msgstr "Vypísať tabuľku" #: libraries/config/messages.inc.php:90 libraries/export/latex.php:31 msgid "Include table caption" From c061230e76bde2b98a0c718262a3ab7bf3163b19 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:37:49 +0200 Subject: [PATCH 0539/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 1077fae7fb..3f30438c4d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:36+0200\n" +"PO-Revision-Date: 2011-05-16 23:37+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3262,10 +3262,9 @@ msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" #: libraries/config/messages.inc.php:255 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" -msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť" +msgstr "Počet dopytov, ktoré sa majú preskočiť od začiatku" #: libraries/config/messages.inc.php:256 msgid "Partial import: skip queries" From 661a2f23707803a4de0060a758de1067c91e74cf Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:38:30 +0200 Subject: [PATCH 0540/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3f30438c4d..3bb217fb73 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:37+0200\n" +"PO-Revision-Date: 2011-05-16 23:38+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3628,10 +3628,9 @@ msgid "Query window height" msgstr "SQL okno" #: libraries/config/messages.inc.php:342 -#, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" -msgstr "SQL okno" +msgstr "Šírka okna dopytov (v pixeloch)" #: libraries/config/messages.inc.php:343 #, fuzzy From 4160e358562985dcb15fb91134bd8598f454675a Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:38:54 +0200 Subject: [PATCH 0541/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3bb217fb73..9a3055bee2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4632,10 +4632,9 @@ msgid "Custom - display all possible options" msgstr "" #: libraries/display_export.lib.php:137 -#, fuzzy #| msgid "Databases" msgid "Database(s):" -msgstr "Databázy" +msgstr "Databáza(y):" #: libraries/display_export.lib.php:139 #, fuzzy From 1a4310374e59bc55724130e1bf8435732eebd5e9 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:39:12 +0200 Subject: [PATCH 0542/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9a3055bee2..e319b356b3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:38+0200\n" +"PO-Revision-Date: 2011-05-16 23:39+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4637,10 +4637,9 @@ msgid "Database(s):" msgstr "Databáza(y):" #: libraries/display_export.lib.php:139 -#, fuzzy #| msgid "Tables" msgid "Table(s):" -msgstr "Tabuľky" +msgstr "Tabuľka(y):" #: libraries/display_export.lib.php:149 #, fuzzy From 15cc595675a35e174c534aac1a2f19b55d51b28c Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:41:14 +0200 Subject: [PATCH 0543/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index e319b356b3..440d0e1ea6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:39+0200\n" +"PO-Revision-Date: 2011-05-16 23:41+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4874,10 +4874,9 @@ msgstr "" "spôsobiť problémy s transakciami." #: libraries/display_import.lib.php:228 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" -msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť" +msgstr "Počet riadkov od začiatku, ktoré sa majú preskočiť" #: libraries/display_import.lib.php:250 msgid "Format-Specific Options:" From 41977600a5007d7ecd2f3a175dea2889bad5c192 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 May 2011 23:42:01 +0200 Subject: [PATCH 0544/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 440d0e1ea6..5aa640f326 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-15 13:41-0400\n" -"PO-Revision-Date: 2011-05-16 23:41+0200\n" +"PO-Revision-Date: 2011-05-16 23:42+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4893,10 +4893,9 @@ msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." #: libraries/display_tbl.lib.php:392 -#, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" -msgstr "riadky začínajú od" +msgstr "riadok(y) začínajúce od riadku #" #: libraries/display_tbl.lib.php:397 msgid "horizontal" From ab9d0f35f1032defef1d33b5b3495914520ef610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 00:13:01 +0200 Subject: [PATCH 0545/1652] Translate --- po/cs.po | 92 ++++++++++++++++++++++++-------------------------------- 1 file changed, 39 insertions(+), 53 deletions(-) diff --git a/po/cs.po b/po/cs.po index 9a3d7cd86d..e4e6866c02 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-13 14:33+0200\n" +"PO-Revision-Date: 2011-05-17 00:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "MIME-Version: 1.0\n" @@ -619,8 +619,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:379 libraries/display_tbl.lib.php:2037 #, 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." @@ -712,22 +712,19 @@ msgid "Analyze table" msgstr "Analyzovat tabulku" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "Přejít na tabulku" +msgstr "Přidat tabulce předponu" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Přepsat data tabulky souborem" +msgstr "Změnit tabulce předponu" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Přepsat data tabulky souborem" +msgstr "Zkopírovat tabulku s předponou" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" @@ -863,8 +860,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -975,16 +972,14 @@ msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Chystáte se ZRUŠIT celou databázi!" +msgstr "Chystáte se ZRUŠIT celou tabulku!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Chystáte se ZRUŠIT celou databázi!" +msgstr "Chystáte se VYPRÁZDNIT celou tabulku!" #: js/messages.php:34 msgid "Dropping Event" @@ -1121,16 +1116,14 @@ msgid "Searching" msgstr "Vyhledávám" #: js/messages.php:84 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Skrýt parametry vyhledávání" +msgstr "Skrýt výsledky vyhledávání" #: js/messages.php:85 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "Zobrazit parametry vyhledávání" +msgstr "Zobrazit výsledky vyhledávání" #: js/messages.php:90 msgid "" @@ -1232,10 +1225,9 @@ msgid ", latest stable version:" msgstr ", poslední stabilní verze:" #: js/messages.php:128 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "Přejít na databázi" +msgstr "aktuální" #. l10n: Display text for calendar close link #: js/messages.php:146 @@ -1704,8 +1696,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -4679,8 +4671,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 " @@ -5406,8 +5398,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -5874,14 +5866,13 @@ msgid "Convert to Kana" msgstr "Převést na Kanu" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Pá" +msgstr "Z" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "Na" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:440 @@ -5890,13 +5881,12 @@ msgstr "Provést" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "Přidat tabulce předponu" #: libraries/mult_submits.inc.php:266 -#, fuzzy #| msgid "Add index" msgid "Add prefix" -msgstr "Přidat index" +msgstr "Přidat předponu" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" @@ -6673,8 +6663,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" -"spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " +"%spopisy transformací%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6725,8 +6715,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" -"s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " +"%s dělá." #: libraries/tbl_properties.inc.php:727 server_engines.php:56 #: tbl_operations.php:370 @@ -7345,8 +7335,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" -"sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " +"%sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7794,8 +7784,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -7928,8 +7918,7 @@ msgid "Unable to change master" msgstr "Nepodařilo se změnit nadřízeného" #: server_replication.php:72 -#, fuzzy, php-format -#| msgid "Master server changed succesfully to %s" +#, php-format msgid "Master server changed successfully to %s" msgstr "Nadřízený server bych úspěšně změněn na %s" @@ -9053,10 +9042,9 @@ msgid "Insecure connection" msgstr "Nezabezpečené připojení" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Úložiště konfigurace" +msgstr "Konfigurace uložena." #: setup/frames/index.inc.php:93 msgid "" @@ -9263,8 +9251,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" -"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" +"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9275,8 +9263,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." @@ -9926,10 +9914,9 @@ msgid "Tracking data definition successfully deleted" msgstr "Sledovat tyto příkazy pro definici dat:" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Gather errors" msgid "Query error" -msgstr "Sbírat chyby" +msgstr "Chyba dotazu" #: tbl_tracking.php:399 #, fuzzy @@ -9953,10 +9940,9 @@ msgid "Delete tracking data row from report" msgstr "Odstranit všechny informace o sledování této tabulky" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Žádné databáze" +msgstr "Nejsou k dispozici žádná data" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From 3b9333baddaa1957f8feabc2515accdcc45964e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 00:29:21 +0200 Subject: [PATCH 0546/1652] Merge from master --- po/bg.po | 74 ++++++++++++++++---------------- po/sk.po | 126 +++++++++++++++++++++++++++++-------------------------- 2 files changed, 104 insertions(+), 96 deletions(-) diff --git a/po/bg.po b/po/bg.po index 96a16fc7d2..0af446875e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -807,7 +807,7 @@ msgstr "" #: export.php:73 msgid "Selected export type has to be saved in file!" -msgstr "" +msgstr "Избраният тип експорт трябва да бъде запазен като файл!" #: export.php:164 export.php:189 export.php:671 #, php-format @@ -941,7 +941,7 @@ msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" #: js/messages.php:32 msgid "Dropping Event" -msgstr "" +msgstr "Събитие на изтриване" #: js/messages.php:33 msgid "Dropping Procedure" @@ -1129,7 +1129,7 @@ msgstr "Изберете колона за показване" #: js/messages.php:106 msgid "Add an option for column " -msgstr "" +msgstr "Добавяне опция към колона " #: js/messages.php:109 msgid "Generate password" @@ -1414,7 +1414,7 @@ msgstr "Размер на шрифта" #: libraries/File.class.php:310 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini." #: libraries/File.class.php:313 msgid "" @@ -1436,7 +1436,7 @@ msgstr "" #: libraries/File.class.php:325 msgid "File upload stopped by extension." -msgstr "" +msgstr "Качването на файлът беше спряно от разширение." #: libraries/File.class.php:328 msgid "Unknown error in file upload." @@ -1498,6 +1498,8 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" +"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " +"бъде премахнат." #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174 #: libraries/server_links.inc.php:42 server_databases.php:100 @@ -1578,7 +1580,7 @@ msgstr "Не е открит валиден път на тема %s!" #: libraries/Theme.class.php:380 msgid "No preview available." -msgstr "" +msgstr "Прегледът не е достъпен." #: libraries/Theme.class.php:383 msgid "take it" @@ -1674,13 +1676,13 @@ msgstr "Оттук нататък са необходими бисквитки." #: libraries/auth/signon.auth.lib.php:206 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -msgstr "" +msgstr "Входът без парола е забранен от конфигурацията (вж. AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:647 #: libraries/auth/signon.auth.lib.php:210 #, php-format msgid "No activity within %s seconds; please log in again" -msgstr "" +msgstr "Няма активност през последните %s секунди; моля влезте отново" #: libraries/auth/cookie.auth.lib.php:657 #: libraries/auth/cookie.auth.lib.php:659 @@ -1700,7 +1702,7 @@ msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "Хардуерното удостоверяване провалено" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" @@ -1745,7 +1747,7 @@ msgstr "Изтегляне файл" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Файлът %s не може да бъде отворен" #: libraries/bookmark.lib.php:83 msgid "shared" @@ -1783,7 +1785,7 @@ msgstr "Загубено място" #: libraries/build_html_for_db.lib.php:93 msgid "Jump to database" -msgstr "" +msgstr "Прескачане до БД" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" @@ -1816,11 +1818,11 @@ msgstr "Резулати от заявка" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "" +msgstr "Няма намерени данни за диаграмата." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "" +msgstr "Разширението GD е необходимо за диаграмите." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." @@ -1858,12 +1860,12 @@ msgstr "" #: libraries/common.inc.php:622 #, php-format msgid "Invalid server index: %s" -msgstr "" +msgstr "Невалиден индекс на сървър: %s" #: libraries/common.inc.php:629 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." -msgstr "" +msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." #: libraries/common.inc.php:638 libraries/config/messages.inc.php:485 #: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174 @@ -1873,7 +1875,7 @@ msgstr "Сървър" #: libraries/common.inc.php:821 msgid "Invalid authentication method set in configuration:" -msgstr "" +msgstr "Невалиден метод за удостоверяване в конфогурацията:" #: libraries/common.inc.php:924 #, php-format @@ -2200,7 +2202,7 @@ msgstr "" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" изисква разширението %s" #: libraries/config/FormDisplay.class.php:755 #, php-format @@ -2218,7 +2220,7 @@ msgstr "" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" -msgstr "" +msgstr "Разширението SOAP не е намерено" #: libraries/config/FormDisplay.class.php:781 #, php-format @@ -2952,7 +2954,7 @@ msgstr "" #: libraries/config/messages.inc.php:221 msgid "Tabs" -msgstr "" +msgstr "Табулатори" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" @@ -2968,11 +2970,11 @@ msgstr "" #: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17 msgid "Texy! text" -msgstr "" +msgstr "Texy! текст" #: libraries/config/messages.inc.php:227 msgid "Warnings" -msgstr "" +msgstr "Предупреждения" #: libraries/config/messages.inc.php:228 msgid "Disable some of the warnings shown by phpMyAdmin" @@ -2986,7 +2988,7 @@ msgstr "" #: libraries/config/messages.inc.php:230 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" @@ -3088,7 +3090,7 @@ msgstr "" #: libraries/config/messages.inc.php:266 msgid "Display logo" -msgstr "" +msgstr "Показване лого" #: libraries/config/messages.inc.php:267 msgid "Display server choice at the top of the left frame" @@ -3507,7 +3509,7 @@ msgstr "" #: libraries/config/messages.inc.php:366 msgid "Bookmark table" -msgstr "" +msgstr "Таблица за белязки" #: libraries/config/messages.inc.php:367 msgid "" @@ -3579,11 +3581,11 @@ msgstr "" #: libraries/config/messages.inc.php:382 msgid "What PHP extension to use; you should use mysqli if supported" -msgstr "" +msgstr "Кое PHP разширение да бъде използвано; ползвайте mysqli ако е налично" #: libraries/config/messages.inc.php:383 msgid "PHP extension to use" -msgstr "" +msgstr "Използвано PHP разширение" #: libraries/config/messages.inc.php:384 msgid "Hide databases matching regular expression (PCRE)" @@ -4103,7 +4105,7 @@ msgstr "" #: libraries/config/messages.inc.php:502 msgid "ZIP" -msgstr "" +msgstr "ZIP" #: libraries/config/setup.forms.php:41 msgid "Config authentication" @@ -4150,7 +4152,7 @@ msgstr "" #: libraries/config/setup.forms.php:262 #: libraries/config/user_preferences.forms.php:165 msgid "Quick" -msgstr "" +msgstr "Бърз" #: libraries/config/setup.forms.php:266 #: libraries/config/user_preferences.forms.php:169 @@ -4222,7 +4224,7 @@ msgstr "" #: libraries/db_events.inc.php:14 libraries/db_events.inc.php:16 #: libraries/export/sql.php:493 msgid "Events" -msgstr "" +msgstr "Събития" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26 @@ -4285,7 +4287,7 @@ msgstr "" #: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703 msgid "Details..." -msgstr "" +msgstr "Подробности..." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 @@ -4396,7 +4398,7 @@ msgstr "Дъмп-ни всички редове" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" -msgstr "" +msgstr "Изход:" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 #, php-format @@ -4413,15 +4415,15 @@ msgstr "Шаблон на файловото име:" #: libraries/display_export.lib.php:229 msgid "@SERVER@ will become the server name" -msgstr "" +msgstr "@SERVER@ ще стане името на сървъра" #: libraries/display_export.lib.php:231 msgid ", @DATABASE@ will become the database name" -msgstr "" +msgstr ", @DATABASE@ ще стане името на БД" #: libraries/display_export.lib.php:233 msgid ", @TABLE@ will become the table name" -msgstr "" +msgstr ", @TABLE@ ще стане името на таблицата" #: libraries/display_export.lib.php:237 #, php-format @@ -4644,7 +4646,7 @@ msgstr "Браузърна трансформация" #: libraries/display_tbl.lib.php:1188 msgid "Copy" -msgstr "" +msgstr "Копиране" #: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215 msgid "The row has been deleted" @@ -5206,7 +5208,7 @@ msgstr "" #: libraries/export/pdf.php:17 msgid "PDF" -msgstr "" +msgstr "PDF" #: libraries/export/pdf.php:23 msgid "(Generates a report containing the data of a single table)" diff --git a/po/sk.po b/po/sk.po index 9a646fb1f4..9c1201e64f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1529,32 +1529,36 @@ msgstr "Veľkosť písma" #: libraries/File.class.php:310 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize " +"v php.ini." #: libraries/File.class.php:313 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá " +"bola nastavená v HTML formulári." #: libraries/File.class.php:316 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Súbor bol nahraný len čiastočne." #: libraries/File.class.php:319 msgid "Missing a temporary folder." -msgstr "" +msgstr "Chýba adresár pre dočasné súbory." #: libraries/File.class.php:322 msgid "Failed to write file to disk." -msgstr "" +msgstr "Chyba pri zápise súboru na disk." #: libraries/File.class.php:325 msgid "File upload stopped by extension." -msgstr "" +msgstr "Nahrávanie súboru bolo zastavené rozšírením." #: libraries/File.class.php:328 msgid "Unknown error in file upload." -msgstr "" +msgstr "Neznáma chyba pri nahrávaní súboru." #: libraries/File.class.php:559 msgid "" @@ -1579,7 +1583,7 @@ msgstr "Unikátny" #: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" -msgstr "" +msgstr "Zabalené" #: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" @@ -1612,6 +1616,8 @@ msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" +"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " +"odstránený." #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174 #: libraries/server_links.inc.php:42 server_databases.php:100 @@ -1815,24 +1821,24 @@ msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý." #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "Súbor %s neobsahuje ID kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "Hardwarové prihlasovanie zlyhalo" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Nie je pripojený žiadny prihlasovací kľúč" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "" +msgstr "Prihlasujem..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "Chyba PBMS" #: libraries/blobstreaming.lib.php:267 #, fuzzy @@ -1842,23 +1848,23 @@ msgstr "Overenie MySQL spojenia" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "Získavanie Content-Type BLOBu zlyhalo" #: libraries/blobstreaming.lib.php:347 msgid "View image" -msgstr "" +msgstr "Zobraziť obrázok" #: libraries/blobstreaming.lib.php:351 msgid "Play audio" -msgstr "" +msgstr "Prehrať zvuk" #: libraries/blobstreaming.lib.php:356 msgid "View video" -msgstr "" +msgstr "Prehrať video" #: libraries/blobstreaming.lib.php:360 msgid "Download file" @@ -1867,11 +1873,11 @@ msgstr "Stiahnuť súbor" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Nemôžem otvoriť súbor: %s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "" +msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:180 libraries/export/xml.php:36 @@ -1937,7 +1943,7 @@ msgstr "Štatistika riadku" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" -msgstr "" +msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" #: libraries/chart.lib.php:83 #, fuzzy @@ -1947,15 +1953,15 @@ msgstr "Operácie s výsledkami dopytu" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "" +msgstr "Neboli nájdené žiadne dáta pre graf." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "" +msgstr "Pre grafy je potrené rozšírenie GD." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "" +msgstr "Pre tooltipy grafu je potrebný JSON enkóder." #: libraries/common.inc.php:576 msgid "" @@ -2102,7 +2108,7 @@ msgstr "Systémy" #: libraries/common.lib.php:1334 libraries/common.lib.php:1350 msgid "Profiling" -msgstr "" +msgstr "Profilovanie" #: libraries/common.lib.php:1355 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:70 @@ -2220,7 +2226,7 @@ msgstr "Operácie" #: libraries/common.lib.php:2966 msgid "Browse your computer:" -msgstr "" +msgstr "Prechádzať váš počítač:" #: libraries/common.lib.php:2979 #, fuzzy, php-format @@ -2235,15 +2241,15 @@ msgstr "Adresár určený pre upload súborov sa nedá otvoriť" #: libraries/common.lib.php:2999 msgid "There are no files to upload" -msgstr "" +msgstr "Žiadny súbor pre nahrávanie" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "" +msgstr "Obidva" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "Otvorené" #: libraries/config.values.php:74 #, fuzzy @@ -2263,7 +2269,7 @@ msgstr "Štruktúra" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "" +msgstr "dáta" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 @@ -2275,15 +2281,15 @@ msgstr "Štruktúru a dáta" #: libraries/config.values.php:99 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie" #: libraries/config.values.php:100 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Vlastný - zobrazí všetky voľby nastavenia" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" -msgstr "" +msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný" #: libraries/config.values.php:119 #, fuzzy @@ -2299,43 +2305,43 @@ msgstr "Rozšírené vkladanie" #: libraries/config.values.php:121 msgid "both of the above" -msgstr "" +msgstr "obidve vyššie uvedené" #: libraries/config.values.php:122 msgid "neither of the above" -msgstr "" +msgstr "žiadny z vyššie uvedených" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:422 msgid "Not a positive number" -msgstr "" +msgstr "Nie je kladné číslo" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:435 msgid "Not a non-negative number" -msgstr "" +msgstr "Nie nezáporné číslo" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Neplatné číslo portu" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 msgid "Incorrect value" -msgstr "" +msgstr "Nesprávna hodnota" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Hodnota musí byť rovná alebo menšia ako %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Chýba hodnota pre %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 @@ -2348,21 +2354,21 @@ msgstr "Premenná" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" vyžaduje rozšírenie %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "import nebude funkčný, chýba funkcia (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "export nebude funkčný, chýba funkcia (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL validátor je vypnutý" #: libraries/config/FormDisplay.class.php:773 #, fuzzy @@ -2372,11 +2378,11 @@ msgstr "rozšírenie PHP" #: libraries/config/FormDisplay.class.php:781 #, php-format msgid "maximum %s" -msgstr "" +msgstr "maximálne %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "" +msgstr "Táto voľba je vypnutá, nebude použitá vo vašich nastaveniach" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 @@ -2386,16 +2392,16 @@ msgstr "Vypnuté" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Nastavená hodnota: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:350 msgid "Restore default value" -msgstr "" +msgstr "Obnoviť východziu hodnotu" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Povoliť užívateľom prispôsobiť túto hodnotu" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 @@ -2433,7 +2439,7 @@ msgstr "" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Povoliť vkladanie do cudzieho rámu" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" @@ -2451,15 +2457,15 @@ msgstr "" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Zvýrazniť zvolené riadky" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Značkovač riadkov" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Zvýrazniť riadok označený kurzórom myši" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" @@ -2504,7 +2510,7 @@ msgstr "" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "" +msgstr "Skontrolujte prístupové práva konfiguračného súboru" #: libraries/config/messages.inc.php:39 msgid "" @@ -2514,7 +2520,7 @@ msgstr "" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" -msgstr "" +msgstr "Komprimovať za behu" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:153 @@ -2529,11 +2535,11 @@ msgstr "" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Potvrdzovať DROP dopyty" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Ladiť SQL" #: libraries/config/messages.inc.php:45 #, fuzzy @@ -9849,7 +9855,7 @@ msgstr "Údaj" #: tbl_printview.php:377 tbl_structure.php:835 msgid "static" -msgstr "" +msgstr "statický" #: tbl_printview.php:379 tbl_structure.php:837 msgid "dynamic" @@ -9925,11 +9931,11 @@ msgstr "Odstrániť index/indexy" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Pridať unikátny index" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" -msgstr "" +msgstr "Pridať fulltextový index" #: tbl_structure.php:385 #, fuzzy @@ -10172,7 +10178,7 @@ msgstr "Profil bol aktualizovaný." #: view_create.php:141 msgid "VIEW name" -msgstr "" +msgstr "Meno pohľadu" #: view_operations.php:91 #, fuzzy From f9ff99c7cfa8159f5af3a55089f0644e6d01b8f8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:13:40 +0200 Subject: [PATCH 0547/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 590d75285e..132c5e410d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-16 23:42+0200\n" +"PO-Revision-Date: 2011-05-17 09:13+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" From e3e6aef77407475d559c8a3505956397953b9ba7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:15:35 +0200 Subject: [PATCH 0548/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 132c5e410d..6d78f3d88f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:13+0200\n" +"PO-Revision-Date: 2011-05-17 09:15+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -890,8 +890,9 @@ msgid "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -"Neboli prijaté žiadne dáta na import. Buď nebol načítaný žiadny súbor alebo " -"jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP. Pozri FAQ 1.16." +"Neboli prijaté žiadne dáta na import. Buď nebol odoslaný žiadny súbor alebo " +"jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP konfigurácii. Pozri " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:371 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" From c961435fe79c5bc34ebb3c00b58da5390569be33 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:16:30 +0200 Subject: [PATCH 0549/1652] Translation update done using Pootle. --- po/sk.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6d78f3d88f..6418de67ef 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:15+0200\n" +"PO-Revision-Date: 2011-05-17 09:16+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1523,7 +1523,9 @@ msgstr "Neznáma chyba pri nahrávaní súboru." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Chyba pri presune súboru, pozrite FAQ 1.11" +msgstr "" +"Chyba pri presune nahrávaného súboru, viď " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" From 80d46135c8ac11cbfcbc8b7cfe5d5e63ad2173ea Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:17:21 +0200 Subject: [PATCH 0550/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index eb7f77a633..21214bbb8a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-16 21:29+0200\n" +"PO-Revision-Date: 2011-05-17 09:17+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6603,7 +6603,7 @@ msgstr "Колация на MySQL" #: main.php:119 msgid "Appearance Settings" -msgstr "" +msgstr "Визуални настройки" #: main.php:146 prefs_manage.php:274 msgid "More settings" From da1c34f1ea8bb15d0d83a1aa647b0e25e76d64e4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:17:22 +0200 Subject: [PATCH 0551/1652] Translation update done using Pootle. --- po/sk.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6418de67ef..448aa894d3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:16+0200\n" +"PO-Revision-Date: 2011-05-17 09:17+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4482,7 +4482,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "Môže byť nepresné. Pozri FAQ 3.11" +msgstr "" +"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." From f5c42423e5334169d3d724c7615c4b96bcc2e7d4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:18:31 +0200 Subject: [PATCH 0552/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 448aa894d3..8412e1e5dd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:17+0200\n" +"PO-Revision-Date: 2011-05-17 09:18+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9529,14 +9529,15 @@ msgid "Chart generated successfully." msgstr "Práva boli úspešne znovunačítané." #: tbl_chart.php:59 -#, fuzzy #| msgid "" #| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " #| "3.11[/a]" msgid "" "The result of this query can't be used for a chart. See [a@./Documentation." "html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Môže byť nepresné. Pozri FAQ 3.11" +msgstr "" +"Výsledok tohto dopytu nemôže byť použitý pre graf. Viď " +"[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #: tbl_chart.php:90 msgid "Width" From 8833ac4b5c456e0e0b59af62212d36418e3c6329 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:18:38 +0200 Subject: [PATCH 0553/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 21214bbb8a..ee9cbd3516 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:17+0200\n" +"PO-Revision-Date: 2011-05-17 09:18+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6625,7 +6625,7 @@ msgstr "Набор от знаци на MySQL" #: main.php:181 msgid "Web server" -msgstr "" +msgstr "Web сървър" #: main.php:187 msgid "MySQL client version" From 5be7328dd2877f9054476f6318d1b04fafeee68b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:18:49 +0200 Subject: [PATCH 0554/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ee9cbd3516..c4de3ae20b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7111,7 +7111,7 @@ msgid "" "between the web server and the MySQL server." msgstr "" "Забележка: Разрешаването на статистика на БД може да коства много голям " -"трафик между уеб сървъра и MySQL сървъра." +"трафик между web сървъра и MySQL сървъра." #: server_engines.php:47 msgid "Storage Engines" From 78648d8ba23d0c8cb397d302b80ae40b4262bfb4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:19:23 +0200 Subject: [PATCH 0555/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c4de3ae20b..2e19253e3d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:18+0200\n" +"PO-Revision-Date: 2011-05-17 09:19+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -841,7 +841,7 @@ msgstr "" #: export.php:311 export.php:315 #, php-format msgid "The web server does not have permission to save the file %s." -msgstr "Уеб сървъра няма права за запис на файла %s." +msgstr "Web сървъра няма права за запис върху файла %s." #: export.php:673 #, php-format From 16e6f065fb97e484cc4e235ab10dcb9b2325bb91 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:19:41 +0200 Subject: [PATCH 0556/1652] Translation update done using Pootle. --- po/sk.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8412e1e5dd..5d3bd65ef8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:18+0200\n" +"PO-Revision-Date: 2011-05-17 09:19+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -111,7 +111,9 @@ msgstr "Nepodarilo sa otvoriť vzdialene URL" msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." -msgstr "Súbor %s nebol nájdený, viac informácií nájdete na www.phpmyadmin.net." +msgstr "" +"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na " +"www.phpmyadmin.net." #: db_create.php:58 #, php-format From 993fbc8cbef24f602ff1b6aa13635dc0e5d079aa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:19:43 +0200 Subject: [PATCH 0557/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2e19253e3d..016bfd7581 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6239,7 +6239,7 @@ msgstr "Местоположение на текстовия файл" #: libraries/sql_query_form.lib.php:504 tbl_change.php:965 msgid "web server upload directory" -msgstr "директорията за upload на уеб сървъра" +msgstr "директорията за upload на web сървърa" #: libraries/sqlparser.lib.php:134 msgid "" From c8963868f16d90f9e1046b386f1295367728af71 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:19:58 +0200 Subject: [PATCH 0558/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 016bfd7581..832757243c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6239,7 +6239,7 @@ msgstr "Местоположение на текстовия файл" #: libraries/sql_query_form.lib.php:504 tbl_change.php:965 msgid "web server upload directory" -msgstr "директорията за upload на web сървърa" +msgstr "директорията за upload на web сървъра" #: libraries/sqlparser.lib.php:134 msgid "" From dc818a0ece3962d04c444ff7a92bf0861a5b1650 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:22:19 +0200 Subject: [PATCH 0559/1652] Translation update done using Pootle. --- po/sk.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5d3bd65ef8..0afe5a70a4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:19+0200\n" +"PO-Revision-Date: 2011-05-17 09:22+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6876,7 +6876,6 @@ msgid "" msgstr "Zachová pôvodné formátovanie poľa tak ako je uložené v databáze." #: libraries/transformations/text_plain__imagelink.inc.php:9 -#, fuzzy #| msgid "" #| "Displays an image and a link; the field contains the filename. The first " #| "option is a URL prefix like \"http://www.example.com/\". The second and " @@ -6886,9 +6885,9 @@ msgid "" "option is a URL prefix like \"http://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" -"Zobrazí obrázok a odkaz z poľa obsahujúceho odkaz na obrázok. Prvý parameter " -"je prefix URL (napr. \"http://domena.sk/\"), druhý a tretí parameter určujú " -"šírku a výšku obrázku." +"Zobrazí obrázok a odkaz; pole obsahuje meno súboru. Prvý parameter je prefix " +"URL (napr. \"http://www.example.com/\"). Druhý a tretí parameter určujú " +"šírku a výšku obrázku v pixeloch." #: libraries/transformations/text_plain__link.inc.php:9 #, fuzzy From 1e90fd85c0df51bb2d392b4b9089b3af474442ca Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:24:15 +0200 Subject: [PATCH 0560/1652] Translation update done using Pootle. --- po/sk.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0afe5a70a4..3031f708b2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:22+0200\n" +"PO-Revision-Date: 2011-05-17 09:24+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6890,7 +6890,6 @@ msgstr "" "šírku a výšku obrázku v pixeloch." #: libraries/transformations/text_plain__link.inc.php:9 -#, fuzzy #| msgid "" #| "Displays a link; the field contains the filename. The first option is a " #| "URL prefix like \"http://www.example.com/\". The second option is a title " @@ -6900,8 +6899,8 @@ msgid "" "prefix like \"http://www.example.com/\". The second option is a title for " "the link." msgstr "" -"Zobrazí odkaz z poľa obsahujúceho odkaz. Prvý parameter je prefix URL (napr. " -"\"http://domena.sk/\"), druhý parameter je text odkazu." +"Zobrazí odkaz; pole obsahuje meno súboru. Prvý parameter je prefix URL " +"(napr. \"http://www.example.com/\"), druhý parameter je názov odkazu." #: libraries/transformations/text_plain__longToIpv4.inc.php:9 msgid "" From f6942480f6ab5384670f7d68563e8cc7ff7f7ef9 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:24:50 +0200 Subject: [PATCH 0561/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3031f708b2..cb839009b1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -113,7 +113,7 @@ msgid "" "for more information." msgstr "" "Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na " -"www.phpmyadmin.net." +"www.phpmyadmin.net ." #: db_create.php:58 #, php-format From 1446386f6b343d5b70223ccf83a094c207880c55 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:26:47 +0200 Subject: [PATCH 0562/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index cb839009b1..6e6ea5aac7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:24+0200\n" +"PO-Revision-Date: 2011-05-17 09:26+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7959,7 +7959,7 @@ msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" #: server_privileges.php:2120 msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)" +msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)" #: server_privileges.php:2123 #, php-format From c29dedb9017922c438de7dac2fa8f4c764cff71e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:27:14 +0200 Subject: [PATCH 0563/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6e6ea5aac7..ae616ac04c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:26+0200\n" +"PO-Revision-Date: 2011-05-17 09:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1692,7 +1692,7 @@ msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" #: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" -msgstr "Vzhľad" +msgstr "Téma" #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." From ae7d0dbeb51cc1f6b6cfe29d5b2ded6542bc46c3 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:29:44 +0200 Subject: [PATCH 0564/1652] Translation update done using Pootle. --- po/sk.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index ae616ac04c..fb2db0361b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:27+0200\n" +"PO-Revision-Date: 2011-05-17 09:29+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6655,7 +6655,6 @@ msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" #: libraries/tbl_properties.inc.php:104 -#, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " #| "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") " @@ -6668,9 +6667,9 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" "Ak je pole typu \"enum\" alebo \"set\", prosím zadávajte hodnoty v tvare: " -"'a','b','c'...
Ak dokonca potrebujete zadať spätné lomítko (\"\\\") " -"alebo apostrof (\"'\") pri týchto hodnotách, zadajte ich napríklad takto '\\" -"\\xyz' alebo 'a\\'b'." +"'a','b','c'...
Ak potrebujete zadať spätné lomítko (\"\\\") alebo " +"apostrof (\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho " +"spätného lomítka (napr. '\\\\xyz' alebo 'a\\'b'." #: libraries/tbl_properties.inc.php:105 msgid "" From 5cd9113f068f5cc6a46f87b95b8871975fd79081 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:30:15 +0200 Subject: [PATCH 0565/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 832757243c..511c01a556 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:19+0200\n" +"PO-Revision-Date: 2011-05-17 09:30+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6149,7 +6149,7 @@ msgstr "Променливи" #: libraries/server_links.inc.php:81 test/theme.php:108 msgid "Charsets" -msgstr "Набори от знации" +msgstr "Знакови набори" #: libraries/server_links.inc.php:85 test/theme.php:112 msgid "Engines" From 1e98cd124fc32a9955a0957a562148a459afc2a3 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:30:51 +0200 Subject: [PATCH 0566/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fb2db0361b..9ed31fd7fe 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:29+0200\n" +"PO-Revision-Date: 2011-05-17 09:30+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From a0dd9d8cac81470cd60e92e55961bfb7a2b2c05c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:32:14 +0200 Subject: [PATCH 0567/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9ed31fd7fe..b2e4a432df 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:30+0200\n" +"PO-Revision-Date: 2011-05-17 09:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6745,8 +6745,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Nie je dostupný žiadny popis pre túto transformáciu.
Kontaktujte " -"autora, ktorý %s vytára." +"Pre túto transformáciu nie je dostupný žiadny popis.
Opýtajte sa autora " +"čo %s robí." #: libraries/tbl_properties.inc.php:727 server_engines.php:56 #: tbl_operations.php:370 From 09ee4b65d298403101089ce441b5e68b4c7c060e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:32:27 +0200 Subject: [PATCH 0568/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 511c01a556..f191d4956f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:30+0200\n" +"PO-Revision-Date: 2011-05-17 09:32+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6645,7 +6645,7 @@ msgstr "" #: main.php:213 msgid "Official Homepage" -msgstr "Официалната страница на phpMyAdmin" +msgstr "Официална страница на phpMyAdmin" #: main.php:214 msgid "Contribute" From a0800e98bcd7631ee8a86599b368f2b71a9293b7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:32:54 +0200 Subject: [PATCH 0569/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b2e4a432df..8cf859b70f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1103,7 +1103,7 @@ msgstr "Znovu načítať databázu" #: js/messages.php:75 msgid "Copying Database" -msgstr "Kopírujem databázu " +msgstr "Kopírujem databázu" #: js/messages.php:76 msgid "Changing Charset" From 8d3f9b5b1d025eda086202d794e395d51965694b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:33:10 +0200 Subject: [PATCH 0570/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8cf859b70f..ad9cde522e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:32+0200\n" +"PO-Revision-Date: 2011-05-17 09:33+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1199,7 +1199,7 @@ msgstr "" #: js/messages.php:114 msgid "Add an option for column " -msgstr "Pridať voľbu pre stĺpec" +msgstr "Pridať voľbu pre stĺpec " #: js/messages.php:117 msgid "Generate password" From 6a0fc1e758ead8b077e5726755435084de1709ae Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:33:34 +0200 Subject: [PATCH 0571/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ad9cde522e..71c9d4f759 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2746,10 +2746,9 @@ msgid "Remember file name template" msgstr "Vzor pre názov súboru" #: libraries/config/messages.inc.php:118 -#, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" -msgstr " Použiť opačný apostrof pri názvoch tabuliek a polí " +msgstr " Použiť opačný apostrof pri názvoch tabuliek a polí" #: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:257 #: libraries/display_export.lib.php:351 From ee89dd7df3eb35a1b690f12d6ea28f10f845d230 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:33:55 +0200 Subject: [PATCH 0572/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 71c9d4f759..3b836d7011 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4952,7 +4952,7 @@ msgstr "v dopyte" #: libraries/display_tbl.lib.php:2045 msgid "Showing rows" -msgstr "Ukázať záznamy " +msgstr "Zobrazené riadky" #: libraries/display_tbl.lib.php:2055 msgid "total" From 5fca4b497acd8f6277298f231f56dae4d453fe36 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:34:03 +0200 Subject: [PATCH 0573/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3b836d7011..c86af724ce 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:33+0200\n" +"PO-Revision-Date: 2011-05-17 09:34+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5785,10 +5785,9 @@ msgid "" msgstr "" #: libraries/import/csv.php:41 -#, fuzzy #| msgid "Column names" msgid "Column names: " -msgstr "Názvy stĺpcov" +msgstr "Názvy stĺpcov: " #: libraries/import/csv.php:61 libraries/import/csv.php:74 #: libraries/import/csv.php:79 libraries/import/csv.php:84 From f575f196fcb6252633140730ee878fde581962ba Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:34:27 +0200 Subject: [PATCH 0574/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c86af724ce..e549f9d214 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7327,10 +7327,9 @@ msgid "Create a page and export to it" msgstr "Vytvoriť nový index" #: pmd_pdf.php:111 -#, fuzzy #| msgid "User name" msgid "New page name: " -msgstr "Meno používateľa" +msgstr "Nový názov stránky: " #: pmd_pdf.php:114 msgid "Export/Import to scale" From d3087f817c9354f9df94545d65f95ef27a1a5f37 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:34:40 +0200 Subject: [PATCH 0575/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index e549f9d214..3550f95200 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9467,7 +9467,7 @@ msgstr "" #: tbl_change.php:881 msgid "Binary - do not edit" -msgstr "Binárny - neupravujte " +msgstr "Binárny - neupravujte" #: tbl_change.php:929 msgid "Upload to BLOB repository" From 1599fad155b8e9bec77042c4a8a9617402a3b834 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:35:38 +0200 Subject: [PATCH 0576/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3550f95200..fa71bf1028 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:34+0200\n" +"PO-Revision-Date: 2011-05-17 09:35+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4663,7 +4663,7 @@ msgid ", @TABLE@ will become the table name" msgstr "" #: libraries/display_export.lib.php:237 -#, fuzzy, php-format +#, php-format #| msgid "" #| "This value is interpreted using %1$sstrftime%2$s, so you can use time " #| "formatting strings. Additionally the following transformations will " @@ -4675,7 +4675,8 @@ msgid "" 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 " -"nahradenia: %3$s. Ostatný text bude zachovaný." +"nahradenia: %3$s. Ostatný text bude zachovaný. Viď %4$sFAQ%5$s pre viac " +"detailov." #: libraries/display_export.lib.php:275 msgid "use this for future exports" From a02823130293902a7293614da499189ed6a5b3d0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:36:34 +0200 Subject: [PATCH 0577/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f191d4956f..14cf8fd697 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:32+0200\n" +"PO-Revision-Date: 2011-05-17 09:36+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -4705,7 +4705,7 @@ msgstr "Редът беше изтрит" #: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153 #: server_processlist.php:92 msgid "Kill" -msgstr "Убиване" +msgstr "Спиране" #: libraries/display_tbl.lib.php:2027 msgid "in query" From 5442dcd663e215d1ce16f884cd512c66610d4616 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:36:58 +0200 Subject: [PATCH 0578/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 14cf8fd697..67e60251c0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7558,7 +7558,7 @@ msgstr "знак за заместване" #: server_processlist.php:29 #, php-format msgid "Thread %s was successfully killed." -msgstr "Нишка %s беше успешно отстранена." +msgstr "Нишка %s беше успешно спряна." #: server_processlist.php:31 #, php-format From ac1a28a6ddc6d48eab10539df1a2abfe723b2b51 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:37:16 +0200 Subject: [PATCH 0579/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index fa71bf1028..4e5a1ee2b5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:35+0200\n" +"PO-Revision-Date: 2011-05-17 09:37+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6799,8 +6799,8 @@ msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -"Zobrazí dáta v ich hexadecimálnej forme. Nepovinný parameter určuje po koľko " -"znakoch je vkladaná medzera (štandardne po dvoch)." +"Zobrazí dáta v ich hexadecimálnej forme. Nepovinný prvý parameter určuje po " +"koľko znakoch je vkladaná medzera (východzia hodnota je 2)." #: libraries/transformations/image_jpeg__inline.inc.php:9 #: libraries/transformations/image_png__inline.inc.php:9 From 61fa0dc3bd3267ac8915281b1c23a29eb1345434 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:37:41 +0200 Subject: [PATCH 0580/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 67e60251c0..a98691909f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:36+0200\n" +"PO-Revision-Date: 2011-05-17 09:37+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1205,7 +1205,7 @@ msgstr "" #. l10n: Latest available phpMyAdmin version #: js/messages.php:127 msgid ", latest stable version:" -msgstr ", последна стабилна версия:" +msgstr ", актуална стабилна версия:" #: js/messages.php:128 msgid "up to date" From 75f118ecae08e7a223684d8f1108bc90f81f9ad8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:37:42 +0200 Subject: [PATCH 0581/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4e5a1ee2b5..5f31a67c58 100644 --- a/po/sk.po +++ b/po/sk.po @@ -458,7 +458,7 @@ msgstr "Vložiť" #: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577 msgid "And" -msgstr "a" +msgstr "A" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582 msgid "Del" From 255f3cf032bf1f6f9f18fbe9432a043edbe124a4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:38:31 +0200 Subject: [PATCH 0582/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5f31a67c58..5d7a44f5e1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:37+0200\n" +"PO-Revision-Date: 2011-05-17 09:38+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4633,10 +4633,10 @@ msgid "Output:" msgstr "" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 -#, fuzzy, php-format +#, php-format #| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" -msgstr "Uložiť na server do adresára %s" +msgstr "Uložiť na server do adresára %s" #: libraries/display_export.lib.php:206 #, fuzzy From 1744152efa704262fa7f9f9a73ac6379cac34695 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:39:03 +0200 Subject: [PATCH 0583/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a98691909f..9f1b4497eb 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:37+0200\n" +"PO-Revision-Date: 2011-05-17 09:39+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -4490,7 +4490,7 @@ msgstr "" #: libraries/display_export.lib.php:281 libraries/display_import.lib.php:188 #: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:517 msgid "Character set of the file:" -msgstr "Набор от знаци на файла:" +msgstr "Знаков набор на файла:" #: libraries/display_export.lib.php:309 msgid "Compression:" From 37053960c63d7eeb7bbcce3fcfc6b98824623dae Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:39:08 +0200 Subject: [PATCH 0584/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 9f1b4497eb..fde1602a36 100644 --- a/po/bg.po +++ b/po/bg.po @@ -5595,7 +5595,7 @@ msgstr "Няма промяна" #: libraries/mysql_charsets.lib.php:116 msgid "Charset" -msgstr "Набор от знаци" +msgstr "Знаков набор" #: libraries/mysql_charsets.lib.php:212 libraries/mysql_charsets.lib.php:413 #: tbl_change.php:552 From 5fb8825cd4db0626beb6f4c4af03a14c6c9974d2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:39:15 +0200 Subject: [PATCH 0585/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index fde1602a36..9a6c0d1e56 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6621,7 +6621,7 @@ msgstr "Потребител" #: main.php:169 msgid "MySQL charset" -msgstr "Набор от знаци на MySQL" +msgstr "Знаков набор на MySQL" #: main.php:181 msgid "Web server" From e49f0f5ce236eaadbe0859e468884574a18463af Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:39:38 +0200 Subject: [PATCH 0586/1652] Translation update done using Pootle. --- po/sk.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5d7a44f5e1..50b712b5b1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:38+0200\n" +"PO-Revision-Date: 2011-05-17 09:39+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4821,7 +4821,6 @@ msgstr "" "bude pokračovať od pozície %d." #: libraries/display_import.lib.php:221 -#, 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 large " @@ -4831,9 +4830,9 @@ msgid "" "to the PHP timeout limit. (This might be good way to import large files, " "however it can break transactions.)" msgstr "" -"Povoliť prerušenie importu v prípade, že sa blíži časový limit behu skriptu. " -"Týmto spôsobom sa môžu importovať aj veľké súbory, ale môže to zároveň " -"spôsobiť problémy s transakciami." +"Povoliť prerušenie importu v prípade, že sa blíži časový limit behu PHP " +"skriptu. (Týmto spôsobom sa môžu importovať aj veľké súbory, ale môže to " +"zároveň spôsobiť problémy s transakciami.)" #: libraries/display_import.lib.php:228 #| msgid "Number of records (queries) to skip from start" From 6277ee64a82cbae371dc8849c1927b12ef1798ee Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 09:39:38 +0200 Subject: [PATCH 0587/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 9a6c0d1e56..36158e67d0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1085,7 +1085,7 @@ msgstr "Копиране БД" #: js/messages.php:76 msgid "Changing Charset" -msgstr "Промяна на знаков набор" +msgstr "Промяна знаков набор" #: js/messages.php:77 msgid "Table must have at least one column" From 195bbf2e05338cf8c011f4428ebd3b2fd1f2e335 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:39:57 +0200 Subject: [PATCH 0588/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 50b712b5b1..b4e635a278 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5846,10 +5846,9 @@ msgid "SQL compatibility mode:" msgstr "Režim kompatibility SQL" #: libraries/import/sql.php:42 -#, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" +msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" #: libraries/import/xml.php:74 libraries/import/xml.php:130 msgid "" From 100bbdf7a698c8f791181bb71d078dc20a631d42 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:40:36 +0200 Subject: [PATCH 0589/1652] Translation update done using Pootle. --- po/sk.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index b4e635a278..e872767c4d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:39+0200\n" +"PO-Revision-Date: 2011-05-17 09:40+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8086,12 +8086,10 @@ msgid "Slave IO Thread not running!" msgstr "" #: server_replication.php:303 -#, fuzzy msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -"Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " -"by ste ho nakonfigurovať?" +"Tento server je nakonfigurovaný ako slave v replikačnom procese. Prajete si:" #: server_replication.php:306 msgid "See slave status table" From 32084c0a4e5a2da3aaa7e028360bce9accfe7986 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:41:34 +0200 Subject: [PATCH 0590/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index e872767c4d..2b46ca02e9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:40+0200\n" +"PO-Revision-Date: 2011-05-17 09:41+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8887,12 +8887,13 @@ msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento server beží %s. Bol spustený %s." #: server_status.php:486 -#, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" "This MySQL server works as master and slave in replication process." -msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." +msgstr "" +"Tento server je nakonfigurovaný ako master a slave v " +"replikačnom procese." #: server_status.php:488 #, fuzzy From 6dc6952ec682c8e80a4e42d2671e426dccda9345 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:42:04 +0200 Subject: [PATCH 0591/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2b46ca02e9..2f57e1658b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:41+0200\n" +"PO-Revision-Date: 2011-05-17 09:42+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8896,10 +8896,11 @@ msgstr "" "replikačnom procese." #: server_status.php:488 -#, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." -msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." +msgstr "" +"Tento MYSQL server je nakonfigurovaný ako master v replikačnom " +"procese." #: server_status.php:490 #, fuzzy From 7db0f6f4b512ee4bb590e73646b1fd495b21f8e3 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:43:16 +0200 Subject: [PATCH 0592/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2f57e1658b..4c14bc3654 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:42+0200\n" +"PO-Revision-Date: 2011-05-17 09:43+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8903,10 +8903,10 @@ msgstr "" "procese." #: server_status.php:490 -#, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." -msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." +msgstr "" +"Tento MYSQL server pracuje ako slave v replikačnom procese." #: server_status.php:492 #, fuzzy From e4ed70205192e58166225be267fef4a9d2979a4a Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:44:37 +0200 Subject: [PATCH 0593/1652] Translation update done using Pootle. --- po/sk.po | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4c14bc3654..c932588002 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:43+0200\n" +"PO-Revision-Date: 2011-05-17 09:44+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8909,7 +8909,6 @@ msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." #: server_status.php:492 -#, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " #| "information about replication status on the server, please visit the replication section." msgstr "" -"Tento MySQL server funguje ako %s v replikačnom procese. Pre viac " -"informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." +"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." #: server_status.php:509 msgid "" From d8ea77478b7ee54cb3b2faeb71cbecbdccd74864 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:44:57 +0200 Subject: [PATCH 0594/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c932588002..81c73d7dad 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2106,7 +2106,7 @@ msgstr "EiB" #. l10n: Thousands separator #: libraries/common.lib.php:1431 msgid "," -msgstr " " +msgstr "  " #. l10n: Decimal separator #: libraries/common.lib.php:1433 From 31b59f39d2436f26e3b5cd2cc6002dcbfee271e4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:45:16 +0200 Subject: [PATCH 0595/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 81c73d7dad..a13b1d5eb9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:44+0200\n" +"PO-Revision-Date: 2011-05-17 09:45+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2106,7 +2106,7 @@ msgstr "EiB" #. l10n: Thousands separator #: libraries/common.lib.php:1431 msgid "," -msgstr "  " +msgstr "  " #. l10n: Decimal separator #: libraries/common.lib.php:1433 From c5c8ddcac371e00ebc7c156a5395b153a672d90c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:45:38 +0200 Subject: [PATCH 0596/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a13b1d5eb9..d3a8a1325f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8918,7 +8918,7 @@ msgid "" "the replication section." msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." +"href=#replication>sekciu replikácie." #: server_status.php:509 msgid "" From b8e31790d7c7813473cf8002022ebacbc1b290b2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:46:09 +0200 Subject: [PATCH 0597/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d3a8a1325f..04d76663d8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:45+0200\n" +"PO-Revision-Date: 2011-05-17 09:46+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 40e33a89a535c604d1a3b040c6dfbf951097ebec Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:46:41 +0200 Subject: [PATCH 0598/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 04d76663d8..e31465032c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6303,10 +6303,10 @@ msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" #: libraries/schema/Pdf_Relation_Schema.class.php:851 #: libraries/schema/Svg_Relation_Schema.class.php:737 #: libraries/schema/Visio_Relation_Schema.class.php:502 -#, fuzzy, php-format +#, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" -msgstr "Schéma databázy \"%s\" - Strana %s" +msgstr "Schéma databázy \"%s\" - Strana %s" #: libraries/schema/Export_Relation_Schema.class.php:174 msgid "This page does not contain any tables!" From 9dad70bfb62ca02629ed35ab2dd4e50536eda34f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:47:27 +0200 Subject: [PATCH 0599/1652] Translation update done using Pootle. --- po/sk.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index e31465032c..d8fb063cea 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:46+0200\n" +"PO-Revision-Date: 2011-05-17 09:47+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6664,9 +6664,9 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" "Ak je pole typu \"enum\" alebo \"set\", prosím zadávajte hodnoty v tvare: " -"'a','b','c'...
Ak potrebujete zadať spätné lomítko (\"\\\") alebo " -"apostrof (\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho " -"spätného lomítka (napr. '\\\\xyz' alebo 'a\\'b'." +"'a','b','c'...
Ak potrebujete zadať spätné lomítko (\"\\\") alebo apostrof " +"(\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho spätného " +"lomítka (napr. '\\\\xyz' alebo 'a\\'b'." #: libraries/tbl_properties.inc.php:105 msgid "" From 32ddf9fde94afeb5c603cda5ee94a4566bd35d37 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:47:47 +0200 Subject: [PATCH 0600/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d8fb063cea..35e517b6b0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6882,8 +6882,8 @@ msgid "" "third options are the width and the height in pixels." msgstr "" "Zobrazí obrázok a odkaz; pole obsahuje meno súboru. Prvý parameter je prefix " -"URL (napr. \"http://www.example.com/\"). Druhý a tretí parameter určujú " -"šírku a výšku obrázku v pixeloch." +"URL (napr. \"http://www.example.com/\"). Druhý a tretí parameter určujú šírku " +"a výšku obrázku v pixeloch." #: libraries/transformations/text_plain__link.inc.php:9 #| msgid "" From 3772f0dfd8bbc255791725df2c3759c5f4108e73 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:49:04 +0200 Subject: [PATCH 0601/1652] Translation update done using Pootle. --- po/sk.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 35e517b6b0..7f682ffb42 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:47+0200\n" +"PO-Revision-Date: 2011-05-17 09:49+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8187,10 +8187,10 @@ msgid "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." msgstr "" -"Počet dočasných tabuliek automaticky vytvorených servrom pri vykonávaní " -"príkazov. Ak je hodnota Created_tmp_disk_tables príliš vysoká, môžte zvýšiť " -"hodnotu tmp_table_size, aby boli dočasné tabuľky ukladané do pamäte a nie na " -"disk." +"Počet dočasných tabuliek automaticky vytvorených serverom pri vykonávaní " +"príkazov. Ak je hodnota Created_tmp_disk_tables príliš vysoká, môžete zvýšiť " +"hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie " +"na disk." #: server_status.php:49 msgid "How many temporary files mysqld has created." From 7c16b49603dd7ac1a8b1ca732126d29b1f66712f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:51:35 +0200 Subject: [PATCH 0602/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7f682ffb42..8123ec35bc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:49+0200\n" +"PO-Revision-Date: 2011-05-17 09:51+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6862,14 +6862,15 @@ msgstr "" "(predvolený je 1)" #: libraries/transformations/text_plain__formatted.inc.php:9 -#, fuzzy #| msgid "" #| "Displays the contents of the field as-is, without running it through " #| "htmlspecialchars(). 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." -msgstr "Zachová pôvodné formátovanie poľa tak ako je uložené v databáze." +msgstr "" +"Zobrazi5 obsah poľa tak ako bolo uložené, bez použitia htmlspecialchars(). " +"To znamená, že pole už obsahuje platný HTML kód." #: libraries/transformations/text_plain__imagelink.inc.php:9 #| msgid "" From ed3f587def2b636b4100dab1129852b26cf54899 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:52:27 +0200 Subject: [PATCH 0603/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8123ec35bc..c488260547 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:51+0200\n" +"PO-Revision-Date: 2011-05-17 09:52+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8468,7 +8468,7 @@ msgstr "Počet fyzických zápisov do logovacieho súboru." #: server_status.php:93 msgid "The number of fsync() writes done to the log file." -msgstr "Počet fsync zápisov vykonaných na logovacom súbore." +msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." #: server_status.php:94 msgid "The number of pending log file fsyncs." From 15b7c84685903647596501b5857a86f3a8354f07 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:53:36 +0200 Subject: [PATCH 0604/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c488260547..89a5304de7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:52+0200\n" +"PO-Revision-Date: 2011-05-17 09:53+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1692,7 +1692,7 @@ msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" #: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" -msgstr "Téma" +msgstr "Téma / Štýl" #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." From 458f33c1a51092148823731c854a0f7c4276e7b8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:54:04 +0200 Subject: [PATCH 0605/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 89a5304de7..b547d2c139 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:53+0200\n" +"PO-Revision-Date: 2011-05-17 09:54+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From e76576987c42c24fff6379f782b5808cb1fecf1d Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:55:42 +0200 Subject: [PATCH 0606/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b547d2c139..29ca27366b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:54+0200\n" +"PO-Revision-Date: 2011-05-17 09:55+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -494,7 +494,7 @@ msgstr "Použiť tabuľky" #: db_qbe.php:662 #, php-format msgid "SQL query on database %s:" -msgstr " SQL dopyt v databáze %s:" +msgstr "SQL dopyt v databáze %s:" #: db_qbe.php:956 libraries/common.lib.php:1188 msgid "Submit Query" From 69b01eb90c0d4ec553320f6d77d74fc2652b40b1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:55:50 +0200 Subject: [PATCH 0607/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 29ca27366b..31f40aac80 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2106,7 +2106,7 @@ msgstr "EiB" #. l10n: Thousands separator #: libraries/common.lib.php:1431 msgid "," -msgstr "  " +msgstr " " #. l10n: Decimal separator #: libraries/common.lib.php:1433 From 00cf0d986e341f5f62ec8f774532fe61d4db90ee Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:55:55 +0200 Subject: [PATCH 0608/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 31f40aac80..418a3b5352 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2748,7 +2748,7 @@ msgstr "Vzor pre názov súboru" #: libraries/config/messages.inc.php:118 #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" -msgstr " Použiť opačný apostrof pri názvoch tabuliek a polí" +msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" #: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:257 #: libraries/display_export.lib.php:351 From 02847b74a51bec02e96dc4eb8bc9758e0f8d6612 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:56:24 +0200 Subject: [PATCH 0609/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 418a3b5352..c8e9d2fa8b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:55+0200\n" +"PO-Revision-Date: 2011-05-17 09:56+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From ebd4c82eb8ed98f066f4b48fd7ec269783de23a0 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:57:00 +0200 Subject: [PATCH 0610/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c8e9d2fa8b..a628d799c2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:56+0200\n" +"PO-Revision-Date: 2011-05-17 09:57+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 84632992eede1eca5403490aef18bfa25c84da7e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:58:15 +0200 Subject: [PATCH 0611/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a628d799c2..e1ccb33727 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:57+0200\n" +"PO-Revision-Date: 2011-05-17 09:58+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From e25fa4219182068388b4b1adf74f58f34fb043c3 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 09:59:52 +0200 Subject: [PATCH 0612/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e1ccb33727..cb7f2a0b72 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:58+0200\n" +"PO-Revision-Date: 2011-05-17 09:59+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8976,7 +8976,7 @@ msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " +"Štatistika dopytov: Od spustenia bolo odoslaných %s dopytov na " "server." #: server_status.php:626 From 3e302c1163997f91d09ecbe1755592d029d73a81 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:00:43 +0200 Subject: [PATCH 0613/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index cb7f2a0b72..18bd418f1b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:59+0200\n" +"PO-Revision-Date: 2011-05-17 10:00+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From c180628e9cd16a2fd00a36c682eb4fa3d9456970 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:01:01 +0200 Subject: [PATCH 0614/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 18bd418f1b..0c54d32f6c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:00+0200\n" +"PO-Revision-Date: 2011-05-17 10:01+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 85467f3d25ecaf3fbf6ed34d174703db97351212 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:01:47 +0200 Subject: [PATCH 0615/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0c54d32f6c..0b35f4a087 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4609,10 +4609,9 @@ msgid "Rows:" msgstr "Riadkov" #: libraries/display_export.lib.php:157 -#, fuzzy #| msgid "Update row(s)" msgid "Dump some row(s)" -msgstr "Upraviť riadok/riadky" +msgstr "Vypísať niektoré riadky" #: libraries/display_export.lib.php:159 #, fuzzy From 8e211651eb71867dfbf5f3217d7e763d3fd17f12 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:02:07 +0200 Subject: [PATCH 0616/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0b35f4a087..4e65074a64 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:01+0200\n" +"PO-Revision-Date: 2011-05-17 10:02+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4855,7 +4855,7 @@ msgstr "%d nie je platné číslo riadku." #: libraries/display_tbl.lib.php:392 #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" -msgstr "riadok(y) začínajúce od riadku #" +msgstr "riadky začínajúce od riadku #" #: libraries/display_tbl.lib.php:397 msgid "horizontal" From e4386624bd963aaac926da82337148ab63bc6473 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:02:30 +0200 Subject: [PATCH 0617/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4e65074a64..8fe335d65b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6754,10 +6754,10 @@ msgid "PARTITION definition" msgstr "" #: libraries/tbl_properties.inc.php:780 tbl_structure.php:636 -#, fuzzy, php-format +#, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" -msgstr "Pridať stĺpec/stĺpce" +msgstr "Pridať %s stĺpcov" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:630 #, fuzzy From 7a450f85de61cf69e066452eeb49de7f195148ce Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:02:44 +0200 Subject: [PATCH 0618/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8fe335d65b..251491f9bf 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9039,7 +9039,7 @@ msgstr "" #: server_synchronize.php:429 server_synchronize.php:872 msgid "Add column(s)" -msgstr "Pridať stĺpec/stĺpce" +msgstr "Pridať stĺpce" #: server_synchronize.php:430 server_synchronize.php:873 msgid "Remove column(s)" From a2daba422a021177d39f4347526c1c4ffd6d07cd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:02:51 +0200 Subject: [PATCH 0619/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 251491f9bf..2e54982ea1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9043,7 +9043,7 @@ msgstr "Pridať stĺpce" #: server_synchronize.php:430 server_synchronize.php:873 msgid "Remove column(s)" -msgstr "Odstrániť stĺpec/stĺpce" +msgstr "Odstrániť stĺpce" #: server_synchronize.php:431 server_synchronize.php:874 msgid "Alter column(s)" From 334ed6a1ca5c784497354ddc009f3e05a85f4f7b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:02:58 +0200 Subject: [PATCH 0620/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2e54982ea1..80d4bcb2e1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9047,7 +9047,7 @@ msgstr "Odstrániť stĺpce" #: server_synchronize.php:431 server_synchronize.php:874 msgid "Alter column(s)" -msgstr "Upraviť stĺpec/stĺpce" +msgstr "Upraviť stĺpce" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" From b100c228628c417f01a5730f3cd62fde0afcdba9 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:03:07 +0200 Subject: [PATCH 0621/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 80d4bcb2e1..7acdab8096 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:02+0200\n" +"PO-Revision-Date: 2011-05-17 10:03+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9051,7 +9051,7 @@ msgstr "Upraviť stĺpce" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" -msgstr "Odstrániť index/indexy" +msgstr "Odstrániť indexy" #: server_synchronize.php:433 server_synchronize.php:876 #, fuzzy From a973dcac2deb6a411873306d381454f663a17a78 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:03:25 +0200 Subject: [PATCH 0622/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7acdab8096..4436543586 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9054,9 +9054,8 @@ msgid "Remove index(s)" msgstr "Odstrániť indexy" #: server_synchronize.php:433 server_synchronize.php:876 -#, fuzzy msgid "Apply index(s)" -msgstr "Odstrániť index/indexy" +msgstr "Aplikovať indexy" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" From b9beda78c7bdaade2a214be26de329bcf7b551a6 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:03:38 +0200 Subject: [PATCH 0623/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4436543586..e0629eccbb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9059,7 +9059,7 @@ msgstr "Aplikovať indexy" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" -msgstr "Upraviť riadok/riadky" +msgstr "Upraviť riadky" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" From 588462cd8b897a2eda2dd7dae4d40ade362ea749 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:03:49 +0200 Subject: [PATCH 0624/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index e0629eccbb..b7f7d8bd79 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9063,7 +9063,7 @@ msgstr "Upraviť riadky" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" -msgstr "Pridať riadok/riadky" +msgstr "Vložiť riadky" #: server_synchronize.php:445 server_synchronize.php:889 msgid "Would you like to delete all the previous rows from target tables?" From d13c5882a8b659b0cdf2e07d7c0420ec5ebf91d9 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:04:09 +0200 Subject: [PATCH 0625/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b7f7d8bd79..06ffc666fa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:03+0200\n" +"PO-Revision-Date: 2011-05-17 10:04+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9668,7 +9668,7 @@ msgstr "(\"PRIMARY\" musí byť iba meno primárneho kľúča!)" #: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" -msgstr "Pridať do indexu  %s stĺpec" +msgstr "Pridať do indexu  %s stĺpce" #: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695 msgid "Column count has to be larger than zero." From 0f4f04a85fbb721b3542b30da0123f6d959227a5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:05:03 +0200 Subject: [PATCH 0626/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 06ffc666fa..5c361ed45d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:04+0200\n" +"PO-Revision-Date: 2011-05-17 10:05+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2117,7 +2117,7 @@ msgstr "," #: libraries/common.lib.php:1610 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" -msgstr "%a %d.%B. %Y - %H:%M" +msgstr "%a %d.%B. %Y, %H:%M" #: libraries/common.lib.php:1924 #, php-format From 39714f11ae962b6a3001ef0ec4ada46fb6707dd1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:05:35 +0200 Subject: [PATCH 0627/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5c361ed45d..9351436f1d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4773,10 +4773,10 @@ msgid "Importing into the current server" msgstr "Nedá sa prihlásiť k MySQL serveru" #: libraries/display_import.lib.php:131 -#, fuzzy, php-format +#, php-format #| msgid "Go to database" msgid "Importing into the database \"%s\"" -msgstr "Prejsť do databázy" +msgstr "Importujem do databázy \"%s\"" #: libraries/display_import.lib.php:133 #, fuzzy, php-format From c12c472759c0a7a4972d66687ffe364505b605fb Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:05:59 +0200 Subject: [PATCH 0628/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9351436f1d..080cc52766 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4779,10 +4779,10 @@ msgid "Importing into the database \"%s\"" msgstr "Importujem do databázy \"%s\"" #: libraries/display_import.lib.php:133 -#, fuzzy, php-format +#, php-format #| msgid "Go to database" msgid "Importing into the table \"%s\"" -msgstr "Prejsť do databázy" +msgstr "Importujem do tabuľky \"%s\"" #: libraries/display_import.lib.php:139 #, fuzzy From 872e955392e43e476f747bc7541f37d976586e17 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:06:54 +0200 Subject: [PATCH 0629/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 080cc52766..8d03ee8209 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:05+0200\n" +"PO-Revision-Date: 2011-05-17 10:06+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5582,10 +5582,10 @@ msgstr "" #: libraries/export/sql.php:72 libraries/export/sql.php:105 #: libraries/export/sql.php:107 -#, fuzzy, php-format +#, php-format #| msgid "Statements" msgid "Add %s statement" -msgstr "Údaj" +msgstr "Pridať údaj %s" #: libraries/export/sql.php:91 #, fuzzy From 9a74433af0755e23514c128680a55d731e70f668 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:07:14 +0200 Subject: [PATCH 0630/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8d03ee8209..737d5b4f45 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:06+0200\n" +"PO-Revision-Date: 2011-05-17 10:07+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7293,9 +7293,8 @@ msgid "" msgstr "" #: pmd_pdf.php:34 -#, fuzzy msgid "Page has been created" -msgstr "Tabuľka %1$s bola vytvorená." +msgstr "Stránka bola vytvorená" #: pmd_pdf.php:37 msgid "Page creation failed" From 41da4270ed55655a1ea2ca1cd0a6c65036a35104 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:07:46 +0200 Subject: [PATCH 0631/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 737d5b4f45..597a805509 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7372,10 +7372,9 @@ msgid "Cannot save settings, submitted form contains errors" msgstr "" #: prefs_manage.php:80 -#, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" -msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\"" +msgstr "Nepodarilo sa načítať konfiguráciu" #: prefs_manage.php:112 msgid "Configuration contains incorrect data for some fields." From 1927a442868baee9919fbf77f6d95d5190689398 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:08:06 +0200 Subject: [PATCH 0632/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 597a805509..bd915bf641 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:07+0200\n" +"PO-Revision-Date: 2011-05-17 10:08+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7452,10 +7452,9 @@ msgid "%s table not found or not set in %s" msgstr "Tabuľka %s nebola nájdená alebo nie je nastavená v %s" #: schema_export.php:45 -#, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" -msgstr "Tabuľka \"%s\" neexistuje!" +msgstr "Súbor neexistuje" #: server_binlog.php:106 msgid "Select binary log to view" From d221d60d8663c37a7cf4189ba7639dc9f752a209 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:08:23 +0200 Subject: [PATCH 0633/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bd915bf641..ca7c0b7559 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9097,10 +9097,10 @@ msgid "Current connection" msgstr "max. súčasných pripojení" #: server_synchronize.php:1167 -#, fuzzy, php-format +#, php-format #| msgid "Configuration file" msgid "Configuration: %s" -msgstr "Konfiguračný súbor" +msgstr "Konfigurácia: %s" #: server_synchronize.php:1182 msgid "Socket" From 0a4e8777ee92cd9c6b105615916116191bd9e0eb Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:08:52 +0200 Subject: [PATCH 0634/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ca7c0b7559..ca8a3e6e3f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2117,7 +2117,7 @@ msgstr "," #: libraries/common.lib.php:1610 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" -msgstr "%a %d.%B. %Y, %H:%M" +msgstr "%a %d.%B %Y, %H:%M" #: libraries/common.lib.php:1924 #, php-format From 6fa98c440a39c3e46fa6261d4ad873f9da612fca Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:11:48 +0200 Subject: [PATCH 0635/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ca8a3e6e3f..189fa68105 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:08+0200\n" +"PO-Revision-Date: 2011-05-17 10:11+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2363,7 +2363,7 @@ msgstr "Vynulovať" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Zlepšuje onovovaciu rýchlosť obrazovky" #: libraries/config/messages.inc.php:18 msgid "Enable Ajax" From 711a28c7d41a7a2285b8cd3162b3e35b702b9dbc Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:14:45 +0200 Subject: [PATCH 0636/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 189fa68105..8d378dc720 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:11+0200\n" +"PO-Revision-Date: 2011-05-17 10:14+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2393,7 +2393,7 @@ msgstr "Povoliť vkladanie do cudzieho rámu" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Zobraziť príkaz "Zrušiť databázu" bežným užívateľom" #: libraries/config/messages.inc.php:24 msgid "" From 36eab2bf358b377ee83c7183861d48c4f3985a24 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:15:57 +0200 Subject: [PATCH 0637/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8d378dc720..275225c245 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:14+0200\n" +"PO-Revision-Date: 2011-05-17 10:15+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2400,6 +2400,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]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" From aea5908594ef7f8ad9d62bfcff9a34ffcb4a4404 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:16:39 +0200 Subject: [PATCH 0638/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 275225c245..503b27d38d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:15+0200\n" +"PO-Revision-Date: 2011-05-17 10:16+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2405,7 +2405,7 @@ msgstr "" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Blowfish secret" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" From 95ec106516eff537e3d25bb22dd589c29ca1da50 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:17:27 +0200 Subject: [PATCH 0639/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 503b27d38d..f7eb598289 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:16+0200\n" +"PO-Revision-Date: 2011-05-17 10:17+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2421,7 +2421,7 @@ msgstr "Zvýrazniť riadok označený kurzórom myši" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Zvýrazňovač" #: libraries/config/messages.inc.php:30 msgid "" From 67f7e07807dd44bcac3a09f022114372b5c7a2da Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:19:10 +0200 Subject: [PATCH 0640/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index f7eb598289..0e78b6977d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:17+0200\n" +"PO-Revision-Date: 2011-05-17 10:19+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2428,6 +2428,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Povoliť [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] kompresiu pre " +"importovanie a exportovanie" #: libraries/config/messages.inc.php:31 msgid "Bzip2" From d3f349209ad9b493be0640cbbf29a5f2815a2edd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:19:42 +0200 Subject: [PATCH 0641/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 0e78b6977d..d9d3d34a2e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2444,7 +2444,7 @@ msgstr "" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" From 9441161f8d298b847607fcfa4d4c2fa42162d371 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:20:40 +0200 Subject: [PATCH 0642/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d9d3d34a2e..e2e4fbca8a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:19+0200\n" +"PO-Revision-Date: 2011-05-17 10:20+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2448,7 +2448,7 @@ msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Počet stĺpcov techtový oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" From f0b227e3be2dbc00bf7733407b16fc878d74c44c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:21:22 +0200 Subject: [PATCH 0643/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e2e4fbca8a..8d1fdfed2a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:20+0200\n" +"PO-Revision-Date: 2011-05-17 10:21+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2452,7 +2452,7 @@ msgstr "Počet stĺpcov techtový oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Stĺpce techtovej oblasti typu CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" From 771c63f6cd495fee39977f9b7199bc1d15e49a15 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:22:05 +0200 Subject: [PATCH 0644/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8d1fdfed2a..252dc2d82e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:21+0200\n" +"PO-Revision-Date: 2011-05-17 10:22+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2456,7 +2456,7 @@ msgstr "Stĺpce techtovej oblasti typu CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Počet riadkov textových oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" From 816d42432d534fcc7847891a9a79643ba1b85e78 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:22:20 +0200 Subject: [PATCH 0645/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 252dc2d82e..9fb62f4b12 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2460,7 +2460,7 @@ msgstr "Počet riadkov textových oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Riadky pre textové oblasti CHAR" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" From 75577220554e8dd1492b4c453c796c4b424ee685 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:23:29 +0200 Subject: [PATCH 0646/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 36158e67d0..a8efce4134 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 09:39+0200\n" +"PO-Revision-Date: 2011-05-17 10:23+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6599,7 +6599,7 @@ msgstr "Общи настройки" #: main.php:103 msgid "MySQL connection collation" -msgstr "Колация на MySQL" +msgstr "Колация на връзката към MySQL" #: main.php:119 msgid "Appearance Settings" From 24fc40dd1a01083c5a710723f11499936d6bdca5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:23:30 +0200 Subject: [PATCH 0647/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9fb62f4b12..69ff154577 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:22+0200\n" +"PO-Revision-Date: 2011-05-17 10:23+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2507,7 +2507,7 @@ msgstr "" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "" +msgstr "Smer zobrazenia pre zmenu a vytváranie stĺpcov" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" From 888f203e65bb37b202a70b2dd6eb4627ddf93531 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:24:01 +0200 Subject: [PATCH 0648/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 69ff154577..6006940138 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:23+0200\n" +"PO-Revision-Date: 2011-05-17 10:24+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2511,7 +2511,7 @@ msgstr "Smer zobrazenia pre zmenu a vytváranie stĺpcov" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe k databáze" #: libraries/config/messages.inc.php:49 #, fuzzy From 50b39b0cc47160154fc625eb2669247e19afc3ae Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:24:28 +0200 Subject: [PATCH 0649/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6006940138..258d9cc2d7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2514,9 +2514,8 @@ msgid "Tab that is displayed when entering a database" msgstr "Panel, ktorý je zobrazený pri prístupe k databáze" #: libraries/config/messages.inc.php:49 -#, fuzzy msgid "Default database tab" -msgstr "Premenovať databázu na" +msgstr "Prednastavený panel databázy" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" From 93e4a580cd25c0848c8ea47807f21b01f4612c83 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:24:52 +0200 Subject: [PATCH 0650/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 258d9cc2d7..be38e217b1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2519,7 +2519,7 @@ msgstr "Prednastavený panel databázy" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe na server" #: libraries/config/messages.inc.php:51 #, fuzzy From d003888de4b47b300914fac88e5ea29fe3e90921 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:25:05 +0200 Subject: [PATCH 0651/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index be38e217b1..bf75f8e09d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:24+0200\n" +"PO-Revision-Date: 2011-05-17 10:25+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2522,9 +2522,8 @@ msgid "Tab that is displayed when entering a server" msgstr "Panel, ktorý je zobrazený pri prístupe na server" #: libraries/config/messages.inc.php:51 -#, fuzzy msgid "Default server tab" -msgstr "Predvolený server" +msgstr "Východzí panel servera" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" From 57b615c20896cccc8fa7c32fa4170a40c2421d32 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:25:37 +0200 Subject: [PATCH 0652/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index bf75f8e09d..08b295e351 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2527,7 +2527,7 @@ msgstr "Východzí panel servera" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe k tabuľke" #: libraries/config/messages.inc.php:53 msgid "Default table tab" From 8f78cc8043511047b7e1dc6c1bf5a7bf87031705 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:26:08 +0200 Subject: [PATCH 0653/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 08b295e351..fd88581c40 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:25+0200\n" +"PO-Revision-Date: 2011-05-17 10:26+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2531,7 +2531,7 @@ msgstr "Panel, ktorý je zobrazený pri prístupe k tabuľke" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "" +msgstr "Východzí panel tabuľky" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" From 80cd0769322d4bd766885ea88afb74c6307ed378 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:27:11 +0200 Subject: [PATCH 0654/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index fd88581c40..8679b87bd1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:26+0200\n" +"PO-Revision-Date: 2011-05-17 10:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2535,7 +2535,7 @@ msgstr "Východzí panel tabuľky" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte " #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:585 msgid "Show binary contents as HEX" From f6e8ba3866ee1a1efcfcca9d48930479e56851a0 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:27:19 +0200 Subject: [PATCH 0655/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8679b87bd1..172387b38f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2535,7 +2535,7 @@ msgstr "Východzí panel tabuľky" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte " +msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:585 msgid "Show binary contents as HEX" From aea22aaf6c16fa136b8aa20311ce50033522abd6 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:27:57 +0200 Subject: [PATCH 0656/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 172387b38f..d5b19aaa60 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2539,7 +2539,7 @@ msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:585 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Zobraziť binárny obsah v HEX formáte" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" From 9a85c3906a554e67648b28f925aa2f616e934f8a Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:29:00 +0200 Subject: [PATCH 0657/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d5b19aaa60..96043b6cf2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:27+0200\n" +"PO-Revision-Date: 2011-05-17 10:29+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2543,7 +2543,7 @@ msgstr "Zobraziť binárny obsah v HEX formáte" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" From 2a8d795a55476ebebb81bf8bfb8d1c31abcd7070 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:29:13 +0200 Subject: [PATCH 0658/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 96043b6cf2..5fcc41ca03 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2547,7 +2547,7 @@ msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "" +msgstr "Zobraziť databázy ako zoznam" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" From e043ea3d9e713fba11d67ce191176c25fa072df8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:30:03 +0200 Subject: [PATCH 0659/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5fcc41ca03..fd8f14092d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:29+0200\n" +"PO-Revision-Date: 2011-05-17 10:30+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2551,7 +2551,7 @@ msgstr "Zobraziť databázy ako zoznam" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" From dfe03eb7b271861277f764368cde9d2e28953f24 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:30:24 +0200 Subject: [PATCH 0660/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fd8f14092d..cbdddb5196 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2551,7 +2551,7 @@ msgstr "Zobraziť databázy ako zoznam" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" +msgstr "Zobraziť prehľad serverov ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" From 17664cfb890ed386620f784a7b7c1562bb59c913 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:30:36 +0200 Subject: [PATCH 0661/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index cbdddb5196..32612bfd3d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2555,7 +2555,7 @@ msgstr "Zobraziť prehľad serverov ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "" +msgstr "Zobraziť servery ako zoznam" #: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" From d7ee27254adb235f9d4600ac14a55c1e8c1a0615 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:31:11 +0200 Subject: [PATCH 0662/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 32612bfd3d..b81ecb29a8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:30+0200\n" +"PO-Revision-Date: 2011-05-17 10:31+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2559,7 +2559,7 @@ msgstr "Zobraziť servery ako zoznam" #: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Upravovať SQL dopyty vo vyskakovacom okne" #: libraries/config/messages.inc.php:61 #, fuzzy From 4784ed2cdbf4f436905b7cf0c78d88d217825c5b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:31:27 +0200 Subject: [PATCH 0663/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b81ecb29a8..225085069e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2562,10 +2562,9 @@ msgid "Edit SQL queries in popup window" msgstr "Upravovať SQL dopyty vo vyskakovacom okne" #: libraries/config/messages.inc.php:61 -#, fuzzy #| msgid "Edit next row" msgid "Edit in window" -msgstr "Upraviť nasledujúci riadok" +msgstr "Upraviť v okne" #: libraries/config/messages.inc.php:62 #, fuzzy From 8ee491479ab689434be197412c4d20c2a4f416c2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:31:37 +0200 Subject: [PATCH 0664/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 225085069e..bbb5f7b971 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2567,10 +2567,9 @@ msgid "Edit in window" msgstr "Upraviť v okne" #: libraries/config/messages.inc.php:62 -#, fuzzy #| msgid "Display Features" msgid "Display errors" -msgstr "Zobraziť vlastnosti" +msgstr "Zobraziť chyby" #: libraries/config/messages.inc.php:63 msgid "Gather errors" From 64ae5252f95fbf5df0f9588c2f8e691be8fae44f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:32:17 +0200 Subject: [PATCH 0665/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bbb5f7b971..e7f8e29a15 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:31+0200\n" +"PO-Revision-Date: 2011-05-17 10:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2573,7 +2573,7 @@ msgstr "Zobraziť chyby" #: libraries/config/messages.inc.php:63 msgid "Gather errors" -msgstr "" +msgstr "Zbierať chyby" #: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" From 882082a294f2aceeef1474e7d8bd19b7f457998e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:33:22 +0200 Subject: [PATCH 0666/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e7f8e29a15..ab8d50bed5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:32+0200\n" +"PO-Revision-Date: 2011-05-17 10:33+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2577,7 +2577,7 @@ msgstr "Zbierať chyby" #: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Zobraziť ikony pre varovné, chybové a informačné správy" #: libraries/config/messages.inc.php:65 msgid "Iconic errors" From 1c142bd8b25d6284b3baa9fd0661a082f8229d2f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:33:54 +0200 Subject: [PATCH 0667/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ab8d50bed5..44fabb90f0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2581,7 +2581,7 @@ msgstr "Zobraziť ikony pre varovné, chybové a informačné správy" #: libraries/config/messages.inc.php:65 msgid "Iconic errors" -msgstr "" +msgstr "Chyby ikon" #: libraries/config/messages.inc.php:66 msgid "" From b5e88b66d963e877f4d13b43b7eb6a6115fdaa1c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:35:07 +0200 Subject: [PATCH 0668/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 44fabb90f0..abb06e0965 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:33+0200\n" +"PO-Revision-Date: 2011-05-17 10:35+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2587,7 +2587,7 @@ msgstr "Chyby ikon" msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -msgstr "" +msgstr "Nastavte dĺžku behu skriptu v sekundách (([kbd]0[/kbd] bez obmedzení)" #: libraries/config/messages.inc.php:67 msgid "Maximum execution time" From 292bfbee2d171f8633cde98c5a7e55415fa918a1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:35:27 +0200 Subject: [PATCH 0669/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index abb06e0965..8fe18aea4d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2591,7 +2591,7 @@ msgstr "Nastavte dĺžku behu skriptu v sekundách (([kbd]0[/kbd] bez obmedzení #: libraries/config/messages.inc.php:67 msgid "Maximum execution time" -msgstr "" +msgstr "Maximálny čas behu" #: libraries/config/messages.inc.php:68 prefs_manage.php:299 msgid "Save as file" From 579e4c16eed47a9e92d94e2f096be2a7317cc081 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:35:39 +0200 Subject: [PATCH 0670/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8fe18aea4d..7797868184 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2595,7 +2595,7 @@ msgstr "Maximálny čas behu" #: libraries/config/messages.inc.php:68 prefs_manage.php:299 msgid "Save as file" -msgstr "Pošli" +msgstr "Uložiť ako súbor" #: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:236 #, fuzzy From ba4fecf86948dfca0382a8c3e2a3b585249e1754 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:35:54 +0200 Subject: [PATCH 0671/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7797868184..745af93e81 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2598,9 +2598,8 @@ msgid "Save as file" msgstr "Uložiť ako súbor" #: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:236 -#, fuzzy msgid "Character set of the file" -msgstr "Znaková sada súboru:" +msgstr "Znaková sada súboru" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_printview.php:373 tbl_structure.php:832 From 9b4344c1edecad6d7f71aecf1fb9670f8a55b492 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:36:02 +0200 Subject: [PATCH 0672/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 745af93e81..1e13c9a17e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:35+0200\n" +"PO-Revision-Date: 2011-05-17 10:36+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From fc30988c7fe5398278949b3253ad41eb4d291f85 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:36:15 +0200 Subject: [PATCH 0673/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1e13c9a17e..903dfba994 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2619,7 +2619,6 @@ msgstr "Kompresia" #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 #: libraries/export/xls.php:24 libraries/export/xlsx.php:24 -#, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" msgstr "Pridať názvy polí na prvý riadok" From d46295976aea9259a6b795bd085d022c71fc83be Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:36:27 +0200 Subject: [PATCH 0674/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 903dfba994..5810d58f19 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2626,10 +2626,9 @@ msgstr "Pridať názvy polí na prvý riadok" #: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 #: libraries/config/messages.inc.php:245 libraries/import/csv.php:75 #: libraries/import/ldi.php:41 -#, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" -msgstr "Polia uzatvorené" +msgstr "Polia uzatvorené do" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:239 #: libraries/config/messages.inc.php:246 libraries/import/csv.php:80 From 1a3f12195d777a2452d59f722f67cc21963501ce Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:36:36 +0200 Subject: [PATCH 0675/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 5810d58f19..2a18cd9ffc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2633,7 +2633,6 @@ msgstr "Polia uzatvorené do" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:239 #: libraries/config/messages.inc.php:246 libraries/import/csv.php:80 #: libraries/import/ldi.php:42 -#, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Polia uvedené pomocou" From 2df994cdb4888755389f16a4880e3c942fcb7858 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:37:13 +0200 Subject: [PATCH 0676/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2a18cd9ffc..a42f6ae815 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:36+0200\n" +"PO-Revision-Date: 2011-05-17 10:37+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2643,7 +2643,7 @@ msgstr "Polia uvedené pomocou" #: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 #: libraries/config/messages.inc.php:144 libraries/export/texytext.php:26 msgid "Replace NULL by" -msgstr "Nahradiť NULL hodnoty" +msgstr "Nahradiť NULL hodnoty pomocou" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" From bebee8c21468c7e8de8355b9f529e483a7cfd798 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:38:03 +0200 Subject: [PATCH 0677/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a42f6ae815..a8b4a5360d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:37+0200\n" +"PO-Revision-Date: 2011-05-17 10:38+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2647,7 +2647,7 @@ msgstr "Nahradiť NULL hodnoty pomocou" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" -msgstr "" +msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:250 libraries/import/csv.php:62 From c993ac05aac47986df7afb19a297a8d72ef41a7c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:38:14 +0200 Subject: [PATCH 0678/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a8b4a5360d..a6021b0a87 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2652,7 +2652,6 @@ msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:250 libraries/import/csv.php:62 #: libraries/import/ldi.php:40 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Riadky ukončené" From acba8e7f2850d62d5ff2948a763111b72217ea7c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:39:09 +0200 Subject: [PATCH 0679/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a8efce4134..8668208836 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:23+0200\n" +"PO-Revision-Date: 2011-05-17 10:39+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1028,7 +1028,7 @@ msgstr "Създаване на потребител" #: js/messages.php:56 msgid "Reloading Privileges" -msgstr "Презареждане на привилегиите" +msgstr "Презареждане на правата" #: js/messages.php:57 msgid "Removing Selected Users" From aff060e5e6b3ffbfdea536d1363a9b9004464348 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:39:25 +0200 Subject: [PATCH 0680/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a6021b0a87..a7adb84ba2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:38+0200\n" +"PO-Revision-Date: 2011-05-17 10:39+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From a5c80776a0d0f41f3f379070646c4bfb2131b8cb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:39:26 +0200 Subject: [PATCH 0681/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 8668208836..77f6b0d716 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1848,7 +1848,7 @@ msgstr "Реплицирана" #: libraries/build_html_for_db.lib.php:150 #, php-format msgid "Check privileges for database "%s"." -msgstr "Проверка привилегии на БД "%s"." +msgstr "Проверка на правата над БД "%s"." #: libraries/build_html_for_db.lib.php:153 msgid "Check Privileges" From 7cf433d89470f6a5dc734c561d2f9d117c3972da Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:39:33 +0200 Subject: [PATCH 0682/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 77f6b0d716..ea3680c9d3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1852,7 +1852,7 @@ msgstr "Проверка на правата над БД "%s"." #: libraries/build_html_for_db.lib.php:153 msgid "Check Privileges" -msgstr "Проверка на привилегиите" +msgstr "Проверка на правата" #: libraries/chart.lib.php:40 msgid "Query statistics" From c8aebc6091ad753fc1df602dd0623fa3941409e6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:39:38 +0200 Subject: [PATCH 0683/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ea3680c9d3..131a17f0a2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4304,7 +4304,7 @@ msgstr "" #: server_privileges.php:119 server_privileges.php:1802 #: server_privileges.php:2152 test/theme.php:116 msgid "Privileges" -msgstr "Привилегии" +msgstr "Права" #: libraries/db_routines.inc.php:24 libraries/db_routines.inc.php:26 msgid "Routines" From edf18cfaec2fb23009e7bab5e04e074a0916e983 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:39:43 +0200 Subject: [PATCH 0684/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 131a17f0a2..d30721c84c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4375,7 +4375,7 @@ msgstr "Създай" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 #: server_privileges.php:1493 server_replication.php:33 msgid "No Privileges" -msgstr "Няма привилегии" +msgstr "Няма права" #: libraries/display_create_table.lib.php:46 #, php-format From e464b25bce5f2e150f3f457a1f15c7cce4f3b759 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:40:08 +0200 Subject: [PATCH 0685/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index d30721c84c..022cc5a45c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:39+0200\n" +"PO-Revision-Date: 2011-05-17 10:40+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7123,7 +7123,7 @@ msgstr "Преглед на схемата (дъмп) на БД" #: server_privileges.php:32 server_privileges.php:276 msgid "Includes all privileges except GRANT." -msgstr "Включва всички привилегии освен GRANT." +msgstr "Дава всички права освен GRANT." #: server_privileges.php:33 server_privileges.php:202 #: server_privileges.php:529 From 82a8d02d00410e85379afd3a2b7c3088356ec3e2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:40:36 +0200 Subject: [PATCH 0686/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a7adb84ba2..c3e8761719 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:39+0200\n" +"PO-Revision-Date: 2011-05-17 10:40+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2662,7 +2662,6 @@ msgid "Lines terminated by" msgstr "Riadky ukončené" #: libraries/config/messages.inc.php:80 -#, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Verzia Excelu" From a11e60480e5643ecbf52af0e825eb1c0b0741181 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:40:38 +0200 Subject: [PATCH 0687/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 022cc5a45c..89ff9fa208 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7198,8 +7198,8 @@ msgstr "Позволява импортиране на данни от и екс msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -"Позволява добавяне на потребители и привилегии без презареждане на таблицата " -"с привилегиите." +"Позволява добавяне на потребители и права без презареждане на таблицата с " +"правата." #: server_privileges.php:48 server_privileges.php:201 #: server_privileges.php:530 From 400239831b7dfd80b916cc2d64bb382595b851cf Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:40:49 +0200 Subject: [PATCH 0688/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 89ff9fa208..03ceadd46b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7315,7 +7315,7 @@ msgstr "Позволява промяна на данни." #: server_privileges.php:67 server_privileges.php:270 msgid "No privileges." -msgstr "Няма привилегии." +msgstr "Без права." #: server_privileges.php:312 server_privileges.php:313 msgctxt "None privileges" From ab0e6c90fc5659b7830a9272b31bcbed7ad03e1c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:41:04 +0200 Subject: [PATCH 0689/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 03ceadd46b..a54eca56cd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:40+0200\n" +"PO-Revision-Date: 2011-05-17 10:41+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7315,7 +7315,7 @@ msgstr "Позволява промяна на данни." #: server_privileges.php:67 server_privileges.php:270 msgid "No privileges." -msgstr "Без права." +msgstr "Няма права." #: server_privileges.php:312 server_privileges.php:313 msgctxt "None privileges" From f2c6a0cabafbbcd7ed9969065df495fcf6face6b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:41:18 +0200 Subject: [PATCH 0690/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a54eca56cd..0aa204f05f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7325,7 +7325,7 @@ msgstr "Няма" #: server_privileges.php:443 server_privileges.php:580 #: server_privileges.php:1798 server_privileges.php:1804 msgid "Table-specific privileges" -msgstr "Привилегии специфични за таблицата" +msgstr "Специфични за таблицата права" #: server_privileges.php:444 server_privileges.php:588 #: server_privileges.php:1610 From a2d97749f02b8ad0732646330e70af64f70ec1cc Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:41:39 +0200 Subject: [PATCH 0691/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0aa204f05f..040a76d256 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7330,7 +7330,7 @@ msgstr "Специфични за таблицата права" #: server_privileges.php:444 server_privileges.php:588 #: server_privileges.php:1610 msgid " Note: MySQL privilege names are expressed in English " -msgstr " Забележка: Имената на привилегиите на MySQL са показани на английски " +msgstr " Забележка: Имената на правата на MySQL са показани на английски " #: server_privileges.php:513 msgid "Administration" From d69ef00236695e19e98f6a3b988cd2986ea16f00 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:41:44 +0200 Subject: [PATCH 0692/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 040a76d256..1872559c4e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7338,7 +7338,7 @@ msgstr "Администрация" #: server_privileges.php:577 server_privileges.php:1609 msgid "Global privileges" -msgstr "Глобални привилегии" +msgstr "Глобални права" #: server_privileges.php:579 server_privileges.php:1798 msgid "Database-specific privileges" From 0c7cb2e884b2cbcf9371a03b1dcf8eac4fd95589 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:41:54 +0200 Subject: [PATCH 0693/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 1872559c4e..129e38b294 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7342,7 +7342,7 @@ msgstr "Глобални права" #: server_privileges.php:579 server_privileges.php:1798 msgid "Database-specific privileges" -msgstr "Привилегии специфични за БД" +msgstr "Специфични за БД права" #: server_privileges.php:612 msgid "Resource limits" From 4c428091fcf39c1a2bba75e7ba699d748457416b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:42:23 +0200 Subject: [PATCH 0694/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 129e38b294..80ff19ea6d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:41+0200\n" +"PO-Revision-Date: 2011-05-17 10:42+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7377,7 +7377,7 @@ msgstr "Вие добавихте нов потребител." #: server_privileges.php:1176 #, php-format msgid "You have updated the privileges for %s." -msgstr "Вие променихте привилегиите за %s." +msgstr "Вие променихте правата за %s." #: server_privileges.php:1200 #, php-format From 13b44dc9ff86833a719d77e0f71b1d2247ff3246 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:42:34 +0200 Subject: [PATCH 0695/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 80ff19ea6d..24de13a5b0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7382,7 +7382,7 @@ msgstr "Вие променихте правата за %s." #: server_privileges.php:1200 #, php-format msgid "You have revoked the privileges for %s" -msgstr "Вие отменихте привилегиите за %s" +msgstr "Вие отменихте правата за %s" #: server_privileges.php:1236 #, php-format From f9adca835a040e88f68261796f5a0821106048cc Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:45:39 +0200 Subject: [PATCH 0696/1652] Translation update done using Pootle. --- po/sk.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c3e8761719..22a37d510a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:40+0200\n" +"PO-Revision-Date: 2011-05-17 10:45+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2386,6 +2386,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/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" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" From fd0620e9d232617da21907af9923f587be7b5b34 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:50:41 +0200 Subject: [PATCH 0697/1652] Translation update done using Pootle. --- po/sk.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 22a37d510a..d47bc3896f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:45+0200\n" +"PO-Revision-Date: 2011-05-17 10:50+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2474,6 +2474,9 @@ msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Komprimovať exporty za behu pomocou gzip/bzip2 bez veľkých pamäťových " +"nárokov. Pokiaľ zistíte problémy s takto vytvorenými gzip/bzipľ súbormi, " +"vypnite túto funkciu" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" From ebdf0f65e6bd1f18bc6bdd215bec7767258b61ac Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:51:20 +0200 Subject: [PATCH 0698/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 24de13a5b0..a526da6807 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:42+0200\n" +"PO-Revision-Date: 2011-05-17 10:51+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7377,7 +7377,7 @@ msgstr "Вие добавихте нов потребител." #: server_privileges.php:1176 #, php-format msgid "You have updated the privileges for %s." -msgstr "Вие променихте правата за %s." +msgstr "Вие променихте правата на %s." #: server_privileges.php:1200 #, php-format From fd672285dc4e40b23a02b7a8dd781c550fb47681 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:51:23 +0200 Subject: [PATCH 0699/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a526da6807..0eea69ef6e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7382,7 +7382,7 @@ msgstr "Вие променихте правата на %s." #: server_privileges.php:1200 #, php-format msgid "You have revoked the privileges for %s" -msgstr "Вие отменихте правата за %s" +msgstr "Вие отменихте правата на %s" #: server_privileges.php:1236 #, php-format From 1b0ef396fd0d42497b296f10f9e681e73c4e3416 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:51:32 +0200 Subject: [PATCH 0700/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 0eea69ef6e..e506fe2d94 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7400,7 +7400,7 @@ msgstr "Не за избрани потребители за изтриване! #: server_privileges.php:1273 msgid "Reloading the privileges" -msgstr "Презареждане на привилегиите" +msgstr "Презареждане на правата" #: server_privileges.php:1291 msgid "The selected users have been deleted successfully." From b2d19c08a468f1f2aab3fe455c7f568ee66d1d2e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:51:38 +0200 Subject: [PATCH 0701/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index e506fe2d94..b527e7e63e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7408,7 +7408,7 @@ msgstr "Избраните потребители бяха изтрити усп #: server_privileges.php:1326 msgid "The privileges were reloaded successfully." -msgstr "Привилегиите бяха презаредени успешно." +msgstr "Правата бяха презаредени успешно." #: server_privileges.php:1337 server_privileges.php:1729 msgid "Edit Privileges" From 70bd6a626a26ae2250855199716afe828c4c8f1c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:52:01 +0200 Subject: [PATCH 0702/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d47bc3896f..1ab2079933 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:50+0200\n" +"PO-Revision-Date: 2011-05-17 10:52+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2492,6 +2492,8 @@ msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Či sa má zobrazovať varovanie ("Ste si naozaj istí...") pokiaľ " +"hrozí strata dát" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" From ae2c7692e3be309429ad63bcb4396b8646f513aa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:52:18 +0200 Subject: [PATCH 0703/1652] Translation update done using Pootle. --- po/bg.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index b527e7e63e..62b6253821 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:51+0200\n" +"PO-Revision-Date: 2011-05-17 10:52+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7443,8 +7443,7 @@ msgstr "Отстраняване избраните потребители" #: server_privileges.php:1687 msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Отмяна на всички активни привилегии от потребителите и след това изтриване." +msgstr "Отмяна на всички права на потребителите и след това изтриване." #: server_privileges.php:1688 server_privileges.php:1689 #: server_privileges.php:1690 From 256379fa8b02e228e3060cba483ad67612a404c5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:52:54 +0200 Subject: [PATCH 0704/1652] Translation update done using Pootle. --- po/bg.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/bg.po b/po/bg.po index 62b6253821..7a5d771836 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7459,11 +7459,10 @@ msgid "" "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 преди да " -"продължите." +"Забележка: phpMyAdmin взема потребителските права директно от таблицата с " +"правата на MySQL. Съдържанието на тази таблица може да се различава от " +"правата които използва сървъра ако към него са направени промени на ръка. В " +"този случай, трябва да %sпрезаредите правата%s преди да продължите." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." From b60f85db64d2d7ce7749fbf6481dd2c9da5747aa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:53:07 +0200 Subject: [PATCH 0705/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7a5d771836..95b489d8d0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:52+0200\n" +"PO-Revision-Date: 2011-05-17 10:53+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7466,7 +7466,7 @@ msgstr "" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." -msgstr "Избрания потребител не беше открит в таблицата с привилегиите." +msgstr "Избраният потребител не беше открит в таблицата с права." #: server_privileges.php:1804 msgid "Column-specific privileges" From 42448028c88639bdcc999466284f3dfb0257feb6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:53:15 +0200 Subject: [PATCH 0706/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 95b489d8d0..8a94f40707 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7470,7 +7470,7 @@ msgstr "Избраният потребител не беше открит в т #: server_privileges.php:1804 msgid "Column-specific privileges" -msgstr "Привилегии специфични за колоната" +msgstr "Специфични за колоната права" #: server_privileges.php:2005 msgid "Add privileges on the following database" From 59c501b7f2926e473c014845535ca26aca3aeb99 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:53:29 +0200 Subject: [PATCH 0707/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 8a94f40707..f4bbce1e64 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7474,7 +7474,7 @@ msgstr "Специфични за колоната права" #: server_privileges.php:2005 msgid "Add privileges on the following database" -msgstr "Добавяне на привилегии към следната БД" +msgstr "Добавяне на права към следната БД" #: server_privileges.php:2023 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" From 974b6c5fb7c2018f32aa5df61eda3d641edf964f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:53:37 +0200 Subject: [PATCH 0708/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index f4bbce1e64..302fc4ca86 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7482,7 +7482,7 @@ msgstr "" #: server_privileges.php:2026 msgid "Add privileges on the following table" -msgstr "Добавяне на привилегии към следната таблица" +msgstr "Добавяне на права към следната таблица" #: server_privileges.php:2083 msgid "Change Login Information / Copy User" From 8db61459827458dc3697558024b0b57ffbd71e7b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:53:47 +0200 Subject: [PATCH 0709/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 302fc4ca86..5d3ed2c5af 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7490,7 +7490,7 @@ msgstr "Промяна на логин информацията / Копиран #: server_privileges.php:2086 msgid "Create a new user with the same privileges and ..." -msgstr "Създаване нов потребител със същите привилегии и ..." +msgstr "Създаване нов потребител със същите права и ..." #: server_privileges.php:2088 msgid "... keep the old one." From 87453613ccaf7c60fe9c5ee356281e4798ad10d0 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:53:55 +0200 Subject: [PATCH 0710/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1ab2079933..c2dab24764 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:52+0200\n" +"PO-Revision-Date: 2011-05-17 10:53+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2512,6 +2512,8 @@ msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" +"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] alebo číslo, ktoré udáva maximum " +"pre vertikálne zobrazenie" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" From aa67df22326841456530a497cdeb42e8b7267702 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:53:56 +0200 Subject: [PATCH 0711/1652] Translation update done using Pootle. --- po/bg.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5d3ed2c5af..35fc6b49e4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7503,8 +7503,7 @@ msgstr " ... изтриване на стария от таблицата с п #: server_privileges.php:2090 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... отменяне на всички активни привилегии от стария и след това изтриване." +msgstr " ... отменяне на всички права от стария и след това изтриване." #: server_privileges.php:2091 msgid "" From 6fa72ea18f0697b88ccb9eef230e73aad6b0fc10 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:54:07 +0200 Subject: [PATCH 0712/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c2dab24764..b7ab2addca 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:53+0200\n" +"PO-Revision-Date: 2011-05-17 10:54+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2737,7 +2737,7 @@ msgstr "Typ vytvorených dopytov" #: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" -msgstr "" +msgstr "Uložiť na server" #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 From 8aec65c1a53b8b3ce7af6f2e047567f211a2a2a5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:54:11 +0200 Subject: [PATCH 0713/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 35fc6b49e4..e89c2572d8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:53+0200\n" +"PO-Revision-Date: 2011-05-17 10:54+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7503,7 +7503,7 @@ msgstr " ... изтриване на стария от таблицата с п #: server_privileges.php:2090 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." -msgstr " ... отменяне на всички права от стария и след това изтриване." +msgstr " ... отмяна на всички права от стария и след това изтриване." #: server_privileges.php:2091 msgid "" From 8d9a57c52e9c7a362a232c93fa850900817583b9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:54:23 +0200 Subject: [PATCH 0714/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index e89c2572d8..d84d03c8c7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7511,7 +7511,7 @@ msgid "" "afterwards." msgstr "" " ... изтриване на стария от таблицата с потребители и след това презареждане " -"на привилегиите." +"на правата." #: server_privileges.php:2114 msgid "Database for user" From 0b5d8104bea0fe8b17d96889b04ba0d771820196 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:54:25 +0200 Subject: [PATCH 0715/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b7ab2addca..64581e61fd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2761,7 +2761,7 @@ msgstr "Režim kompatibility SQL" #: libraries/config/messages.inc.php:120 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Akú syntax použiť pre vkladanie dát" #: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" From 29a3b5bca4c9a4e1e30c06881006217e6b94774d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:54:28 +0200 Subject: [PATCH 0716/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d84d03c8c7..c9c5b17646 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7524,7 +7524,7 @@ msgstr "Няма" #: server_privileges.php:2119 msgid "Create database with same name and grant all privileges" -msgstr "Създаване на БД със същото име и даване на пълни привилегии" +msgstr "Създаване на БД със същото име и даване на пълни права" #: server_privileges.php:2120 msgid "Grant all privileges on wildcard name (username\\_%)" From 6494db7809c0d49b453f174f66d94d7cd2b0d1e2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:54:36 +0200 Subject: [PATCH 0717/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index c9c5b17646..b210629d5b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7533,7 +7533,7 @@ msgstr "" #: server_privileges.php:2123 #, php-format msgid "Grant all privileges on database "%s"" -msgstr "Даване на пълни привилегии над БД "%s"" +msgstr "Даване на пълни права над БД "%s"" #: server_privileges.php:2146 #, php-format From 68bddb90950d0fe6e858cfdad86b3918b7c542c7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 10:54:45 +0200 Subject: [PATCH 0718/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b210629d5b..b8d5413c71 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7586,10 +7586,10 @@ msgid "Unable to change master" msgstr "" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" -msgstr "Привилегиите бяха презаредени успешно." +msgstr "" #: server_replication.php:180 msgid "This server is configured as master in a replication process." From c98824b51531f72baa727b633a17fe0195ad1540 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:54:51 +0200 Subject: [PATCH 0719/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 64581e61fd..90edcd59d8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2777,7 +2777,7 @@ msgstr "Vypnúť kontrolu cudzích kľúčov" #: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" -msgstr "" +msgstr "Použiť hexadecimálne zobrazenie pre BLOB" #: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" From 871061795abd12b79dd9185a05e52212e1e98153 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:55:20 +0200 Subject: [PATCH 0720/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 90edcd59d8..a83a97fb11 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:54+0200\n" +"PO-Revision-Date: 2011-05-17 10:55+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2803,7 +2803,7 @@ msgstr "Typ vytvorených dopytov" #: libraries/config/messages.inc.php:145 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "Vynutiť zabezpečené spojenie pri použití phpMyAdmina" #: libraries/config/messages.inc.php:146 msgid "Force SSL connection" From a5c28943f50467acbb805a7c055237a918ae7051 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:55:29 +0200 Subject: [PATCH 0721/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a83a97fb11..3e29c79fed 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2807,7 +2807,7 @@ msgstr "Vynutiť zabezpečené spojenie pri použití phpMyAdmina" #: libraries/config/messages.inc.php:146 msgid "Force SSL connection" -msgstr "" +msgstr "Vynutit SSL spojenie" #: libraries/config/messages.inc.php:147 msgid "" From 85ef012443cc4a3437a2c5129160635926b3276b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:56:48 +0200 Subject: [PATCH 0722/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3e29c79fed..5441133c98 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:55+0200\n" +"PO-Revision-Date: 2011-05-17 10:56+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2814,6 +2814,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 "" +"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; " +"[kbd]obsah[/kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" #: libraries/config/messages.inc.php:148 msgid "Foreign key dropdown order" From b9ddbf7ecf74e50ed4543b58478a248f66733337 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:57:14 +0200 Subject: [PATCH 0723/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5441133c98..6f3b250018 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:56+0200\n" +"PO-Revision-Date: 2011-05-17 10:57+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2819,7 +2819,7 @@ msgstr "" #: libraries/config/messages.inc.php:148 msgid "Foreign key dropdown order" -msgstr "" +msgstr "Poradie cudzích kľúčov v rozbaľovacej ponuke" #: libraries/config/messages.inc.php:149 msgid "A dropdown will be used if fewer items are present" From 20011a6cd3b936f11c85ea8d9bef199917b7b941 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:57:54 +0200 Subject: [PATCH 0724/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 6f3b250018..cfe34e6a9f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2823,7 +2823,7 @@ msgstr "Poradie cudzích kľúčov v rozbaľovacej ponuke" #: libraries/config/messages.inc.php:149 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "Pokiaľ je dostupných menej položiek, bude použitá rozbaľovacia ponuka" #: libraries/config/messages.inc.php:150 msgid "Foreign key limit" From d77fb6c9ad47c0379b9c706d712a9358c3d55531 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:58:15 +0200 Subject: [PATCH 0725/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index cfe34e6a9f..45b2308fc0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:57+0200\n" +"PO-Revision-Date: 2011-05-17 10:58+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2827,7 +2827,7 @@ msgstr "Pokiaľ je dostupných menej položiek, bude použitá rozbaľovacia pon #: libraries/config/messages.inc.php:150 msgid "Foreign key limit" -msgstr "" +msgstr "Limit cudzích kľúčov" #: libraries/config/messages.inc.php:151 msgid "Browse mode" From b0e2f1804ab5ebeab083c911b2a485b0504555d0 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:58:34 +0200 Subject: [PATCH 0726/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 45b2308fc0..c5f7431bba 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2831,7 +2831,7 @@ msgstr "Limit cudzích kľúčov" #: libraries/config/messages.inc.php:151 msgid "Browse mode" -msgstr "" +msgstr "Režim prezerania" #: libraries/config/messages.inc.php:152 msgid "Customize browse mode" From b0354267fb98903b0320ed0abbc0edab5541e7a1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:59:05 +0200 Subject: [PATCH 0727/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c5f7431bba..409d3b4da5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:58+0200\n" +"PO-Revision-Date: 2011-05-17 10:59+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2835,7 +2835,7 @@ msgstr "Režim prezerania" #: libraries/config/messages.inc.php:152 msgid "Customize browse mode" -msgstr "" +msgstr "Prispôsobiť režim prezerania" #: libraries/config/messages.inc.php:154 libraries/config/messages.inc.php:156 #: libraries/config/messages.inc.php:173 libraries/config/messages.inc.php:184 From edebd716b165ff70a5f7a892f639faf77903a8fc Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:59:27 +0200 Subject: [PATCH 0728/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 409d3b4da5..33ede0d8fb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2855,7 +2855,7 @@ msgstr "CSV dáta" #: libraries/config/messages.inc.php:157 msgid "Developer" -msgstr "" +msgstr "Vývojár" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" From 2d9f6bf3e83f45ef38299a8e420eb6488d910014 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:59:47 +0200 Subject: [PATCH 0729/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 33ede0d8fb..c274146e07 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2859,7 +2859,7 @@ msgstr "Vývojár" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Nastavenia pre vývojára phpMyAdmina" #: libraries/config/messages.inc.php:159 msgid "Edit mode" From 7f06aa4f65152122c60a369f6aa936a788486417 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 10:59:54 +0200 Subject: [PATCH 0730/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c274146e07..e9ba82e3f9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2863,7 +2863,7 @@ msgstr "Nastavenia pre vývojára phpMyAdmina" #: libraries/config/messages.inc.php:159 msgid "Edit mode" -msgstr "" +msgstr "Režim úprav" #: libraries/config/messages.inc.php:160 msgid "Customize edit mode" From 739c36729679b2e91488c1df998a8ad9b7609b5c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 11:00:12 +0200 Subject: [PATCH 0731/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e9ba82e3f9..a6924a8054 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:59+0200\n" +"PO-Revision-Date: 2011-05-17 11:00+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2867,7 +2867,7 @@ msgstr "Režim úprav" #: libraries/config/messages.inc.php:160 msgid "Customize edit mode" -msgstr "" +msgstr "Prispôsobenie režimu úprav" #: libraries/config/messages.inc.php:162 msgid "Export defaults" From 510cea203d5392cd2b816e37d19e4b5ea7be225f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:07:18 +0200 Subject: [PATCH 0732/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index b8d5413c71..386cda9cd6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 10:54+0200\n" +"PO-Revision-Date: 2011-05-17 11:07+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9470,7 +9470,7 @@ msgstr "" #: tbl_tracking.php:572 #, php-format msgid "Export as %s" -msgstr "" +msgstr "Експорт като %s" #: tbl_tracking.php:612 msgid "Show versions" From 8f78112d978686c29392887948efc7e89080c97f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:07:57 +0200 Subject: [PATCH 0733/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 386cda9cd6..940710b26b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9465,7 +9465,7 @@ msgstr "" #: tbl_tracking.php:560 msgid "SQL execution" -msgstr "" +msgstr "Изпълняване на SQL" #: tbl_tracking.php:572 #, php-format From 0539d205939e7ddbf76dd040da53da612775ca9f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:08:48 +0200 Subject: [PATCH 0734/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 940710b26b..5190a6ee17 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:07+0200\n" +"PO-Revision-Date: 2011-05-17 11:08+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9293,7 +9293,7 @@ msgstr "" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" -msgstr "" +msgstr "Добавяне на индекс" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" From 4304b4bef6dd898124d787692c3d6b87b9a79c82 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:09:03 +0200 Subject: [PATCH 0735/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5190a6ee17..a441a1cbcf 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:08+0200\n" +"PO-Revision-Date: 2011-05-17 11:09+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9289,7 +9289,7 @@ msgstr "Преглеждане на уникалните стойности" #: tbl_structure.php:166 tbl_structure.php:167 msgid "Add primary key" -msgstr "" +msgstr "Добавяне на първичен ключ" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" From 65fd960909a2b66dc2e6fa5af5189ac52ed74f0e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:09:15 +0200 Subject: [PATCH 0736/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a441a1cbcf..b7f50edb31 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9297,7 +9297,7 @@ msgstr "Добавяне на индекс" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Добавяне на уникален ключ" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" From d0c683cf78d396d9404302fe4b229772fd094008 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:09:32 +0200 Subject: [PATCH 0737/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index b7f50edb31..f7f8dec597 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9301,7 +9301,7 @@ msgstr "Добавяне на уникален ключ" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" -msgstr "" +msgstr "Добавяне на пълнотекстов индекс" #: tbl_structure.php:385 msgctxt "None for default" From 90552023a9cfc46bf7b8837d8edfcdc85613e690 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:10:02 +0200 Subject: [PATCH 0738/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f7f8dec597..51992e8268 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:09+0200\n" +"PO-Revision-Date: 2011-05-17 11:10+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -9173,7 +9173,7 @@ msgstr "" #: tbl_operations.php:744 msgid "Analyze" -msgstr "" +msgstr "Анализиране" #: tbl_operations.php:745 msgid "Check" From 5b5ea604d02e7bb5051c3bdf34fec87c63abafbc Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:10:16 +0200 Subject: [PATCH 0739/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 51992e8268..68c6f5c87f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9181,7 +9181,7 @@ msgstr "Проверка" #: tbl_operations.php:746 msgid "Optimize" -msgstr "" +msgstr "Оптимизиране" #: tbl_operations.php:747 msgid "Rebuild" From c21f8f65d7af7c113358ddb98b2e99f454af7418 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:11:18 +0200 Subject: [PATCH 0740/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 68c6f5c87f..ba48cde89d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:10+0200\n" +"PO-Revision-Date: 2011-05-17 11:11+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8976,7 +8976,7 @@ msgstr "Колони" #: tbl_chart.php:135 msgid "Line" -msgstr "" +msgstr "Линия" #: tbl_chart.php:136 msgid "Radar" From 69b6d9897cbe9ff25e77f5e7b7e15c1edb988303 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:11:39 +0200 Subject: [PATCH 0741/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ba48cde89d..03e26fb013 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8972,7 +8972,7 @@ msgstr "" #: tbl_chart.php:134 msgid "Bar" -msgstr "Колони" +msgstr "Стълб" #: tbl_chart.php:135 msgid "Line" From d7f671f30c980bbbce6f35d91fc200e05e1e9761 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:11:47 +0200 Subject: [PATCH 0742/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 03e26fb013..1514597968 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8980,7 +8980,7 @@ msgstr "Линия" #: tbl_chart.php:136 msgid "Radar" -msgstr "" +msgstr "Радар" #: tbl_chart.php:138 #| msgid "PiB" From 4764be3e1ce322cd7f25363dabfc6867b47c3f9c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:12:06 +0200 Subject: [PATCH 0743/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 1514597968..971bd3d380 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:11+0200\n" +"PO-Revision-Date: 2011-05-17 11:12+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8968,7 +8968,7 @@ msgstr "" #: tbl_chart.php:122 msgid "Legend margins" -msgstr "" +msgstr "Граници на легендата" #: tbl_chart.php:134 msgid "Bar" From 70188f92fff5c14a4e1c2684537c9988d1494310 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:12:19 +0200 Subject: [PATCH 0744/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 971bd3d380..f4c48643b0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8964,7 +8964,7 @@ msgstr "" #: tbl_chart.php:112 msgid "Area margins" -msgstr "" +msgstr "Граници на диаграмата" #: tbl_chart.php:122 msgid "Legend margins" From bea0aef5927133347e51a9091081ab2882e0f178 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:13:04 +0200 Subject: [PATCH 0745/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f4c48643b0..200223c580 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:12+0200\n" +"PO-Revision-Date: 2011-05-17 11:13+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8960,7 +8960,7 @@ msgstr "" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "Етикет на Y оста" #: tbl_chart.php:112 msgid "Area margins" From 13c5ef6273d216e067573812b164e71841fc5e0a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:13:18 +0200 Subject: [PATCH 0746/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 200223c580..1a2c2b0f56 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8956,7 +8956,7 @@ msgstr "" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "Етикет на X оста" #: tbl_chart.php:107 msgid "Y Axis label" From 6ff51f48635964b9f69e65e867394992036ae543 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:13:27 +0200 Subject: [PATCH 0747/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 1a2c2b0f56..10a33bd2d3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8952,7 +8952,7 @@ msgstr "" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "Заглавие" #: tbl_chart.php:103 msgid "X Axis label" From 6a360cd1622ef06e6039645a6419dfb6ec57ce07 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:13:33 +0200 Subject: [PATCH 0748/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 10a33bd2d3..bcb0af6ca8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8948,7 +8948,7 @@ msgstr "" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "Височина" #: tbl_chart.php:98 msgid "Title" From 581261803475f7dba1fc4980a450909669977bd0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:13:39 +0200 Subject: [PATCH 0749/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index bcb0af6ca8..e736e9270f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8944,7 +8944,7 @@ msgstr "" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "Ширина" #: tbl_chart.php:94 msgid "Height" From 498bf949c829bbbe471e65f3f9fee1622f2ca309 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:14:13 +0200 Subject: [PATCH 0750/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e736e9270f..fbc226ffc6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:13+0200\n" +"PO-Revision-Date: 2011-05-17 11:14+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8934,7 +8934,7 @@ msgstr "" #: tbl_chart.php:56 #| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." -msgstr "" +msgstr "Диаграмата е създадена." #: tbl_chart.php:59 msgid "" From 2ef07ef258d138e6bb5958ba6e1f77db89190afe Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:14:41 +0200 Subject: [PATCH 0751/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index fbc226ffc6..c3182e8951 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8897,7 +8897,7 @@ msgstr "" #: tbl_change.php:1060 msgid "Show insert query" -msgstr "" +msgstr "Показване заявка за вмъкване" #: tbl_change.php:1071 msgid "and then" From d7201711b144cba02b4139f94491c65e0cd56bc6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:15:00 +0200 Subject: [PATCH 0752/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c3182e8951..591a65b98c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:14+0200\n" +"PO-Revision-Date: 2011-05-17 11:15+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8905,7 +8905,7 @@ msgstr "и след това" #: tbl_change.php:1075 msgid "Go back to previous page" -msgstr "Обратно" +msgstr "Обратно към предната страница" #: tbl_change.php:1076 msgid "Insert another new row" From 5ec76f6b0eb8fac0d478e9db279e9b091a76b927 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:15:31 +0200 Subject: [PATCH 0753/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 591a65b98c..770c72247f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8909,7 +8909,7 @@ msgstr "Обратно към предната страница" #: tbl_change.php:1076 msgid "Insert another new row" -msgstr "Друг нов ред" +msgstr "Вмъкване нов ред" #: tbl_change.php:1080 msgid "Go back to this page" From 68441abed91c843d67eb7553eb546391075f59f3 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:16:10 +0200 Subject: [PATCH 0754/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 770c72247f..58c9ad2312 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:15+0200\n" +"PO-Revision-Date: 2011-05-17 11:16+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8864,7 +8864,7 @@ msgstr "Етикет" #: tbl_addfield.php:185 tbl_alter.php:99 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" -msgstr "" +msgstr "Таблицата %1$s беше променена" #: tbl_change.php:283 tbl_change.php:321 msgid "Function" From 60802d60d63d861ce71daa489786bcdc6ba96186 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:17:21 +0200 Subject: [PATCH 0755/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 58c9ad2312..79ad1cf3df 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:16+0200\n" +"PO-Revision-Date: 2011-05-17 11:17+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8822,7 +8822,7 @@ msgstr "" #: setup/lib/index.lib.php:358 msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "" +msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци." #: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 From 946ceebc67b546e16471cdd727e492b4e29c93ea Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:17:49 +0200 Subject: [PATCH 0756/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 79ad1cf3df..638626d10b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8827,7 +8827,7 @@ msgstr "Ключът трябва да съдържа букви, цифри [em #: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" -msgstr "Преглеждане на чуждите стойности" +msgstr "Преглеждане външни стойности" #: sql.php:163 #, php-format From b9f60ed2530b933da4b24c07d264bbccc6ae7e76 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:18:04 +0200 Subject: [PATCH 0757/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 638626d10b..e054721c1f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:17+0200\n" +"PO-Revision-Date: 2011-05-17 11:18+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8827,7 +8827,7 @@ msgstr "Ключът трябва да съдържа букви, цифри [em #: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" -msgstr "Преглеждане външни стойности" +msgstr "Разглеждане за външни стойности" #: sql.php:163 #, php-format From 79fd30a6acfb8e81ca232f68579222ab9e1af0f8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:18:35 +0200 Subject: [PATCH 0758/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index e054721c1f..212a545642 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8818,7 +8818,7 @@ msgstr "" #: setup/lib/index.lib.php:351 msgid "Key is too short, it should have at least 8 characters." -msgstr "" +msgstr "Ключът е твърде къс, трябва да бъде поне 8 знака." #: setup/lib/index.lib.php:358 msgid "Key should contain letters, numbers [em]and[/em] special characters." From 72df05e073c537a51cf31c4c26fa1a98cb851076 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:20:08 +0200 Subject: [PATCH 0759/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 212a545642..9bde07e2db 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:18+0200\n" +"PO-Revision-Date: 2011-05-17 11:20+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8810,7 +8810,7 @@ msgstr "" #: setup/lib/index.lib.php:306 msgid "You should use mysqli for performance reasons." -msgstr "" +msgstr "По причини свързани с производителността използвайте mysqli." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." From 038ad9dcb82db2c7049919d03a6283eb3bc44cac Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:20:49 +0200 Subject: [PATCH 0760/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 9bde07e2db..ec0a8c1e07 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8814,7 +8814,7 @@ msgstr "По причини свързани с производителност #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." -msgstr "" +msgstr "Позволено е свързването към сървъра без парола." #: setup/lib/index.lib.php:351 msgid "Key is too short, it should have at least 8 characters." From fa0a2c26e8d6d633b54180f43d22871f5d435827 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:21:17 +0200 Subject: [PATCH 0761/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ec0a8c1e07..ddae3e5b69 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:20+0200\n" +"PO-Revision-Date: 2011-05-17 11:21+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8806,7 +8806,7 @@ msgstr "" #: setup/lib/index.lib.php:296 msgid "You should use SSL connections if your web server supports it." -msgstr "" +msgstr "Използвайте SSL ако браузърът ви го поддържа." #: setup/lib/index.lib.php:306 msgid "You should use mysqli for performance reasons." From 5cfd939741ad6abccd55a9ecabe0429528c0d2aa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:22:17 +0200 Subject: [PATCH 0762/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ddae3e5b69..a44c56e0b2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:21+0200\n" +"PO-Revision-Date: 2011-05-17 11:22+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8802,7 +8802,7 @@ msgstr "" msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "%sZip разархивиране%s изизква функцията (%s), която не е налична." #: setup/lib/index.lib.php:296 msgid "You should use SSL connections if your web server supports it." From 00344dbbc5199626aa15e28a667cee3c573c89b5 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:22:46 +0200 Subject: [PATCH 0763/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a44c56e0b2..bf6c4390b6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8795,7 +8795,7 @@ msgstr "" msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "%sZip архивиране%s изизква функцията (%s), която не е налична." #: setup/lib/index.lib.php:272 #, php-format From 71d56a0abe018c8510e4d64ae89f32eb8ccc78b4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:23:44 +0200 Subject: [PATCH 0764/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index bf6c4390b6..8a84026fa1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:22+0200\n" +"PO-Revision-Date: 2011-05-17 11:23+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8660,7 +8660,7 @@ msgstr "Добавяне на нов сървър" #: setup/lib/form_processing.lib.php:42 msgid "Warning" -msgstr "" +msgstr "Предупреждение" #: setup/lib/form_processing.lib.php:43 msgid "Submitted form contains errors" From e3c2243f565d6550ea52a6f84c463a9cba95be2c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:23:55 +0200 Subject: [PATCH 0765/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 8a84026fa1..94eeb2edfc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8652,7 +8652,7 @@ msgstr "" #: setup/frames/servers.inc.php:28 msgid "Edit server" -msgstr "" +msgstr "Редакция сървър" #: setup/frames/servers.inc.php:37 msgid "Add a new server" From ccdf07d71e8d39e4b7d9a34607bccc3fcf456cc8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:24:18 +0200 Subject: [PATCH 0766/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 94eeb2edfc..4b9f5aacdc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:23+0200\n" +"PO-Revision-Date: 2011-05-17 11:24+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8648,7 +8648,7 @@ msgstr "phpMyAdmin страница" #: setup/frames/index.inc.php:240 msgid "Donate" -msgstr "" +msgstr "Дарение" #: setup/frames/servers.inc.php:28 msgid "Edit server" From a6a706f448a0eef8340b484de6555c0c8b451258 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:24:26 +0200 Subject: [PATCH 0767/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 4b9f5aacdc..98084487b7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8636,7 +8636,7 @@ msgstr "" #: setup/frames/index.inc.php:224 msgid "Display" -msgstr "" +msgstr "Показване" #: setup/frames/index.inc.php:228 msgid "Load" From d5178f631ad7d89ef10c59fda1c4d4efbe9181dc Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:24:35 +0200 Subject: [PATCH 0768/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 98084487b7..f3ae9b820b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8632,7 +8632,7 @@ msgstr "" #: setup/frames/index.inc.php:219 msgid "End of line" -msgstr "" +msgstr "Край на ред" #: setup/frames/index.inc.php:224 msgid "Display" From eff58d5b4687782721ccaeb11dde61dc3fcbfcf2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:25:27 +0200 Subject: [PATCH 0769/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f3ae9b820b..77307f6aec 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:24+0200\n" +"PO-Revision-Date: 2011-05-17 11:25+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8672,7 +8672,7 @@ msgstr "" #: setup/lib/form_processing.lib.php:47 msgid "Ignore errors" -msgstr "" +msgstr "Пренебрегване на грешките" #: setup/lib/form_processing.lib.php:49 msgid "Show form" From a3613c5f07f842e4587cd13f663a3c82970bdea1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:25:47 +0200 Subject: [PATCH 0770/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 77307f6aec..79d9575496 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8624,7 +8624,7 @@ msgstr "" #: setup/frames/index.inc.php:206 msgid "- none -" -msgstr "" +msgstr "- никой -" #: setup/frames/index.inc.php:209 msgid "Default server" From 9b871c05d62922e9869f6ad783558e2dfbd20178 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:26:15 +0200 Subject: [PATCH 0771/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 79d9575496..fd2a2a47dd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:25+0200\n" +"PO-Revision-Date: 2011-05-17 11:26+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8620,7 +8620,7 @@ msgstr "" #: setup/frames/index.inc.php:195 msgid "let the user choose" -msgstr "" +msgstr "нека потребитлят избере" #: setup/frames/index.inc.php:206 msgid "- none -" From c2f262f619c35d8973fe7392baa7110f2951aeb7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:26:27 +0200 Subject: [PATCH 0772/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index fd2a2a47dd..40dcb2d348 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8616,7 +8616,7 @@ msgstr "" #: setup/frames/index.inc.php:185 msgid "Default language" -msgstr "" +msgstr "Език по подразбиране" #: setup/frames/index.inc.php:195 msgid "let the user choose" From cbf26681da28d64c3b9389eafe7688e446011b31 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:26:45 +0200 Subject: [PATCH 0773/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 40dcb2d348..ddb4d0fc19 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8628,7 +8628,7 @@ msgstr "- никой -" #: setup/frames/index.inc.php:209 msgid "Default server" -msgstr "" +msgstr "Сървър по подразбиране" #: setup/frames/index.inc.php:219 msgid "End of line" From bfb138152952740f964256c41d2c90c9b01da620 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:26:59 +0200 Subject: [PATCH 0774/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ddb4d0fc19..5025f9dfc3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8612,7 +8612,7 @@ msgstr "" #: setup/frames/index.inc.php:156 msgid "New server" -msgstr "" +msgstr "Нов сървър" #: setup/frames/index.inc.php:185 msgid "Default language" From af3d1e5b8a310cb0c5dcc6463cdd12b66de6cb25 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:27:08 +0200 Subject: [PATCH 0775/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5025f9dfc3..7d3cb22634 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:26+0200\n" +"PO-Revision-Date: 2011-05-17 11:27+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8557,7 +8557,7 @@ msgstr "Глобална стойност" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: setup/frames/index.inc.php:49 msgid "Cannot load or save configuration" From a752c6d63683a395ec9bc618b24335505ef659d6 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:29:01 +0200 Subject: [PATCH 0776/1652] Translation update done using Pootle. --- po/ja.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/ja.po b/po/ja.po index 0fd29ff567..20da088242 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-05 11:38+0200\n" +"PO-Revision-Date: 2011-05-17 11:29+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -968,10 +968,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "データベースを完全に削除しようとしています!" +msgstr "テーブルを完全に削除しようとしています!" #: js/messages.php:33 #, fuzzy From c015ecf5e5d06d22af8dd6306c931222ca5f68aa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:29:31 +0200 Subject: [PATCH 0777/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7d3cb22634..7db5e4fde5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:27+0200\n" +"PO-Revision-Date: 2011-05-17 11:29+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8706,7 +8706,7 @@ msgstr "" #: setup/lib/index.lib.php:165 msgid "No newer stable version is available" -msgstr "" +msgstr "Няма по-нова стабилна версия" #: setup/lib/index.lib.php:250 #, php-format From c8dfecefc3f8a23385c9a75e889d63f340026951 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:30:32 +0200 Subject: [PATCH 0778/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 20da088242..3be62e65f3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:29+0200\n" +"PO-Revision-Date: 2011-05-17 11:30+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -973,10 +973,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "テーブルを完全に削除しようとしています!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "データベースを完全に削除しようとしています!" +msgstr "テーブルを完全に空にしようとしています!" #: js/messages.php:34 msgid "Dropping Event" From dc218e599c92590acbe8f2bf533f0455c3ec07af Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:30:53 +0200 Subject: [PATCH 0779/1652] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 3be62e65f3..da91ac58d0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1114,10 +1114,9 @@ msgid "Searching" msgstr "検索中" #: js/messages.php:84 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "検索条件を隠す" +msgstr "検索結果を隠す" #: js/messages.php:85 #, fuzzy From 5135178429a761ba82439a72ea52c90b88dfd53f Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:31:06 +0200 Subject: [PATCH 0780/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index da91ac58d0..bf5e9adff0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:30+0200\n" +"PO-Revision-Date: 2011-05-17 11:31+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1119,10 +1119,9 @@ msgid "Hide search results" msgstr "検索結果を隠す" #: js/messages.php:85 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "検索条件を表示する" +msgstr "検索結果を表示する" #: js/messages.php:90 msgid "" From 56308851d6cf4166f59624da3f1b9272c1895e63 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:31:54 +0200 Subject: [PATCH 0781/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7db5e4fde5..dd42bc41fa 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:29+0200\n" +"PO-Revision-Date: 2011-05-17 11:31+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6166,7 +6166,7 @@ msgstr "Настройки" #: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1115 msgid "Source database" -msgstr "" +msgstr "Изходна БД" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 From 9dd910b2e17e5ebe3bcfcfde3fabca8b7b474555 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:32:03 +0200 Subject: [PATCH 0782/1652] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index bf5e9adff0..3b497631b7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:31+0200\n" +"PO-Revision-Date: 2011-05-17 11:32+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1126,7 +1126,7 @@ msgstr "検索結果を表示する" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されます。" #: js/messages.php:93 msgid "Hide query box" From 4a42db49cde895240dac6261ccbe9b98f1fe7b1a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:32:25 +0200 Subject: [PATCH 0783/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index dd42bc41fa..d14cc6d688 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:31+0200\n" +"PO-Revision-Date: 2011-05-17 11:32+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6171,7 +6171,7 @@ msgstr "Изходна БД" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 msgid "Current server" -msgstr "" +msgstr "Текущ сървър" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 From 0992bfd850bd44a2f3b9d4c743c603fe0374de7a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:32:33 +0200 Subject: [PATCH 0784/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d14cc6d688..341875acf0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6176,7 +6176,7 @@ msgstr "Текущ сървър" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 msgid "Remote server" -msgstr "" +msgstr "Отдалечен сървър" #: libraries/server_synchronize.lib.php:1344 msgid "Difference" From 7cec2d82871e60da3e593c74ed2af8f48130c4a2 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:32:42 +0200 Subject: [PATCH 0785/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 341875acf0..5f8c9d5148 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6180,7 +6180,7 @@ msgstr "Отдалечен сървър" #: libraries/server_synchronize.lib.php:1344 msgid "Difference" -msgstr "" +msgstr "Различия" #: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117 msgid "Target database" From dc992a3f31ef2d436cfc520c177c3a02a097d028 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:34:49 +0200 Subject: [PATCH 0786/1652] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 3b497631b7..125cdfedf8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:32+0200\n" +"PO-Revision-Date: 2011-05-17 11:34+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1186,7 +1186,7 @@ msgstr "表示するカラムを選択してください" msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" -msgstr "" +msgstr "レイアウトの変更を保存されていません。保存していない場合、それらは失われます。このまま続けてもよろしいですか?" #: js/messages.php:114 msgid "Add an option for column " From 58e11b72a2c00760b1bf9f67e4a13420d37baec7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:35:34 +0200 Subject: [PATCH 0787/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5f8c9d5148..f6691b3e0a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:32+0200\n" +"PO-Revision-Date: 2011-05-17 11:35+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -6751,7 +6751,7 @@ msgstr "" #: navigation.php:277 msgid "filter tables by name" -msgstr "филтър по име на таблица" +msgstr "филтър по таблица" #: navigation.php:308 navigation.php:309 msgctxt "short form" From 6fa193cef3efd2a26362e18e1d4bedd8d3592573 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:36:54 +0200 Subject: [PATCH 0788/1652] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 125cdfedf8..572b8c0c8b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:34+0200\n" +"PO-Revision-Date: 2011-05-17 11:36+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7904,7 +7904,7 @@ msgid "Unable to change master" msgstr "マスタを切り替えることができません" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "マスタサーバを %s へ切り替えるのに成功しました。" From 1d1ab8df76f80e6f523fab7bd321801ad7e5cab4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:37:30 +0200 Subject: [PATCH 0789/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f6691b3e0a..b9d1a126bf 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:35+0200\n" +"PO-Revision-Date: 2011-05-17 11:37+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -648,7 +648,7 @@ msgstr "Когато има отметка:" #: server_databases.php:248 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" -msgstr "Маркиране на всичко" +msgstr "Маркиране всички" #: db_structure.php:490 libraries/display_tbl.lib.php:2174 #: libraries/replication_gui.lib.php:35 server_databases.php:250 From 6c1505dc1052e0ae1d1a29f3d9d1c925e1e3a799 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:37:43 +0200 Subject: [PATCH 0790/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index b9d1a126bf..c572f73020 100644 --- a/po/bg.po +++ b/po/bg.po @@ -654,7 +654,7 @@ msgstr "Маркиране всички" #: libraries/replication_gui.lib.php:35 server_databases.php:250 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" -msgstr "Размаркиране на всичко" +msgstr "Отмаркиране всички" #: db_structure.php:495 msgid "Check tables having overhead" From 94d787926cad5fc5be6214dec732fa414616b766 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:44:28 +0200 Subject: [PATCH 0791/1652] Translation update done using Pootle. --- po/ja.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 572b8c0c8b..1400aab0cc 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:36+0200\n" +"PO-Revision-Date: 2011-05-17 11:44+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9042,6 +9042,8 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"設定は、phpMyAdmin ディレクトリの config/config.inc.php " +"ファイルに保存されます。それを使用するには、phpMyAdmin のトップレベルディレクトリにコピーして、config ディレクトリは削除してください。" #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From 379d4b1f6804d04d8c88981e878bf759152a7ce7 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:44:58 +0200 Subject: [PATCH 0792/1652] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 1400aab0cc..9dd36fee4b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9907,10 +9907,9 @@ msgid "Tracking data definition successfully deleted" msgstr "追跡するデータ定義コマンド" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Gather errors" msgid "Query error" -msgstr "エラーを収集する" +msgstr "クエリエラー" #: tbl_tracking.php:399 #, fuzzy From edb3d698d9c616e965188a4015c36324d6eccc97 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:45:26 +0200 Subject: [PATCH 0793/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c572f73020..c421adea78 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:37+0200\n" +"PO-Revision-Date: 2011-05-17 11:45+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -1555,7 +1555,7 @@ msgstr "" #: libraries/server_links.inc.php:42 server_databases.php:100 #: server_privileges.php:1740 test/theme.php:92 msgid "Databases" -msgstr "Бази от данни" +msgstr "БД" #: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593 From 072afe1a72855f3a47605d094f526f694d34c324 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:45:36 +0200 Subject: [PATCH 0794/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index c421adea78..a5d3f5e1bd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6743,7 +6743,7 @@ msgstr "" #: navigation.php:187 server_databases.php:267 server_synchronize.php:1206 msgid "No databases" -msgstr "Няма бази от данни" +msgstr "Няма БД" #: navigation.php:277 msgid "Filter" From eb8324c11f28ea44b11874e9a07ef88f001630fa Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:45:48 +0200 Subject: [PATCH 0795/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a5d3f5e1bd..f431788657 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7081,7 +7081,7 @@ msgstr "Набори от знаци и колации" #: server_databases.php:64 msgid "No databases selected." -msgstr "Няма избрани бази от данни." +msgstr "Няма избрани БД." #: server_databases.php:75 #, php-format From 69b18af11a300d550408a91325e711b820d1561f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:46:01 +0200 Subject: [PATCH 0796/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index f431788657..52c66bf423 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:45+0200\n" +"PO-Revision-Date: 2011-05-17 11:46+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7086,7 +7086,7 @@ msgstr "Няма избрани БД." #: server_databases.php:75 #, php-format msgid "%s databases have been dropped successfully." -msgstr "%s бази от данни бяха изтрити успешно." +msgstr "%s БД бяха изтрити успешно." #: server_databases.php:100 msgid "Databases statistics" From fc9a56282cce0a0cc958f8074308805eb12facbb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:46:16 +0200 Subject: [PATCH 0797/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 52c66bf423..2fa4809735 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7138,7 +7138,7 @@ msgstr "Позволява промяна и изтриване на съхра #: server_privileges.php:35 server_privileges.php:194 #: server_privileges.php:528 msgid "Allows creating new databases and tables." -msgstr "Позволява създаване на нови бази от данни и таблици." +msgstr "Позволява създаване на нови БД и таблици." #: server_privileges.php:36 server_privileges.php:217 #: server_privileges.php:534 From 5f804ceee31cf406d3907a5b76414223339fadf8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:46:28 +0200 Subject: [PATCH 0798/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2fa4809735..8c27687bcb 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7173,7 +7173,7 @@ msgstr "Позволява изтриване на данни." #: server_privileges.php:42 server_privileges.php:195 #: server_privileges.php:531 msgid "Allows dropping databases and tables." -msgstr "Позволява изтриване на бази от данни и таблици." +msgstr "Позволява изтриване на БД и таблици." #: server_privileges.php:43 server_privileges.php:531 msgid "Allows dropping tables." From 403e839194c632db85f0170504a752e7b7a0c743 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:52:04 +0200 Subject: [PATCH 0799/1652] Translation update done using Pootle. --- po/ja.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/ja.po b/po/ja.po index 9dd36fee4b..d9bbe73bfa 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:44+0200\n" +"PO-Revision-Date: 2011-05-17 11:52+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -5543,9 +5543,7 @@ msgstr "" #: libraries/export/sql.php:35 msgid "Additional custom header comment (\\n splits lines):" -msgstr "" -"ヘッダにカスタムコメントを追加 (\n" -" で改行):" +msgstr "ヘッダにカスタムコメントを追加 (¥n で改行):" #: libraries/export/sql.php:37 msgid "" From d730c5d8915bc273c6762940fc0892598247db7b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 11:54:21 +0200 Subject: [PATCH 0800/1652] Translation update done using Pootle. --- po/bg.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/bg.po b/po/bg.po index 8c27687bcb..0e412f788d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:46+0200\n" +"PO-Revision-Date: 2011-05-17 11:54+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8406,8 +8406,8 @@ msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -"Статистика на заявките: От както е стартиран %s заявки са изпратени " -"към сървъра." +"Статистика на заявките: От както е стартиран към сървъра са изпратени " +"%s заявки." #: server_status.php:626 msgid "per minute" From e24bdbc3d064090e90261f7ab911f00b5a2655bd Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 11:58:35 +0200 Subject: [PATCH 0801/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index d9bbe73bfa..88d418e9d5 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:52+0200\n" +"PO-Revision-Date: 2011-05-17 11:58+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -703,10 +703,9 @@ msgid "Analyze table" msgstr "テーブルを分析する" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "テーブルに移動" +msgstr "接頭辞をテーブル名に追加する" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From 5714aa23cb065e09ccb16c3d1bfaac2ebc76a74b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 11:59:44 +0200 Subject: [PATCH 0802/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a6924a8054..e2462dbc22 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:00+0200\n" +"PO-Revision-Date: 2011-05-17 11:59+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2871,7 +2871,7 @@ msgstr "Prispôsobenie režimu úprav" #: libraries/config/messages.inc.php:162 msgid "Export defaults" -msgstr "" +msgstr "Východzie nastavenia exportu" #: libraries/config/messages.inc.php:163 msgid "Customize default export options" From 67267eac16efcd0c9937299a2d893c38185402b7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:00:05 +0200 Subject: [PATCH 0803/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e2462dbc22..2066cddc09 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:59+0200\n" +"PO-Revision-Date: 2011-05-17 12:00+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2875,7 +2875,7 @@ msgstr "Východzie nastavenia exportu" #: libraries/config/messages.inc.php:163 msgid "Customize default export options" -msgstr "" +msgstr "Prispôsobiť východzie nastavenia exportu" #: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206 #: setup/frames/menu.inc.php:16 From 731ec4a983497c065083287908e89848a18e6b4e Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:00:24 +0200 Subject: [PATCH 0804/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 88d418e9d5..fc8d065de5 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:58+0200\n" +"PO-Revision-Date: 2011-05-17 12:00+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -708,10 +708,9 @@ msgid "Add prefix to table" msgstr "接頭辞をテーブル名に追加する" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "テーブルデータを差し替えるファイル" +msgstr "テーブル名の接頭辞を差し替える" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 88cebbc423182a4a0f11211833fbd42351a6217d Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:00:36 +0200 Subject: [PATCH 0805/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2066cddc09..9a36e4ae19 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2880,7 +2880,7 @@ msgstr "Prispôsobiť východzie nastavenia exportu" #: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Funkcie" #: libraries/config/messages.inc.php:165 #, fuzzy From 34164d3104a940ef796962a502a07a275f552637 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:00:52 +0200 Subject: [PATCH 0806/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9a36e4ae19..27b9fc12f6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2883,10 +2883,9 @@ msgid "Features" msgstr "Funkcie" #: libraries/config/messages.inc.php:165 -#, fuzzy #| msgid "Generate" msgid "General" -msgstr "Vytvoriť" +msgstr "Všeobecné" #: libraries/config/messages.inc.php:166 msgid "Set some commonly used options" From 895bea3592c92ab4926d331841f1035b6527082a Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:01:50 +0200 Subject: [PATCH 0807/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 27b9fc12f6..5e25d01cd9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:00+0200\n" +"PO-Revision-Date: 2011-05-17 12:01+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2889,7 +2889,7 @@ msgstr "Všeobecné" #: libraries/config/messages.inc.php:166 msgid "Set some commonly used options" -msgstr "" +msgstr "Nastaviť zvyčajne používané nastavenia" #: libraries/config/messages.inc.php:167 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 From 31627f108c938d376bb035456f000732b2d8a78c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:02:34 +0200 Subject: [PATCH 0808/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5e25d01cd9..226212031a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:01+0200\n" +"PO-Revision-Date: 2011-05-17 12:02+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2475,7 +2475,7 @@ msgid "" "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" "Komprimovať exporty za behu pomocou gzip/bzip2 bez veľkých pamäťových " -"nárokov. Pokiaľ zistíte problémy s takto vytvorenými gzip/bzipľ súbormi, " +"nárokov. Pokiaľ zistíte problémy s takto vytvorenými gzip/bzip2 súbormi, " "vypnite túto funkciu" #: libraries/config/messages.inc.php:40 From 2734351e1c376e9e5c5bef650466bc001288a8d7 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:03:03 +0200 Subject: [PATCH 0809/1652] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index fc8d065de5..c159edbb11 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:00+0200\n" +"PO-Revision-Date: 2011-05-17 12:03+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -710,7 +710,7 @@ msgstr "接頭辞をテーブル名に追加する" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "テーブル名の接頭辞を差し替える" +msgstr "テーブル名の接頭辞を付け替える" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 4c5f32c39fe78995960767753fdc2bc502e06798 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:03:12 +0200 Subject: [PATCH 0810/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 226212031a..0126596745 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:02+0200\n" +"PO-Revision-Date: 2011-05-17 12:03+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2814,7 +2814,7 @@ 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 "" -"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; " +"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; " "[kbd]obsah[/kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" #: libraries/config/messages.inc.php:148 From 4b2d7af1a13809e98700827cf9abe12015892c90 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:03:13 +0200 Subject: [PATCH 0811/1652] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index c159edbb11..ee2e46dd1c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -713,10 +713,9 @@ msgid "Replace table prefix" msgstr "テーブル名の接頭辞を付け替える" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "テーブルデータを差し替えるファイル" +msgstr "接頭辞を付け替えてテーブルをコピーする" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From 19bfe6e010e888c049767d782b645328ab517516 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:05:53 +0200 Subject: [PATCH 0812/1652] Translation update done using Pootle. --- po/sk.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 0126596745..36f24a2d52 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:03+0200\n" +"PO-Revision-Date: 2011-05-17 12:05+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2444,6 +2444,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "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" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" From 8901b4b53e28ce8ef3954af0b683b64e7ee671e7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:06:23 +0200 Subject: [PATCH 0813/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 36f24a2d52..b60854a803 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:05+0200\n" +"PO-Revision-Date: 2011-05-17 12:06+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2901,9 +2901,8 @@ msgid "Import" msgstr "Import" #: libraries/config/messages.inc.php:168 -#, fuzzy msgid "Import defaults" -msgstr "Importovať súbory" +msgstr "Východzie nastavenia importu" #: libraries/config/messages.inc.php:169 msgid "Customize default common import options" From 10e2b820b2aaf6e8db35c294f8146d7f716ff06d Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:06:55 +0200 Subject: [PATCH 0814/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b60854a803..c9c459a2fd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2906,7 +2906,7 @@ msgstr "Východzie nastavenia importu" #: libraries/config/messages.inc.php:169 msgid "Customize default common import options" -msgstr "" +msgstr "Prispôsobiť východzie nastavenia importu" #: libraries/config/messages.inc.php:170 msgid "Import / export" From 6859fef9f0ed535d9e701e0a2423520f49de6062 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:07:06 +0200 Subject: [PATCH 0815/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c9c459a2fd..4d138e9007 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:06+0200\n" +"PO-Revision-Date: 2011-05-17 12:07+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2910,7 +2910,7 @@ msgstr "Prispôsobiť východzie nastavenia importu" #: libraries/config/messages.inc.php:170 msgid "Import / export" -msgstr "" +msgstr "Import / export" #: libraries/config/messages.inc.php:171 msgid "Set import and export directories and compression options" From 6bb2b4f160c1874c82e23045acecaf43204da68d Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:07:18 +0200 Subject: [PATCH 0816/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index ee2e46dd1c..5b754bb789 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:03+0200\n" +"PO-Revision-Date: 2011-05-17 12:07+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -5852,10 +5852,9 @@ msgid "Convert to Kana" msgstr "全角カナへ変換する" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "金" +msgstr "元の文字列" #: libraries/mult_submits.inc.php:252 msgid "To" From 6439adc6af929e968e235eca978d2b98eee1ff77 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:07:46 +0200 Subject: [PATCH 0817/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4d138e9007..74a3f17770 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2914,7 +2914,7 @@ msgstr "Import / export" #: libraries/config/messages.inc.php:171 msgid "Set import and export directories and compression options" -msgstr "" +msgstr "Nastaví adresáre pre import a export a voľby kompresie" #: libraries/config/messages.inc.php:172 libraries/export/latex.php:26 msgid "LaTeX" From fda51fae2690c368ac1a85692ff52ca34afff27c Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:07:54 +0200 Subject: [PATCH 0818/1652] Translation update done using Pootle. --- po/ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 5b754bb789..b9b5dbf2ac 100644 --- a/po/ja.po +++ b/po/ja.po @@ -5854,7 +5854,7 @@ msgstr "全角カナへ変換する" #: libraries/mult_submits.inc.php:249 #| msgid "Fr" msgid "From" -msgstr "元の文字列" +msgstr "付け替え元" #: libraries/mult_submits.inc.php:252 msgid "To" From c49c636759b4292e1a1f56a7ab2427b6f8450a8e Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:07:58 +0200 Subject: [PATCH 0819/1652] Translation update done using Pootle. --- po/ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index b9b5dbf2ac..4284c3d98d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -5858,7 +5858,7 @@ msgstr "付け替え元" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "付け替え先" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:440 From d36938f988809f1f5a11e8d0261aca3562dae9db Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:08:20 +0200 Subject: [PATCH 0820/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 74a3f17770..747ae95e81 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:07+0200\n" +"PO-Revision-Date: 2011-05-17 12:08+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2921,9 +2921,8 @@ msgid "LaTeX" msgstr "LaTeX" #: libraries/config/messages.inc.php:175 -#, fuzzy msgid "Databases display options" -msgstr "Nastavenia exportu databáz" +msgstr "Nastavenia zobrazenia databáz" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" From 462f5952256c1d64c1e28b94cf86ba078aa1bf4a Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:08:29 +0200 Subject: [PATCH 0821/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 747ae95e81..d5acdb3dc6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2926,7 +2926,7 @@ msgstr "Nastavenia zobrazenia databáz" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Navigačný rám" #: libraries/config/messages.inc.php:177 msgid "Customize appearance of the navigation frame" From 4d56450a85f0e63157e43593731165b7f707eef5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:09:03 +0200 Subject: [PATCH 0822/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d5acdb3dc6..e5f196bd31 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:08+0200\n" +"PO-Revision-Date: 2011-05-17 12:09+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2930,7 +2930,7 @@ msgstr "Navigačný rám" #: libraries/config/messages.inc.php:177 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Prizpôsobiť vzhľad navigačného rámu" #: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:110 From 46e082df5ab1bb6b2940d8d25d6072a9c2483180 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:09:23 +0200 Subject: [PATCH 0823/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index e5f196bd31..8d11c6c3a0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2939,7 +2939,7 @@ msgstr "Servery" #: libraries/config/messages.inc.php:179 msgid "Servers display options" -msgstr "" +msgstr "Nastavenie zobrazenia serverov" #: libraries/config/messages.inc.php:181 msgid "Tables display options" From 1c4d80e164b5dab75736718e85ec3dd8ce52332f Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:09:42 +0200 Subject: [PATCH 0824/1652] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 4284c3d98d..f9bd5779f3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:07+0200\n" +"PO-Revision-Date: 2011-05-17 12:09+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -5867,7 +5867,7 @@ msgstr "実行する" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "テーブル接頭辞の追加" #: libraries/mult_submits.inc.php:266 #, fuzzy From 2e98bb8f397926dcaa494b413dbf3c51b25d7bc9 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:09:44 +0200 Subject: [PATCH 0825/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8d11c6c3a0..6d81c41aa1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2943,7 +2943,7 @@ msgstr "Nastavenie zobrazenia serverov" #: libraries/config/messages.inc.php:181 msgid "Tables display options" -msgstr "" +msgstr "Nastavenie zobrazenia tabuliek" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" From 6f9c2a0d230e314e2d472fdfaabfd2f65b830387 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:09:51 +0200 Subject: [PATCH 0826/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 6d81c41aa1..d9f4941935 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2947,7 +2947,7 @@ msgstr "Nastavenie zobrazenia tabuliek" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Hlavný rám" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" From 14b92a60d4b814cfd3ca851325b2ea34651cbb74 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:10:02 +0200 Subject: [PATCH 0827/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d9f4941935..2a8772a076 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:09+0200\n" +"PO-Revision-Date: 2011-05-17 12:10+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2951,7 +2951,7 @@ msgstr "Hlavný rám" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" -msgstr "" +msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 #, fuzzy From f03fe9d2cbc94ee981617c46692bebe7c4daf408 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:10:11 +0200 Subject: [PATCH 0828/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index f9bd5779f3..9d8d617a85 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:09+0200\n" +"PO-Revision-Date: 2011-05-17 12:10+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -5870,10 +5870,9 @@ msgid "Add table prefix" msgstr "テーブル接頭辞の追加" #: libraries/mult_submits.inc.php:266 -#, fuzzy #| msgid "Add index" msgid "Add prefix" -msgstr "インデックスを追加する" +msgstr "追加する接頭辞" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" From 835ed7bf75aeb52057b4ce8e88c43231a16f55b4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:11:16 +0200 Subject: [PATCH 0829/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2a8772a076..bb302afe48 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:10+0200\n" +"PO-Revision-Date: 2011-05-17 12:11+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2961,7 +2961,7 @@ msgstr "Open Document Text" #: libraries/config/messages.inc.php:187 msgid "Other core settings" -msgstr "" +msgstr "Ostatné základné nastavenia" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" From 41dc724bf10b84564c87cf720b493032c0220644 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:11:41 +0200 Subject: [PATCH 0830/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 9d8d617a85..c109982b6a 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:10+0200\n" +"PO-Revision-Date: 2011-05-17 12:11+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9025,10 +9025,9 @@ msgid "Insecure connection" msgstr "セキュリティで保護されていない接続" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "設定の保存場所" +msgstr "設定を保存しました。" #: setup/frames/index.inc.php:93 msgid "" From c8a48f720122ae8038b2e4691e84368588062f0e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:11:44 +0200 Subject: [PATCH 0831/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index bb302afe48..3e46471407 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2965,7 +2965,7 @@ msgstr "Ostatné základné nastavenia" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Nastavenia, ktoré sa nedajú zaradiť inde" #: libraries/config/messages.inc.php:189 #, fuzzy From db5daf139e1f775951e107d5a34116bfd75dd0e5 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:12:01 +0200 Subject: [PATCH 0832/1652] Translation update done using Pootle. --- po/ja.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index c109982b6a..0352934bc9 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:11+0200\n" +"PO-Revision-Date: 2011-05-17 12:12+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9035,7 +9035,8 @@ msgid "" "directory, copy it to top level one and delete directory config to use it." msgstr "" "設定は、phpMyAdmin ディレクトリの config/config.inc.php " -"ファイルに保存されます。それを使用するには、phpMyAdmin のトップレベルディレクトリにコピーして、config ディレクトリは削除してください。" +"ファイルに保存されています。それを使用するには、phpMyAdmin のトップレベルディレクトリにコピーして、config " +"ディレクトリは削除してください。" #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From 52d17b78c0651f99dc1520ade24ef08bf7c308f1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:14:52 +0200 Subject: [PATCH 0833/1652] Translation update done using Pootle. --- po/sk.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3e46471407..9b0e1151db 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:11+0200\n" +"PO-Revision-Date: 2011-05-17 12:14+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2979,6 +2979,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" +"Zadajte titulku, ktorú bude zobrazovať prehliadač. V " +"[a@Documentation.html#cfg_TitleTable]documentácii[/a] nájdete špeciálne " +"reťazce, ktoré môžete použiť na získanie špeciálnych hodnôt." #: libraries/config/messages.inc.php:191 #: libraries/navigation_header.inc.php:83 From 275aa60f872fcdb1220f1f0dc4402374861fd587 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:15:17 +0200 Subject: [PATCH 0834/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9b0e1151db..22a90cb09b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:14+0200\n" +"PO-Revision-Date: 2011-05-17 12:15+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2992,7 +2992,7 @@ msgstr "SQL okno" #: libraries/config/messages.inc.php:192 msgid "Customize query window options" -msgstr "" +msgstr "Prispôsobiť nastavenia okna dopytov" #: libraries/config/messages.inc.php:193 msgid "Security" From 4484a25773154af3e97ce5344e823746de943ab2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:15:30 +0200 Subject: [PATCH 0835/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 22a90cb09b..91282377eb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2996,7 +2996,7 @@ msgstr "Prispôsobiť nastavenia okna dopytov" #: libraries/config/messages.inc.php:193 msgid "Security" -msgstr "" +msgstr "Zabezpečenie" #: libraries/config/messages.inc.php:194 msgid "" From b64e293bfdbbcc69635a4579659a1fdbde6b6981 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:17:48 +0200 Subject: [PATCH 0836/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 91282377eb..f79227f2e6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:15+0200\n" +"PO-Revision-Date: 2011-05-17 12:17+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3003,6 +3003,8 @@ msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Pripomíname, že phpMyAdmin je len užívateľské rozhranie a jeho funkcie " +"neobmedzujú MySQL" #: libraries/config/messages.inc.php:195 msgid "Basic settings" From 5dc88f5ba9b1281dd35ea0527dc2787c1692c991 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:18:11 +0200 Subject: [PATCH 0837/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f79227f2e6..dcee59e51f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:17+0200\n" +"PO-Revision-Date: 2011-05-17 12:18+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3008,7 +3008,7 @@ msgstr "" #: libraries/config/messages.inc.php:195 msgid "Basic settings" -msgstr "" +msgstr "Základné nastavenia" #: libraries/config/messages.inc.php:196 #, fuzzy From 39c9d76d36de3f3de86ab16ec04a8790daeef7d5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:18:37 +0200 Subject: [PATCH 0838/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index dcee59e51f..c78c5b422c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3024,7 +3024,7 @@ msgstr "Stav replikácie" #: libraries/config/messages.inc.php:198 msgid "Server configuration" -msgstr "" +msgstr "Konfigurácia servera" #: libraries/config/messages.inc.php:199 msgid "" From 2c57939462ebf71fcebc07380c0d7b3a8c6d0310 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:19:00 +0200 Subject: [PATCH 0839/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 0352934bc9..60f4c6c8f3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:12+0200\n" +"PO-Revision-Date: 2011-05-17 12:19+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9920,10 +9920,9 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "種別:%s、期間:%s-%s、ユーザ:%sで絞り込む %s" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "このテーブルに対しての追跡データを削除する" +msgstr "レポートからこの追跡データを削除する" #: tbl_tracking.php:443 #, fuzzy From f65f364b76f8376c28166e39e77292505be7c943 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:19:10 +0200 Subject: [PATCH 0840/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index c78c5b422c..e0ab9a7a7b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:18+0200\n" +"PO-Revision-Date: 2011-05-17 12:19+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3011,10 +3011,9 @@ msgid "Basic settings" msgstr "Základné nastavenia" #: libraries/config/messages.inc.php:196 -#, fuzzy #| msgid "Documentation" msgid "Authentication" -msgstr "Dokumentácia" +msgstr "Overenie" #: libraries/config/messages.inc.php:197 #, fuzzy From 44a6f9c90f549e1073fd3a2fae658cc4b0cf0d1f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:19:33 +0200 Subject: [PATCH 0841/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e0ab9a7a7b..8a40d283d4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3016,10 +3016,9 @@ msgid "Authentication" msgstr "Overenie" #: libraries/config/messages.inc.php:197 -#, fuzzy #| msgid "Replication status" msgid "Authentication settings" -msgstr "Stav replikácie" +msgstr "Nastavenie overovania" #: libraries/config/messages.inc.php:198 msgid "Server configuration" From b1f62e67da7e8866a25699bd853c4772816d0f87 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:19:48 +0200 Subject: [PATCH 0842/1652] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 60f4c6c8f3..3eaee1f474 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9925,10 +9925,9 @@ msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "データベースが存在しません" +msgstr "データが存在しません" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From d9f88f27506c38d15d9f87e85219c2a5ba58f09d Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:20:43 +0200 Subject: [PATCH 0843/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8a40d283d4..798400491d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:19+0200\n" +"PO-Revision-Date: 2011-05-17 12:20+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3029,6 +3029,8 @@ msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Pokročilá konfigurácia servera, nemeňte tieto nastavenia, pokiaľ neviete " +"čoho sa týkajú" #: libraries/config/messages.inc.php:200 msgid "Enter server connection parameters" From 5541265061fff2bb649ad2060bf2e9c5c76a545e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:21:09 +0200 Subject: [PATCH 0844/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 798400491d..eb17cd8a17 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:20+0200\n" +"PO-Revision-Date: 2011-05-17 12:21+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3034,7 +3034,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 msgid "Enter server connection parameters" -msgstr "" +msgstr "Vložte parametre pripojenia servera" #: libraries/config/messages.inc.php:201 #, fuzzy From b6bb67780f0a0871d7b1db3b3c70d0c1002f6760 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:22:14 +0200 Subject: [PATCH 0845/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index eb17cd8a17..20f5a1cf39 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:21+0200\n" +"PO-Revision-Date: 2011-05-17 12:22+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3037,10 +3037,9 @@ msgid "Enter server connection parameters" msgstr "Vložte parametre pripojenia servera" #: libraries/config/messages.inc.php:201 -#, fuzzy #| msgid "Configuration file" msgid "Configuration storage" -msgstr "Konfiguračný súbor" +msgstr "Miesto uloženia konfigurácie" #: libraries/config/messages.inc.php:202 msgid "" From 923eab897a9fcd51e4e2fe07026f9d2cda6eee29 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:24:19 +0200 Subject: [PATCH 0846/1652] Translation update done using Pootle. --- po/sk.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 20f5a1cf39..3eb255f264 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:22+0200\n" +"PO-Revision-Date: 2011-05-17 12:24+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3047,6 +3047,9 @@ msgid "" "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" +"Nastavenie phpMyAdmin miesta uloženia konfigurácie tak, aby získal prístup k " +"prídavným funkciám, viď [a@Documentation.html#linked-tables]miesto uloženia " +"konfigurácie [/a] v dokumentácii" #: libraries/config/messages.inc.php:203 msgid "Changes tracking" From f0d12fa9ce57335f276bca6053aacadc20187369 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:24:28 +0200 Subject: [PATCH 0847/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3eb255f264..2977832e65 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3053,7 +3053,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 msgid "Changes tracking" -msgstr "" +msgstr "Sledovanie zmien" #: libraries/config/messages.inc.php:204 msgid "" From e8a3e07b3dcec96182e050b6f6ea5dd55fd0ef24 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:24:30 +0200 Subject: [PATCH 0848/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index 3eaee1f474..2f890c1dd0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:19+0200\n" +"PO-Revision-Date: 2011-05-17 12:24+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9894,10 +9894,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "バージョン %s のスナップショット(SQL コード)" #: tbl_tracking.php:382 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "追跡するデータ定義コマンド" +msgstr "追跡データ定義コマンドの削除に成功しました。" #: tbl_tracking.php:384 tbl_tracking.php:401 #| msgid "Gather errors" From da3efd2ad88b210d1b7e3397ec4cd10b7015f7db Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:24:51 +0200 Subject: [PATCH 0849/1652] Translation update done using Pootle. --- po/ja.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index 2f890c1dd0..e39efc4640 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9904,10 +9904,9 @@ msgid "Query error" msgstr "クエリエラー" #: tbl_tracking.php:399 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "追跡するデータ操作コマンド" +msgstr "追跡データ操作コマンドの削除に成功しました。" #: tbl_tracking.php:411 msgid "Tracking statements" From 9898d8615334a13a7c6afe6d8eab2f1fd802c0f1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:25:42 +0200 Subject: [PATCH 0850/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2977832e65..cf94191bdd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:24+0200\n" +"PO-Revision-Date: 2011-05-17 12:25+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3060,6 +3060,8 @@ msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" +"Sledovanie zmien vykonaných v databáze. Vyžaduje nastavenie miesta uloženia " +"zmien phpMyAdmina." #: libraries/config/messages.inc.php:205 #, fuzzy From 215dfefaee410672c23470e10dadac037d7a6946 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:26:42 +0200 Subject: [PATCH 0851/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index cf94191bdd..1e030f3c8e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:25+0200\n" +"PO-Revision-Date: 2011-05-17 12:26+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3064,9 +3064,8 @@ msgstr "" "zmien phpMyAdmina." #: libraries/config/messages.inc.php:205 -#, fuzzy msgid "Customize export options" -msgstr "Nastavenia exportu databáz" +msgstr "Prispôsobebie možností exportu " #: libraries/config/messages.inc.php:207 msgid "Customize import defaults" From f99e5358a530b56daaa54db6729a5dab975c2f53 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:26:52 +0200 Subject: [PATCH 0852/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1e030f3c8e..2f7d2571f8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3065,7 +3065,7 @@ msgstr "" #: libraries/config/messages.inc.php:205 msgid "Customize export options" -msgstr "Prispôsobebie možností exportu " +msgstr "Prispôsobebie možností exportu" #: libraries/config/messages.inc.php:207 msgid "Customize import defaults" From a3cb6d8df1100647f248c439d060e99caec88318 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:27:36 +0200 Subject: [PATCH 0853/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2f7d2571f8..4565d03a6b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:26+0200\n" +"PO-Revision-Date: 2011-05-17 12:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3069,7 +3069,7 @@ msgstr "Prispôsobebie možností exportu" #: libraries/config/messages.inc.php:207 msgid "Customize import defaults" -msgstr "" +msgstr "Prispôsobebie východzích nastavení importu" #: libraries/config/messages.inc.php:208 msgid "Customize navigation frame" From e40c879281b8ece453ebb7249ef5903516b25d69 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:28:10 +0200 Subject: [PATCH 0854/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4565d03a6b..cc676fef4d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:27+0200\n" +"PO-Revision-Date: 2011-05-17 12:28+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3073,7 +3073,7 @@ msgstr "Prispôsobebie východzích nastavení importu" #: libraries/config/messages.inc.php:208 msgid "Customize navigation frame" -msgstr "" +msgstr "Prispôsobenie navigačného rámu" #: libraries/config/messages.inc.php:209 msgid "Customize main frame" From 1e5a490fe82dc2167db4828edb5ee43375a3b2bd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:28:38 +0200 Subject: [PATCH 0855/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index cc676fef4d..b0d5e22417 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3077,7 +3077,7 @@ msgstr "Prispôsobenie navigačného rámu" #: libraries/config/messages.inc.php:209 msgid "Customize main frame" -msgstr "" +msgstr "Prispôsobenie hlavného rámu" #: libraries/config/messages.inc.php:210 libraries/config/messages.inc.php:215 #: setup/frames/menu.inc.php:17 From 263c2489dc5725a6b2dc708153d31c9a5417953c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:28:44 +0200 Subject: [PATCH 0856/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b0d5e22417..b7b6b9add4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3081,9 +3081,8 @@ msgstr "Prispôsobenie hlavného rámu" #: libraries/config/messages.inc.php:210 libraries/config/messages.inc.php:215 #: setup/frames/menu.inc.php:17 -#, fuzzy msgid "SQL queries" -msgstr "SQL dopyt" +msgstr "SQL dopyty" #: libraries/config/messages.inc.php:212 #, fuzzy From 381cedde5560e7ef68f2679f41aa8e3cc06aadcd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:29:07 +0200 Subject: [PATCH 0857/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b7b6b9add4..cf481cb248 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:28+0200\n" +"PO-Revision-Date: 2011-05-17 12:29+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3085,9 +3085,8 @@ msgid "SQL queries" msgstr "SQL dopyty" #: libraries/config/messages.inc.php:212 -#, fuzzy msgid "SQL Query box" -msgstr "SQL dopyt" +msgstr "Pole pre SQL dopyty" #: libraries/config/messages.inc.php:213 msgid "Customize links shown in SQL Query boxes" From 30eb6f22691c5a25323a7a2de353b4e6817b2c5a Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:30:29 +0200 Subject: [PATCH 0858/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index cf481cb248..266779c65c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:29+0200\n" +"PO-Revision-Date: 2011-05-17 12:30+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3090,7 +3090,7 @@ msgstr "Pole pre SQL dopyty" #: libraries/config/messages.inc.php:213 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Prispôsobenie odkazov zobrazovaných v poliach pre SQL dopyty" #: libraries/config/messages.inc.php:216 #, fuzzy From 468837d260d8d6683f75316cd9cfad4d0a88ecaf Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:30:43 +0200 Subject: [PATCH 0859/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 266779c65c..90a75396d9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3093,9 +3093,8 @@ msgid "Customize links shown in SQL Query boxes" msgstr "Prispôsobenie odkazov zobrazovaných v poliach pre SQL dopyty" #: libraries/config/messages.inc.php:216 -#, fuzzy msgid "SQL queries settings" -msgstr "SQL dopyt" +msgstr "Nastavenia SQL dopytov" #: libraries/config/messages.inc.php:217 #, fuzzy From 6cf4518532b03324adeddeccb4bb5beef35622b4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:32:28 +0200 Subject: [PATCH 0860/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 90a75396d9..8c8c21bc18 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:30+0200\n" +"PO-Revision-Date: 2011-05-17 12:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3097,10 +3097,9 @@ msgid "SQL queries settings" msgstr "Nastavenia SQL dopytov" #: libraries/config/messages.inc.php:217 -#, fuzzy #| msgid "SQL history" msgid "SQL Validator" -msgstr "SQL história" +msgstr "Validátor SQL" #: libraries/config/messages.inc.php:218 msgid "" From 43a91eb01df5b4cea1795f32b7eb86c41296ac5d Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:35:21 +0200 Subject: [PATCH 0861/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8c8c21bc18..8f07bad35c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:32+0200\n" +"PO-Revision-Date: 2011-05-17 12:35+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3108,6 +3108,11 @@ 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]" #: libraries/config/messages.inc.php:219 #, fuzzy From f85fd1393036bc829a18b40cd59d63f84f17175e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:35:55 +0200 Subject: [PATCH 0862/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8f07bad35c..679f6b8dc8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3115,9 +3115,8 @@ msgstr "" "reserved.[/em]" #: libraries/config/messages.inc.php:219 -#, fuzzy msgid "Startup" -msgstr "Štart" +msgstr "Úvodná stránka" #: libraries/config/messages.inc.php:220 msgid "Customize startup page" From 482cca51f79f174503010a85949dd74bba1287bb Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:36:10 +0200 Subject: [PATCH 0863/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 679f6b8dc8..581624fbcb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:35+0200\n" +"PO-Revision-Date: 2011-05-17 12:36+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3120,7 +3120,7 @@ msgstr "Úvodná stránka" #: libraries/config/messages.inc.php:220 msgid "Customize startup page" -msgstr "" +msgstr "Prispôsobenie úvodnej stránky" #: libraries/config/messages.inc.php:221 #, fuzzy From 6a2ef7fbad9c216105edf51428ac6945916d20af Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:36:17 +0200 Subject: [PATCH 0864/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 581624fbcb..ebecf36212 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3123,9 +3123,8 @@ msgid "Customize startup page" msgstr "Prispôsobenie úvodnej stránky" #: libraries/config/messages.inc.php:221 -#, fuzzy msgid "Tabs" -msgstr "Tabuľka" +msgstr "Panely" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" From 2ed72a2bb1f5054157f33bf64f012820a8a42dd2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:36:57 +0200 Subject: [PATCH 0865/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ebecf36212..d1169b2e5c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3128,7 +3128,7 @@ msgstr "Panely" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "Zvoľte, ako majú panely fungovať" #: libraries/config/messages.inc.php:223 #, fuzzy From c77146dac69bad9d25c4b5bb65d9a3800dbfc6c8 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 17 May 2011 12:37:19 +0200 Subject: [PATCH 0866/1652] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index e39efc4640..47f5dcaa33 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:24+0200\n" +"PO-Revision-Date: 2011-05-17 12:37+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1220,10 +1220,9 @@ msgid ", latest stable version:" msgstr ", 最終安定バージョン:" #: js/messages.php:128 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "データベースに移動" +msgstr "最新版" #. l10n: Display text for calendar close link #: js/messages.php:146 From 22c99eef4391a823319eb7c6413fbf7fbbfdddad Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:37:32 +0200 Subject: [PATCH 0867/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index d1169b2e5c..ea3422170b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:36+0200\n" +"PO-Revision-Date: 2011-05-17 12:37+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3131,10 +3131,9 @@ msgid "Choose how you want tabs to work" msgstr "Zvoľte, ako majú panely fungovať" #: libraries/config/messages.inc.php:223 -#, fuzzy #| msgid "Use text field" msgid "Text fields" -msgstr "Požiť textové pole" +msgstr "Textové polia" #: libraries/config/messages.inc.php:224 #, fuzzy From 325567aa7fce903adbf9695cad67550bf3e06731 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:38:02 +0200 Subject: [PATCH 0868/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index ea3422170b..158de37893 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:37+0200\n" +"PO-Revision-Date: 2011-05-17 12:38+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3136,9 +3136,8 @@ msgid "Text fields" msgstr "Textové polia" #: libraries/config/messages.inc.php:224 -#, fuzzy msgid "Customize text input fields" -msgstr "Nastavenia exportu databáz" +msgstr "Prispôsobenie vstupných textových polí" #: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17 msgid "Texy! text" From 642f64ba827bb4be08c390d7053098e4326df263 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:38:27 +0200 Subject: [PATCH 0869/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 158de37893..fda7e74348 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3141,7 +3141,7 @@ msgstr "Prispôsobenie vstupných textových polí" #: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17 msgid "Texy! text" -msgstr "" +msgstr "Texy! text" #: libraries/config/messages.inc.php:227 msgid "Warnings" From e91f16efe672034d9870993c0089f0db0a3c40a5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:38:38 +0200 Subject: [PATCH 0870/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fda7e74348..d7a97fee5e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3145,7 +3145,7 @@ msgstr "Texy! text" #: libraries/config/messages.inc.php:227 msgid "Warnings" -msgstr "" +msgstr "Varovania" #: libraries/config/messages.inc.php:228 msgid "Disable some of the warnings shown by phpMyAdmin" From 997ec2335289aad866734f889b47551f7d267acd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:39:08 +0200 Subject: [PATCH 0871/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d7a97fee5e..f7901cfdfa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:38+0200\n" +"PO-Revision-Date: 2011-05-17 12:39+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3149,7 +3149,7 @@ msgstr "Varovania" #: libraries/config/messages.inc.php:228 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Vypnúť niektoré varovania zobrazované phpMyAdminom" #: libraries/config/messages.inc.php:229 msgid "" From cf3e1dbe70461a6cb07d8d4fba451fff0aca8c66 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:39:56 +0200 Subject: [PATCH 0872/1652] Translation update done using Pootle. --- po/sk.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sk.po b/po/sk.po index f7901cfdfa..8d8bfcd59d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3156,6 +3156,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" +"Povolí [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiu pre " +"importovanie a exportovanie" #: libraries/config/messages.inc.php:230 msgid "GZip" From 22c1a2570e27b2d604b0a2866021026d5a13033c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:40:00 +0200 Subject: [PATCH 0873/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8d8bfcd59d..54e3e7016e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:39+0200\n" +"PO-Revision-Date: 2011-05-17 12:40+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3161,7 +3161,7 @@ msgstr "" #: libraries/config/messages.inc.php:230 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" From 56392ba7aa7b93fb5f6e219b207500d0aabfb658 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:40:24 +0200 Subject: [PATCH 0874/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 54e3e7016e..36175554b9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3165,7 +3165,7 @@ msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" -msgstr "" +msgstr "Extra parametre pre iconv" #: libraries/config/messages.inc.php:232 msgid "" From eb97de62b832059f0853d8d699d8e64b3737bac2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:41:37 +0200 Subject: [PATCH 0875/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 36175554b9..d93a618878 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:40+0200\n" +"PO-Revision-Date: 2011-05-17 12:41+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3175,7 +3175,7 @@ msgstr "" #: libraries/config/messages.inc.php:233 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "Ignorovať chyby vo viacprvkových dopytoch" #: libraries/config/messages.inc.php:234 #, fuzzy From 53271173f5542853f047ea8f23e56e58d1f879bc Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:41:59 +0200 Subject: [PATCH 0876/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d93a618878..dee4fe5e69 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3178,7 +3178,6 @@ msgid "Ignore multiple statement errors" msgstr "Ignorovať chyby vo viacprvkových dopytoch" #: libraries/config/messages.inc.php:234 -#, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " From a89132e3d318686706e8885848c63fa7020882fc Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:42:27 +0200 Subject: [PATCH 0877/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index dee4fe5e69..e4f196d261 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:41+0200\n" +"PO-Revision-Date: 2011-05-17 12:42+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3189,7 +3189,7 @@ msgstr "" #: libraries/config/messages.inc.php:235 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "Čiastočný import: povoliť prerušenie" #: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 From 2d02e0f44d6725bef8bf3ff3b8ae9e6308b20d7b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:42:51 +0200 Subject: [PATCH 0878/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index e4f196d261..b2344fc460 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3194,7 +3194,7 @@ msgstr "Čiastočný import: povoliť prerušenie" #: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "Neprerušovať pri chybe v príkaze INSERT" #: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:249 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 From e93b670101d3ece6b03345f13fed206f2028b7cd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:43:01 +0200 Subject: [PATCH 0879/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b2344fc460..66baac4546 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:42+0200\n" +"PO-Revision-Date: 2011-05-17 12:43+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 94389ebb0651eac3b20b279abf6991861bef4032 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:44:46 +0200 Subject: [PATCH 0880/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 66baac4546..383b2890b1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:43+0200\n" +"PO-Revision-Date: 2011-05-17 12:44+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3172,6 +3172,8 @@ msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"Pokiaľ je povolené, phpMyAdmin bude pokračovať v spracovaní viacprvkových " +"dopytov, aj keď jeden z nich zlyhal" #: libraries/config/messages.inc.php:233 msgid "Ignore multiple statement errors" From d3e660fa106b7bb48eba12142bb7b063ffe11e53 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:46:56 +0200 Subject: [PATCH 0881/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 383b2890b1..72441a7383 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:44+0200\n" +"PO-Revision-Date: 2011-05-17 12:46+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3228,7 +3228,7 @@ msgstr "Neimportovať prázdne riadky" #: libraries/config/messages.inc.php:253 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "Import mien (5.00 namiesto $5.00)" #: libraries/config/messages.inc.php:254 msgid "Import percentages as proper decimals (12.00% to .12)" From 290b796760727d8fff4fa29701b8d522438bed0f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:48:02 +0200 Subject: [PATCH 0882/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 72441a7383..d494dd12ef 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:46+0200\n" +"PO-Revision-Date: 2011-05-17 12:48+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3232,7 +3232,7 @@ msgstr "Import mien (5.00 namiesto $5.00)" #: libraries/config/messages.inc.php:254 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "" +msgstr "Importovať percentá ako desatinné čísla (0,12 namiesto 12,00%|" #: libraries/config/messages.inc.php:255 #| msgid "Number of records (queries) to skip from start" From a9da881b84021f407dbab3cf37008116c84c24e6 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:48:40 +0200 Subject: [PATCH 0883/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d494dd12ef..ef9092bc6b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3241,7 +3241,7 @@ msgstr "Počet dopytov, ktoré sa majú preskočiť od začiatku" #: libraries/config/messages.inc.php:256 msgid "Partial import: skip queries" -msgstr "" +msgstr "Čiastočný import: preskočiť dopyty" #: libraries/config/messages.inc.php:258 #, fuzzy From 4ba6f09c61add5815126b7aef0b79b93aea29f72 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:48:56 +0200 Subject: [PATCH 0884/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ef9092bc6b..b885f2cde4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3244,7 +3244,6 @@ msgid "Partial import: skip queries" msgstr "Čiastočný import: preskočiť dopyty" #: libraries/config/messages.inc.php:258 -#, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" From a10f92337c650836702256ab9d86b8bd9ecade0f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:49:18 +0200 Subject: [PATCH 0885/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b885f2cde4..17fa72c298 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:48+0200\n" +"PO-Revision-Date: 2011-05-17 12:49+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3257,9 +3257,8 @@ msgid "How many rows can be inserted at one time" msgstr "" #: libraries/config/messages.inc.php:263 -#, fuzzy msgid "Number of inserted rows" -msgstr "Počet zoradených riadkov." +msgstr "Počet vložených riadkov." #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" From b82b4e659d2364042dd0e18a22aa4974f78d0b92 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:50:20 +0200 Subject: [PATCH 0886/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 17fa72c298..60a25b3fc5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:49+0200\n" +"PO-Revision-Date: 2011-05-17 12:50+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3254,7 +3254,7 @@ msgstr "" #: libraries/config/messages.inc.php:262 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "Koľko riadkov môže byť vložených naraz" #: libraries/config/messages.inc.php:263 msgid "Number of inserted rows" From 14f1ce0138580bed3fe133d3a8670fe0c7e28300 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:50:44 +0200 Subject: [PATCH 0887/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 60a25b3fc5..6ad45c0d73 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3262,7 +3262,7 @@ msgstr "Počet vložených riadkov." #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" -msgstr "" +msgstr "Cieľ pre ikonu rýchleho prístupu" #: libraries/config/messages.inc.php:265 msgid "Show logo in left frame" From 5b7cf996ff440a2e0063341a262009abd93c6186 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:50:59 +0200 Subject: [PATCH 0888/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 6ad45c0d73..a9d5fd60dc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3266,7 +3266,7 @@ msgstr "Cieľ pre ikonu rýchleho prístupu" #: libraries/config/messages.inc.php:265 msgid "Show logo in left frame" -msgstr "" +msgstr "Zobraziť logo v ľavom ráme" #: libraries/config/messages.inc.php:266 msgid "Display logo" From e0fc8de88460febf611754b5592d56855ff8b4fd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:52:41 +0200 Subject: [PATCH 0889/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a9d5fd60dc..9807533857 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:50+0200\n" +"PO-Revision-Date: 2011-05-17 12:52+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3270,7 +3270,7 @@ msgstr "Zobraziť logo v ľavom ráme" #: libraries/config/messages.inc.php:266 msgid "Display logo" -msgstr "" +msgstr "Zobraziť logo" #: libraries/config/messages.inc.php:267 msgid "Display server choice at the top of the left frame" From f2845c1c536be9f9b05bf6e94fac0b5f53a8cc7c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:53:11 +0200 Subject: [PATCH 0890/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9807533857..2db4da02c8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:52+0200\n" +"PO-Revision-Date: 2011-05-17 12:53+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3274,7 +3274,7 @@ msgstr "Zobraziť logo" #: libraries/config/messages.inc.php:267 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "Zobraziť voľbu servera v hornej časti ľavého rámu" #: libraries/config/messages.inc.php:268 msgid "Display servers selection" From ec88d785916552a70c2b8604258dede04979f1c7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:53:27 +0200 Subject: [PATCH 0891/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2db4da02c8..509814a7b3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3278,7 +3278,7 @@ msgstr "Zobraziť voľbu servera v hornej časti ľavého rámu" #: libraries/config/messages.inc.php:268 msgid "Display servers selection" -msgstr "" +msgstr "Zobraziť výber serverov" #: libraries/config/messages.inc.php:269 #, fuzzy From d82303172a0c79fdda0a85259a8b81f34c3c4035 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:54:09 +0200 Subject: [PATCH 0892/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 509814a7b3..07adcd521a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:53+0200\n" +"PO-Revision-Date: 2011-05-17 12:54+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3288,7 +3288,7 @@ msgstr "Počet práve otvorených tabuliek." #: libraries/config/messages.inc.php:270 msgid "String that separates databases into different tree levels" -msgstr "" +msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu" #: libraries/config/messages.inc.php:271 msgid "Database tree separator" From 3c3288d27b496a956c9d3153a918aa36315cfcbe Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:54:34 +0200 Subject: [PATCH 0893/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 07adcd521a..f33398b27b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3292,7 +3292,7 @@ msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu" #: libraries/config/messages.inc.php:271 msgid "Database tree separator" -msgstr "" +msgstr "Oddeľovač databázového stromu" #: libraries/config/messages.inc.php:272 msgid "" From b826c2d66f4094d95bd5f47fdb90215b91fd4052 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:55:46 +0200 Subject: [PATCH 0894/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index f33398b27b..efbb2e288e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:54+0200\n" +"PO-Revision-Date: 2011-05-17 12:55+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3299,6 +3299,8 @@ msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" +"Len odľahčená verzia; zobrazí databázy v strome (určené oddeľovačom " +"nastaveným nižšie)" #: libraries/config/messages.inc.php:273 msgid "Display databases in a tree" From 7c21dc926ab96824d61f7f9b18d108ca6226aaea Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 12:56:07 +0200 Subject: [PATCH 0895/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index efbb2e288e..ea4ee68db3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:55+0200\n" +"PO-Revision-Date: 2011-05-17 12:56+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3304,7 +3304,7 @@ msgstr "" #: libraries/config/messages.inc.php:273 msgid "Display databases in a tree" -msgstr "" +msgstr "Zobraziť databázy v strome" #: libraries/config/messages.inc.php:274 msgid "Disable this if you want to see all databases at once" From 65c38cce309babaffd1154d21f6d1f907520b4a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:14:41 +0200 Subject: [PATCH 0896/1652] Translations from master --- po/bg.po | 88 +++++++++++----------- po/sk.po | 217 +++++++++++++++++++++++++++++++++---------------------- 2 files changed, 173 insertions(+), 132 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0af446875e..a505103ed8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6114,16 +6114,16 @@ msgstr "Търсене в базата от данни" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 msgid "Current server" -msgstr "" +msgstr "Текущ сървър" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 msgid "Remote server" -msgstr "" +msgstr "Отдалечен сървър" #: libraries/server_synchronize.lib.php:1344 msgid "Difference" -msgstr "" +msgstr "Различия" #: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117 #, fuzzy @@ -6561,7 +6561,7 @@ msgstr "Колация на MySQL" #: main.php:119 msgid "Appearance Settings" -msgstr "" +msgstr "Визуални настройки" #: main.php:146 prefs_manage.php:274 #, fuzzy @@ -6585,7 +6585,7 @@ msgstr "Набор от знаци на MySQL" #: main.php:181 msgid "Web server" -msgstr "" +msgstr "Web сървър" #: main.php:187 msgid "MySQL client version" @@ -8566,7 +8566,7 @@ msgstr "Глобална стойност" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: setup/frames/index.inc.php:49 msgid "Cannot load or save configuration" @@ -8610,31 +8610,31 @@ msgstr "" #: setup/frames/index.inc.php:144 msgid "New server" -msgstr "" +msgstr "Нов сървър" #: setup/frames/index.inc.php:173 msgid "Default language" -msgstr "" +msgstr "Език по подразбиране" #: setup/frames/index.inc.php:183 msgid "let the user choose" -msgstr "" +msgstr "нека потребитлят избере" #: setup/frames/index.inc.php:194 msgid "- none -" -msgstr "" +msgstr "- никой -" #: setup/frames/index.inc.php:197 msgid "Default server" -msgstr "" +msgstr "Сървър по подразбиране" #: setup/frames/index.inc.php:207 msgid "End of line" -msgstr "" +msgstr "Край на ред" #: setup/frames/index.inc.php:212 msgid "Display" -msgstr "" +msgstr "Показване" #: setup/frames/index.inc.php:216 msgid "Load" @@ -8647,11 +8647,11 @@ msgstr "phpMyAdmin документация" #: setup/frames/index.inc.php:228 msgid "Donate" -msgstr "" +msgstr "Дарение" #: setup/frames/servers.inc.php:28 msgid "Edit server" -msgstr "" +msgstr "Редакция сървър" #: setup/frames/servers.inc.php:37 msgid "Add a new server" @@ -8659,7 +8659,7 @@ msgstr "Добавяне на нов сървър" #: setup/lib/form_processing.lib.php:42 msgid "Warning" -msgstr "" +msgstr "Предупреждение" #: setup/lib/form_processing.lib.php:43 msgid "Submitted form contains errors" @@ -8671,7 +8671,7 @@ msgstr "" #: setup/lib/form_processing.lib.php:47 msgid "Ignore errors" -msgstr "" +msgstr "Пренебрегване на грешките" #: setup/lib/form_processing.lib.php:49 #, fuzzy @@ -8706,7 +8706,7 @@ msgstr "" #: setup/lib/index.lib.php:165 msgid "No newer stable version is available" -msgstr "" +msgstr "Няма по-нова стабилна версия" #: setup/lib/index.lib.php:250 #, php-format @@ -8795,34 +8795,34 @@ msgstr "" msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "%sZip архивиране%s изизква функцията (%s), която не е налична." #: setup/lib/index.lib.php:272 #, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "%sZip разархивиране%s изизква функцията (%s), която не е налична." #: setup/lib/index.lib.php:296 msgid "You should use SSL connections if your web server supports it." -msgstr "" +msgstr "Използвайте SSL ако браузърът ви го поддържа." #: setup/lib/index.lib.php:306 msgid "You should use mysqli for performance reasons." -msgstr "" +msgstr "По причини свързани с производителността използвайте mysqli." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." -msgstr "" +msgstr "Позволено е свързването към сървъра без парола." #: setup/lib/index.lib.php:351 msgid "Key is too short, it should have at least 8 characters." -msgstr "" +msgstr "Ключът е твърде къс, трябва да бъде поне 8 знака." #: setup/lib/index.lib.php:358 msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "" +msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци." #: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 @@ -8865,7 +8865,7 @@ msgstr "Етикет" #: tbl_addfield.php:185 tbl_alter.php:99 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" -msgstr "" +msgstr "Таблицата %1$s беше променена" #: tbl_change.php:283 tbl_change.php:321 msgid "Function" @@ -8899,7 +8899,7 @@ msgstr "" #: tbl_change.php:1060 msgid "Show insert query" -msgstr "" +msgstr "Показване заявка за вмъкване" #: tbl_change.php:1071 msgid "and then" @@ -8947,31 +8947,31 @@ msgstr "" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "Ширина" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "Височина" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "Заглавие" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "Етикет на X оста" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "Етикет на Y оста" #: tbl_chart.php:112 msgid "Area margins" -msgstr "" +msgstr "Граници на диаграмата" #: tbl_chart.php:122 msgid "Legend margins" -msgstr "" +msgstr "Граници на легендата" #: tbl_chart.php:134 msgid "Bar" @@ -8979,11 +8979,11 @@ msgstr "Колони" #: tbl_chart.php:135 msgid "Line" -msgstr "" +msgstr "Линия" #: tbl_chart.php:136 msgid "Radar" -msgstr "" +msgstr "Радар" #: tbl_chart.php:138 #, fuzzy @@ -9179,7 +9179,7 @@ msgstr "" #: tbl_operations.php:740 msgid "Analyze" -msgstr "" +msgstr "Анализиране" #: tbl_operations.php:741 #, fuzzy @@ -9188,7 +9188,7 @@ msgstr "Чешки" #: tbl_operations.php:742 msgid "Optimize" -msgstr "" +msgstr "Оптимизиране" #: tbl_operations.php:743 msgid "Rebuild" @@ -9297,19 +9297,19 @@ msgstr "Преглеждане на уникалните стойности" #: tbl_structure.php:166 tbl_structure.php:167 msgid "Add primary key" -msgstr "" +msgstr "Добавяне на първичен ключ" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" -msgstr "" +msgstr "Добавяне на индекс" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Добавяне на уникален ключ" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" -msgstr "" +msgstr "Добавяне на пълнотекстов индекс" #: tbl_structure.php:385 msgctxt "None for default" @@ -9452,12 +9452,12 @@ msgstr "" #: tbl_tracking.php:503 msgid "SQL execution" -msgstr "" +msgstr "Изпълняване на SQL" #: tbl_tracking.php:515 #, php-format msgid "Export as %s" -msgstr "" +msgstr "Експорт като %s" #: tbl_tracking.php:555 msgid "Show versions" diff --git a/po/sk.po b/po/sk.po index 9c1201e64f..1d5ba67229 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2411,7 +2411,7 @@ msgstr "Vynulovať" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Zlepšuje onovovaciu rýchlosť obrazovky" #: libraries/config/messages.inc.php:18 #, fuzzy @@ -2436,6 +2436,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/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" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -2443,17 +2446,19 @@ msgstr "Povoliť vkladanie do cudzieho rámu" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Zobraziť príkaz "Zrušiť databázu" bežným užívateľom" #: libraries/config/messages.inc.php:24 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]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Blowfish secret" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" @@ -2469,13 +2474,15 @@ msgstr "Zvýrazniť riadok označený kurzórom myši" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Zvýrazňovač" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Povoliť [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] kompresiu pre " +"importovanie a exportovanie" #: libraries/config/messages.inc.php:31 msgid "Bzip2" @@ -2487,26 +2494,29 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "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" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Počet stĺpcov techtový oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Stĺpce techtovej oblasti typu CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Počet riadkov textových oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Riadky pre textové oblasti CHAR" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" @@ -2517,6 +2527,9 @@ msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Komprimovať exporty za behu pomocou gzip/bzip2 bez veľkých pamäťových " +"nárokov. Pokiaľ zistíte problémy s takto vytvorenými gzip/bzip2 súbormi, " +"vypnite túto funkciu" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" @@ -2532,6 +2545,8 @@ msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Či sa má zobrazovať varovanie ("Ste si naozaj istí...") pokiaľ " +"hrozí strata dát" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" @@ -2551,14 +2566,16 @@ msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" +"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] alebo číslo, ktoré udáva maximum " +"pre vertikálne zobrazenie" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "" +msgstr "Smer zobrazenia pre zmenu a vytváranie stĺpcov" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe k databáze" #: libraries/config/messages.inc.php:49 #, fuzzy @@ -2567,7 +2584,7 @@ msgstr "Premenovať databázu na" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe na server" #: libraries/config/messages.inc.php:51 #, fuzzy @@ -2576,39 +2593,39 @@ msgstr "Predvolený server" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe k tabuľke" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "" +msgstr "Východzí panel tabuľky" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:585 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Zobraziť binárny obsah v HEX formáte" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "" +msgstr "Zobraziť databázy ako zoznam" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Zobraziť prehľad serverov ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "" +msgstr "Zobraziť servery ako zoznam" #: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Upravovať SQL dopyty vo vyskakovacom okne" #: libraries/config/messages.inc.php:61 #, fuzzy @@ -2624,25 +2641,25 @@ msgstr "Zobraziť vlastnosti" #: libraries/config/messages.inc.php:63 msgid "Gather errors" -msgstr "" +msgstr "Zbierať chyby" #: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Zobraziť ikony pre varovné, chybové a informačné správy" #: libraries/config/messages.inc.php:65 msgid "Iconic errors" -msgstr "" +msgstr "Chyby ikon" #: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -msgstr "" +msgstr "Nastavte dĺžku behu skriptu v sekundách (([kbd]0[/kbd] bez obmedzení)" #: libraries/config/messages.inc.php:67 msgid "Maximum execution time" -msgstr "" +msgstr "Maximálny čas behu" #: libraries/config/messages.inc.php:68 prefs_manage.php:299 msgid "Save as file" @@ -2702,7 +2719,7 @@ msgstr "Nahradiť NULL hodnoty" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" -msgstr "" +msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:250 libraries/import/csv.php:62 @@ -2785,7 +2802,7 @@ msgstr "Typ vytvorených dopytov" #: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" -msgstr "" +msgstr "Uložiť na server" #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 @@ -2810,7 +2827,7 @@ msgstr "Režim kompatibility SQL" #: libraries/config/messages.inc.php:120 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Akú syntax použiť pre vkladanie dát" #: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" @@ -2826,7 +2843,7 @@ msgstr "Vypnúť kontrolu cudzích kľúčov" #: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" -msgstr "" +msgstr "Použiť hexadecimálne zobrazenie pre BLOB" #: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" @@ -2852,37 +2869,39 @@ msgstr "Typ vytvorených dopytov" #: libraries/config/messages.inc.php:145 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "Vynutiť zabezpečené spojenie pri použití phpMyAdmina" #: libraries/config/messages.inc.php:146 msgid "Force SSL connection" -msgstr "" +msgstr "Vynutit SSL spojenie" #: libraries/config/messages.inc.php:147 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 "" +"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; [kbd]obsah[/" +"kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" #: libraries/config/messages.inc.php:148 msgid "Foreign key dropdown order" -msgstr "" +msgstr "Poradie cudzích kľúčov v rozbaľovacej ponuke" #: libraries/config/messages.inc.php:149 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "Pokiaľ je dostupných menej položiek, bude použitá rozbaľovacia ponuka" #: libraries/config/messages.inc.php:150 msgid "Foreign key limit" -msgstr "" +msgstr "Limit cudzích kľúčov" #: libraries/config/messages.inc.php:151 msgid "Browse mode" -msgstr "" +msgstr "Režim prezerania" #: libraries/config/messages.inc.php:152 msgid "Customize browse mode" -msgstr "" +msgstr "Prispôsobiť režim prezerania" #: libraries/config/messages.inc.php:154 libraries/config/messages.inc.php:156 #: libraries/config/messages.inc.php:173 libraries/config/messages.inc.php:184 @@ -2902,32 +2921,32 @@ msgstr "CSV dáta" #: libraries/config/messages.inc.php:157 msgid "Developer" -msgstr "" +msgstr "Vývojár" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Nastavenia pre vývojára phpMyAdmina" #: libraries/config/messages.inc.php:159 msgid "Edit mode" -msgstr "" +msgstr "Režim úprav" #: libraries/config/messages.inc.php:160 msgid "Customize edit mode" -msgstr "" +msgstr "Prispôsobenie režimu úprav" #: libraries/config/messages.inc.php:162 msgid "Export defaults" -msgstr "" +msgstr "Východzie nastavenia exportu" #: libraries/config/messages.inc.php:163 msgid "Customize default export options" -msgstr "" +msgstr "Prispôsobiť východzie nastavenia exportu" #: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Funkcie" #: libraries/config/messages.inc.php:165 #, fuzzy @@ -2937,7 +2956,7 @@ msgstr "Vytvoriť" #: libraries/config/messages.inc.php:166 msgid "Set some commonly used options" -msgstr "" +msgstr "Nastaviť zvyčajne používané nastavenia" #: libraries/config/messages.inc.php:167 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 @@ -2952,15 +2971,15 @@ msgstr "Importovať súbory" #: libraries/config/messages.inc.php:169 msgid "Customize default common import options" -msgstr "" +msgstr "Prispôsobiť východzie nastavenia importu" #: libraries/config/messages.inc.php:170 msgid "Import / export" -msgstr "" +msgstr "Import / export" #: libraries/config/messages.inc.php:171 msgid "Set import and export directories and compression options" -msgstr "" +msgstr "Nastaví adresáre pre import a export a voľby kompresie" #: libraries/config/messages.inc.php:172 libraries/export/latex.php:26 msgid "LaTeX" @@ -2973,11 +2992,11 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Navigačný rám" #: libraries/config/messages.inc.php:177 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Prizpôsobiť vzhľad navigačného rámu" #: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 @@ -2986,19 +3005,19 @@ msgstr "Servery" #: libraries/config/messages.inc.php:179 msgid "Servers display options" -msgstr "" +msgstr "Nastavenie zobrazenia serverov" #: libraries/config/messages.inc.php:181 msgid "Tables display options" -msgstr "" +msgstr "Nastavenie zobrazenia tabuliek" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Hlavný rám" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" -msgstr "" +msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 #, fuzzy @@ -3008,11 +3027,11 @@ msgstr "Open Document Text" #: libraries/config/messages.inc.php:187 msgid "Other core settings" -msgstr "" +msgstr "Ostatné základné nastavenia" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Nastavenia, ktoré sa nedajú zaradiť inde" #: libraries/config/messages.inc.php:189 #, fuzzy @@ -3026,6 +3045,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" +"Zadajte titulku, ktorú bude zobrazovať prehliadač. V [a@Documentation." +"html#cfg_TitleTable]documentácii[/a] nájdete špeciálne reťazce, ktoré môžete " +"použiť na získanie špeciálnych hodnôt." #: libraries/config/messages.inc.php:191 #: libraries/navigation_header.inc.php:83 @@ -3036,21 +3058,23 @@ msgstr "SQL okno" #: libraries/config/messages.inc.php:192 msgid "Customize query window options" -msgstr "" +msgstr "Prispôsobiť nastavenia okna dopytov" #: libraries/config/messages.inc.php:193 msgid "Security" -msgstr "" +msgstr "Zabezpečenie" #: libraries/config/messages.inc.php:194 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Pripomíname, že phpMyAdmin je len užívateľské rozhranie a jeho funkcie " +"neobmedzujú MySQL" #: libraries/config/messages.inc.php:195 msgid "Basic settings" -msgstr "" +msgstr "Základné nastavenia" #: libraries/config/messages.inc.php:196 #, fuzzy @@ -3066,17 +3090,19 @@ msgstr "Stav replikácie" #: libraries/config/messages.inc.php:198 msgid "Server configuration" -msgstr "" +msgstr "Konfigurácia servera" #: libraries/config/messages.inc.php:199 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Pokročilá konfigurácia servera, nemeňte tieto nastavenia, pokiaľ neviete " +"čoho sa týkajú" #: libraries/config/messages.inc.php:200 msgid "Enter server connection parameters" -msgstr "" +msgstr "Vložte parametre pripojenia servera" #: libraries/config/messages.inc.php:201 #, fuzzy @@ -3090,16 +3116,21 @@ msgid "" "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" +"Nastavenie phpMyAdmin miesta uloženia konfigurácie tak, aby získal prístup k " +"prídavným funkciám, viď [a@Documentation.html#linked-tables]miesto uloženia " +"konfigurácie [/a] v dokumentácii" #: libraries/config/messages.inc.php:203 msgid "Changes tracking" -msgstr "" +msgstr "Sledovanie zmien" #: libraries/config/messages.inc.php:204 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" +"Sledovanie zmien vykonaných v databáze. Vyžaduje nastavenie miesta uloženia " +"zmien phpMyAdmina." #: libraries/config/messages.inc.php:205 #, fuzzy @@ -3108,15 +3139,15 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/messages.inc.php:207 msgid "Customize import defaults" -msgstr "" +msgstr "Prispôsobebie východzích nastavení importu" #: libraries/config/messages.inc.php:208 msgid "Customize navigation frame" -msgstr "" +msgstr "Prispôsobenie navigačného rámu" #: libraries/config/messages.inc.php:209 msgid "Customize main frame" -msgstr "" +msgstr "Prispôsobenie hlavného rámu" #: libraries/config/messages.inc.php:210 libraries/config/messages.inc.php:215 #: setup/frames/menu.inc.php:17 @@ -3131,7 +3162,7 @@ msgstr "SQL dopyt" #: libraries/config/messages.inc.php:213 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Prispôsobenie odkazov zobrazovaných v poliach pre SQL dopyty" #: libraries/config/messages.inc.php:216 #, fuzzy @@ -3151,6 +3182,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]" #: libraries/config/messages.inc.php:219 #, fuzzy @@ -3159,7 +3194,7 @@ msgstr "Štart" #: libraries/config/messages.inc.php:220 msgid "Customize startup page" -msgstr "" +msgstr "Prispôsobenie úvodnej stránky" #: libraries/config/messages.inc.php:221 #, fuzzy @@ -3168,7 +3203,7 @@ msgstr "Tabuľka" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "Zvoľte, ako majú panely fungovať" #: libraries/config/messages.inc.php:223 #, fuzzy @@ -3183,39 +3218,43 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17 msgid "Texy! text" -msgstr "" +msgstr "Texy! text" #: libraries/config/messages.inc.php:227 msgid "Warnings" -msgstr "" +msgstr "Varovania" #: libraries/config/messages.inc.php:228 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Vypnúť niektoré varovania zobrazované phpMyAdminom" #: libraries/config/messages.inc.php:229 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" +"Povolí [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiu pre " +"importovanie a exportovanie" #: libraries/config/messages.inc.php:230 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" -msgstr "" +msgstr "Extra parametre pre iconv" #: libraries/config/messages.inc.php:232 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"Pokiaľ je povolené, phpMyAdmin bude pokračovať v spracovaní viacprvkových " +"dopytov, aj keď jeden z nich zlyhal" #: libraries/config/messages.inc.php:233 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "Ignorovať chyby vo viacprvkových dopytoch" #: libraries/config/messages.inc.php:234 #, fuzzy @@ -3230,12 +3269,12 @@ msgstr "" #: libraries/config/messages.inc.php:235 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "Čiastočný import: povoliť prerušenie" #: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "Neprerušovať pri chybe v príkaze INSERT" #: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:249 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 @@ -3267,11 +3306,11 @@ msgstr "Neimportovať prázdne riadky" #: libraries/config/messages.inc.php:253 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "Import mien (5.00 namiesto $5.00)" #: libraries/config/messages.inc.php:254 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "" +msgstr "Importovať percentá ako desatinné čísla (0,12 namiesto 12,00%|" #: libraries/config/messages.inc.php:255 #, fuzzy @@ -3281,7 +3320,7 @@ msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť" #: libraries/config/messages.inc.php:256 msgid "Partial import: skip queries" -msgstr "" +msgstr "Čiastočný import: preskočiť dopyty" #: libraries/config/messages.inc.php:258 #, fuzzy @@ -3295,7 +3334,7 @@ msgstr "" #: libraries/config/messages.inc.php:262 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "Koľko riadkov môže byť vložených naraz" #: libraries/config/messages.inc.php:263 #, fuzzy @@ -3304,23 +3343,23 @@ msgstr "Počet zoradených riadkov." #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" -msgstr "" +msgstr "Cieľ pre ikonu rýchleho prístupu" #: libraries/config/messages.inc.php:265 msgid "Show logo in left frame" -msgstr "" +msgstr "Zobraziť logo v ľavom ráme" #: libraries/config/messages.inc.php:266 msgid "Display logo" -msgstr "" +msgstr "Zobraziť logo" #: libraries/config/messages.inc.php:267 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "Zobraziť voľbu servera v hornej časti ľavého rámu" #: libraries/config/messages.inc.php:268 msgid "Display servers selection" -msgstr "" +msgstr "Zobraziť výber serverov" #: libraries/config/messages.inc.php:269 #, fuzzy @@ -3330,21 +3369,23 @@ msgstr "Počet práve otvorených tabuliek." #: libraries/config/messages.inc.php:270 msgid "String that separates databases into different tree levels" -msgstr "" +msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu" #: libraries/config/messages.inc.php:271 msgid "Database tree separator" -msgstr "" +msgstr "Oddeľovač databázového stromu" #: libraries/config/messages.inc.php:272 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" +"Len odľahčená verzia; zobrazí databázy v strome (určené oddeľovačom " +"nastaveným nižšie)" #: libraries/config/messages.inc.php:273 msgid "Display databases in a tree" -msgstr "" +msgstr "Zobraziť databázy v strome" #: libraries/config/messages.inc.php:274 msgid "Disable this if you want to see all databases at once" From 46245d0c9b20e216a42d6396f03f0bebdbb30f91 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 May 2011 07:22:56 -0400 Subject: [PATCH 0897/1652] bug #3302733 [core] Some browsers report an insecure https connection --- ChangeLog | 1 + main.php | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2d779a7a0b..99d74441a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ - bug #3300981 [navi] Table filter is case sensitive - bug #3285929 [privileges] Revert temporary fix - bug #3302872 [synchronize] Synchronize and user name +- bug #3302733 [core] Some browsers report an insecure https connection 3.4.0.0 (2011-05-11) + rfe #2890226 [view] Enable VIEW rename diff --git a/main.php b/main.php index c7c25bc41e..836a250433 100644 --- a/main.php +++ b/main.php @@ -202,7 +202,10 @@ echo '
'; echo '

phpMyAdmin

'; echo '
    '; $class = null; -if ($GLOBALS['cfg']['VersionCheck']) { +// workaround for bug 3302733; some browsers don't like the situation +// where phpMyAdmin is called on a secure page but a part of the page +// (the version check) refers to a non-secure page +if ($GLOBALS['cfg']['VersionCheck'] && ! $GLOBALS['PMA_Config']->get('is_https')) { $class = 'jsversioncheck'; } PMA_printListItem(__('Version information') . ': ' . PMA_VERSION, 'li_pma_version', null, null, null, null, $class); From 73ff83747d3d779240c57a7e953cfa62d5d1f8d2 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 May 2011 07:27:09 -0400 Subject: [PATCH 0898/1652] 3.4.1-rc1 --- Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation.html b/Documentation.html index 6a3032e600..0b30194010 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.4.1-dev - Documentation + phpMyAdmin 3.4.1-rc1 - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index e448f18f26..d728493769 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.4.1-dev +Version 3.4.1-rc1 A set of PHP-scripts to manage MySQL over the web. diff --git a/libraries/Config.class.php b/libraries/Config.class.php index b363089f20..d0f4903742 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -96,7 +96,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.4.1-dev'); + $this->set('PMA_VERSION', '3.4.1-rc1'); /** * @deprecated */ From a22536915748fbaa4fa62ef6f624abfa5126891a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:14:41 +0200 Subject: [PATCH 0899/1652] Translations from master --- po/bg.po | 88 +++++++++++----------- po/sk.po | 217 +++++++++++++++++++++++++++++++++---------------------- 2 files changed, 173 insertions(+), 132 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0af446875e..a505103ed8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6114,16 +6114,16 @@ msgstr "Търсене в базата от данни" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 msgid "Current server" -msgstr "" +msgstr "Текущ сървър" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 msgid "Remote server" -msgstr "" +msgstr "Отдалечен сървър" #: libraries/server_synchronize.lib.php:1344 msgid "Difference" -msgstr "" +msgstr "Различия" #: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117 #, fuzzy @@ -6561,7 +6561,7 @@ msgstr "Колация на MySQL" #: main.php:119 msgid "Appearance Settings" -msgstr "" +msgstr "Визуални настройки" #: main.php:146 prefs_manage.php:274 #, fuzzy @@ -6585,7 +6585,7 @@ msgstr "Набор от знаци на MySQL" #: main.php:181 msgid "Web server" -msgstr "" +msgstr "Web сървър" #: main.php:187 msgid "MySQL client version" @@ -8566,7 +8566,7 @@ msgstr "Глобална стойност" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: setup/frames/index.inc.php:49 msgid "Cannot load or save configuration" @@ -8610,31 +8610,31 @@ msgstr "" #: setup/frames/index.inc.php:144 msgid "New server" -msgstr "" +msgstr "Нов сървър" #: setup/frames/index.inc.php:173 msgid "Default language" -msgstr "" +msgstr "Език по подразбиране" #: setup/frames/index.inc.php:183 msgid "let the user choose" -msgstr "" +msgstr "нека потребитлят избере" #: setup/frames/index.inc.php:194 msgid "- none -" -msgstr "" +msgstr "- никой -" #: setup/frames/index.inc.php:197 msgid "Default server" -msgstr "" +msgstr "Сървър по подразбиране" #: setup/frames/index.inc.php:207 msgid "End of line" -msgstr "" +msgstr "Край на ред" #: setup/frames/index.inc.php:212 msgid "Display" -msgstr "" +msgstr "Показване" #: setup/frames/index.inc.php:216 msgid "Load" @@ -8647,11 +8647,11 @@ msgstr "phpMyAdmin документация" #: setup/frames/index.inc.php:228 msgid "Donate" -msgstr "" +msgstr "Дарение" #: setup/frames/servers.inc.php:28 msgid "Edit server" -msgstr "" +msgstr "Редакция сървър" #: setup/frames/servers.inc.php:37 msgid "Add a new server" @@ -8659,7 +8659,7 @@ msgstr "Добавяне на нов сървър" #: setup/lib/form_processing.lib.php:42 msgid "Warning" -msgstr "" +msgstr "Предупреждение" #: setup/lib/form_processing.lib.php:43 msgid "Submitted form contains errors" @@ -8671,7 +8671,7 @@ msgstr "" #: setup/lib/form_processing.lib.php:47 msgid "Ignore errors" -msgstr "" +msgstr "Пренебрегване на грешките" #: setup/lib/form_processing.lib.php:49 #, fuzzy @@ -8706,7 +8706,7 @@ msgstr "" #: setup/lib/index.lib.php:165 msgid "No newer stable version is available" -msgstr "" +msgstr "Няма по-нова стабилна версия" #: setup/lib/index.lib.php:250 #, php-format @@ -8795,34 +8795,34 @@ msgstr "" msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "%sZip архивиране%s изизква функцията (%s), която не е налична." #: setup/lib/index.lib.php:272 #, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "%sZip разархивиране%s изизква функцията (%s), която не е налична." #: setup/lib/index.lib.php:296 msgid "You should use SSL connections if your web server supports it." -msgstr "" +msgstr "Използвайте SSL ако браузърът ви го поддържа." #: setup/lib/index.lib.php:306 msgid "You should use mysqli for performance reasons." -msgstr "" +msgstr "По причини свързани с производителността използвайте mysqli." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." -msgstr "" +msgstr "Позволено е свързването към сървъра без парола." #: setup/lib/index.lib.php:351 msgid "Key is too short, it should have at least 8 characters." -msgstr "" +msgstr "Ключът е твърде къс, трябва да бъде поне 8 знака." #: setup/lib/index.lib.php:358 msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "" +msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци." #: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 @@ -8865,7 +8865,7 @@ msgstr "Етикет" #: tbl_addfield.php:185 tbl_alter.php:99 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" -msgstr "" +msgstr "Таблицата %1$s беше променена" #: tbl_change.php:283 tbl_change.php:321 msgid "Function" @@ -8899,7 +8899,7 @@ msgstr "" #: tbl_change.php:1060 msgid "Show insert query" -msgstr "" +msgstr "Показване заявка за вмъкване" #: tbl_change.php:1071 msgid "and then" @@ -8947,31 +8947,31 @@ msgstr "" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "Ширина" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "Височина" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "Заглавие" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "Етикет на X оста" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "Етикет на Y оста" #: tbl_chart.php:112 msgid "Area margins" -msgstr "" +msgstr "Граници на диаграмата" #: tbl_chart.php:122 msgid "Legend margins" -msgstr "" +msgstr "Граници на легендата" #: tbl_chart.php:134 msgid "Bar" @@ -8979,11 +8979,11 @@ msgstr "Колони" #: tbl_chart.php:135 msgid "Line" -msgstr "" +msgstr "Линия" #: tbl_chart.php:136 msgid "Radar" -msgstr "" +msgstr "Радар" #: tbl_chart.php:138 #, fuzzy @@ -9179,7 +9179,7 @@ msgstr "" #: tbl_operations.php:740 msgid "Analyze" -msgstr "" +msgstr "Анализиране" #: tbl_operations.php:741 #, fuzzy @@ -9188,7 +9188,7 @@ msgstr "Чешки" #: tbl_operations.php:742 msgid "Optimize" -msgstr "" +msgstr "Оптимизиране" #: tbl_operations.php:743 msgid "Rebuild" @@ -9297,19 +9297,19 @@ msgstr "Преглеждане на уникалните стойности" #: tbl_structure.php:166 tbl_structure.php:167 msgid "Add primary key" -msgstr "" +msgstr "Добавяне на първичен ключ" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" -msgstr "" +msgstr "Добавяне на индекс" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Добавяне на уникален ключ" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" -msgstr "" +msgstr "Добавяне на пълнотекстов индекс" #: tbl_structure.php:385 msgctxt "None for default" @@ -9452,12 +9452,12 @@ msgstr "" #: tbl_tracking.php:503 msgid "SQL execution" -msgstr "" +msgstr "Изпълняване на SQL" #: tbl_tracking.php:515 #, php-format msgid "Export as %s" -msgstr "" +msgstr "Експорт като %s" #: tbl_tracking.php:555 msgid "Show versions" diff --git a/po/sk.po b/po/sk.po index 9c1201e64f..1d5ba67229 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2411,7 +2411,7 @@ msgstr "Vynulovať" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "" +msgstr "Zlepšuje onovovaciu rýchlosť obrazovky" #: libraries/config/messages.inc.php:18 #, fuzzy @@ -2436,6 +2436,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/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" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -2443,17 +2446,19 @@ msgstr "Povoliť vkladanie do cudzieho rámu" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Zobraziť príkaz "Zrušiť databázu" bežným užívateľom" #: libraries/config/messages.inc.php:24 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]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Blowfish secret" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" @@ -2469,13 +2474,15 @@ msgstr "Zvýrazniť riadok označený kurzórom myši" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Zvýrazňovač" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Povoliť [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] kompresiu pre " +"importovanie a exportovanie" #: libraries/config/messages.inc.php:31 msgid "Bzip2" @@ -2487,26 +2494,29 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "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" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Počet stĺpcov techtový oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Stĺpce techtovej oblasti typu CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Počet riadkov textových oblastí typu CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Riadky pre textové oblasti CHAR" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" @@ -2517,6 +2527,9 @@ msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Komprimovať exporty za behu pomocou gzip/bzip2 bez veľkých pamäťových " +"nárokov. Pokiaľ zistíte problémy s takto vytvorenými gzip/bzip2 súbormi, " +"vypnite túto funkciu" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" @@ -2532,6 +2545,8 @@ msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Či sa má zobrazovať varovanie ("Ste si naozaj istí...") pokiaľ " +"hrozí strata dát" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" @@ -2551,14 +2566,16 @@ msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" +"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] alebo číslo, ktoré udáva maximum " +"pre vertikálne zobrazenie" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "" +msgstr "Smer zobrazenia pre zmenu a vytváranie stĺpcov" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe k databáze" #: libraries/config/messages.inc.php:49 #, fuzzy @@ -2567,7 +2584,7 @@ msgstr "Premenovať databázu na" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe na server" #: libraries/config/messages.inc.php:51 #, fuzzy @@ -2576,39 +2593,39 @@ msgstr "Predvolený server" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Panel, ktorý je zobrazený pri prístupe k tabuľke" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "" +msgstr "Východzí panel tabuľky" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:585 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Zobraziť binárny obsah v HEX formáte" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "" +msgstr "Zobraziť databázy ako zoznam" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Zobraziť prehľad serverov ako zoznam namiesto rozbaľovacieho menu" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "" +msgstr "Zobraziť servery ako zoznam" #: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Upravovať SQL dopyty vo vyskakovacom okne" #: libraries/config/messages.inc.php:61 #, fuzzy @@ -2624,25 +2641,25 @@ msgstr "Zobraziť vlastnosti" #: libraries/config/messages.inc.php:63 msgid "Gather errors" -msgstr "" +msgstr "Zbierať chyby" #: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Zobraziť ikony pre varovné, chybové a informačné správy" #: libraries/config/messages.inc.php:65 msgid "Iconic errors" -msgstr "" +msgstr "Chyby ikon" #: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -msgstr "" +msgstr "Nastavte dĺžku behu skriptu v sekundách (([kbd]0[/kbd] bez obmedzení)" #: libraries/config/messages.inc.php:67 msgid "Maximum execution time" -msgstr "" +msgstr "Maximálny čas behu" #: libraries/config/messages.inc.php:68 prefs_manage.php:299 msgid "Save as file" @@ -2702,7 +2719,7 @@ msgstr "Nahradiť NULL hodnoty" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" -msgstr "" +msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:250 libraries/import/csv.php:62 @@ -2785,7 +2802,7 @@ msgstr "Typ vytvorených dopytov" #: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" -msgstr "" +msgstr "Uložiť na server" #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 @@ -2810,7 +2827,7 @@ msgstr "Režim kompatibility SQL" #: libraries/config/messages.inc.php:120 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Akú syntax použiť pre vkladanie dát" #: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" @@ -2826,7 +2843,7 @@ msgstr "Vypnúť kontrolu cudzích kľúčov" #: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" -msgstr "" +msgstr "Použiť hexadecimálne zobrazenie pre BLOB" #: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" @@ -2852,37 +2869,39 @@ msgstr "Typ vytvorených dopytov" #: libraries/config/messages.inc.php:145 msgid "Force secured connection while using phpMyAdmin" -msgstr "" +msgstr "Vynutiť zabezpečené spojenie pri použití phpMyAdmina" #: libraries/config/messages.inc.php:146 msgid "Force SSL connection" -msgstr "" +msgstr "Vynutit SSL spojenie" #: libraries/config/messages.inc.php:147 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 "" +"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; [kbd]obsah[/" +"kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" #: libraries/config/messages.inc.php:148 msgid "Foreign key dropdown order" -msgstr "" +msgstr "Poradie cudzích kľúčov v rozbaľovacej ponuke" #: libraries/config/messages.inc.php:149 msgid "A dropdown will be used if fewer items are present" -msgstr "" +msgstr "Pokiaľ je dostupných menej položiek, bude použitá rozbaľovacia ponuka" #: libraries/config/messages.inc.php:150 msgid "Foreign key limit" -msgstr "" +msgstr "Limit cudzích kľúčov" #: libraries/config/messages.inc.php:151 msgid "Browse mode" -msgstr "" +msgstr "Režim prezerania" #: libraries/config/messages.inc.php:152 msgid "Customize browse mode" -msgstr "" +msgstr "Prispôsobiť režim prezerania" #: libraries/config/messages.inc.php:154 libraries/config/messages.inc.php:156 #: libraries/config/messages.inc.php:173 libraries/config/messages.inc.php:184 @@ -2902,32 +2921,32 @@ msgstr "CSV dáta" #: libraries/config/messages.inc.php:157 msgid "Developer" -msgstr "" +msgstr "Vývojár" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Nastavenia pre vývojára phpMyAdmina" #: libraries/config/messages.inc.php:159 msgid "Edit mode" -msgstr "" +msgstr "Režim úprav" #: libraries/config/messages.inc.php:160 msgid "Customize edit mode" -msgstr "" +msgstr "Prispôsobenie režimu úprav" #: libraries/config/messages.inc.php:162 msgid "Export defaults" -msgstr "" +msgstr "Východzie nastavenia exportu" #: libraries/config/messages.inc.php:163 msgid "Customize default export options" -msgstr "" +msgstr "Prispôsobiť východzie nastavenia exportu" #: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Funkcie" #: libraries/config/messages.inc.php:165 #, fuzzy @@ -2937,7 +2956,7 @@ msgstr "Vytvoriť" #: libraries/config/messages.inc.php:166 msgid "Set some commonly used options" -msgstr "" +msgstr "Nastaviť zvyčajne používané nastavenia" #: libraries/config/messages.inc.php:167 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 @@ -2952,15 +2971,15 @@ msgstr "Importovať súbory" #: libraries/config/messages.inc.php:169 msgid "Customize default common import options" -msgstr "" +msgstr "Prispôsobiť východzie nastavenia importu" #: libraries/config/messages.inc.php:170 msgid "Import / export" -msgstr "" +msgstr "Import / export" #: libraries/config/messages.inc.php:171 msgid "Set import and export directories and compression options" -msgstr "" +msgstr "Nastaví adresáre pre import a export a voľby kompresie" #: libraries/config/messages.inc.php:172 libraries/export/latex.php:26 msgid "LaTeX" @@ -2973,11 +2992,11 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Navigačný rám" #: libraries/config/messages.inc.php:177 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Prizpôsobiť vzhľad navigačného rámu" #: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 @@ -2986,19 +3005,19 @@ msgstr "Servery" #: libraries/config/messages.inc.php:179 msgid "Servers display options" -msgstr "" +msgstr "Nastavenie zobrazenia serverov" #: libraries/config/messages.inc.php:181 msgid "Tables display options" -msgstr "" +msgstr "Nastavenie zobrazenia tabuliek" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Hlavný rám" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" -msgstr "" +msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 #, fuzzy @@ -3008,11 +3027,11 @@ msgstr "Open Document Text" #: libraries/config/messages.inc.php:187 msgid "Other core settings" -msgstr "" +msgstr "Ostatné základné nastavenia" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Nastavenia, ktoré sa nedajú zaradiť inde" #: libraries/config/messages.inc.php:189 #, fuzzy @@ -3026,6 +3045,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" +"Zadajte titulku, ktorú bude zobrazovať prehliadač. V [a@Documentation." +"html#cfg_TitleTable]documentácii[/a] nájdete špeciálne reťazce, ktoré môžete " +"použiť na získanie špeciálnych hodnôt." #: libraries/config/messages.inc.php:191 #: libraries/navigation_header.inc.php:83 @@ -3036,21 +3058,23 @@ msgstr "SQL okno" #: libraries/config/messages.inc.php:192 msgid "Customize query window options" -msgstr "" +msgstr "Prispôsobiť nastavenia okna dopytov" #: libraries/config/messages.inc.php:193 msgid "Security" -msgstr "" +msgstr "Zabezpečenie" #: libraries/config/messages.inc.php:194 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Pripomíname, že phpMyAdmin je len užívateľské rozhranie a jeho funkcie " +"neobmedzujú MySQL" #: libraries/config/messages.inc.php:195 msgid "Basic settings" -msgstr "" +msgstr "Základné nastavenia" #: libraries/config/messages.inc.php:196 #, fuzzy @@ -3066,17 +3090,19 @@ msgstr "Stav replikácie" #: libraries/config/messages.inc.php:198 msgid "Server configuration" -msgstr "" +msgstr "Konfigurácia servera" #: libraries/config/messages.inc.php:199 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Pokročilá konfigurácia servera, nemeňte tieto nastavenia, pokiaľ neviete " +"čoho sa týkajú" #: libraries/config/messages.inc.php:200 msgid "Enter server connection parameters" -msgstr "" +msgstr "Vložte parametre pripojenia servera" #: libraries/config/messages.inc.php:201 #, fuzzy @@ -3090,16 +3116,21 @@ msgid "" "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" +"Nastavenie phpMyAdmin miesta uloženia konfigurácie tak, aby získal prístup k " +"prídavným funkciám, viď [a@Documentation.html#linked-tables]miesto uloženia " +"konfigurácie [/a] v dokumentácii" #: libraries/config/messages.inc.php:203 msgid "Changes tracking" -msgstr "" +msgstr "Sledovanie zmien" #: libraries/config/messages.inc.php:204 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" +"Sledovanie zmien vykonaných v databáze. Vyžaduje nastavenie miesta uloženia " +"zmien phpMyAdmina." #: libraries/config/messages.inc.php:205 #, fuzzy @@ -3108,15 +3139,15 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/messages.inc.php:207 msgid "Customize import defaults" -msgstr "" +msgstr "Prispôsobebie východzích nastavení importu" #: libraries/config/messages.inc.php:208 msgid "Customize navigation frame" -msgstr "" +msgstr "Prispôsobenie navigačného rámu" #: libraries/config/messages.inc.php:209 msgid "Customize main frame" -msgstr "" +msgstr "Prispôsobenie hlavného rámu" #: libraries/config/messages.inc.php:210 libraries/config/messages.inc.php:215 #: setup/frames/menu.inc.php:17 @@ -3131,7 +3162,7 @@ msgstr "SQL dopyt" #: libraries/config/messages.inc.php:213 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Prispôsobenie odkazov zobrazovaných v poliach pre SQL dopyty" #: libraries/config/messages.inc.php:216 #, fuzzy @@ -3151,6 +3182,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]" #: libraries/config/messages.inc.php:219 #, fuzzy @@ -3159,7 +3194,7 @@ msgstr "Štart" #: libraries/config/messages.inc.php:220 msgid "Customize startup page" -msgstr "" +msgstr "Prispôsobenie úvodnej stránky" #: libraries/config/messages.inc.php:221 #, fuzzy @@ -3168,7 +3203,7 @@ msgstr "Tabuľka" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "Zvoľte, ako majú panely fungovať" #: libraries/config/messages.inc.php:223 #, fuzzy @@ -3183,39 +3218,43 @@ msgstr "Nastavenia exportu databáz" #: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17 msgid "Texy! text" -msgstr "" +msgstr "Texy! text" #: libraries/config/messages.inc.php:227 msgid "Warnings" -msgstr "" +msgstr "Varovania" #: libraries/config/messages.inc.php:228 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Vypnúť niektoré varovania zobrazované phpMyAdminom" #: libraries/config/messages.inc.php:229 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" +"Povolí [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiu pre " +"importovanie a exportovanie" #: libraries/config/messages.inc.php:230 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" -msgstr "" +msgstr "Extra parametre pre iconv" #: libraries/config/messages.inc.php:232 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"Pokiaľ je povolené, phpMyAdmin bude pokračovať v spracovaní viacprvkových " +"dopytov, aj keď jeden z nich zlyhal" #: libraries/config/messages.inc.php:233 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "Ignorovať chyby vo viacprvkových dopytoch" #: libraries/config/messages.inc.php:234 #, fuzzy @@ -3230,12 +3269,12 @@ msgstr "" #: libraries/config/messages.inc.php:235 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "Čiastočný import: povoliť prerušenie" #: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "Neprerušovať pri chybe v príkaze INSERT" #: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:249 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 @@ -3267,11 +3306,11 @@ msgstr "Neimportovať prázdne riadky" #: libraries/config/messages.inc.php:253 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "Import mien (5.00 namiesto $5.00)" #: libraries/config/messages.inc.php:254 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "" +msgstr "Importovať percentá ako desatinné čísla (0,12 namiesto 12,00%|" #: libraries/config/messages.inc.php:255 #, fuzzy @@ -3281,7 +3320,7 @@ msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť" #: libraries/config/messages.inc.php:256 msgid "Partial import: skip queries" -msgstr "" +msgstr "Čiastočný import: preskočiť dopyty" #: libraries/config/messages.inc.php:258 #, fuzzy @@ -3295,7 +3334,7 @@ msgstr "" #: libraries/config/messages.inc.php:262 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "Koľko riadkov môže byť vložených naraz" #: libraries/config/messages.inc.php:263 #, fuzzy @@ -3304,23 +3343,23 @@ msgstr "Počet zoradených riadkov." #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" -msgstr "" +msgstr "Cieľ pre ikonu rýchleho prístupu" #: libraries/config/messages.inc.php:265 msgid "Show logo in left frame" -msgstr "" +msgstr "Zobraziť logo v ľavom ráme" #: libraries/config/messages.inc.php:266 msgid "Display logo" -msgstr "" +msgstr "Zobraziť logo" #: libraries/config/messages.inc.php:267 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "Zobraziť voľbu servera v hornej časti ľavého rámu" #: libraries/config/messages.inc.php:268 msgid "Display servers selection" -msgstr "" +msgstr "Zobraziť výber serverov" #: libraries/config/messages.inc.php:269 #, fuzzy @@ -3330,21 +3369,23 @@ msgstr "Počet práve otvorených tabuliek." #: libraries/config/messages.inc.php:270 msgid "String that separates databases into different tree levels" -msgstr "" +msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu" #: libraries/config/messages.inc.php:271 msgid "Database tree separator" -msgstr "" +msgstr "Oddeľovač databázového stromu" #: libraries/config/messages.inc.php:272 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" +"Len odľahčená verzia; zobrazí databázy v strome (určené oddeľovačom " +"nastaveným nižšie)" #: libraries/config/messages.inc.php:273 msgid "Display databases in a tree" -msgstr "" +msgstr "Zobraziť databázy v strome" #: libraries/config/messages.inc.php:274 msgid "Disable this if you want to see all databases at once" From 9a8407e5ce1b8b904e48f2f49b292360ffbd40bf Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 May 2011 07:43:15 -0400 Subject: [PATCH 0900/1652] 3.4.2-dev --- ChangeLog | 2 ++ Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 99d74441a1..737897cf3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ phpMyAdmin - ChangeLog ====================== +3.4.2.0 (not yet released) + 3.4.1.0 (not yet released) - bug #3301108 [interface] Synchronize and already configured host - bug #3302457 Inline edit and $cfg['PropertiesIconic'] diff --git a/Documentation.html b/Documentation.html index 6a3032e600..3d095c0a20 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.4.1-dev - Documentation + phpMyAdmin 3.4.2-dev - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index e448f18f26..5648c73549 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.4.1-dev +Version 3.4.2-dev A set of PHP-scripts to manage MySQL over the web. diff --git a/libraries/Config.class.php b/libraries/Config.class.php index b363089f20..29f85e4479 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -96,7 +96,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.4.1-dev'); + $this->set('PMA_VERSION', '3.4.2-dev'); /** * @deprecated */ From f4d9b34b9d255d5edd2bb10fd78c4ed9ea1a6e78 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 May 2011 07:47:18 -0400 Subject: [PATCH 0901/1652] 3.4.2-dev --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0aa84b2e35..c107110004 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ + Patch #3256122 [search] Show/hide db search results + Patch #3302354 Add gettext wrappers around a message +3.4.2.0 (not yet released) + 3.4.1.0 (not yet released) - bug #3301108 [interface] Synchronize and already configured host - bug #3302457 Inline edit and $cfg['PropertiesIconic'] From eab3b73e6e423c6426b9078239fe56bb90ab3e6a Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:50:26 +0200 Subject: [PATCH 0902/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index ea4ee68db3..fd12088220 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 12:56+0200\n" +"PO-Revision-Date: 2011-05-17 13:50+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2733,10 +2733,9 @@ msgid "Relations" msgstr "Prepojenia" #: libraries/config/messages.inc.php:103 -#, fuzzy #| msgid "Export type" msgid "Export method" -msgstr "Typ vytvorených dopytov" +msgstr "Metóda exportu" #: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" From 0d3abdee41742f8842288dbb68c0a5a5eacc1362 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:50:59 +0200 Subject: [PATCH 0903/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index fd12088220..b71241bc20 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2953,10 +2953,9 @@ msgid "Microsoft Office" msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 -#, fuzzy #| msgid "Open Document Text" msgid "Open Document" -msgstr "Open Document Text" +msgstr "Open Document" #: libraries/config/messages.inc.php:187 msgid "Other core settings" From 59b51eb71af3f8514aba06e55606f4e083346426 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:51:17 +0200 Subject: [PATCH 0904/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b71241bc20..8ddbd7d50a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:50+0200\n" +"PO-Revision-Date: 2011-05-17 13:51+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2966,10 +2966,9 @@ msgid "Settings that didn't fit enywhere else" msgstr "Nastavenia, ktoré sa nedajú zaradiť inde" #: libraries/config/messages.inc.php:189 -#, fuzzy #| msgid "Page number:" msgid "Page titles" -msgstr "Číslo stránky:" +msgstr "Mená stránok" #: libraries/config/messages.inc.php:190 msgid "" From f683d50f82b1a14650a64ff81baec5401f5ba17f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:51:39 +0200 Subject: [PATCH 0905/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8ddbd7d50a..6ac0f37750 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3498,10 +3498,9 @@ msgid "Use natural order for sorting table and database names" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy #| msgid "Alter table order by" msgid "Natural order" -msgstr "Zmeniť poradie tabuľky podľa" +msgstr "Prirodzené poradie" #: libraries/config/messages.inc.php:319 libraries/config/messages.inc.php:329 msgid "Use only icons, only text or both" From 2f3397c6043d5ccdf3ac9108c416a1f5554f60db Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:52:00 +0200 Subject: [PATCH 0906/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6ac0f37750..22110a806d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:51+0200\n" +"PO-Revision-Date: 2011-05-17 13:52+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3591,10 +3591,9 @@ msgid "Query window height (in pixels)" msgstr "" #: libraries/config/messages.inc.php:341 -#, fuzzy #| msgid "Query window" msgid "Query window height" -msgstr "SQL okno" +msgstr "Výška okna dopytov" #: libraries/config/messages.inc.php:342 #| msgid "Query window" From 8bc2fb216848d6697084adbc0ffe20be9889b10f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:52:14 +0200 Subject: [PATCH 0907/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 22110a806d..efe8f9c865 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3601,10 +3601,9 @@ msgid "Query window width (in pixels)" msgstr "Šírka okna dopytov (v pixeloch)" #: libraries/config/messages.inc.php:343 -#, fuzzy #| msgid "Query window" msgid "Query window width" -msgstr "SQL okno" +msgstr "Šírka okna dopytov" #: libraries/config/messages.inc.php:344 msgid "Select which functions will be used for character set conversion" From ca76fc0fddb6685986638ec0aeca686c82279015 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:52:29 +0200 Subject: [PATCH 0908/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index efe8f9c865..64b8b46432 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3618,10 +3618,9 @@ msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" #: libraries/config/messages.inc.php:347 -#, fuzzy #| msgid "Repair threads" msgid "Repeat headers" -msgstr "Opravné vlákna" +msgstr "Opakovať záhlavie" #: libraries/config/messages.inc.php:348 msgid "Show help button instead of Documentation text" From 0dd3a50de0ef7f7c534b1b05947968d39540ec9c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:52:39 +0200 Subject: [PATCH 0909/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 64b8b46432..3c35596a87 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3859,10 +3859,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:400 -#, fuzzy #| msgid "database name" msgid "Database name" -msgstr "meno databázy" +msgstr "Meno databázy" #: libraries/config/messages.inc.php:401 msgid "Port on which MySQL server is listening, leave empty for default" From 86516586d87eb9f9757f8d3ba714bb9749d4b2f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:52:57 +0200 Subject: [PATCH 0910/1652] Translation update done using Pootle. --- po/en_GB.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index d3db206577..0c5a4c271e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-16 16:28+0200\n" -"Last-Translator: Marc Delisle \n" +"PO-Revision-Date: 2011-05-17 13:52+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: english-gb \n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -7910,10 +7910,10 @@ msgid "Unable to change master" msgstr "Unable to change master" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" -msgstr "Master server changed succesfully to %s" +msgstr "Master server changed successfully to %s" #: server_replication.php:180 msgid "This server is configured as master in a replication process." From 26687ef87a3d61de995b36eae0d30edce6eb66c6 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:53:13 +0200 Subject: [PATCH 0911/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3c35596a87..9b912b46e3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:52+0200\n" +"PO-Revision-Date: 2011-05-17 13:53+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3978,10 +3978,9 @@ msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" #: libraries/config/messages.inc.php:425 -#, fuzzy #| msgid "Statements" msgid "Statements to track" -msgstr "Údaj" +msgstr "Sledované príkazy" #: libraries/config/messages.inc.php:426 msgid "" From f9ac783cae3843d9e9dfda3a2582162d07ca4a5c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:53:31 +0200 Subject: [PATCH 0912/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9b912b46e3..262234bd6a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3999,10 +3999,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:429 -#, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" -msgstr "Režim automatickej obnovy" +msgstr "Automaticky vytvárať verzie" #: libraries/config/messages.inc.php:430 msgid "" From 7a78a3480fbe605a0d459a02370feb0d24acf230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:53:39 +0200 Subject: [PATCH 0913/1652] Translation update done using Pootle. --- po/cs.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index e4e6866c02..95ad196c89 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 00:17+0200\n" +"PO-Revision-Date: 2011-05-17 13:53+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -1128,7 +1128,7 @@ msgstr "Zobrazit výsledky vyhledávání" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." #: js/messages.php:93 msgid "Hide query box" From a250232529ee9ef75e0f1843d5aedf2a624c5d32 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:53:46 +0200 Subject: [PATCH 0914/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 262234bd6a..814c5fa103 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4067,10 +4067,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:444 -#, fuzzy #| msgid "Show open tables" msgid "Show field types" -msgstr "Zobraziť otvorené tabuľky" +msgstr "Zobraziť typy polí" #: libraries/config/messages.inc.php:445 msgid "Display the function fields in edit/insert mode" From c2360fdaf4b9a87a518cf8eba98271f75e1babea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:54:08 +0200 Subject: [PATCH 0915/1652] Translation update done using Pootle. --- po/cs.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/cs.po b/po/cs.po index 95ad196c89..d04d9ea926 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:53+0200\n" +"PO-Revision-Date: 2011-05-17 13:54+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -1189,6 +1189,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " +"Přejete si pokračovat?" #: js/messages.php:114 msgid "Add an option for column " From 882ece32b62af3ee925e8e087bb45796d19bde10 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:54:15 +0200 Subject: [PATCH 0916/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 814c5fa103..670f9aef6c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:53+0200\n" +"PO-Revision-Date: 2011-05-17 13:54+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4232,10 +4232,9 @@ msgid "Title of browser window when nothing is selected" msgstr "" #: libraries/config/messages.inc.php:483 -#, fuzzy #| msgid "Default" msgid "Default title" -msgstr "Predvolené" +msgstr "Východzí popis" #: libraries/config/messages.inc.php:484 msgid "Title of browser window when a server is selected" From 726fc9e7e8a2265e1839e74543530776e4a93780 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:54:37 +0200 Subject: [PATCH 0917/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 670f9aef6c..7c08f5f487 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4370,10 +4370,9 @@ msgstr "" #: libraries/config/setup.forms.php:266 #: libraries/config/user_preferences.forms.php:169 -#, fuzzy #| msgid "Custom color" msgid "Custom" -msgstr "Vlastná farba" +msgstr "Vlastné" #: libraries/config/setup.forms.php:287 #: libraries/config/user_preferences.forms.php:189 From 4825b56f553c80879926c344aed770b2dc32d4e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:54:58 +0200 Subject: [PATCH 0918/1652] Translation update done using Pootle. --- po/cs.po | 3 +++ 1 file changed, 3 insertions(+) diff --git a/po/cs.po b/po/cs.po index d04d9ea926..e0673d0d16 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9053,6 +9053,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Konfigurace byla uložena do souboru config/config.inc.php v adresáři " +"phpMyAdmina, přesuňte ji do adresáře phpMyAdmin a smažte adresář config pro " +"její použití." #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From 31f85c847763ebf41910484d7013480b8fbe9246 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:55:00 +0200 Subject: [PATCH 0919/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7c08f5f487..c5fdce0048 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:54+0200\n" +"PO-Revision-Date: 2011-05-17 13:55+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4526,10 +4526,9 @@ msgid "Password Hashing" msgstr "Hashovanie hesla" #: libraries/display_change_password.lib.php:65 -#, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" -msgstr "Kompatibilné s MySQL 4.0" +msgstr "Kompatibilné s MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 From 0b8a9b510be6eef73e9fb879bde8f83c972ea418 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 13:55:08 +0200 Subject: [PATCH 0920/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c5fdce0048..0b3a1923d7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4550,7 +4550,6 @@ msgid "Create table on database %s" msgstr "Vytvoriť novú tabuľku v databáze %s" #: libraries/display_create_table.lib.php:55 -#, fuzzy #| msgid "Number of fields" msgid "Number of columns" msgstr "Počet polí" From 5aa22db0693dcb3c6d40716d3c91237ef9f1e258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:55:14 +0200 Subject: [PATCH 0921/1652] Translation update done using Pootle. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index e0673d0d16..8f71fb9ecb 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:54+0200\n" +"PO-Revision-Date: 2011-05-17 13:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -9913,10 +9913,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" #: tbl_tracking.php:382 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Sledovat tyto příkazy pro definici dat:" +msgstr "Sledovaná data byla úspěšně smazána" #: tbl_tracking.php:384 tbl_tracking.php:401 #| msgid "Gather errors" From 699214405c9e8aef5fec8bf301622b9a1875aa1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:56:22 +0200 Subject: [PATCH 0922/1652] Translation update done using Pootle. --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 8f71fb9ecb..491ae5d0a4 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:55+0200\n" +"PO-Revision-Date: 2011-05-17 13:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -9915,7 +9915,7 @@ msgstr "Snímek verze %s (SQL kód)" #: tbl_tracking.php:382 #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Sledovaná data byla úspěšně smazána" +msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" #: tbl_tracking.php:384 tbl_tracking.php:401 #| msgid "Gather errors" From cd61935a55326cc8aee28e17d49a444fa115f4e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:56:24 +0200 Subject: [PATCH 0923/1652] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 491ae5d0a4..677c4a30ed 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9923,10 +9923,9 @@ msgid "Query error" msgstr "Chyba dotazu" #: tbl_tracking.php:399 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Sledovat tyto příkazy pro úpravu dat:" +msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" #: tbl_tracking.php:411 msgid "Tracking statements" From f242392df9cc48d37f6be10da53bacb88c01421d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 13:56:45 +0200 Subject: [PATCH 0924/1652] Translation update done using Pootle. --- po/cs.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 677c4a30ed..e743eed7f6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9937,10 +9937,9 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Zobrazit %s s datem od %s do %s od uživatele %s %s" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Odstranit všechny informace o sledování této tabulky" +msgstr "Odstranit tyto informace o sledování této tabulky" #: tbl_tracking.php:443 #| msgid "No databases" From f8a5e837254ecc36667ddfb50c53e87028571ec8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:01:58 +0200 Subject: [PATCH 0925/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0b3a1923d7..7deb99979a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 13:55+0200\n" +"PO-Revision-Date: 2011-05-17 14:01+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3278,10 +3278,9 @@ msgid "Display servers selection" msgstr "Zobraziť výber serverov" #: libraries/config/messages.inc.php:269 -#, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" -msgstr "Počet práve otvorených tabuliek." +msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek." #: libraries/config/messages.inc.php:270 msgid "String that separates databases into different tree levels" From 36ce7c39308fe94af46a17258a38595c33c9f510 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:03:39 +0200 Subject: [PATCH 0926/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7deb99979a..c9a2ace9d2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:01+0200\n" +"PO-Revision-Date: 2011-05-17 14:03+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3937,10 +3937,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:417 -#, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" -msgstr "Zobrazovať komentáre stĺpcov" +msgstr "Zobrazenie stĺpcov tabuľky" #: libraries/config/messages.inc.php:418 msgid "" From 156c594b8c109eb755ec435e1fb608055436f1b5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:04:58 +0200 Subject: [PATCH 0927/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index c9a2ace9d2..6785910e28 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:03+0200\n" +"PO-Revision-Date: 2011-05-17 14:04+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4206,10 +4206,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:477 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" -msgstr "Pridať/Odobrať polia stĺpcov" +msgstr "Stĺpce s textovou oblasťou" #: libraries/config/messages.inc.php:478 msgid "" From 06c4a87e60c5b472dfdc4a01532406ef2f752037 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:05:45 +0200 Subject: [PATCH 0928/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6785910e28..d3f8efa0d9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:04+0200\n" +"PO-Revision-Date: 2011-05-17 14:05+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4314,7 +4314,7 @@ msgstr "" #: libraries/config/messages.inc.php:502 msgid "ZIP" -msgstr "" +msgstr "ZIP" #: libraries/config/setup.forms.php:41 #, fuzzy From f6cc08e3d2f0501f34998d7da1fdcb33779a5659 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:06:22 +0200 Subject: [PATCH 0929/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d3f8efa0d9..91aadced4e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:05+0200\n" +"PO-Revision-Date: 2011-05-17 14:06+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4324,7 +4324,7 @@ msgstr "Konfiguračný súbor" #: libraries/config/setup.forms.php:45 msgid "Cookie authentication" -msgstr "" +msgstr "Overovanie pomocou cookie" #: libraries/config/setup.forms.php:48 msgid "HTTP authentication" From 3d0f64f2c665cfb7c47a1392b16a9cbc2378cbbd Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:06:43 +0200 Subject: [PATCH 0930/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 91aadced4e..97ce3b1fd6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4328,7 +4328,7 @@ msgstr "Overovanie pomocou cookie" #: libraries/config/setup.forms.php:48 msgid "HTTP authentication" -msgstr "" +msgstr "HTTP overovanie" #: libraries/config/setup.forms.php:51 msgid "Signon authentication" From 14d3b02de605790f875b3cc5765bf45ea1455da4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:07:50 +0200 Subject: [PATCH 0931/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 97ce3b1fd6..b2ce1b0c67 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:06+0200\n" +"PO-Revision-Date: 2011-05-17 14:07+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4557,10 +4557,9 @@ msgstr "" "Nepodarilo sa načítať exportné pluginy, skontrolujte prosím vašu inštaláciu!" #: libraries/display_export.lib.php:87 -#, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" -msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." +msgstr "Exportujem databázy z aktuálneho servera" #: libraries/display_export.lib.php:89 #, fuzzy, php-format From 6f2196b8032e1cd7777a18c1032ed3718d122a95 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:08:30 +0200 Subject: [PATCH 0932/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b2ce1b0c67..6074c58ccc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:07+0200\n" +"PO-Revision-Date: 2011-05-17 14:08+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4562,10 +4562,10 @@ msgid "Exporting databases from the current server" msgstr "Exportujem databázy z aktuálneho servera" #: libraries/display_export.lib.php:89 -#, fuzzy, php-format +#, php-format #| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" -msgstr "Vytvoriť novú tabuľku v databáze %s" +msgstr "Exportujem tabuľky z databázy \"%s\"" #: libraries/display_export.lib.php:91 #, fuzzy, php-format From 894bbbc3dab8ab29981bc7a5ab15aa1f3e0e8ca5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:09:43 +0200 Subject: [PATCH 0933/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6074c58ccc..2cf0fe3f9d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:08+0200\n" +"PO-Revision-Date: 2011-05-17 14:09+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4568,10 +4568,10 @@ msgid "Exporting tables from \"%s\" database" msgstr "Exportujem tabuľky z databázy \"%s\"" #: libraries/display_export.lib.php:91 -#, fuzzy, php-format +#, php-format #| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" -msgstr "Vytvoriť novú tabuľku v databáze %s" +msgstr "Exportujem riadky z tabuľky \"%s\"" #: libraries/display_export.lib.php:97 #, fuzzy From dd0cebe2a6f237b30382f6f346a976585d5e1e44 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:10:13 +0200 Subject: [PATCH 0934/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2cf0fe3f9d..54c27c45e8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:09+0200\n" +"PO-Revision-Date: 2011-05-17 14:10+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4574,10 +4574,9 @@ msgid "Exporting rows from \"%s\" table" msgstr "Exportujem riadky z tabuľky \"%s\"" #: libraries/display_export.lib.php:97 -#, fuzzy #| msgid "Export type" msgid "Export Method:" -msgstr "Typ vytvorených dopytov" +msgstr "Metóda exportu:" #: libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options" From 736b57577cf24aed2cda2023325049d371e942c4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:10:22 +0200 Subject: [PATCH 0935/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 54c27c45e8..e1e88ee862 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4597,10 +4597,9 @@ msgid "Table(s):" msgstr "Tabuľka(y):" #: libraries/display_export.lib.php:149 -#, fuzzy #| msgid "Rows" msgid "Rows:" -msgstr "Riadkov" +msgstr "Riadky:" #: libraries/display_export.lib.php:157 #| msgid "Update row(s)" From abb49052b2b97d7aef240e72018366818b31cc58 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:10:42 +0200 Subject: [PATCH 0936/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e1e88ee862..2f4dbb3402 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4607,10 +4607,9 @@ msgid "Dump some row(s)" msgstr "Vypísať niektoré riadky" #: libraries/display_export.lib.php:159 -#, fuzzy #| msgid "Number of fields" msgid "Number of rows:" -msgstr "Počet polí" +msgstr "Počet riadkov:" #: libraries/display_export.lib.php:162 msgid "Row to begin at:" From 3f5ed7aec62bdb36de9b1a859036dd0ff6a41bf0 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:11:00 +0200 Subject: [PATCH 0937/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2f4dbb3402..17f3ae747a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:10+0200\n" +"PO-Revision-Date: 2011-05-17 14:11+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4630,10 +4630,9 @@ msgid "Save on server in the directory %s" msgstr "Uložiť na server do adresára %s" #: libraries/display_export.lib.php:206 -#, fuzzy #| msgid "Save as file" msgid "Save output to a file" -msgstr "Pošli" +msgstr "Uložiť výstup do suboru" #: libraries/display_export.lib.php:227 #, fuzzy From e1be4714363b32ba1afe43f5d71e37c01ce8b013 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:11:27 +0200 Subject: [PATCH 0938/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 17f3ae747a..ee754fc36f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4635,10 +4635,9 @@ msgid "Save output to a file" msgstr "Uložiť výstup do suboru" #: libraries/display_export.lib.php:227 -#, fuzzy #| msgid "File name template" msgid "File name template:" -msgstr "Vzor pre názov súboru" +msgstr "Šablóna pre názov súboru:" #: libraries/display_export.lib.php:229 msgid "@SERVER@ will become the server name" From 5ac2ce598ea8cc0a62960be78d33083f60ae3312 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:11:35 +0200 Subject: [PATCH 0939/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ee754fc36f..738cf2147d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4677,10 +4677,9 @@ msgid "Character set of the file:" msgstr "Znaková sada súboru:" #: libraries/display_export.lib.php:309 -#, fuzzy #| msgid "Compression" msgid "Compression:" -msgstr "Kompresia" +msgstr "Kompresia:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512 #: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578 From 177d105c8373dca4268763cf065940f13015ac2f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:11:52 +0200 Subject: [PATCH 0940/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 738cf2147d..fbe1afa7c6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4688,10 +4688,9 @@ msgid "None" msgstr "Žiadny" #: libraries/display_export.lib.php:313 -#, fuzzy #| msgid "\"zipped\"" msgid "zipped" -msgstr "\"zozipované\"" +msgstr "zazipované" #: libraries/display_export.lib.php:315 #, fuzzy From f97df8fa1553a273302c452f9fa559be6f44cfa5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:12:03 +0200 Subject: [PATCH 0941/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index fbe1afa7c6..2b687ddccf 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:11+0200\n" +"PO-Revision-Date: 2011-05-17 14:12+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4693,10 +4693,9 @@ msgid "zipped" msgstr "zazipované" #: libraries/display_export.lib.php:315 -#, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" -msgstr "\"gzip-ované\"" +msgstr "gzip-ované" #: libraries/display_export.lib.php:317 #, fuzzy From 313697bc0504d9671c34b0f7de5c99dfa289132f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:12:28 +0200 Subject: [PATCH 0942/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2b687ddccf..d89d89fd5d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4698,10 +4698,9 @@ msgid "gzipped" msgstr "gzip-ované" #: libraries/display_export.lib.php:317 -#, fuzzy #| msgid "\"bzipped\"" msgid "bzipped" -msgstr "\"bzipped\"" +msgstr "bzip-ované" #: libraries/display_export.lib.php:326 #, fuzzy From f9aee3c0b401f7fac77f86c23a7c0d6f3898daee Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:12:41 +0200 Subject: [PATCH 0943/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d89d89fd5d..221f7f86c7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4703,10 +4703,9 @@ msgid "bzipped" msgstr "bzip-ované" #: libraries/display_export.lib.php:326 -#, fuzzy #| msgid "Save as file" msgid "View output as text" -msgstr "Pošli" +msgstr "Zobraziť výstup ako text" #: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:37 From 410442d0a8277aa15a32543eef8f990559282c3c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:12:46 +0200 Subject: [PATCH 0944/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 221f7f86c7..499cae7a14 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4709,10 +4709,9 @@ msgstr "Zobraziť výstup ako text" #: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:37 -#, fuzzy #| msgid "Format" msgid "Format:" -msgstr "Formát" +msgstr "Formát:" #: libraries/display_export.lib.php:336 #, fuzzy From 201011c59f568299f1d65a9c3d6fdcabea88d880 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:13:50 +0200 Subject: [PATCH 0945/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 499cae7a14..0abebd9d26 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:12+0200\n" +"PO-Revision-Date: 2011-05-17 14:13+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4751,10 +4751,9 @@ msgid "" msgstr "" #: libraries/display_import.lib.php:129 -#, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "Nedá sa prihlásiť k MySQL serveru" +msgstr "Importujem na aktuálny server" #: libraries/display_import.lib.php:131 #, php-format From e54168ef6e51b6c82888baafd6aefbe425ce5414 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:13:59 +0200 Subject: [PATCH 0946/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0abebd9d26..f50bf673f0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4768,10 +4768,9 @@ msgid "Importing into the table \"%s\"" msgstr "Importujem do tabuľky \"%s\"" #: libraries/display_import.lib.php:139 -#, fuzzy #| msgid "File to import" msgid "File to Import:" -msgstr "Súbor na importovanie" +msgstr "Súbor na importovanie:" #: libraries/display_import.lib.php:156 #, php-format From 0f8166626cfa1a79bd755c729cc28bb0e5a7c73c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:14:07 +0200 Subject: [PATCH 0947/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index f50bf673f0..3e5a948060 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:13+0200\n" +"PO-Revision-Date: 2011-05-17 14:14+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4788,10 +4788,9 @@ msgid "File uploads are not allowed on this server." msgstr "Ukladanie súborov na server nie je povolené." #: libraries/display_import.lib.php:208 -#, fuzzy #| msgid "Partial import" msgid "Partial Import:" -msgstr "Čiastočný import" +msgstr "Čiastočný import:" #: libraries/display_import.lib.php:214 #, php-format From db3fa8ec90e30927ca9c8eaa68a2925c40f9d723 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:14:20 +0200 Subject: [PATCH 0948/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3e5a948060..4746f9660e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4878,7 +4878,6 @@ msgid "Options" msgstr "Nastavenia" #: libraries/display_tbl.lib.php:546 libraries/display_tbl.lib.php:556 -#, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Čiastočné texty" From b9b137f76dc2e273055cbf82ceaccb7d216a5c2b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:14:34 +0200 Subject: [PATCH 0949/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4746f9660e..307592b1f2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4883,7 +4883,6 @@ msgid "Partial texts" msgstr "Čiastočné texty" #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:560 -#, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Plné texty" From 69ebc298f7f3af01462d6dfb7d3e796695924320 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:15:02 +0200 Subject: [PATCH 0950/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 307592b1f2..2f0b52647c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:14+0200\n" +"PO-Revision-Date: 2011-05-17 14:15+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4955,10 +4955,9 @@ msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" #: libraries/display_tbl.lib.php:2331 tbl_chart.php:81 -#, fuzzy #| msgid "Display PDF schema" msgid "Display chart" -msgstr "Zobraziť schému PDF" +msgstr "Zobraziť graf" #: libraries/display_tbl.lib.php:2350 #, fuzzy From 80e964b03aa79589fc4610fdb07793c980eb4fe4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:15:21 +0200 Subject: [PATCH 0951/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2f0b52647c..81984d40a7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5231,10 +5231,9 @@ msgid "" msgstr "" #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 -#, fuzzy #| msgid "Relations" msgid "Related Links" -msgstr "Prepojenia" +msgstr "Súvisiace odkazy" #: libraries/engines/pbms.lib.php:98 msgid "The PrimeBase Media Streaming Blog by Barry Leslie" From 2423a8dc2d4ba1eb5ee0cb81fc0080cd500e228f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:16:00 +0200 Subject: [PATCH 0952/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 81984d40a7..62f0edf482 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:15+0200\n" +"PO-Revision-Date: 2011-05-17 14:16+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5394,10 +5394,9 @@ msgid "Columns enclosed with:" msgstr "Polia uzatvorené" #: libraries/export/csv.php:23 libraries/import/csv.php:29 -#, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" -msgstr "Polia uvedené pomocou" +msgstr "Polia uvedené pomocou:" #: libraries/export/csv.php:24 libraries/import/csv.php:30 #, fuzzy From 7d34b87a42b03ff29ed6ba94f7317b515431436e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:16:06 +0200 Subject: [PATCH 0953/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 62f0edf482..3c53eb2267 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5399,10 +5399,9 @@ msgid "Columns escaped with:" msgstr "Polia uvedené pomocou:" #: libraries/export/csv.php:24 libraries/import/csv.php:30 -#, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" -msgstr "Riadky ukončené" +msgstr "Riadky ukončené:" #: libraries/export/csv.php:25 libraries/export/excel.php:22 #: libraries/export/htmlword.php:28 libraries/export/latex.php:79 From c8f356b5f55e46de8d417ae58c98fd03630102d4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:16:17 +0200 Subject: [PATCH 0954/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3c53eb2267..6ab5970c61 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5407,10 +5407,9 @@ msgstr "Riadky ukončené:" #: libraries/export/htmlword.php:28 libraries/export/latex.php:79 #: libraries/export/ods.php:23 libraries/export/odt.php:59 #: libraries/export/xls.php:23 libraries/export/xlsx.php:23 -#, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Nahradiť NULL hodnoty" +msgstr "Nahradiť NULL hodnoty:" #: libraries/export/csv.php:26 libraries/export/excel.php:23 msgid "Remove carriage return/line feed characters within columns" From 931c118f7cb6b19e3c7074c314fb073353764de1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:16:22 +0200 Subject: [PATCH 0955/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6ab5970c61..2690e4d781 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5416,10 +5416,9 @@ msgid "Remove carriage return/line feed characters within columns" msgstr "" #: libraries/export/excel.php:32 -#, fuzzy #| msgid "Excel edition" msgid "Excel edition:" -msgstr "Verzia Excelu" +msgstr "Verzia Excelu:" #: libraries/export/htmlword.php:27 libraries/export/latex.php:69 #: libraries/export/odt.php:55 libraries/export/sql.php:132 From 50e79c6042b27251e8314762c0bcda009d7b4b14 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:17:44 +0200 Subject: [PATCH 0956/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2690e4d781..8771f2e456 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:16+0200\n" +"PO-Revision-Date: 2011-05-17 14:17+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5464,10 +5464,9 @@ msgstr "Nadpis tabuľky" #: libraries/export/latex.php:56 libraries/export/odt.php:42 #: libraries/export/sql.php:40 -#, fuzzy #| msgid "Disable foreign key checks" msgid "Display foreign key relationships" -msgstr "Vypnúť kontrolu cudzích kľúčov" +msgstr "Zobraziť vzťahy cudzích kľúčov" #: libraries/export/latex.php:59 libraries/export/odt.php:45 #, fuzzy From bd8065bef3d08666d5e70390c995565a70693e8c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:18:04 +0200 Subject: [PATCH 0957/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8771f2e456..80a1a87628 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:17+0200\n" +"PO-Revision-Date: 2011-05-17 14:18+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5469,10 +5469,9 @@ msgid "Display foreign key relationships" msgstr "Zobraziť vzťahy cudzích kľúčov" #: libraries/export/latex.php:59 libraries/export/odt.php:45 -#, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "Zobrazovať komentáre stĺpcov" +msgstr "Zobraziť komentáre" #: libraries/export/latex.php:62 libraries/export/odt.php:48 #: libraries/export/sql.php:44 From 8b5f1bb198adefe00f4eb9869f177f5a9c9a01ce Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:18:17 +0200 Subject: [PATCH 0958/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 80a1a87628..849b4d8465 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5475,10 +5475,9 @@ msgstr "Zobraziť komentáre" #: libraries/export/latex.php:62 libraries/export/odt.php:48 #: libraries/export/sql.php:44 -#, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Dostupné MIME typy" +msgstr "Zobraziť MIME typy" #: libraries/export/latex.php:139 libraries/export/sql.php:341 #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 From 9bfca14bf6e631df4d4cb8691d3bdb64e0ad5821 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:18:41 +0200 Subject: [PATCH 0959/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 849b4d8465..e65a2370e0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5518,10 +5518,9 @@ msgid "(Generates a report containing the data of a single table)" msgstr "(Generuje report obsahujúci dáta jednej tabuľky)" #: libraries/export/pdf.php:24 -#, fuzzy #| msgid "Report title" msgid "Report title:" -msgstr "Titulok výpisu" +msgstr "Názov výpisu:" #: libraries/export/php_array.php:16 msgid "PHP array" From 89ea8bd6decdcb9dabff6948b9b9c38aa9a0cbdf Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:19:11 +0200 Subject: [PATCH 0960/1652] Translation update done using Pootle. --- po/sk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index e65a2370e0..68f151810f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:18+0200\n" +"PO-Revision-Date: 2011-05-17 14:19+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5533,10 +5533,11 @@ msgid "" msgstr "" #: libraries/export/sql.php:35 -#, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" -msgstr "Pridať vlastný komentár do hlavičky (\\n oddeľuje riadky)" +msgstr "" +"Pridať vlastný komentár do hlavičky (\n" +" oddeľuje riadky)" #: libraries/export/sql.php:37 msgid "" From e8f7a9fa3ce01bde019e2e394b2b9c1527fe8a3b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:19:24 +0200 Subject: [PATCH 0961/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 68f151810f..9a22e69d83 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5558,10 +5558,9 @@ msgid "Add %s statement" msgstr "Pridať údaj %s" #: libraries/export/sql.php:91 -#, fuzzy #| msgid "Statements" msgid "Add statements:" -msgstr "Údaj" +msgstr "Pridať príkazy:" #: libraries/export/sql.php:111 msgid "CREATE TABLE options:" From 16e6429f07d5a014a7777419677d9eaab0b9a6d2 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:19:31 +0200 Subject: [PATCH 0962/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9a22e69d83..87e78f7290 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5677,10 +5677,9 @@ msgid "Object creation options (all are recommended)" msgstr "" #: libraries/export/xml.php:40 -#, fuzzy #| msgid "View" msgid "Views" -msgstr "Pohľad" +msgstr "Pohľady" #: libraries/export/xml.php:47 msgid "Export contents" From eca9b575219971c40cd6b6b67f7ce7c6394c9e10 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:19:44 +0200 Subject: [PATCH 0963/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 87e78f7290..a39105a155 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5775,7 +5775,7 @@ msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát v CSV vstupe na riadku %d." #: libraries/import/csv.php:324 -#, fuzzy, php-format +#, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." From fd6e81d6159c087ba57d44460f160b291bc1b6e0 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:19:53 +0200 Subject: [PATCH 0964/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a39105a155..53e8760727 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5807,7 +5807,6 @@ msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" #: libraries/import/sql.php:32 -#, fuzzy #| msgid "SQL compatibility mode" msgid "SQL compatibility mode:" msgstr "Režim kompatibility SQL" From b3ea589078ffe4aec7222c43773d125561d3a416 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:20:00 +0200 Subject: [PATCH 0965/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 53e8760727..b618a7b903 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:19+0200\n" +"PO-Revision-Date: 2011-05-17 14:20+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5823,7 +5823,6 @@ msgid "" msgstr "" #: libraries/kanji-encoding.lib.php:142 -#, fuzzy #| msgid "None" msgctxt "None encoding conversion" msgid "None" From fe0b9ad55a6e8d3f4bae6cdf6b2a6a06941f938f Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:20:13 +0200 Subject: [PATCH 0966/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b618a7b903..29c36580e7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5834,10 +5834,9 @@ msgid "Convert to Kana" msgstr "" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fri" msgid "From" -msgstr "Pi" +msgstr "Z" #: libraries/mult_submits.inc.php:252 msgid "To" From 24dd166fca8ba2d2aa0befc096b55cfaf0aec1f5 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:20:23 +0200 Subject: [PATCH 0967/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 29c36580e7..b6fe24434c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6070,7 +6070,6 @@ msgid "Reload navigation frame" msgstr "" #: libraries/plugin_interface.lib.php:336 -#, fuzzy #| msgid "This format has no options" msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" From e4668cfce22d5d8f552d29292632e805e9466ba3 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:20:32 +0200 Subject: [PATCH 0968/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b6fe24434c..043c4f56a0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6248,7 +6248,7 @@ msgstr "Vytvoriť Heslo" #: libraries/schema/Pdf_Relation_Schema.class.php:489 #: libraries/schema/Svg_Relation_Schema.class.php:369 #: libraries/schema/Visio_Relation_Schema.class.php:213 -#, fuzzy, php-format +#, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabuľka \"%s\" neexistuje!" From ec5412728cbdd760f50a829646ebaa2ef6a7ecd8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:20:45 +0200 Subject: [PATCH 0969/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 043c4f56a0..d82a936fc2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6306,10 +6306,9 @@ msgid "Create a page" msgstr "Vytvoriť novú Stránku" #: libraries/schema/User_Schema.class.php:99 -#, fuzzy #| msgid "Page number:" msgid "Page name" -msgstr "Číslo stránky:" +msgstr "Názov stránky" #: libraries/schema/User_Schema.class.php:103 #, fuzzy From 30f6dd50e2d04ad610aae63e5b49f8ad6877f2ee Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:21:06 +0200 Subject: [PATCH 0970/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index d82a936fc2..91c9922079 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:20+0200\n" +"PO-Revision-Date: 2011-05-17 14:21+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6311,10 +6311,9 @@ msgid "Page name" msgstr "Názov stránky" #: libraries/schema/User_Schema.class.php:103 -#, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" -msgstr "Automatické rozvrhnutie" +msgstr "Automatické rozvrhnutie podľa" #: libraries/schema/User_Schema.class.php:106 msgid "Internal relations" From 753af1df9d8a0959b8870c86d09a41cfaa120fa4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:21:20 +0200 Subject: [PATCH 0971/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 91c9922079..4f81570482 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6328,10 +6328,9 @@ msgid "Please choose a page to edit" msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť" #: libraries/schema/User_Schema.class.php:153 -#, fuzzy #| msgid "Select Tables" msgid "Select page" -msgstr "Vybrať Tabuľky" +msgstr "Zvoliť stránku" #: libraries/schema/User_Schema.class.php:211 msgid "Select Tables" From db369310cb4e4d4154e789fdd271011aeaa40743 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:21:39 +0200 Subject: [PATCH 0972/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4f81570482..5fcd618459 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6337,10 +6337,9 @@ msgid "Select Tables" msgstr "Vybrať Tabuľky" #: libraries/schema/User_Schema.class.php:346 -#, fuzzy #| msgid "Relational schema" msgid "Display relational schema" -msgstr "Relačná schéma" +msgstr "Zobraziť relačnú schému" #: libraries/schema/User_Schema.class.php:356 msgid "Select Export Relational Type" From a4d9148c7fc0c9d0d72f3ce32b1fc46461269000 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:21:55 +0200 Subject: [PATCH 0973/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5fcd618459..5a1ae95ccd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6374,10 +6374,9 @@ msgid "Portrait" msgstr "Na výšku" #: libraries/schema/User_Schema.class.php:394 -#, fuzzy #| msgid "Creation" msgid "Orientation" -msgstr "Vytvorenie" +msgstr "Orientácia" #: libraries/schema/User_Schema.class.php:407 msgid "Paper size" From a7c3da34d64bf40b3f7c7502a0790c4a0d25b2d1 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:22:01 +0200 Subject: [PATCH 0974/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5a1ae95ccd..c90fa4abf7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:21+0200\n" +"PO-Revision-Date: 2011-05-17 14:22+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6406,7 +6406,6 @@ msgid "Unknown language: %1$s." msgstr "Neznámy jazyk: %1$s." #: libraries/select_server.lib.php:38 libraries/select_server.lib.php:44 -#, fuzzy #| msgid "Current server" msgid "Current Server" msgstr "Aktuálny server" From 8f1e0e8cfbdbc0b8c6de02be999cd55699b4c8f7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:22:08 +0200 Subject: [PATCH 0975/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c90fa4abf7..dedb0cac44 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6438,10 +6438,9 @@ msgid "Synchronize" msgstr "Synchronizovať" #: libraries/server_links.inc.php:99 -#, fuzzy #| msgid "settings" msgid "Settings" -msgstr "nastavenia" +msgstr "Nastavenia" #: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1115 msgid "Source database" From 6826095cbe0ce8933445d0430fd5ce0d14a9202b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:23:44 +0200 Subject: [PATCH 0976/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index dedb0cac44..087235484d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:22+0200\n" +"PO-Revision-Date: 2011-05-17 14:23+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5537,7 +5537,7 @@ msgstr "" msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Pridať vlastný komentár do hlavičky (\n" -" oddeľuje riadky)" +" oddeľuje riadky):" #: libraries/export/sql.php:37 msgid "" From c94c34e28364481d7ca5fb3dc7c8a309a8ff9eee Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:24:09 +0200 Subject: [PATCH 0977/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 087235484d..11ad973e0d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:23+0200\n" +"PO-Revision-Date: 2011-05-17 14:24+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3229,7 +3229,7 @@ msgstr "Import mien (5.00 namiesto $5.00)" #: libraries/config/messages.inc.php:254 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "Importovať percentá ako desatinné čísla (0,12 namiesto 12,00%|" +msgstr "Importovať percentá ako desatinné čísla (0.12 namiesto 12.00%|" #: libraries/config/messages.inc.php:255 #| msgid "Number of records (queries) to skip from start" From b446752a48d6846f17babfc1e5fec8563de4d5a8 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:25:17 +0200 Subject: [PATCH 0978/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 11ad973e0d..2c851c8947 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:24+0200\n" +"PO-Revision-Date: 2011-05-17 14:25+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6622,7 +6622,7 @@ msgstr "" "Ak je pole typu \"enum\" alebo \"set\", prosím zadávajte hodnoty v tvare: " "'a','b','c'...
    Ak potrebujete zadať spätné lomítko (\"\\\") alebo apostrof " "(\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho spätného " -"lomítka (napr. '\\\\xyz' alebo 'a\\'b'." +"lomítka (napr. '\\\\xyz' alebo 'a\\'b')." #: libraries/tbl_properties.inc.php:105 msgid "" From ace7873763e29fe5c32173651def5969719026f6 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:26:11 +0200 Subject: [PATCH 0979/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2c851c8947..1514544bd4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:25+0200\n" +"PO-Revision-Date: 2011-05-17 14:26+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" From 1f2ca3af362ed3ae806783cae42322ceef9fd53c Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:26:41 +0200 Subject: [PATCH 0980/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1514544bd4..2d04e78565 100644 --- a/po/sk.po +++ b/po/sk.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Cieľové okno prehliadača nemohlo byť aktualizované. Možno ste zatvorili " "rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " -"bezpečnostných nastavení" +"bezpečnostných nastavení." #: browse_foreigners.php:151 libraries/common.lib.php:2828 #: libraries/common.lib.php:2835 libraries/common.lib.php:3014 From 74d34872773678183466746deb7c3b77ca94dfc9 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:27:06 +0200 Subject: [PATCH 0981/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2d04e78565..437b640d10 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:26+0200\n" +"PO-Revision-Date: 2011-05-17 14:27+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -113,7 +113,7 @@ msgid "" "for more information." msgstr "" "Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na " -"www.phpmyadmin.net ." +"www.phpmyadmin.net." #: db_create.php:58 #, php-format From a114fd0c998db69cb31aff2a1f0f78ef77ff838b Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:27:14 +0200 Subject: [PATCH 0982/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 437b640d10..d4c795960b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1018,7 +1018,7 @@ msgstr "Chcete vypnúť všetky odkazy do skladiska BLOBov v databáze %s?" #: js/messages.php:46 msgid "Missing value in the form!" -msgstr "Chýbajúca položka vo formulári !" +msgstr "Chýbajúca položka vo formulári!" #: js/messages.php:47 msgid "This is not a number!" From e3ac37941856f98dc92b34c12bc4a577c268d90e Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:27:20 +0200 Subject: [PATCH 0983/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d4c795960b..107d9bf1ee 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1111,7 +1111,7 @@ msgstr "Mením znakovú sadu" #: js/messages.php:77 msgid "Table must have at least one column" -msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec." +msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec" #: js/messages.php:78 msgid "Create Table" From d4de704065623da51697e307bdc18892db52a499 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:27:27 +0200 Subject: [PATCH 0984/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 107d9bf1ee..4c950d5dd1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1743,7 +1743,7 @@ msgstr "Možete zadať medzerou oddelený hostname/IP adresu a port." #: libraries/auth/cookie.auth.lib.php:243 msgid "Server:" -msgstr "Server" +msgstr "Server:" #: libraries/auth/cookie.auth.lib.php:248 msgid "Username:" From 5074ca15fc94b46289fe8c8573bc1e4b0fd036d7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:27:55 +0200 Subject: [PATCH 0985/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4c950d5dd1..69f79ecdeb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3255,7 +3255,7 @@ msgstr "Koľko riadkov môže byť vložených naraz" #: libraries/config/messages.inc.php:263 msgid "Number of inserted rows" -msgstr "Počet vložených riadkov." +msgstr "Počet vložených riadkov" #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" From f51214a46ab4bbf679e770f5efc38fabd5999f00 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:28:00 +0200 Subject: [PATCH 0986/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 69f79ecdeb..a6b33a63a8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:27+0200\n" +"PO-Revision-Date: 2011-05-17 14:28+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3280,7 +3280,7 @@ msgstr "Zobraziť výber serverov" #: libraries/config/messages.inc.php:269 #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" -msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek." +msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek" #: libraries/config/messages.inc.php:270 msgid "String that separates databases into different tree levels" From e858d85e76d11eeac61a643378ced0897eada1b7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:28:19 +0200 Subject: [PATCH 0987/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a6b33a63a8..ae864e10d3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3737,9 +3737,8 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:375 -#, fuzzy msgid "Control user" -msgstr "Ovládať slave:" +msgstr "Kontrolný užívateľ" #: libraries/config/messages.inc.php:376 msgid "Count tables when showing database list" From 2d388d5856361dcadce0433deb6c08fe8555e13d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 14:28:25 +0200 Subject: [PATCH 0988/1652] Update po files --- po/af.po | 2 +- po/ar.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/be@latin.po | 2 +- po/bg.po | 2 +- po/bn.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/en_GB.po | 2 +- po/es.po | 2 +- po/et.po | 2 +- po/eu.po | 2 +- po/fa.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/gl.po | 2 +- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/id.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/ka.po | 2 +- po/ko.po | 2 +- po/lt.po | 2 +- po/lv.po | 2 +- po/mk.po | 2 +- po/ml.po | 2 +- po/mn.po | 2 +- po/ms.po | 2 +- po/nb.po | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/si.po | 2 +- po/sk.po | 8 ++++---- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/sv.po | 2 +- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tr.po | 2 +- po/tt.po | 2 +- po/ug.po | 2 +- po/uk.po | 2 +- po/ur.po | 2 +- po/uz.po | 2 +- po/uz@latin.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 63 files changed, 66 insertions(+), 66 deletions(-) diff --git a/po/af.po b/po/af.po index dfb47f324c..4bcb300db0 100644 --- a/po/af.po +++ b/po/af.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" diff --git a/po/ar.po b/po/ar.po index 4d186a37c7..b716a17d00 100644 --- a/po/ar.po +++ b/po/ar.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" diff --git a/po/az.po b/po/az.po index f3e9bbb255..a22e342dd9 100644 --- a/po/az.po +++ b/po/az.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" diff --git a/po/be.po b/po/be.po index e70dfccb96..0557710c7e 100644 --- a/po/be.po +++ b/po/be.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" diff --git a/po/be@latin.po b/po/be@latin.po index 5ef89d6364..c096453222 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" diff --git a/po/bg.po b/po/bg.po index a505103ed8..64b871f148 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-22 12:51+0200\n" diff --git a/po/bn.po b/po/bn.po index c60f71d72d..c6d2efdbd7 100644 --- a/po/bn.po +++ b/po/bn.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" diff --git a/po/bs.po b/po/bs.po index bab31357e3..aab0ca64f2 100644 --- a/po/bs.po +++ b/po/bs.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" diff --git a/po/ca.po b/po/ca.po index aa45d342df..9e52bee4d0 100644 --- a/po/ca.po +++ b/po/ca.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" diff --git a/po/cs.po b/po/cs.po index 42ee340d67..743d5b0687 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" diff --git a/po/cy.po b/po/cy.po index e9a86df12d..d8e2bf0e14 100644 --- a/po/cy.po +++ b/po/cy.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" diff --git a/po/da.po b/po/da.po index d08e51925c..fcf770b957 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" diff --git a/po/de.po b/po/de.po index 643be2b7bb..7e13d59813 100644 --- a/po/de.po +++ b/po/de.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" diff --git a/po/el.po b/po/el.po index 34ff50f2da..27e1be0dd7 100644 --- a/po/el.po +++ b/po/el.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-05 11:15+0200\n" diff --git a/po/en_GB.po b/po/en_GB.po index 5d6af4f9f9..5a206eb908 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 16:24+0200\n" diff --git a/po/es.po b/po/es.po index 4089cbe233..551dc8af75 100644 --- a/po/es.po +++ b/po/es.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-02 11:10+0200\n" diff --git a/po/et.po b/po/et.po index 6e73fb91ce..6fcd3e4752 100644 --- a/po/et.po +++ b/po/et.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" diff --git a/po/eu.po b/po/eu.po index 5450398a82..c0f76b086f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" diff --git a/po/fa.po b/po/fa.po index 1072f6af0b..97d7832a2c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" diff --git a/po/fi.po b/po/fi.po index 030fdc335a..5a3c3402bc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" diff --git a/po/fr.po b/po/fr.po index 0cf5818526..13eff6603f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 19:23+0200\n" diff --git a/po/gl.po b/po/gl.po index 5fa56b3a42..29f2fc4d11 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" diff --git a/po/he.po b/po/he.po index 5beccf37ae..e066b521f9 100644 --- a/po/he.po +++ b/po/he.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" diff --git a/po/hi.po b/po/hi.po index dd9a008eff..411212ace5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-24 00:23+0200\n" diff --git a/po/hr.po b/po/hr.po index 575fa302c9..06bf7d6c08 100644 --- a/po/hr.po +++ b/po/hr.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" diff --git a/po/hu.po b/po/hu.po index de40b8e644..954dd44906 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-05-05 12:49+0200\n" diff --git a/po/id.po b/po/id.po index 29479f9c82..18ddb7e8ca 100644 --- a/po/id.po +++ b/po/id.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" diff --git a/po/it.po b/po/it.po index b371af11a5..2d60785e72 100644 --- a/po/it.po +++ b/po/it.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-05 14:27+0200\n" diff --git a/po/ja.po b/po/ja.po index 4e6951a2a6..bcfe71c274 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-05-05 11:38+0200\n" diff --git a/po/ka.po b/po/ka.po index eac02caa51..9941a82c73 100644 --- a/po/ka.po +++ b/po/ka.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" diff --git a/po/ko.po b/po/ko.po index 87966a1753..fc019e19c5 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" diff --git a/po/lt.po b/po/lt.po index 20734961df..78d59d0962 100644 --- a/po/lt.po +++ b/po/lt.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" diff --git a/po/lv.po b/po/lv.po index 5dcda8c274..e74f550f50 100644 --- a/po/lv.po +++ b/po/lv.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" diff --git a/po/mk.po b/po/mk.po index f09bb001c5..6dda875120 100644 --- a/po/mk.po +++ b/po/mk.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" diff --git a/po/ml.po b/po/ml.po index 9153065dd4..e14f263556 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the phpMyAdmin package. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" diff --git a/po/mn.po b/po/mn.po index c6d352de4c..c028ea191a 100644 --- a/po/mn.po +++ b/po/mn.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" diff --git a/po/ms.po b/po/ms.po index 5857e3563e..02b9ad06f1 100644 --- a/po/ms.po +++ b/po/ms.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" diff --git a/po/nb.po b/po/nb.po index 76b25d0533..a9414f1985 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" diff --git a/po/nl.po b/po/nl.po index 3161a955af..1c0ffa7f84 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-16 20:18+0200\n" diff --git a/po/pl.po b/po/pl.po index 87ab0dad72..5b51d66a9f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" diff --git a/po/pt.po b/po/pt.po index 73d4f845c0..28e2acaa16 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 7af176751a..14ddc75735 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-14 17:44+0200\n" diff --git a/po/ro.po b/po/ro.po index 52fca6f1de..f3e0f027bf 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" diff --git a/po/ru.po b/po/ru.po index 16847739ab..5385fdbf3a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-13 21:17+0200\n" diff --git a/po/si.po b/po/si.po index f1a4b0d876..b784534888 100644 --- a/po/si.po +++ b/po/si.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-05-04 14:56+0200\n" diff --git a/po/sk.po b/po/sk.po index 1d5ba67229..1b9c736586 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" @@ -4411,7 +4411,7 @@ msgstr "" #: libraries/config/messages.inc.php:502 msgid "ZIP" -msgstr "" +msgstr "ZIP" #: libraries/config/setup.forms.php:41 #, fuzzy @@ -4421,11 +4421,11 @@ msgstr "Konfiguračný súbor" #: libraries/config/setup.forms.php:45 msgid "Cookie authentication" -msgstr "" +msgstr "Overovanie pomocou cookie" #: libraries/config/setup.forms.php:48 msgid "HTTP authentication" -msgstr "" +msgstr "HTTP overovanie" #: libraries/config/setup.forms.php:51 msgid "Signon authentication" diff --git a/po/sl.po b/po/sl.po index 2652731320..513738c275 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-24 22:38+0200\n" diff --git a/po/sq.po b/po/sq.po index 523b9e9c0b..31293836b3 100644 --- a/po/sq.po +++ b/po/sq.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" diff --git a/po/sr.po b/po/sr.po index 3580dc03e0..fce4777144 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" diff --git a/po/sr@latin.po b/po/sr@latin.po index 1188f79620..3b972481d1 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" diff --git a/po/sv.po b/po/sv.po index c9b32989ce..05ff9e505e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-16 21:42+0200\n" diff --git a/po/ta.po b/po/ta.po index 18df55a712..e4b385c791 100644 --- a/po/ta.po +++ b/po/ta.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" diff --git a/po/te.po b/po/te.po index c9e1ffa396..5a849185a4 100644 --- a/po/te.po +++ b/po/te.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" diff --git a/po/th.po b/po/th.po index c403f3d191..066021a49c 100644 --- a/po/th.po +++ b/po/th.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" diff --git a/po/tr.po b/po/tr.po index 5b31d839d8..5a44d6858e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-17 19:11+0200\n" diff --git a/po/tt.po b/po/tt.po index 98141d27cf..312572fff6 100644 --- a/po/tt.po +++ b/po/tt.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" diff --git a/po/ug.po b/po/ug.po index 1bc5b91733..90eaa22c58 100644 --- a/po/ug.po +++ b/po/ug.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" diff --git a/po/uk.po b/po/uk.po index 924c912656..9acd5b868e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" diff --git a/po/ur.po b/po/ur.po index 3ae256691d..2ded270e1f 100644 --- a/po/ur.po +++ b/po/ur.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" diff --git a/po/uz.po b/po/uz.po index c715b64eb2..991d146088 100644 --- a/po/uz.po +++ b/po/uz.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" diff --git a/po/uz@latin.po b/po/uz@latin.po index 38ee684bd0..3bafea2193 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 0d36422559..874000ef6b 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-04 09:47+0200\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 6f52c6df46..5d5e7b2fd2 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-dev\n" +"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-11-05 14:13+0200\n" From f5591a209664e24dc4a4c0f47ef93ba051cabcaf Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:28:34 +0200 Subject: [PATCH 0989/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ae864e10d3..8f0e5fb7e0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4176,9 +4176,8 @@ msgstr "" #: libraries/config/messages.inc.php:471 tbl_tracking.php:454 #: tbl_tracking.php:511 -#, fuzzy msgid "Username" -msgstr "Používateľ:" +msgstr "Užívateľ" #: libraries/config/messages.inc.php:472 msgid "" From a9b1e8bab1f86cccb6d0f3efc06d31951d854767 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:29:09 +0200 Subject: [PATCH 0990/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8f0e5fb7e0..875a7e7e7a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:28+0200\n" +"PO-Revision-Date: 2011-05-17 14:29+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4724,9 +4724,8 @@ msgid "" msgstr "" #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 -#, fuzzy msgid "Encoding Conversion:" -msgstr "Verzia MySQL klienta" +msgstr "Prevod znakovej sady:" #: libraries/display_import.lib.php:66 msgid "" From 919f3708fc0b60f4d4c81c40d0bd9f324d54fe92 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:29:21 +0200 Subject: [PATCH 0991/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 875a7e7e7a..438e91c9e2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4814,7 +4814,7 @@ msgstr "" #: libraries/display_import.lib.php:228 #| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" -msgstr "Počet riadkov od začiatku, ktoré sa majú preskočiť" +msgstr "Počet riadkov od začiatku, ktoré sa majú preskočiť:" #: libraries/display_import.lib.php:250 msgid "Format-Specific Options:" From b067ea51940a48709677e71ee2020360368403f9 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:30:11 +0200 Subject: [PATCH 0992/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 438e91c9e2..62923ff755 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:29+0200\n" +"PO-Revision-Date: 2011-05-17 14:30+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4936,7 +4936,7 @@ msgstr "celkovo" #: libraries/display_tbl.lib.php:2063 sql.php:628 #, php-format msgid "Query took %01.4f sec" -msgstr "Dopyt zabral %01.4f sek." +msgstr "Dopyt zabral %01.4f s" #: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 From 2654f093b56bea5df2e7456ec864d0622becb2fc Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:30:41 +0200 Subject: [PATCH 0993/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 62923ff755..c5650d4429 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5379,10 +5379,9 @@ msgid "The PrimeBase Media Streaming (PBMS) home page" msgstr "" #: libraries/export/csv.php:21 libraries/import/csv.php:27 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Riadky ukončené" +msgstr "Poliad oddelené s:" #: libraries/export/csv.php:22 libraries/import/csv.php:28 #, fuzzy From 5cffa49d3f5d0413fbfb915c482473c9c49ea8ec Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:31:00 +0200 Subject: [PATCH 0994/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c5650d4429..105ea62dc8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:30+0200\n" +"PO-Revision-Date: 2011-05-17 14:31+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5381,7 +5381,7 @@ msgstr "" #: libraries/export/csv.php:21 libraries/import/csv.php:27 #| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Poliad oddelené s:" +msgstr "Polia oddelené s:" #: libraries/export/csv.php:22 libraries/import/csv.php:28 #, fuzzy From ea643bf13455c6bfdf0af90db23e0030759ea382 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:31:15 +0200 Subject: [PATCH 0995/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 105ea62dc8..61a44bb7b3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5384,10 +5384,9 @@ msgid "Columns separated with:" msgstr "Polia oddelené s:" #: libraries/export/csv.php:22 libraries/import/csv.php:28 -#, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" -msgstr "Polia uzatvorené" +msgstr "Polia uzatvorené do:" #: libraries/export/csv.php:23 libraries/import/csv.php:29 #| msgid "Fields escaped by" From cff5e9a8d32c7513e6404fa136b747f9e56f39f4 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:32:46 +0200 Subject: [PATCH 0996/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 61a44bb7b3..05bde40260 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:31+0200\n" +"PO-Revision-Date: 2011-05-17 14:32+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -966,7 +966,7 @@ msgstr "Kliknite pre zrušenie vyberu" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 msgid "\"DROP DATABASE\" statements are disabled." -msgstr "Možnosť \"DROP DATABASE\" vypnutá." +msgstr "Príkaz \"DROP DATABASE\" je vypnutý." #: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 msgid "Do you really want to " From 51270d3c787143d4bd13973cb189ac6c1f628167 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:33:27 +0200 Subject: [PATCH 0997/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 05bde40260..c8ecf8b68a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:32+0200\n" +"PO-Revision-Date: 2011-05-17 14:33+0200\n" "Last-Translator: \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1631,7 +1631,7 @@ msgstr "" #: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." -msgstr "Úložný systém %s je na tomto MySQL servri dostupný." +msgstr "Úložný systém %s je na tomto MySQL serveri dostupný." #: libraries/StorageEngine.class.php:357 #, php-format From 3506df7effd372f38b41eba93027067d2a0d0ca7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 17 May 2011 14:33:55 +0200 Subject: [PATCH 0998/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c8ecf8b68a..adf7df76f0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1636,7 +1636,7 @@ msgstr "Úložný systém %s je na tomto MySQL serveri dostupný." #: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." -msgstr "Úložný systém %s bol na tomto MySQL servri deaktivovaný." +msgstr "Úložný systém %s bol vypnutý na tomto MySQL servri." #: libraries/StorageEngine.class.php:361 #, php-format From 4fbb11c2dcfe7f8ca6c62788ce33c03a05802d1c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:00:59 +0200 Subject: [PATCH 0999/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0e412f788d..a2eb7ed116 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 11:54+0200\n" +"PO-Revision-Date: 2011-05-17 15:00+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -328,7 +328,7 @@ msgstr "Добавяне на ограничение" #: db_operations.php:528 msgid "Switch to copied database" -msgstr "Прехвърляне към копираната БД" +msgstr "Показване на копираната БД" #: db_operations.php:552 libraries/Index.class.php:447 #: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 From 51b4dcaf11c734d9f6d91b38b43562972019745f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:01:24 +0200 Subject: [PATCH 1000/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a2eb7ed116..c42db3afd1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:00+0200\n" +"PO-Revision-Date: 2011-05-17 15:01+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2094,7 +2094,7 @@ msgstr "Край" #: libraries/common.lib.php:2447 #, php-format msgid "Jump to database "%s"." -msgstr "Прескочи до БД "%s"." +msgstr "Показване БД "%s"." #: libraries/common.lib.php:2466 #, php-format From cc6f1f528853fab109819e74ae226fa064b505cb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:03:38 +0200 Subject: [PATCH 1001/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c42db3afd1..5f5b9568b3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:01+0200\n" +"PO-Revision-Date: 2011-05-17 15:03+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2136,7 +2136,7 @@ msgstr "Операции" #: libraries/common.lib.php:2966 msgid "Browse your computer:" -msgstr "" +msgstr "Разглеждане на компютъра:" #: libraries/common.lib.php:2979 #, php-format From 1df41d64a1f3179868d45be77edd333a38fe71ce Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:03:57 +0200 Subject: [PATCH 1002/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 5f5b9568b3..38764ffb7c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2764,7 +2764,7 @@ msgstr "CSV" #: libraries/config/messages.inc.php:157 msgid "Developer" -msgstr "" +msgstr "Разработчик" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" From 49dba883d1eb803692900b169880fb21f5f3cf3f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:04:17 +0200 Subject: [PATCH 1003/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 38764ffb7c..d96e845f24 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:03+0200\n" +"PO-Revision-Date: 2011-05-17 15:04+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2768,7 +2768,7 @@ msgstr "Разработчик" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Настройки за разработчици на phpMyAdmin" #: libraries/config/messages.inc.php:159 msgid "Edit mode" From 609491c59a3a1a241dcb5ae0022576ce069b1d77 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:04:44 +0200 Subject: [PATCH 1004/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d96e845f24..1f09e30a64 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2793,7 +2793,7 @@ msgstr "" #: libraries/config/messages.inc.php:165 msgid "General" -msgstr "" +msgstr "Общи" #: libraries/config/messages.inc.php:166 msgid "Set some commonly used options" From fae47eba0cc347c5212dca94d2374d61d241bbb9 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:05:28 +0200 Subject: [PATCH 1005/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 1f09e30a64..ea1f0bff2d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:04+0200\n" +"PO-Revision-Date: 2011-05-17 15:05+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2789,7 +2789,7 @@ msgstr "" #: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Свойства" #: libraries/config/messages.inc.php:165 msgid "General" From 8cd1f1800f3f9fdef75e1d3e877d7a716412a1ce Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:05:53 +0200 Subject: [PATCH 1006/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index ea1f0bff2d..d4b6eef843 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2815,7 +2815,7 @@ msgstr "" #: libraries/config/messages.inc.php:170 msgid "Import / export" -msgstr "" +msgstr "Импорт / експорт" #: libraries/config/messages.inc.php:171 msgid "Set import and export directories and compression options" From 795cf67ef5d16fd00a0e761324ccece17fda2155 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:06:54 +0200 Subject: [PATCH 1007/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index d4b6eef843..ebc4fbf2da 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:05+0200\n" +"PO-Revision-Date: 2011-05-17 15:06+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2831,7 +2831,7 @@ msgstr "Опции за показване на БД" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Управляваща рамка" #: libraries/config/messages.inc.php:177 msgid "Customize appearance of the navigation frame" From 7be9a8d4ea9ccc3c78ba03854633fe0ff050b04e Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:07:29 +0200 Subject: [PATCH 1008/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ebc4fbf2da..4e093a6ce8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:06+0200\n" +"PO-Revision-Date: 2011-05-17 15:07+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2844,7 +2844,7 @@ msgstr "Сървъри" #: libraries/config/messages.inc.php:179 msgid "Servers display options" -msgstr "" +msgstr "Настройки показване сървъри" #: libraries/config/messages.inc.php:181 msgid "Tables display options" From 337439fef30de0cb7cb1024f0b7c0b7fef4e3059 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:07:36 +0200 Subject: [PATCH 1009/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 4e093a6ce8..24b5d0c542 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2848,7 +2848,7 @@ msgstr "Настройки показване сървъри" #: libraries/config/messages.inc.php:181 msgid "Tables display options" -msgstr "" +msgstr "Настройки показване таблици" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" From 4905d3a6d8b0b04ef8345170750fba773637a002 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:07:45 +0200 Subject: [PATCH 1010/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 24b5d0c542..2ee2f3d8f1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2852,7 +2852,7 @@ msgstr "Настройки показване таблици" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Главна рамка" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" From d264be75f797b2c1dd230ed7ebfd24c3b4545160 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:07:50 +0200 Subject: [PATCH 1011/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2ee2f3d8f1..a94d39c151 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2856,7 +2856,7 @@ msgstr "Главна рамка" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" -msgstr "" +msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 msgid "Open Document" From 3d00e3e4cecc29c8fcbd69a5aa0770bd22b858ac Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:08:09 +0200 Subject: [PATCH 1012/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a94d39c151..7bec84b5dc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:07+0200\n" +"PO-Revision-Date: 2011-05-17 15:08+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2860,7 +2860,7 @@ msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 msgid "Open Document" -msgstr "Отваряне на документ" +msgstr "Open Document" #: libraries/config/messages.inc.php:187 msgid "Other core settings" From dbb6a365112fe7774c043d9cda0af6c39451b84b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:08:31 +0200 Subject: [PATCH 1013/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 7bec84b5dc..5ea3e5d736 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2864,7 +2864,7 @@ msgstr "Open Document" #: libraries/config/messages.inc.php:187 msgid "Other core settings" -msgstr "" +msgstr "Други основни настройки" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" From 4d9805ac8ac538e19eade6ebc4b75ac8ce97d17f Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:09:06 +0200 Subject: [PATCH 1014/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 5ea3e5d736..659fbd147d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:08+0200\n" +"PO-Revision-Date: 2011-05-17 15:09+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2868,7 +2868,7 @@ msgstr "Други основни настройки" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Настройки, които не са за другаде" #: libraries/config/messages.inc.php:189 msgid "Page titles" From 094b3283119f50d7fa42295493b209ab95305f54 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:09:18 +0200 Subject: [PATCH 1015/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 659fbd147d..34f7727579 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2872,7 +2872,7 @@ msgstr "Настройки, които не са за другаде" #: libraries/config/messages.inc.php:189 msgid "Page titles" -msgstr "" +msgstr "Заглавия на страниците" #: libraries/config/messages.inc.php:190 msgid "" From 084e0101f53b3e005e6cdec3bac40faeff52e297 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:09:30 +0200 Subject: [PATCH 1016/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 34f7727579..a1ceef87c5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2894,7 +2894,7 @@ msgstr "" #: libraries/config/messages.inc.php:193 msgid "Security" -msgstr "" +msgstr "Сигурност" #: libraries/config/messages.inc.php:194 msgid "" From 05457375de23815d3ae71ae5aec08f177ddb5527 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:09:42 +0200 Subject: [PATCH 1017/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index a1ceef87c5..81efde1a4a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2904,7 +2904,7 @@ msgstr "" #: libraries/config/messages.inc.php:195 msgid "Basic settings" -msgstr "" +msgstr "Основни настройки" #: libraries/config/messages.inc.php:196 msgid "Authentication" From d89e53fc8f5fae985b1817d9712d9463f7315afe Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:09:55 +0200 Subject: [PATCH 1018/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 81efde1a4a..a86214b937 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2916,7 +2916,7 @@ msgstr "Настройки по удостоверяване" #: libraries/config/messages.inc.php:198 msgid "Server configuration" -msgstr "" +msgstr "Конфигурация на сървър" #: libraries/config/messages.inc.php:199 msgid "" From 23202bff9aa8cbc4986f23b34dc80fdf939a88bb Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:10:20 +0200 Subject: [PATCH 1019/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a86214b937..0b7072db4b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:09+0200\n" +"PO-Revision-Date: 2011-05-17 15:10+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2916,7 +2916,7 @@ msgstr "Настройки по удостоверяване" #: libraries/config/messages.inc.php:198 msgid "Server configuration" -msgstr "Конфигурация на сървър" +msgstr "Сървърна конфигурация" #: libraries/config/messages.inc.php:199 msgid "" From 318f3acbb39a65860ce70eda1365fe17f21c9fb1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:11:25 +0200 Subject: [PATCH 1020/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 0b7072db4b..171d2868d7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:10+0200\n" +"PO-Revision-Date: 2011-05-17 15:11+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2926,7 +2926,7 @@ msgstr "" #: libraries/config/messages.inc.php:200 msgid "Enter server connection parameters" -msgstr "" +msgstr "Параметри за връзка със сървъра" #: libraries/config/messages.inc.php:201 msgid "Configuration storage" From 821c5786e39f4c9b707c7f4fb3337f6ce7442fcc Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:12:03 +0200 Subject: [PATCH 1021/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 171d2868d7..edf079aa20 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:11+0200\n" +"PO-Revision-Date: 2011-05-17 15:12+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2930,7 +2930,7 @@ msgstr "Параметри за връзка със сървъра" #: libraries/config/messages.inc.php:201 msgid "Configuration storage" -msgstr "" +msgstr "Хранилище за конфигурацията" #: libraries/config/messages.inc.php:202 msgid "" From 1d17dfc39c42a65e87a52a0046f24833bc0f0ba6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:12:24 +0200 Subject: [PATCH 1022/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index edf079aa20..fd3ebaf32f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2941,7 +2941,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 msgid "Changes tracking" -msgstr "" +msgstr "Следене за промени" #: libraries/config/messages.inc.php:204 msgid "" From dbf596559c3806c0feb11d73fa908956bb64f11d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:14:06 +0200 Subject: [PATCH 1023/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index fd3ebaf32f..d4d543d0c3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:12+0200\n" +"PO-Revision-Date: 2011-05-17 15:14+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2158,7 +2158,7 @@ msgstr "" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "Отворен" #: libraries/config.values.php:74 msgid "Closed" From 1a6cab6b8c84d7c458ed4eed368dfc47dddadfe6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:14:23 +0200 Subject: [PATCH 1024/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index d4d543d0c3..358ae10b90 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4197,7 +4197,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" -msgstr "" +msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:262 #: libraries/config/user_preferences.forms.php:165 From 0ebac96dc8a45feb2637aa9647150486e5b889d0 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:14:30 +0200 Subject: [PATCH 1025/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 358ae10b90..a383336cfa 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4229,7 +4229,7 @@ msgstr "" #: libraries/config/setup.forms.php:360 #: libraries/config/user_preferences.forms.php:262 libraries/export/odt.php:21 msgid "Open Document Text" -msgstr "" +msgstr "Open Document Text" #: libraries/config/validate.lib.php:202 libraries/config/validate.lib.php:209 msgid "Could not connect to MySQL server" From 3b25028f3d123915ad610ad2e4a0aa535b128893 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:16:25 +0200 Subject: [PATCH 1026/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index a383336cfa..4931874884 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:14+0200\n" +"PO-Revision-Date: 2011-05-17 15:16+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -8182,7 +8182,7 @@ msgstr "" #: server_status.php:138 msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" +msgstr "Брой временни таблици отворени от подчинена на SQL нишка." #: server_status.php:139 msgid "" From b1801049b84251b75cb97cc2b5b316502a27a33c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:16:34 +0200 Subject: [PATCH 1027/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 4931874884..cbfac73d71 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8182,7 +8182,7 @@ msgstr "" #: server_status.php:138 msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Брой временни таблици отворени от подчинена на SQL нишка." +msgstr "Брой временни таблици отворени от подчинена SQL нишка." #: server_status.php:139 msgid "" From d6b8d71f95b9c41b11de35a69269213e9902a5c8 Mon Sep 17 00:00:00 2001 From: Gareth Pursehouse Date: Tue, 17 May 2011 01:38:14 -0700 Subject: [PATCH 1028/1652] ctrl-enter in sql editor to submit query instead of having to click "go" button --- js/functions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index fd8b36bf28..570f578ba1 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1195,7 +1195,12 @@ $(document).ready(function(){ } }); - $('#sqlquery').focus(); + $('#sqlquery').focus().keydown(function (e) { + if (e.ctrlKey && e.keyCode == 13) { + $("#sqlqueryform").submit(); + } + }); + if ($('#input_username')) { if ($('#input_username').val() == '') { $('#input_username').focus(); From 3e239ea5ef7238cc4212358f2d78629cf18a0bc4 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 15:16:59 +0200 Subject: [PATCH 1029/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index cbfac73d71..7bc4275c5e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8245,7 +8245,7 @@ msgstr "" #: server_status.php:150 msgid "The number of currently open connections." -msgstr "" +msgstr "Брой текущо отворени връзки." #: server_status.php:151 msgid "" From 39210c606d8239d3a000cb2181e11b7fe47a5284 Mon Sep 17 00:00:00 2001 From: Brian Carcich Date: Tue, 17 May 2011 15:21:15 +0200 Subject: [PATCH 1030/1652] Add support to output zip content on the fly. --- libraries/zip.lib.php | 68 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 54 insertions(+), 14 deletions(-) diff --git a/libraries/zip.lib.php b/libraries/zip.lib.php index a8bcb98d07..081d3820fc 100644 --- a/libraries/zip.lib.php +++ b/libraries/zip.lib.php @@ -27,6 +27,13 @@ */ class zipfile { + /** + * Whether to echo zip as it's built or return as string from -> file + * + * @var boolean $doWrite + */ + var $doWrite = false; + /** * Array to store compressed data * @@ -56,6 +63,21 @@ class zipfile var $old_offset = 0; + /** + * Sets member variable this -> doWrite to true + * - Should be called immediately after class instantiantion + * - If set to true, then ZIP archive are echo'ed to STDOUT as each + * file is added via this -> addfile(), and central directories are + * echoed to STDOUT on final call to this -> file(). Also, + * this -> file() returns an empty string so it is safe to issue a + * "echo $zipfile;" command + * + * @access public + */ + function setDoWrite() { + $this -> doWrite = true; + } // end of the 'setDoWrite()' method + /** * Converts an Unix timestamp to a four byte DOS date and time format (date * in high two bytes, time in low two bytes allowing magnitude comparison). @@ -133,8 +155,12 @@ class zipfile //$fr .= pack('V', $c_len); // compressed filesize //$fr .= pack('V', $unc_len); // uncompressed filesize - // add this entry to array - $this -> datasec[] = $fr; + // echo this entry on the fly, ... + if ( $this -> doWrite) { + echo $fr; + } else { // ... OR add this entry to array + $this -> datasec[] = $fr; + } // now add to central directory record $cdrec = "\x50\x4b\x01\x02"; @@ -165,26 +191,40 @@ class zipfile /** - * Dumps out file + * Echo central dir if ->doWrite==true, else build string to return * - * @return string the zipped file + * @return string if ->doWrite {empty string} else the ZIP file contents * * @access public */ function file() { - $data = implode('', $this -> datasec); $ctrldir = implode('', $this -> ctrl_dir); - return - $data . - $ctrldir . - $this -> eof_ctrl_dir . - pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk" - pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall - pack('V', strlen($ctrldir)) . // size of central dir - pack('V', strlen($data)) . // offset to start of central dir - "\x00\x00"; // .zip file comment length + if ( $this -> doWrite ) { // Send central directory & end ctrl dir to STDOUT + echo $ctrldir; + echo $this -> eof_ctrl_dir; + echo pack('v', sizeof($this -> ctrl_dir)); // total # of entries "on this disk" + echo pack('v', sizeof($this -> ctrl_dir)); // total # of entries overall + echo pack('V', strlen($ctrldir)); // size of central dir + echo pack('V', $this -> old_offset); // offset to start of central dir + echo "\x00\x00"; // .zip file comment length + return ""; // Return empty string + + } else { // Return entire ZIP archive as string + + $data = implode('', $this -> datasec); + + return + $data . + $ctrldir . + $this -> eof_ctrl_dir . + pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk" + pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall + pack('V', strlen($ctrldir)) . // size of central dir + pack('V', strlen($data)) . // offset to start of central dir + "\x00\x00"; // .zip file comment length + } } // end of the 'file()' method } // end of the 'zipfile' class From c38b3ad1ce6e2012ff01d5e61d4632c12aacb418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 15:21:49 +0200 Subject: [PATCH 1031/1652] Whitespace cleanup --- libraries/zip.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/zip.lib.php b/libraries/zip.lib.php index 081d3820fc..e3083c0c62 100644 --- a/libraries/zip.lib.php +++ b/libraries/zip.lib.php @@ -68,7 +68,7 @@ class zipfile * - Should be called immediately after class instantiantion * - If set to true, then ZIP archive are echo'ed to STDOUT as each * file is added via this -> addfile(), and central directories are - * echoed to STDOUT on final call to this -> file(). Also, + * echoed to STDOUT on final call to this -> file(). Also, * this -> file() returns an empty string so it is safe to issue a * "echo $zipfile;" command * From 69f164291f8792dbf0d8641b25a08b49515fad1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 15:23:08 +0200 Subject: [PATCH 1032/1652] Avoid duplicating code --- libraries/zip.lib.php | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/libraries/zip.lib.php b/libraries/zip.lib.php index e3083c0c62..443b173783 100644 --- a/libraries/zip.lib.php +++ b/libraries/zip.lib.php @@ -200,30 +200,20 @@ class zipfile function file() { $ctrldir = implode('', $this -> ctrl_dir); + $header = $ctrldir . + $this -> eof_ctrl_dir . + pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk" + pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall + pack('V', strlen($ctrldir)) . // size of central dir + pack('V', strlen($data)) . // offset to start of central dir + "\x00\x00"; // .zip file comment length if ( $this -> doWrite ) { // Send central directory & end ctrl dir to STDOUT - echo $ctrldir; - echo $this -> eof_ctrl_dir; - echo pack('v', sizeof($this -> ctrl_dir)); // total # of entries "on this disk" - echo pack('v', sizeof($this -> ctrl_dir)); // total # of entries overall - echo pack('V', strlen($ctrldir)); // size of central dir - echo pack('V', $this -> old_offset); // offset to start of central dir - echo "\x00\x00"; // .zip file comment length + echo $header; return ""; // Return empty string - } else { // Return entire ZIP archive as string - - $data = implode('', $this -> datasec); - - return - $data . - $ctrldir . - $this -> eof_ctrl_dir . - pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk" - pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall - pack('V', strlen($ctrldir)) . // size of central dir - pack('V', strlen($data)) . // offset to start of central dir - "\x00\x00"; // .zip file comment length + $data = implode('', $this -> datasec); + return $data . $header; } } // end of the 'file()' method From 2a449d9465a78ee14974ff95cc2f4041e762f376 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:28:33 +0200 Subject: [PATCH 1033/1652] Translation update done using Pootle. --- po/sk.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/sk.po b/po/sk.po index adf7df76f0..a297e77d53 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 14:33+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-05-17 15:28+0200\n" +"Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -2680,9 +2680,8 @@ msgid "Excel edition" msgstr "Verzia Excelu" #: libraries/config/messages.inc.php:83 -#, fuzzy msgid "Database name template" -msgstr "Vzor pre názov súboru" +msgstr "Vzor pre názov databázy" #: libraries/config/messages.inc.php:84 #, fuzzy From 8f0dc5e8e1b5f4a3ccc08c9e36ad44abe563f99f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:28:47 +0200 Subject: [PATCH 1034/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a297e77d53..29e52a8a37 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2684,9 +2684,8 @@ msgid "Database name template" msgstr "Vzor pre názov databázy" #: libraries/config/messages.inc.php:84 -#, fuzzy msgid "Server name template" -msgstr "Vzor pre názov súboru" +msgstr "Vzor pre názov servera" #: libraries/config/messages.inc.php:85 #, fuzzy From f23e5893f3ad2f7a24d3e1ea609af44254c9f641 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:28:55 +0200 Subject: [PATCH 1035/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 29e52a8a37..152158176d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2688,9 +2688,8 @@ msgid "Server name template" msgstr "Vzor pre názov servera" #: libraries/config/messages.inc.php:85 -#, fuzzy msgid "Table name template" -msgstr "Vzor pre názov súboru" +msgstr "Vzor pre názov tabuľky" #: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 #: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:134 From 661510184f4f1324749d9c77e83ee1753022d059 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:29:16 +0200 Subject: [PATCH 1036/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 152158176d..3c8e17d906 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:28+0200\n" +"PO-Revision-Date: 2011-05-17 15:29+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2744,9 +2744,8 @@ msgid "Overwrite existing file(s)" msgstr "Prepísať existujúci súbor(y)" #: libraries/config/messages.inc.php:116 -#, fuzzy msgid "Remember file name template" -msgstr "Vzor pre názov súboru" +msgstr "Zapamätať si vzor pre názov súboru" #: libraries/config/messages.inc.php:118 #| msgid "Enclose table and field names with backquotes" From 5e557a89b7362aad1e11250659345256354389c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 15:29:22 +0200 Subject: [PATCH 1037/1652] Create file without storing in memory --- webapp.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/webapp.php b/webapp.php index 86d6bf1c2f..cdc0a87b2b 100644 --- a/webapp.php +++ b/webapp.php @@ -44,11 +44,12 @@ foreach ($parameters as $key => $value) { $ini_file .= $key . '=' . $value . "\n"; } -$zip = new zipfile; -$zip->addFile($ini_file, 'webapp.ini'); -$zip->addFile(file_get_contents($icon), 'phpMyAdmin.ico'); - header('Content-Type: application/webapp'); header('Content-Disposition: attachment; filename="' . $name . '"'); -echo $zip->file(); + +$zip = new zipfile; +$zip->setDoWrite(); +$zip->addFile($ini_file, 'webapp.ini'); +$zip->addFile(file_get_contents($icon), 'phpMyAdmin.ico'); +$zip->file(); ?> From ab577997b24d0e55bebd8dd38891f08c5f3d7d3c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:29:26 +0200 Subject: [PATCH 1038/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3c8e17d906..ac0cbaa22d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2786,9 +2786,8 @@ msgid "Maximal length of created query" msgstr "Maximálna veľkosť vytvoreného príkazu" #: libraries/config/messages.inc.php:135 -#, fuzzy msgid "Export type" -msgstr "Typ vytvorených dopytov" +msgstr "Typ exportu" #: libraries/config/messages.inc.php:136 libraries/export/sql.php:50 msgid "Enclose export in a transaction" From 417d2653ef6308e5921b340907660b570c6ae13c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:29:42 +0200 Subject: [PATCH 1039/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ac0cbaa22d..53be4fa1b5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2794,9 +2794,8 @@ msgid "Enclose export in a transaction" msgstr "Uzatvoriť príkazy v transakcii" #: libraries/config/messages.inc.php:137 -#, fuzzy msgid "Export time in UTC" -msgstr "Typ vytvorených dopytov" +msgstr "Exportovať čas v UTC" #: libraries/config/messages.inc.php:145 msgid "Force secured connection while using phpMyAdmin" From 1659d71218cde10d50c92567644efa23427b76dd Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:30:08 +0200 Subject: [PATCH 1040/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 53be4fa1b5..7729268b42 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:29+0200\n" +"PO-Revision-Date: 2011-05-17 15:30+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2837,9 +2837,8 @@ msgstr "Prispôsobiť režim prezerania" #: libraries/config/messages.inc.php:173 libraries/config/messages.inc.php:184 #: libraries/config/messages.inc.php:186 libraries/config/messages.inc.php:214 #: libraries/config/messages.inc.php:226 -#, fuzzy msgid "Customize default options" -msgstr "Nastavenia exportu databáz" +msgstr "Prispôsobenie východzích nastavení" #: libraries/config/messages.inc.php:155 libraries/config/setup.forms.php:232 #: libraries/config/setup.forms.php:311 From 0bac00ee03a6dbb783259f6b11aa2059bd88a162 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:31:32 +0200 Subject: [PATCH 1041/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7729268b42..6955bb9a18 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:30+0200\n" +"PO-Revision-Date: 2011-05-17 15:31+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3297,7 +3297,7 @@ msgstr "Zobraziť databázy v strome" #: libraries/config/messages.inc.php:274 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "Zakážte túto voľbu ak chcete vidieť všetky databázy súčasne" #: libraries/config/messages.inc.php:275 #, fuzzy From 64cc419cbcd5bef76e7418569b4b8f43954a9399 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:31:45 +0200 Subject: [PATCH 1042/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6955bb9a18..3292ed2fa6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3300,9 +3300,8 @@ msgid "Disable this if you want to see all databases at once" msgstr "Zakážte túto voľbu ak chcete vidieť všetky databázy súčasne" #: libraries/config/messages.inc.php:275 -#, fuzzy msgid "Use light version" -msgstr "Verzia MySQL klienta" +msgstr "Použiť odľahčenú verziu" #: libraries/config/messages.inc.php:276 msgid "Maximum table tree depth" From d171f75530e62ed27fc4b578d80cc58a452d94c2 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:32:30 +0200 Subject: [PATCH 1043/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3292ed2fa6..a9faaaba19 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:31+0200\n" +"PO-Revision-Date: 2011-05-17 15:32+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3305,7 +3305,7 @@ msgstr "Použiť odľahčenú verziu" #: libraries/config/messages.inc.php:276 msgid "Maximum table tree depth" -msgstr "" +msgstr "Maximálna hĺbka stromu tabuliek" #: libraries/config/messages.inc.php:277 msgid "String that separates tables into different tree levels" From 1a9250fa9fdfbed4951e218633a862305e9ea2c8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:33:08 +0200 Subject: [PATCH 1044/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a9faaaba19..755f948a8e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:32+0200\n" +"PO-Revision-Date: 2011-05-17 15:33+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3309,7 +3309,7 @@ msgstr "Maximálna hĺbka stromu tabuliek" #: libraries/config/messages.inc.php:277 msgid "String that separates tables into different tree levels" -msgstr "" +msgstr "Reťazec, ktorý rozdelí tabuľky do rôznych úrovní stromu" #: libraries/config/messages.inc.php:278 msgid "Table tree separator" From 97111ea4bb28a5b472e4f364f76aad7b573d1778 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:33:30 +0200 Subject: [PATCH 1045/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 755f948a8e..ff47f7842f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3313,7 +3313,7 @@ msgstr "Reťazec, ktorý rozdelí tabuľky do rôznych úrovní stromu" #: libraries/config/messages.inc.php:278 msgid "Table tree separator" -msgstr "" +msgstr "Oddeľovač tabuľkového stromu" #: libraries/config/messages.inc.php:279 msgid "URL where logo in the navigation frame will point to" From db76eee5a550f02308dac175be5e7007de6b9711 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:33:44 +0200 Subject: [PATCH 1046/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ff47f7842f..4c2a8db198 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3305,7 +3305,7 @@ msgstr "Použiť odľahčenú verziu" #: libraries/config/messages.inc.php:276 msgid "Maximum table tree depth" -msgstr "Maximálna hĺbka stromu tabuliek" +msgstr "Maximálna hĺbka tabuľkového stromu" #: libraries/config/messages.inc.php:277 msgid "String that separates tables into different tree levels" From b35144e89f16a1a88f37a8e9574c193513fb3489 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:34:20 +0200 Subject: [PATCH 1047/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4c2a8db198..652b06b2b7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:33+0200\n" +"PO-Revision-Date: 2011-05-17 15:34+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3317,7 +3317,7 @@ msgstr "Oddeľovač tabuľkového stromu" #: libraries/config/messages.inc.php:279 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "URL, na ktoré bude odkazovať logo v navigačnom ráme" #: libraries/config/messages.inc.php:280 msgid "Logo link URL" From a2324480cd06d7078e341962ab5eb2e658077efd Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:34:29 +0200 Subject: [PATCH 1048/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 652b06b2b7..27ce38aa07 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3321,7 +3321,7 @@ msgstr "URL, na ktoré bude odkazovať logo v navigačnom ráme" #: libraries/config/messages.inc.php:280 msgid "Logo link URL" -msgstr "" +msgstr "URL odkazu loga" #: libraries/config/messages.inc.php:281 msgid "" From 3f89a60412c8f51a6a917f8ababf7f42184386b4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:34:57 +0200 Subject: [PATCH 1049/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 27ce38aa07..8335857f31 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3331,7 +3331,7 @@ msgstr "" #: libraries/config/messages.inc.php:282 msgid "Logo link target" -msgstr "" +msgstr "Cieľ odkazu loga" #: libraries/config/messages.inc.php:283 msgid "Highlight server under the mouse cursor" From a68a4753f1f89710901f4b980e5a826cdff21a62 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:35:33 +0200 Subject: [PATCH 1050/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8335857f31..49a81c399b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:34+0200\n" +"PO-Revision-Date: 2011-05-17 15:35+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3335,7 +3335,7 @@ msgstr "Cieľ odkazu loga" #: libraries/config/messages.inc.php:283 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "Zvýrazní server pod kurzorom myši" #: libraries/config/messages.inc.php:284 msgid "Enable highlighting" From 1dfb4d85a01e887bc3e67e5a2bc86e1d98d3b24d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:35:46 +0200 Subject: [PATCH 1051/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 49a81c399b..69f8aab7d7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3339,7 +3339,7 @@ msgstr "Zvýrazní server pod kurzorom myši" #: libraries/config/messages.inc.php:284 msgid "Enable highlighting" -msgstr "" +msgstr "Povoliť zvýrazňovanie" #: libraries/config/messages.inc.php:285 msgid "Use less graphically intense tabs" From b3271a27940bf5832a314376dce568c6f553e676 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:36:44 +0200 Subject: [PATCH 1052/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 69f8aab7d7..3483d1c7f2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:35+0200\n" +"PO-Revision-Date: 2011-05-17 15:36+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3343,7 +3343,7 @@ msgstr "Povoliť zvýrazňovanie" #: libraries/config/messages.inc.php:285 msgid "Use less graphically intense tabs" -msgstr "" +msgstr "Požiť graficky menej náročné panely" #: libraries/config/messages.inc.php:286 msgid "Light tabs" From 42a84397c66a246d0f1c63d4d414d45653aa96a8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:36:56 +0200 Subject: [PATCH 1053/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3483d1c7f2..aa2d600c83 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3347,7 +3347,7 @@ msgstr "Požiť graficky menej náročné panely" #: libraries/config/messages.inc.php:286 msgid "Light tabs" -msgstr "" +msgstr "Odľahčené panely" #: libraries/config/messages.inc.php:287 msgid "" From 3d9083d28e0b9528f3e45572e780c4382cc4e6e3 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:37:24 +0200 Subject: [PATCH 1054/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index aa2d600c83..ddce33036b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:36+0200\n" +"PO-Revision-Date: 2011-05-17 15:37+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3356,7 +3356,7 @@ msgstr "" #: libraries/config/messages.inc.php:288 msgid "Limit column characters" -msgstr "" +msgstr "Obmedzenie počtu znakov" #: libraries/config/messages.inc.php:289 msgid "" From 9b91bcdea73736c26e7b10156a11132807a70002 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:38:02 +0200 Subject: [PATCH 1055/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ddce33036b..aed9497f5b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:37+0200\n" +"PO-Revision-Date: 2011-05-17 15:38+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3367,7 +3367,7 @@ msgstr "" #: libraries/config/messages.inc.php:290 msgid "Delete all cookies on logout" -msgstr "" +msgstr "Vymazať všetky cookies pri prihlásení" #: libraries/config/messages.inc.php:291 msgid "" From 9c93ce4f0f64c44e097a59402826fb0c4f127cc9 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:40:06 +0200 Subject: [PATCH 1056/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index aed9497f5b..b3308e0828 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:38+0200\n" +"PO-Revision-Date: 2011-05-17 15:40+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3393,7 +3393,7 @@ msgstr "" #: libraries/config/messages.inc.php:295 msgid "Define how long (in seconds) a login cookie is valid" -msgstr "" +msgstr "Určuje, ako dlho je platná prihlasovacie cookie (v sekundách)" #: libraries/config/messages.inc.php:296 msgid "Login cookie validity" From 49c80817a8a7de708753fdf228e0ac9c5e608cd9 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:40:24 +0200 Subject: [PATCH 1057/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b3308e0828..b386cdbdb0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3397,7 +3397,7 @@ msgstr "Určuje, ako dlho je platná prihlasovacie cookie (v sekundách)" #: libraries/config/messages.inc.php:296 msgid "Login cookie validity" -msgstr "" +msgstr "Platnosť prihlasovacej cookie" #: libraries/config/messages.inc.php:297 msgid "Double size of textarea for LONGTEXT columns" From deb0b51e95b0b79b9a13fdc61d878dc9c7042c07 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:45:12 +0200 Subject: [PATCH 1058/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b386cdbdb0..fc6f2b420c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:40+0200\n" +"PO-Revision-Date: 2011-05-17 15:45+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2060,10 +2060,9 @@ msgid "Inline edit of this query" msgstr "" #: libraries/common.lib.php:1267 -#, fuzzy #| msgid "Engines" msgid "Inline" -msgstr "Systémy" +msgstr "Upraviť tu" #: libraries/common.lib.php:1334 libraries/common.lib.php:1350 msgid "Profiling" From 77a1bc105822c504778035fba075edfb69a1414a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:46:00 +0200 Subject: [PATCH 1059/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index fc6f2b420c..35986f1f68 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:45+0200\n" +"PO-Revision-Date: 2011-05-17 15:46+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5443,10 +5443,9 @@ msgid "Object creation options" msgstr "Parametre transformácie" #: libraries/export/latex.php:51 libraries/export/latex.php:75 -#, fuzzy #| msgid "Table caption" msgid "Table caption (continued)" -msgstr "Nadpis tabuľky" +msgstr "Nadpis tabuľky (pokračovanie)" #: libraries/export/latex.php:56 libraries/export/odt.php:42 #: libraries/export/sql.php:40 From aab6027a28de6f13f2812cdad773cbef5d616a34 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:46:21 +0200 Subject: [PATCH 1060/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 35986f1f68..fd66e624aa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6466,10 +6466,9 @@ msgid "Clear" msgstr "Kalendár" #: libraries/sql_query_form.lib.php:302 -#, fuzzy #| msgid "Column names" msgid "Columns" -msgstr "Názvy stĺpcov" +msgstr "Stĺpce" #: libraries/sql_query_form.lib.php:337 sql.php:923 sql.php:924 sql.php:941 msgid "Bookmark this SQL query" From e64b590bed52767f2f0bd098aa83832ec13cdac7 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:46:28 +0200 Subject: [PATCH 1061/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fd66e624aa..c4787007ae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6656,7 +6656,6 @@ msgid "Get more editing space" msgstr "" #: libraries/tbl_properties.inc.php:396 -#, fuzzy #| msgid "None" msgctxt "for default" msgid "None" From da6ad0514a14a435ebb0d5d1bf078813c6ce740a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:46:42 +0200 Subject: [PATCH 1062/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c4787007ae..a62a26e90a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6700,7 +6700,6 @@ msgid "Add %s column(s)" msgstr "Pridať %s stĺpcov" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:630 -#, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." From 924aa215ae85f6a3425d52fe9ff26a9acc7e97be Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:48:15 +0200 Subject: [PATCH 1063/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index a62a26e90a..8827717be9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:46+0200\n" +"PO-Revision-Date: 2011-05-17 15:48+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6867,10 +6867,9 @@ msgid "Manage your settings" msgstr "Možnosti všeobecných vzťahov" #: libraries/user_preferences.inc.php:47 prefs_manage.php:291 -#, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" -msgstr "Zmeny boli uložené" +msgstr "Nastavenia boli uložené" #: libraries/user_preferences.inc.php:68 #, php-format From 4f8cd189e56b86bcd71598fd3889f7b8ded65927 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:48:31 +0200 Subject: [PATCH 1064/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8827717be9..d67aaaf88f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6899,10 +6899,9 @@ msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archíve:" #: main.php:65 -#, fuzzy #| msgid "General relation features" msgid "General Settings" -msgstr "Možnosti všeobecných vzťahov" +msgstr "Všeobecné nastavenia" #: main.php:103 msgid "MySQL connection collation" From 8c6c5274d8ad755704b7ad8fbe6c78c8290e9a93 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:48:44 +0200 Subject: [PATCH 1065/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index d67aaaf88f..59154ede65 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6912,10 +6912,9 @@ msgid "Appearance Settings" msgstr "" #: main.php:146 prefs_manage.php:274 -#, fuzzy #| msgid "settings" msgid "More settings" -msgstr "nastavenia" +msgstr "Viac nastavení" #: main.php:163 msgid "Protocol version" From d189a26bab46bde947002fbe26f94de33ac1e007 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:48:51 +0200 Subject: [PATCH 1066/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 59154ede65..a578ae4069 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6955,10 +6955,9 @@ msgid "Official Homepage" msgstr "Oficiálne stránky phpMyAdmin" #: main.php:214 -#, fuzzy #| msgid "Attributes" msgid "Contribute" -msgstr "Atribúty" +msgstr "Prispejte" #: main.php:215 #, fuzzy From b0476da8b67e4a88c624f80dfcf35215ccb4e016 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:49:01 +0200 Subject: [PATCH 1067/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index a578ae4069..3c744a2bb2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:48+0200\n" +"PO-Revision-Date: 2011-05-17 15:49+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6965,10 +6965,9 @@ msgid "Get support" msgstr "Exportovať" #: main.php:216 -#, fuzzy #| msgid "No change" msgid "List of changes" -msgstr "Žiadna zmena" +msgstr "Zoznam zmien" #: main.php:240 msgid "" From 21b64b8fba0b5c5216a23513f9cd4ea055558d19 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:49:31 +0200 Subject: [PATCH 1068/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3c744a2bb2..7f1143d213 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7075,10 +7075,9 @@ msgid "Filter" msgstr "Filter" #: navigation.php:277 -#, fuzzy #| msgid "table name" msgid "filter tables by name" -msgstr "meno tabuľky" +msgstr "filtrovať tabuľky podľa mena" #: navigation.php:308 navigation.php:309 #, fuzzy From 6c719f7096218cd08e079863c0574de3aa2a9397 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:49:41 +0200 Subject: [PATCH 1069/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7f1143d213..87696b93f6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7080,7 +7080,6 @@ msgid "filter tables by name" msgstr "filtrovať tabuľky podľa mena" #: navigation.php:308 navigation.php:309 -#, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" From 01cb5a7228322c37a4a6fa6d20c56250b05eb661 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:49:54 +0200 Subject: [PATCH 1070/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 87696b93f6..a66fa1ffd1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7138,10 +7138,9 @@ msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" #: pmd_general.php:120 -#, fuzzy #| msgid "Submit Query" msgid "Build Query" -msgstr "Odošli dopyt" +msgstr "Vytvoriť dopyt" #: pmd_general.php:125 msgid "Move Menu" From 02cd073ce18025efee9c4f7aa767db279f0bd1e4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:50:01 +0200 Subject: [PATCH 1071/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index a66fa1ffd1..0a1fdd4d4f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:49+0200\n" +"PO-Revision-Date: 2011-05-17 15:50+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7171,10 +7171,9 @@ msgstr "Zobraziť prepojenia" #: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652 #: pmd_general.php:769 -#, fuzzy #| msgid "Export" msgid "Except" -msgstr "Exportovať" +msgstr "Okrem" #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 #: pmd_general.php:775 From 3353664b69a9dfe461a9ca945df5c0dd7514aa6d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:50:17 +0200 Subject: [PATCH 1072/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0a1fdd4d4f..daf3ee869a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7177,10 +7177,9 @@ msgstr "Okrem" #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 #: pmd_general.php:775 -#, fuzzy #| msgid "in query" msgid "subquery" -msgstr "v dopyte" +msgstr "poddopyt" #: pmd_general.php:480 pmd_general.php:576 #, fuzzy From 78543da9ef9f901dccfdb9c38f9059f64041de3b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:50:26 +0200 Subject: [PATCH 1073/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index daf3ee869a..5d95a98f08 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7187,10 +7187,9 @@ msgid "Rename to" msgstr "Premenovať tabuľku na" #: pmd_general.php:482 pmd_general.php:581 -#, fuzzy #| msgid "User name" msgid "New name" -msgstr "Meno používateľa" +msgstr "Nové meno" #: pmd_general.php:485 pmd_general.php:700 #, fuzzy From 090bd76a5b379f8c058b6b05effe263e3d234f37 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:50:33 +0200 Subject: [PATCH 1074/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5d95a98f08..830b170bf2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7192,10 +7192,9 @@ msgid "New name" msgstr "Nové meno" #: pmd_general.php:485 pmd_general.php:700 -#, fuzzy #| msgid "Create" msgid "Aggregate" -msgstr "Vytvoriť" +msgstr "Zlúčiť" #: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629 #: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759 From d0d8034dbce407f9f703b217e53d759663bf7fef Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:50:58 +0200 Subject: [PATCH 1075/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 830b170bf2..68922517a8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7203,10 +7203,9 @@ msgid "Operator" msgstr "Operátor" #: pmd_general.php:810 -#, fuzzy #| msgid "Table options" msgid "Active options" -msgstr "Parametre tabuľky" +msgstr "Zapnuté parametre" #: pmd_help.php:26 msgid "To select relation, click :" From 4bf4b354dca3cf37ac97b90f2637c2b1e183a8fc Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:51:07 +0200 Subject: [PATCH 1076/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 68922517a8..38143c8b6d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:50+0200\n" +"PO-Revision-Date: 2011-05-17 15:51+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7227,10 +7227,9 @@ msgid "Page creation failed" msgstr "" #: pmd_pdf.php:89 -#, fuzzy #| msgid "pages" msgid "Page" -msgstr "stránok" +msgstr "Stránka" #: pmd_pdf.php:99 #, fuzzy From 8877b9fc5b6116a9ca98cb42af3fa6247f36b6ce Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:51:23 +0200 Subject: [PATCH 1077/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 38143c8b6d..e5a85e29f9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7232,10 +7232,9 @@ msgid "Page" msgstr "Stránka" #: pmd_pdf.php:99 -#, fuzzy #| msgid "Import files" msgid "Import from selected page" -msgstr "Importovať súbory" +msgstr "Importovať zo zvolenej stránky" #: pmd_pdf.php:100 #, fuzzy From 6515e147e66a95babeef9e13f49ee6402f5999b3 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:51:39 +0200 Subject: [PATCH 1078/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e5a85e29f9..e496ebca04 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7237,10 +7237,9 @@ msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" #: pmd_pdf.php:100 -#, fuzzy #| msgid "No rows selected" msgid "Export to selected page" -msgstr "Nebol vybraný žiadny riadok" +msgstr "Exportovať na zvolenú stránku" #: pmd_pdf.php:102 #, fuzzy From 917f1b4870f83dc8132f2efdd9cdf8a7fadba1dc Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:52:03 +0200 Subject: [PATCH 1079/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index e496ebca04..b6176f037c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:51+0200\n" +"PO-Revision-Date: 2011-05-17 15:52+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7242,10 +7242,9 @@ msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" #: pmd_pdf.php:102 -#, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" -msgstr "Vytvoriť nový index" +msgstr "Vytvoriť novú stránku a exportovať do nej" #: pmd_pdf.php:111 #| msgid "User name" From b53ee8358e96266ac1ebe9bdedb95a70b32d1029 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:52:12 +0200 Subject: [PATCH 1080/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b6176f037c..eb644bd741 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7311,10 +7311,9 @@ msgid "Saved on: @DATE@" msgstr "" #: prefs_manage.php:239 -#, fuzzy #| msgid "Import files" msgid "Import from file" -msgstr "Importovať súbory" +msgstr "Importovať zo súboru" #: prefs_manage.php:245 msgid "Import from browser's storage" From 494b50e0dba0755cede174201d26f4217153f8ed Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:52:18 +0200 Subject: [PATCH 1081/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index eb644bd741..88786c4f77 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7653,7 +7653,6 @@ msgid "No privileges." msgstr "Žiadne práva." #: server_privileges.php:312 server_privileges.php:313 -#, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" From 61cd0ee46e33e76845b201338a08cf8702ab0544 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:52:28 +0200 Subject: [PATCH 1082/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 88786c4f77..32472b8f23 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7698,7 +7698,6 @@ msgid "Do not change the password" msgstr "Nezmeniť heslo" #: server_privileges.php:817 server_privileges.php:2286 -#, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." From ac3b98bf98ada06a7b1c31dc88ed3fb0e12e765c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:53:15 +0200 Subject: [PATCH 1083/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 32472b8f23..004610875a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:52+0200\n" +"PO-Revision-Date: 2011-05-17 15:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7858,7 +7858,6 @@ msgid "Database for user" msgstr "Databáza pre používateľa" #: server_privileges.php:2118 -#, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" From 31e65813eaa7441132cce9835ab36704bd658fb4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:53:26 +0200 Subject: [PATCH 1084/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 004610875a..a96ea92be9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7927,7 +7927,7 @@ msgid "Unable to change master" msgstr "" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Master server zmenený úspešne na %s" From 90f44678ac1054b3b9b00ec78f31c4e38e01f1e1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:53:45 +0200 Subject: [PATCH 1085/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a96ea92be9..7d741d5d64 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8033,10 +8033,9 @@ msgid "Reset slave" msgstr "" #: server_replication.php:326 -#, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" -msgstr "Iba štruktúru" +msgstr "Spustiť len SQL vlákno" #: server_replication.php:328 msgid "Stop SQL Thread only" From 77234074ae6dd550e8b2b4eb63ba227ecd788642 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:54:00 +0200 Subject: [PATCH 1086/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7d741d5d64..7efd94d425 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:53+0200\n" +"PO-Revision-Date: 2011-05-17 15:54+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8042,10 +8042,9 @@ msgid "Stop SQL Thread only" msgstr "" #: server_replication.php:331 -#, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" -msgstr "Iba štruktúru" +msgstr "Spustiť len IO vlákno" #: server_replication.php:333 msgid "Stop IO Thread only" From 844d105898eb373f1d8b46da6abdfd2cb767b729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 15:54:06 +0200 Subject: [PATCH 1087/1652] Merge translations from master --- po/bg.po | 50 +++++++++++++++++++++++++------------------------- po/sk.po | 30 +++++++++++++++--------------- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/po/bg.po b/po/bg.po index 64b871f148..14b357c20e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2086,7 +2086,7 @@ msgstr "Операции" #: libraries/common.lib.php:2966 msgid "Browse your computer:" -msgstr "" +msgstr "Разглеждане на компютъра:" #: libraries/common.lib.php:2979 #, php-format @@ -2108,7 +2108,7 @@ msgstr "" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "Отворен" #: libraries/config.values.php:74 msgid "Closed" @@ -2714,11 +2714,11 @@ msgstr "CSV данни" #: libraries/config/messages.inc.php:157 msgid "Developer" -msgstr "" +msgstr "Разработчик" #: libraries/config/messages.inc.php:158 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Настройки за разработчици на phpMyAdmin" #: libraries/config/messages.inc.php:159 msgid "Edit mode" @@ -2739,11 +2739,11 @@ msgstr "" #: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Свойства" #: libraries/config/messages.inc.php:165 msgid "General" -msgstr "" +msgstr "Общи" #: libraries/config/messages.inc.php:166 msgid "Set some commonly used options" @@ -2765,7 +2765,7 @@ msgstr "" #: libraries/config/messages.inc.php:170 msgid "Import / export" -msgstr "" +msgstr "Импорт / експорт" #: libraries/config/messages.inc.php:171 msgid "Set import and export directories and compression options" @@ -2781,7 +2781,7 @@ msgstr "Опции за показване на база данни" #: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Управляваща рамка" #: libraries/config/messages.inc.php:177 msgid "Customize appearance of the navigation frame" @@ -2794,19 +2794,19 @@ msgstr "Сървъри" #: libraries/config/messages.inc.php:179 msgid "Servers display options" -msgstr "" +msgstr "Настройки показване сървъри" #: libraries/config/messages.inc.php:181 msgid "Tables display options" -msgstr "" +msgstr "Настройки показване таблици" #: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Главна рамка" #: libraries/config/messages.inc.php:183 msgid "Microsoft Office" -msgstr "" +msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 msgid "Open Document" @@ -2814,15 +2814,15 @@ msgstr "Отваряне на документ" #: libraries/config/messages.inc.php:187 msgid "Other core settings" -msgstr "" +msgstr "Други основни настройки" #: libraries/config/messages.inc.php:188 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Настройки, които не са за другаде" #: libraries/config/messages.inc.php:189 msgid "Page titles" -msgstr "" +msgstr "Заглавия на страниците" #: libraries/config/messages.inc.php:190 msgid "" @@ -2844,7 +2844,7 @@ msgstr "" #: libraries/config/messages.inc.php:193 msgid "Security" -msgstr "" +msgstr "Сигурност" #: libraries/config/messages.inc.php:194 msgid "" @@ -2854,7 +2854,7 @@ msgstr "" #: libraries/config/messages.inc.php:195 msgid "Basic settings" -msgstr "" +msgstr "Основни настройки" #: libraries/config/messages.inc.php:196 msgid "Authentication" @@ -2866,7 +2866,7 @@ msgstr "Настройки по удостоверяване" #: libraries/config/messages.inc.php:198 msgid "Server configuration" -msgstr "" +msgstr "Сървърна конфигурация" #: libraries/config/messages.inc.php:199 msgid "" @@ -2876,11 +2876,11 @@ msgstr "" #: libraries/config/messages.inc.php:200 msgid "Enter server connection parameters" -msgstr "" +msgstr "Параметри за връзка със сървъра" #: libraries/config/messages.inc.php:201 msgid "Configuration storage" -msgstr "" +msgstr "Хранилище за конфигурацията" #: libraries/config/messages.inc.php:202 msgid "" @@ -2891,7 +2891,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 msgid "Changes tracking" -msgstr "" +msgstr "Следене за промени" #: libraries/config/messages.inc.php:204 msgid "" @@ -4147,7 +4147,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" -msgstr "" +msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:262 #: libraries/config/user_preferences.forms.php:165 @@ -4179,7 +4179,7 @@ msgstr "" #: libraries/config/setup.forms.php:360 #: libraries/config/user_preferences.forms.php:262 libraries/export/odt.php:21 msgid "Open Document Text" -msgstr "" +msgstr "Open Document Text" #: libraries/config/validate.lib.php:202 libraries/config/validate.lib.php:209 msgid "Could not connect to MySQL server" @@ -8185,7 +8185,7 @@ msgstr "" #: server_status.php:138 msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" +msgstr "Брой временни таблици отворени от подчинена SQL нишка." #: server_status.php:139 msgid "" @@ -8248,7 +8248,7 @@ msgstr "" #: server_status.php:150 msgid "The number of currently open connections." -msgstr "" +msgstr "Брой текущо отворени връзки." #: server_status.php:151 msgid "" diff --git a/po/sk.po b/po/sk.po index 1b9c736586..3ca565556e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3389,7 +3389,7 @@ msgstr "Zobraziť databázy v strome" #: libraries/config/messages.inc.php:274 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "Zakážte túto voľbu ak chcete vidieť všetky databázy súčasne" #: libraries/config/messages.inc.php:275 #, fuzzy @@ -3398,23 +3398,23 @@ msgstr "Verzia MySQL klienta" #: libraries/config/messages.inc.php:276 msgid "Maximum table tree depth" -msgstr "" +msgstr "Maximálna hĺbka tabuľkového stromu" #: libraries/config/messages.inc.php:277 msgid "String that separates tables into different tree levels" -msgstr "" +msgstr "Reťazec, ktorý rozdelí tabuľky do rôznych úrovní stromu" #: libraries/config/messages.inc.php:278 msgid "Table tree separator" -msgstr "" +msgstr "Oddeľovač tabuľkového stromu" #: libraries/config/messages.inc.php:279 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "URL, na ktoré bude odkazovať logo v navigačnom ráme" #: libraries/config/messages.inc.php:280 msgid "Logo link URL" -msgstr "" +msgstr "URL odkazu loga" #: libraries/config/messages.inc.php:281 msgid "" @@ -3424,23 +3424,23 @@ msgstr "" #: libraries/config/messages.inc.php:282 msgid "Logo link target" -msgstr "" +msgstr "Cieľ odkazu loga" #: libraries/config/messages.inc.php:283 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "Zvýrazní server pod kurzorom myši" #: libraries/config/messages.inc.php:284 msgid "Enable highlighting" -msgstr "" +msgstr "Povoliť zvýrazňovanie" #: libraries/config/messages.inc.php:285 msgid "Use less graphically intense tabs" -msgstr "" +msgstr "Požiť graficky menej náročné panely" #: libraries/config/messages.inc.php:286 msgid "Light tabs" -msgstr "" +msgstr "Odľahčené panely" #: libraries/config/messages.inc.php:287 msgid "" @@ -3449,7 +3449,7 @@ msgstr "" #: libraries/config/messages.inc.php:288 msgid "Limit column characters" -msgstr "" +msgstr "Obmedzenie počtu znakov" #: libraries/config/messages.inc.php:289 msgid "" @@ -3460,7 +3460,7 @@ msgstr "" #: libraries/config/messages.inc.php:290 msgid "Delete all cookies on logout" -msgstr "" +msgstr "Vymazať všetky cookies pri prihlásení" #: libraries/config/messages.inc.php:291 msgid "" @@ -3486,11 +3486,11 @@ msgstr "" #: libraries/config/messages.inc.php:295 msgid "Define how long (in seconds) a login cookie is valid" -msgstr "" +msgstr "Určuje, ako dlho je platná prihlasovacie cookie (v sekundách)" #: libraries/config/messages.inc.php:296 msgid "Login cookie validity" -msgstr "" +msgstr "Platnosť prihlasovacej cookie" #: libraries/config/messages.inc.php:297 msgid "Double size of textarea for LONGTEXT columns" From d2be3f9fa48006f5dda4b32672190b12ee365902 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:54:07 +0200 Subject: [PATCH 1088/1652] Translation update done using Pootle. --- po/sk.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7efd94d425..21f8291ede 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8788,7 +8788,6 @@ msgid "Show processes" msgstr "Zobraziť procesy" #: server_status.php:470 -#, fuzzy #| msgid "Reset" msgctxt "for Show status" msgid "Reset" From 4513c3c52affd394e029c719bc0cf0746ac3444d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:54:19 +0200 Subject: [PATCH 1089/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 21f8291ede..2347299027 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9006,10 +9006,9 @@ msgid "Enter manually" msgstr "" #: server_synchronize.php:1138 -#, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" -msgstr "max. súčasných pripojení" +msgstr "Súčasné pripojenie" #: server_synchronize.php:1167 #, php-format From 1025b156a3e0cefac337478388d3f6099f67fe99 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:54:37 +0200 Subject: [PATCH 1090/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2347299027..6e9f9b9267 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9072,10 +9072,9 @@ msgid "Insecure connection" msgstr "" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration file" msgid "Configuration saved." -msgstr "Konfiguračný súbor" +msgstr "Konfigurácia bola uložená." #: setup/frames/index.inc.php:93 msgid "" From 7bb1b72680b6f912a09cf31f8e5092dad1950060 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:55:09 +0200 Subject: [PATCH 1091/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6e9f9b9267..f72f96344d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:54+0200\n" +"PO-Revision-Date: 2011-05-17 15:55+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9338,10 +9338,9 @@ msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" #: sql.php:622 -#, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" -msgstr "Potvrdiť platnosť SQL" +msgstr "Skontrolované SQL" #: sql.php:897 #, php-format From cecbc2acf309bbde9e1d05808ac29d108ba983a6 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:55:50 +0200 Subject: [PATCH 1092/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f72f96344d..8d75c78fcb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9424,10 +9424,9 @@ msgid "Continue insertion with %s rows" msgstr "" #: tbl_chart.php:56 -#, fuzzy #| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." -msgstr "Práva boli úspešne znovunačítané." +msgstr "Graf bol úspešne vytvorený." #: tbl_chart.php:59 #| msgid "" From 40c9e5db153753f6e626b25fd92de1c103f8caa3 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:56:03 +0200 Subject: [PATCH 1093/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8d75c78fcb..f6891c2011 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:55+0200\n" +"PO-Revision-Date: 2011-05-17 15:56+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9468,10 +9468,9 @@ msgid "Legend margins" msgstr "" #: tbl_chart.php:134 -#, fuzzy #| msgid "Mar" msgid "Bar" -msgstr "Mar" +msgstr "Stĺpec" #: tbl_chart.php:135 msgid "Line" From 8bce47f3d6441fece31be97c09ad8d8402804440 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:56:15 +0200 Subject: [PATCH 1094/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f6891c2011..8a85cfa625 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9481,10 +9481,9 @@ msgid "Radar" msgstr "" #: tbl_chart.php:138 -#, fuzzy #| msgid "PiB" msgid "Pie" -msgstr "PB" +msgstr "Koláč" #: tbl_chart.php:144 #, fuzzy From 98354fdddaa5d7ad57440e6f5f2fac0f182ea0c1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:56:28 +0200 Subject: [PATCH 1095/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8a85cfa625..6840889d53 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9486,10 +9486,9 @@ msgid "Pie" msgstr "Koláč" #: tbl_chart.php:144 -#, fuzzy #| msgid "Query type" msgid "Bar type" -msgstr "Typ dopytu" +msgstr "Typ stĺpca" #: tbl_chart.php:146 msgid "Stacked" From ae9ab3cecaca2547bfb7aeb51b4db0fcde2167a5 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:56:43 +0200 Subject: [PATCH 1096/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6840889d53..f195c2d480 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9643,10 +9643,9 @@ msgid "Table %s has been flushed" msgstr "Tabuľka %s bola vyprázdnená" #: tbl_operations.php:668 -#, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" -msgstr "Vyprázdniť tabuľku (\"FLUSH\")" +msgstr "Vyprázdniť tabuľku (FLUSH)" #: tbl_operations.php:677 #, fuzzy From 35316464c1d0cb03d4114a684492d20784e18fcc Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:56:59 +0200 Subject: [PATCH 1097/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f195c2d480..0f1a976ae9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9648,10 +9648,9 @@ msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (FLUSH)" #: tbl_operations.php:677 -#, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" -msgstr "Sťahujem dáta pre tabuľku" +msgstr "Odstrániť dáta alebo tabuľku" #: tbl_operations.php:692 msgid "Empty the table (TRUNCATE)" From f12d1866376a8ac5df68831d6c3fc4871f0abe66 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:57:23 +0200 Subject: [PATCH 1098/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0f1a976ae9..c5623b8aa6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:56+0200\n" +"PO-Revision-Date: 2011-05-17 15:57+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9657,10 +9657,9 @@ msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:712 -#, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" -msgstr "Prejsť do databázy" +msgstr "Odstrániť tabuľku (DROP)" #: tbl_operations.php:733 #, fuzzy From 5cd132c0c4000bbff3bf862f88b272e468e0f42d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 17 May 2011 15:58:37 +0200 Subject: [PATCH 1099/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index c5623b8aa6..dd17adf2e9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:57+0200\n" +"PO-Revision-Date: 2011-05-17 15:58+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9934,10 +9934,9 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" +msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" #: tbl_tracking.php:443 #| msgid "No databases" From 1e0a6b69d14d6161bc296abe88701033c0f36e59 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:03:18 +0200 Subject: [PATCH 1100/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 7bc4275c5e..00eb21ebc9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 15:16+0200\n" +"PO-Revision-Date: 2011-05-17 16:03+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2658,7 +2658,7 @@ msgstr "" #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" -msgstr "Препокриване на съществуващите файл(ове)" +msgstr "Презаписване на съществуващите файл(ове)" #: libraries/config/messages.inc.php:116 msgid "Remember file name template" From 11dfc559be70ee765208f692f10d6ff30926bfc1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:06:26 +0200 Subject: [PATCH 1101/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 00eb21ebc9..c4397f8c78 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:03+0200\n" +"PO-Revision-Date: 2011-05-17 16:06+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2150,7 +2150,7 @@ msgstr "Директорията която сте указали за upload н #: libraries/common.lib.php:2999 msgid "There are no files to upload" -msgstr "" +msgstr "Няма файлве за качване" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" From 85ac08d91c8610f13c972eeb6d0d85f94220e489 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:06:31 +0200 Subject: [PATCH 1102/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index c4397f8c78..dc5fedc569 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2154,7 +2154,7 @@ msgstr "Няма файлве за качване" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "" +msgstr "Двете" #: libraries/config.values.php:74 msgid "Open" From 38cdbc925267be376724481334591c9c79c2e63a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:06:49 +0200 Subject: [PATCH 1103/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index dc5fedc569..53920b75df 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2154,7 +2154,7 @@ msgstr "Няма файлве за качване" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "Двете" +msgstr "И двете" #: libraries/config.values.php:74 msgid "Open" From fadc3c6f5001d5ee6f18234d31c2285efa6c9c2a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:06:57 +0200 Subject: [PATCH 1104/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 53920b75df..77089b4395 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2175,7 +2175,7 @@ msgstr "структура" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "" +msgstr "данни" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From fbc53f9b884e0803358ea8719f25573aa48b13fd Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:08:16 +0200 Subject: [PATCH 1105/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 77089b4395..2c20f47e2a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:06+0200\n" +"PO-Revision-Date: 2011-05-17 16:08+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2224,7 +2224,7 @@ msgstr "" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Невалиден номер на порт" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 From bd75063569d6f1ed557e31a1cb83fe4b685f458b Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:08:31 +0200 Subject: [PATCH 1106/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 2c20f47e2a..bd0104099c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2230,7 +2230,7 @@ msgstr "Невалиден номер на порт" #: libraries/config/FormDisplay.class.php:574 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 msgid "Incorrect value" -msgstr "" +msgstr "Невалидна стойност" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 From 5140ebe48bee7fef7003c1fff5edd8f8135820f7 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:09:16 +0200 Subject: [PATCH 1107/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index bd0104099c..104ce79ea0 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:08+0200\n" +"PO-Revision-Date: 2011-05-17 16:09+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2236,7 +2236,7 @@ msgstr "Невалидна стойност" #: libraries/config/validate.lib.php:464 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Стойността трябва да е по-малка или равна на %s" #: libraries/config/FormDisplay.class.php:538 #, php-format From 9999ed7b95a4dc6f61ed3adf5707e58e67196ab6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:09:29 +0200 Subject: [PATCH 1108/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 104ce79ea0..4a86fd937d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2241,7 +2241,7 @@ msgstr "Стойността трябва да е по-малка или рав #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Липсващи данни за %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 From b46f66319d2aaf887c21e1c3aad22c97f185d71c Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:10:42 +0200 Subject: [PATCH 1109/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 4a86fd937d..4a4c13a0bb 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:09+0200\n" +"PO-Revision-Date: 2011-05-17 16:10+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2246,7 +2246,7 @@ msgstr "Липсващи данни за %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 msgid "unavailable" -msgstr "" +msgstr "недостъпно" #: libraries/config/FormDisplay.class.php:737 #: libraries/config/FormDisplay.class.php:741 From c25d4e23656fb3c352f5466a5d38688ca9e5fc62 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:11:32 +0200 Subject: [PATCH 1110/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 4a4c13a0bb..fb4f1755e7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:10+0200\n" +"PO-Revision-Date: 2011-05-17 16:11+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2257,7 +2257,7 @@ msgstr "\"%s\" изисква разширението %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "Импортът не работи, липсваща функционалност (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format From 76775bca40ca986ee529e2ed34dd5d1e7ab82976 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:11:44 +0200 Subject: [PATCH 1111/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index fb4f1755e7..876197cbc4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2257,7 +2257,7 @@ msgstr "\"%s\" изисква разширението %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "Импортът не работи, липсваща функционалност (%s)" +msgstr "импортът не работи, липсваща функционалност (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format From 1cda66e6fe74cad1921c9702bcc75190060517ce Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:11:51 +0200 Subject: [PATCH 1112/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 876197cbc4..ebc985f1a6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2262,7 +2262,7 @@ msgstr "импортът не работи, липсваща функциона #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "експортът не работи, липсваща функционалност (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" From d24bbafa905851ed68fc859ddb59530107dd9ad8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:12:08 +0200 Subject: [PATCH 1113/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ebc985f1a6..571e3ce7c1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:11+0200\n" +"PO-Revision-Date: 2011-05-17 16:12+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2266,7 +2266,7 @@ msgstr "експортът не работи, липсваща функцион #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL валидаторът е изключен" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" From 37e5821789755677267b2a085a66083b81e783f8 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:12:26 +0200 Subject: [PATCH 1114/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 571e3ce7c1..147bd80088 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2275,7 +2275,7 @@ msgstr "Разширението SOAP не е намерено" #: libraries/config/FormDisplay.class.php:781 #, php-format msgid "maximum %s" -msgstr "" +msgstr "най-много %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" From 64b4d53c132f8c2f447d0de9bbdab4b03dd7ffb1 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:13:50 +0200 Subject: [PATCH 1115/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 147bd80088..2e313b1a6a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:12+0200\n" +"PO-Revision-Date: 2011-05-17 16:13+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2284,7 +2284,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 msgid "Disabled" -msgstr "Забранено" +msgstr "Изключено" #: libraries/config/FormDisplay.tpl.php:248 #, php-format From 4c1701cb19578b28245c2abf3c4f04fba6526970 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:14:03 +0200 Subject: [PATCH 1116/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2e313b1a6a..57a5089607 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:13+0200\n" +"PO-Revision-Date: 2011-05-17 16:14+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2289,7 +2289,7 @@ msgstr "Изключено" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Стойност: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:350 From 6ca9918704083918b16502c4a702cf9810db3f47 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:14:48 +0200 Subject: [PATCH 1117/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 57a5089607..ca434bfc90 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2354,7 +2354,7 @@ msgstr "" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Маркер на ред" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" From e84e2a2b4521bb871c2cfb8408ef5a730879077d Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:15:38 +0200 Subject: [PATCH 1118/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index ca434bfc90..9f47c98f5f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:14+0200\n" +"PO-Revision-Date: 2011-05-17 16:15+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2372,7 +2372,7 @@ msgstr "" #: libraries/config/messages.inc.php:31 msgid "Bzip2" -msgstr "" +msgstr "Bzip2" #: libraries/config/messages.inc.php:32 msgid "" From 96c34af6afabab52b691c763bcad29f97c8f7c2a Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:15:57 +0200 Subject: [PATCH 1119/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index 9f47c98f5f..3a20abfe2f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2418,7 +2418,7 @@ msgstr "" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:165 msgid "Configuration file" -msgstr "" +msgstr "Конфигурационен файл" #: libraries/config/messages.inc.php:42 msgid "" From 720efabb06677c3d05b58392a21b3dba5277e721 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:16:24 +0200 Subject: [PATCH 1120/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 3a20abfe2f..c3205c8d08 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:15+0200\n" +"PO-Revision-Date: 2011-05-17 16:16+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2428,7 +2428,7 @@ msgstr "" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Потвърждаване DROP заявките" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" From a5d57d408bf1a0550ce63559e0192ad3a2f78cc3 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:16:30 +0200 Subject: [PATCH 1121/1652] Translation update done using Pootle. --- po/bg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/bg.po b/po/bg.po index c3205c8d08..83e731e4b5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2428,7 +2428,7 @@ msgstr "" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "Потвърждаване DROP заявките" +msgstr "Потвърждаване DROP заявки" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" From 0ad2be0d078de3cfd81166c0d2c7cdd8743e68ed Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:17:59 +0200 Subject: [PATCH 1122/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index 83e731e4b5..c8dd81d641 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:16+0200\n" +"PO-Revision-Date: 2011-05-17 16:17+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2432,7 +2432,7 @@ msgstr "Потвърждаване DROP заявки" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Трасиране SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" From 601d564c7f472933e5f811ac29c537565ade70c6 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:18:21 +0200 Subject: [PATCH 1123/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index c8dd81d641..d8cb29e249 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:17+0200\n" +"PO-Revision-Date: 2011-05-17 16:18+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -2436,7 +2436,7 @@ msgstr "Трасиране SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" -msgstr "" +msgstr "Ориентация по подразбиране" #: libraries/config/messages.inc.php:46 msgid "" From 1aa81ce435a9113263643627b34e69026c70cfab Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:21:57 +0200 Subject: [PATCH 1124/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index d8cb29e249..e7056bdf17 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:18+0200\n" +"PO-Revision-Date: 2011-05-17 16:21+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -4727,7 +4727,7 @@ msgstr "Заявката отне %01.4f секунди" #: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" -msgstr "Променяне" +msgstr "Промяна" #: libraries/display_tbl.lib.php:2259 msgid "Query results operations" From 62d6e478a510533376f88914003fb50e68621a36 Mon Sep 17 00:00:00 2001 From: stoyanster Date: Tue, 17 May 2011 16:22:07 +0200 Subject: [PATCH 1125/1652] Translation update done using Pootle. --- po/bg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/bg.po b/po/bg.po index e7056bdf17..64d2fc4813 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31-0400\n" -"PO-Revision-Date: 2011-05-17 16:21+0200\n" +"PO-Revision-Date: 2011-05-17 16:22+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -7128,7 +7128,7 @@ msgstr "Дава всички права освен GRANT." #: server_privileges.php:33 server_privileges.php:202 #: server_privileges.php:529 msgid "Allows altering the structure of existing tables." -msgstr "Позволява променяне на структурата на съществуващи таблици." +msgstr "Позволява промяна на структурата на съществуващи таблици." #: server_privileges.php:34 server_privileges.php:218 #: server_privileges.php:535 From 4ef745156e730a06713a055830febb5dcf3b1a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 17 May 2011 17:33:40 +0200 Subject: [PATCH 1126/1652] Merge translations from master --- po/bg.po | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/po/bg.po b/po/bg.po index 14b357c20e..38e53ad2a7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2100,11 +2100,11 @@ msgstr "Директорията която сте указали за upload н #: libraries/common.lib.php:2999 msgid "There are no files to upload" -msgstr "" +msgstr "Няма файлве за качване" #: libraries/config.values.php:45 libraries/config.values.php:50 msgid "Both" -msgstr "" +msgstr "И двете" #: libraries/config.values.php:74 msgid "Open" @@ -2125,7 +2125,7 @@ msgstr "структура" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "" +msgstr "данни" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 @@ -2174,29 +2174,29 @@ msgstr "" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "" +msgstr "Невалиден номер на порт" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 #: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450 msgid "Incorrect value" -msgstr "" +msgstr "Невалидна стойност" #: libraries/config/FormDisplay.class.php:87 #: libraries/config/validate.lib.php:464 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Стойността трябва да е по-малка или равна на %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "" +msgstr "Липсващи данни за %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 msgid "unavailable" -msgstr "" +msgstr "недостъпно" #: libraries/config/FormDisplay.class.php:737 #: libraries/config/FormDisplay.class.php:741 @@ -2207,16 +2207,16 @@ msgstr "\"%s\" изисква разширението %s" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "импортът не работи, липсваща функционалност (%s)" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "експортът не работи, липсваща функционалност (%s)" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL валидаторът е изключен" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" @@ -2225,7 +2225,7 @@ msgstr "Разширението SOAP не е намерено" #: libraries/config/FormDisplay.class.php:781 #, php-format msgid "maximum %s" -msgstr "" +msgstr "най-много %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" @@ -2239,7 +2239,7 @@ msgstr "Забранено" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "" +msgstr "Стойност: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:350 @@ -2304,7 +2304,7 @@ msgstr "" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Маркер на ред" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" @@ -2322,7 +2322,7 @@ msgstr "" #: libraries/config/messages.inc.php:31 msgid "Bzip2" -msgstr "" +msgstr "Bzip2" #: libraries/config/messages.inc.php:32 msgid "" @@ -2368,7 +2368,7 @@ msgstr "" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:153 msgid "Configuration file" -msgstr "" +msgstr "Конфигурационен файл" #: libraries/config/messages.inc.php:42 msgid "" @@ -2378,15 +2378,15 @@ msgstr "" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Потвърждаване DROP заявки" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Трасиране SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" -msgstr "" +msgstr "Ориентация по подразбиране" #: libraries/config/messages.inc.php:46 msgid "" From 43b9ae2025e40b0ee8638b85bc6aac5dfa4278c7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 May 2011 12:35:25 -0400 Subject: [PATCH 1127/1652] Activate new messages in db search --- js/db_search.js | 4 ++-- js/messages.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/db_search.js b/js/db_search.js index 33d5e17bda..6fff82dec8 100644 --- a/js/db_search.js +++ b/js/db_search.js @@ -20,7 +20,7 @@ function loadResult(result_path , table_name , link , ajaxEnable){ if(ajaxEnable) { /** Hides the results shown by the delete criteria */ - //PMA_ajaxShowMessage(PMA_messages['strBrowsing']); + PMA_ajaxShowMessage(PMA_messages['strBrowsing']); $('#sqlqueryform').hide(); $('#togglequerybox').hide(); /** Load the browse results to the page */ @@ -55,7 +55,7 @@ function deleteResult(result_path , msg , ajaxEnable){ /** Refresh the search results after the deletion */ document.getElementById('buttonGo'). click(); - //PMA_ajaxShowMessage(PMA_messages['strDeleting']); + PMA_ajaxShowMessage(PMA_messages['strDeleting']); /** Show the results of the deletion option */ $('#browse-results').show(); $('#sqlqueryform').hide(); diff --git a/js/messages.php b/js/messages.php index ee2b56cf9d..8af89c8642 100644 --- a/js/messages.php +++ b/js/messages.php @@ -83,8 +83,8 @@ $js_messages['strNo'] = __('No'); $js_messages['strSearching'] = __('Searching'); $js_messages['strHideSearchResults'] = __('Hide search results'); $js_messages['strShowSearchResults'] = __('Show search results'); -//$js_messages['strBrowsing'] = __('Browsing'); -//$js_messages['strDeleting'] = __('Deleting'); +$js_messages['strBrowsing'] = __('Browsing'); +$js_messages['strDeleting'] = __('Deleting'); /* For import.js */ $js_messages['strImportCSV'] = __('Note: If the file contains multiple tables, they will be combined into one'); From f1ed2782a749f3b43a47ddb30b59867f431e53a8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 17 May 2011 12:37:18 -0400 Subject: [PATCH 1128/1652] Refresh .po files --- po/af.po | 50 ++++--- po/ar.po | 50 ++++--- po/az.po | 50 ++++--- po/be.po | 50 ++++--- po/be@latin.po | 50 ++++--- po/bg.po | 86 +++++------- po/bn.po | 50 ++++--- po/bs.po | 50 ++++--- po/ca.po | 50 ++++--- po/cs.po | 112 ++++++++-------- po/cy.po | 50 ++++--- po/da.po | 50 ++++--- po/de.po | 50 ++++--- po/el.po | 50 ++++--- po/en_GB.po | 67 +++++---- po/es.po | 50 ++++--- po/et.po | 50 ++++--- po/eu.po | 50 ++++--- po/fa.po | 50 ++++--- po/fi.po | 50 ++++--- po/fr.po | 74 +++++----- po/gl.po | 50 ++++--- po/he.po | 50 ++++--- po/hi.po | 50 ++++--- po/hr.po | 50 ++++--- po/hu.po | 50 ++++--- po/id.po | 50 ++++--- po/it.po | 50 ++++--- po/ja.po | 83 ++++++------ po/ka.po | 50 ++++--- po/ko.po | 50 ++++--- po/lt.po | 50 ++++--- po/lv.po | 50 ++++--- po/mk.po | 50 ++++--- po/ml.po | 46 ++++--- po/mn.po | 50 ++++--- po/ms.po | 50 ++++--- po/nb.po | 50 ++++--- po/nl.po | 50 ++++--- po/phpmyadmin.pot | 46 ++++--- po/pl.po | 50 ++++--- po/pt.po | 50 ++++--- po/pt_BR.po | 50 ++++--- po/ro.po | 50 ++++--- po/ru.po | 50 ++++--- po/si.po | 50 ++++--- po/sk.po | 336 +++++++++------------------------------------- po/sl.po | 50 ++++--- po/sq.po | 50 ++++--- po/sr.po | 50 ++++--- po/sr@latin.po | 50 ++++--- po/sv.po | 50 ++++--- po/ta.po | 46 ++++--- po/te.po | 48 ++++--- po/th.po | 50 ++++--- po/tr.po | 50 ++++--- po/tt.po | 50 ++++--- po/ug.po | 50 ++++--- po/uk.po | 50 ++++--- po/ur.po | 50 ++++--- po/uz.po | 50 ++++--- po/uz@latin.po | 50 ++++--- po/zh_CN.po | 50 ++++--- po/zh_TW.po | 50 ++++--- 64 files changed, 2048 insertions(+), 1596 deletions(-) diff --git a/po/af.po b/po/af.po index 0da226cb27..aa6f18ad18 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -1144,6 +1144,18 @@ msgstr "SQL-stelling" msgid "Show search results" msgstr "SQL-stelling" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Beloer Data" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "Verwyder" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2059,7 +2071,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentasie" @@ -4960,7 +4972,7 @@ msgstr "Bediener weergawe" msgid "Link not found" msgstr "Skakel nie gevind nie" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Wys PHP informasie" @@ -6876,31 +6888,31 @@ msgstr "PHP Version" msgid "Show PHP information" msgstr "Wys PHP informasie" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Amptelike phpMyAdmin Tuisblad" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Kenmerke" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Geen verandering" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6908,21 +6920,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6930,24 +6942,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6959,21 +6971,21 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ar.po b/po/ar.po index 6502b9cf79..6b0b8a1741 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" @@ -1162,6 +1162,18 @@ msgstr "في الاستعلام" msgid "Show search results" msgstr "استعلام-SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "استعراض" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "قيد حذف %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2076,7 +2088,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "مستندات وثائقية" @@ -4999,7 +5011,7 @@ msgstr "تكوين" msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6970,27 +6982,27 @@ msgstr "" msgid "Show PHP information" msgstr "عرض المعلومات المتعلقة ب PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "ويكي" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "الصفحة الرئيسية الرسمية لـ phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "مشاركه" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "اجلب دعم" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "قائمة التعديلات" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7002,21 +7014,21 @@ msgstr "" "الافتراضية معرض لخطر الاقتحام، وعليك أن تقوم بإصلاح ثغرة الأمان هذه في أقرب " "وقت ممكن." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7024,24 +7036,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7053,21 +7065,21 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" "s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/az.po b/po/az.po index 645a5fe020..54d8df7f79 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -1159,6 +1159,18 @@ msgstr "SQL sorğusu" msgid "Show search results" msgstr "SQL sorğusu" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "İçindekiler" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s silinir" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2076,7 +2088,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentasiya" @@ -5021,7 +5033,7 @@ msgstr "Server versiyası" msgid "Link not found" msgstr "Link tapılmadı" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Sisteme Giriş Me'lumatı" @@ -7019,31 +7031,31 @@ msgstr "PHP Versiyası" msgid "Show PHP information" msgstr "PHPInfo() me'lumatını göster" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin Resmi İnternet Sehifesi" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Xüsusiyyetler" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Deyişiklik Yoxdur" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7054,21 +7066,21 @@ msgstr "" "istifadeçisi) mövcuddur ki, bu da tehlükesizlik nöqteyi nezerinden e'tibarlı " "deyildir." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7076,24 +7088,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7105,21 +7117,21 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/be.po b/po/be.po index 0d768f8a0d..1f136bb23b 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -1186,6 +1186,18 @@ msgstr "SQL-запыт" msgid "Show search results" msgstr "SQL-запыт" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Прагляд" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Выдаленьне %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2126,7 +2138,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Дакумэнтацыя" @@ -5132,7 +5144,7 @@ msgstr "Стварыць сувязь" msgid "Link not found" msgstr "Сувязь ня знойдзеная" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Інфармацыя пра вэрсію" @@ -7231,31 +7243,31 @@ msgstr "Пашырэньне PHP" msgid "Show PHP information" msgstr "Паказаць інфармацыю пра PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Афіцыйная старонка phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрыбуты" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Няма зьменаў" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7268,7 +7280,7 @@ msgstr "" "зьнешняга ўрываньня, і таму вам абавязкова трэба выправіць гэтую хібу ў " "бясьпецы." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7277,7 +7289,7 @@ msgstr "" "Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая " "опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7287,7 +7299,7 @@ msgstr "" "шматбайтавую кадыроўку. Без пашырэньня mbstring phpMyAdmin ня можа падзяляць " "радкі карэктна, і гэта можа прывесьці да нечаканых вынікаў." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7295,25 +7307,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Канфігурацыйнаму файлу зараз патрэбная сакрэтная фраза (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7325,14 +7337,14 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7341,7 +7353,7 @@ msgstr "" "Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага " "сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/be@latin.po b/po/be@latin.po index 7637ac9e6b..0bca0b5137 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -1185,6 +1185,18 @@ msgstr "pa zapytu" msgid "Show search results" msgstr "U vyhladzie SQL-zapytu" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Prahlad" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Vydaleńnie %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2134,7 +2146,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dakumentacyja" @@ -5106,7 +5118,7 @@ msgstr "Stvaryć" msgid "Link not found" msgstr "Suviaź nia znojdzienaja" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Infarmacyja pra versiju" @@ -7205,31 +7217,31 @@ msgstr "Pašyreńnie PHP" msgid "Show PHP information" msgstr "Pakazać infarmacyju pra PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Aficyjnaja staronka phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atrybuty" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Niama źmienaŭ" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7242,7 +7254,7 @@ msgstr "" "źniešniaha ŭryvańnia, i tamu vam abaviazkova treba vypravić hetuju chibu ŭ " "biaśpiecy." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7251,7 +7263,7 @@ msgstr "" "Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja " "opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7261,7 +7273,7 @@ msgstr "" "šmatbajtavuju kadyroŭku. Biez pašyreńnia mbstring phpMyAdmin nia moža " "padzialać radki karektna, i heta moža pryvieści da niečakanych vynikaŭ." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7269,25 +7281,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Kanfihuracyjnamu fajłu zaraz patrebnaja sakretnaja fraza (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7299,14 +7311,14 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7315,7 +7327,7 @@ msgstr "" "Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha " "servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/bg.po b/po/bg.po index 64d2fc4813..73cbd355a2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-17 16:22+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -708,12 +708,10 @@ msgid "Add prefix to table" msgstr "Добавяне представка към таблица" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Заменяне на представката за таблици" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" @@ -956,12 +954,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цялата БД!" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "Вие ще УНИЩОЖИТЕ цяла таблица!" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "Вие ще ИЗПРАЗНИТЕ цяла таблица!" @@ -1100,7 +1096,6 @@ msgid "Searching" msgstr "Търсене" #: js/messages.php:84 -#| msgid "Query results" msgid "Hide search results" msgstr "Скриване резултати от търсенето" @@ -1108,6 +1103,18 @@ msgstr "Скриване резултати от търсенето" msgid "Show search results" msgstr "Показване резултати от търсенето" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Прелистване" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Изтриване на %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1962,7 +1969,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Документация" @@ -4749,7 +4756,7 @@ msgstr "Създаване на изглед" msgid "Link not found" msgstr "Връзките не са намерени" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Информация за весията" @@ -5568,7 +5575,6 @@ msgid "Convert to Kana" msgstr "" #: libraries/mult_submits.inc.php:249 -#| msgid "Fr" msgid "From" msgstr "От" @@ -5803,7 +5809,6 @@ msgid "Reload navigation frame" msgstr "" #: libraries/plugin_interface.lib.php:336 -#| msgid "This format has no options" msgid "This format has no options" msgstr "Този формат няма опции" @@ -6036,7 +6041,6 @@ msgid "Page name" msgstr "Име на страница" #: libraries/schema/User_Schema.class.php:103 -#| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "" @@ -6061,7 +6065,6 @@ msgid "Select Tables" msgstr "Избери таблици" #: libraries/schema/User_Schema.class.php:346 -#| msgid "Relational schema" msgid "Display relational schema" msgstr "" @@ -6098,7 +6101,6 @@ msgid "Portrait" msgstr "Портретно" #: libraries/schema/User_Schema.class.php:394 -#| msgid "Creation" msgid "Orientation" msgstr "Посока" @@ -6558,7 +6560,6 @@ msgstr "" "изведени залепени от края в слъчай на скъсяване (По подразбиране: \"...\")." #: libraries/user_preferences.inc.php:32 -#| msgid "General relation features" msgid "Manage your settings" msgstr "Управление мои настройки" @@ -6593,7 +6594,6 @@ msgid "Error in ZIP archive:" msgstr "Грешка в ZIP архива:" #: main.php:65 -#| msgid "General relation features" msgid "General Settings" msgstr "Общи настройки" @@ -6639,27 +6639,27 @@ msgstr "PHP разшрение" msgid "Show PHP information" msgstr "Информация за PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Официална страница на phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Принос" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Списък с промените" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6672,21 +6672,21 @@ msgstr "" "да оправите тази дупка в сигурността като зададете парола на потребителя " "'root'." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6694,24 +6694,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурационния файл има нужда от тайна парола (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -6720,21 +6720,21 @@ msgstr "" "Конфигурация на phpMyAdmin е непълна и някои разширени функции са " "деактивирани. За да разберете защо натиснете %sтук%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6811,7 +6811,6 @@ msgid "Import/Export coordinates for PDF schema" msgstr "" #: pmd_general.php:120 -#| msgid "Submit Query" msgid "Build Query" msgstr "" @@ -6841,7 +6840,6 @@ msgstr "" #: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652 #: pmd_general.php:769 -#| msgid "Export" msgid "Except" msgstr "Освен" @@ -6855,12 +6853,10 @@ msgid "Rename to" msgstr "Преименуване на" #: pmd_general.php:482 pmd_general.php:581 -#| msgid "User name" msgid "New name" msgstr "" #: pmd_general.php:485 pmd_general.php:700 -#| msgid "Create" msgid "Aggregate" msgstr "" @@ -6871,7 +6867,6 @@ msgid "Operator" msgstr "Оператор" #: pmd_general.php:810 -#| msgid "Table options" msgid "Active options" msgstr "Активни опции" @@ -6899,17 +6894,14 @@ msgid "Page" msgstr "Страница" #: pmd_pdf.php:99 -#| msgid "Import files" msgid "Import from selected page" msgstr "Импорт от избрания файл" #: pmd_pdf.php:100 -#| msgid "No rows selected" msgid "Export to selected page" msgstr "" #: pmd_pdf.php:102 -#| msgid "Create a new index" msgid "Create a page and export to it" msgstr "" @@ -7587,7 +7579,6 @@ msgstr "" #: server_replication.php:72 #, php-format -#| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "" @@ -8524,7 +8515,6 @@ msgid "Enter manually" msgstr "" #: server_synchronize.php:1138 -#| msgid "max. concurrent connections" msgid "Current connection" msgstr "Текуща връзка" @@ -8588,7 +8578,6 @@ msgid "Insecure connection" msgstr "" #: setup/frames/index.inc.php:92 -#| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "Конфигурацията запазена." @@ -8848,7 +8837,6 @@ msgid "Showing SQL query" msgstr "" #: sql.php:622 -#| msgid "Validate SQL" msgid "Validated SQL" msgstr "Валидиран SQL" @@ -8871,7 +8859,6 @@ msgid "Function" msgstr "Функция" #: tbl_change.php:758 -#| msgid " Because of its length,
    this field might not be editable " msgid " Because of its length,
    this column might not be editable " msgstr " Поради дължината си,
    това поле може да е нередактируемо " @@ -8932,7 +8919,6 @@ msgid "Continue insertion with %s rows" msgstr "" #: tbl_chart.php:56 -#| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." msgstr "Диаграмата е създадена." @@ -8983,12 +8969,10 @@ msgid "Radar" msgstr "Радар" #: tbl_chart.php:138 -#| msgid "PiB" msgid "Pie" msgstr "Пита" #: tbl_chart.php:144 -#| msgid "Query type" msgid "Bar type" msgstr "Стълбове" @@ -9245,7 +9229,6 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "" #: tbl_relation.php:402 -#| msgid "Internal relations" msgid "Internal relation" msgstr "Вътрешна релация" @@ -9310,7 +9293,6 @@ msgstr "Няма" #: tbl_structure.php:398 #, php-format -#| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Колоната %s беше изтрита" @@ -9326,7 +9308,6 @@ msgid "An index has been added on %s" msgstr "Беше добавен индекс на %s" #: tbl_structure.php:471 -#| msgid "Show versions" msgid "Show more actions" msgstr "Показване повече действия" @@ -9357,7 +9338,6 @@ msgstr "След %s" #: tbl_structure.php:689 #, php-format -#| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" @@ -9413,7 +9393,6 @@ msgid "Tracking data definition successfully deleted" msgstr "" #: tbl_tracking.php:384 tbl_tracking.php:401 -#| msgid "Query type" msgid "Query error" msgstr "Грешка в заявката" @@ -9435,7 +9414,6 @@ msgid "Delete tracking data row from report" msgstr "" #: tbl_tracking.php:443 -#| msgid "No databases" msgid "No data" msgstr "Няма данни" diff --git a/po/bn.po b/po/bn.po index 3d089be76e..ae43e47fac 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -1173,6 +1173,18 @@ msgstr "SQL query" msgid "Show search results" msgstr "SQL query" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "ব্রাউজ করুন" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s মুছে ফেলা হচ্ছে" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2103,7 +2115,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "বর্ণনা" @@ -5098,7 +5110,7 @@ msgstr "Server version" msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Version information" @@ -7150,31 +7162,31 @@ msgstr "PHP Version" msgid "Show PHP information" msgstr "Show PHP information" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Official phpMyAdmin Homepage" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Attributes" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "No change" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7186,7 +7198,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7196,7 +7208,7 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7206,7 +7218,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7214,25 +7226,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7244,21 +7256,21 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/bs.po b/po/bs.po index 565c84653d..71be0de9ba 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -1155,6 +1155,18 @@ msgstr "SQL upit" msgid "Show search results" msgstr "SQL upit" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Pregled" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brišem %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2073,7 +2085,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentacija" @@ -5010,7 +5022,7 @@ msgstr "Verzija servera" msgid "Link not found" msgstr "Veza nije pronađena" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Podatci o prijavi" @@ -6999,31 +7011,31 @@ msgstr "verzija PHP-a" msgid "Show PHP information" msgstr "Prikaži informacije o PHP-u" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin veb sajt" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributi" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Nema izmjena" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7035,21 +7047,21 @@ msgstr "" "ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite " "ovaj sigurnosni rizik." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7057,24 +7069,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7086,21 +7098,21 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ca.po b/po/ca.po index 905559ac49..1d69ae1105 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -1130,6 +1130,18 @@ msgstr "Amaga el criteri de cerca" msgid "Show search results" msgstr "Mostrar criteri de cerca" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Navega" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Esborrant %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2001,7 +2013,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentació" @@ -5000,7 +5012,7 @@ msgstr "Crea una vista" msgid "Link not found" msgstr "No s'ha trobat l'enllaç " -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informació de versió" @@ -7022,27 +7034,27 @@ msgstr "Extensió PHP" msgid "Show PHP information" msgstr "Mostra informació de PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Pàgina oficial del phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Contribueix" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Obtenir suport" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Llista de canvis" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7055,7 +7067,7 @@ msgstr "" "i s'exposa a intrusions, pel que recomanem la reparació urgent d'aquest " "forat de seguretat." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7065,7 +7077,7 @@ msgstr "" "PHP. Aquesta opció és incompatible amb phpMyAdmin i pot provocar la perdua " "de dades!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7075,7 +7087,7 @@ msgstr "" "de caràcters multibyte. Sense l'extensió -mbstring-, phpMyAdmin és incapaç " "de dividir cadenes de text correctament i pot generar resultats inesperats." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7087,7 +7099,7 @@ msgstr "" "caducitat de galetes -cookies- configurat a phpMyAdmin, degut a aixó, la " "vostra conenexió caducarà abans del establert a phpMyAdmin." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7096,13 +7108,13 @@ msgstr "" "configuració a phpMyAdmin, degut a aixó, la teva sessió caducarà més aviat " "que el que indica la configuració de phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "L'arxiu de configuració necessita ara una frase de pas secreta " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7112,7 +7124,7 @@ msgstr "" "encara existeix dins del vostre directori de phpMyAdmin. Heu d'esborrar-ho " "un cop heu acabat de configurar phpMyAdmin." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7122,7 +7134,7 @@ msgstr "" "completa, s'han desactivat algunes característiques avançades. Per saber " "perquè, clica %saquí%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7132,7 +7144,7 @@ msgstr "" "algunes funcions de phpMyAdmin poden estar desactivades. Per exemple, el " "marc de navegació no s'actualitzarà automàticament." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7141,7 +7153,7 @@ msgstr "" "La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor " "MySQL versió %s. Aixó pot provocar comportaments inesperats." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/cs.po b/po/cs.po index e743eed7f6..27a6b9c2c9 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-17 13:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -619,8 +619,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:379 libraries/display_tbl.lib.php:2037 #, 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." @@ -712,17 +712,14 @@ msgid "Analyze table" msgstr "Analyzovat tabulku" #: db_structure.php:521 -#| msgid "Go to table" msgid "Add prefix to table" msgstr "Přidat tabulce předponu" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Změnit tabulce předponu" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" @@ -860,8 +857,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -972,12 +969,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "Chystáte se ZRUŠIT celou tabulku!" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "Chystáte se VYPRÁZDNIT celou tabulku!" @@ -1116,15 +1111,25 @@ msgid "Searching" msgstr "Vyhledávám" #: js/messages.php:84 -#| msgid "Hide search criteria" msgid "Hide search results" msgstr "Skrýt výsledky vyhledávání" #: js/messages.php:85 -#| msgid "Show search criteria" msgid "Show search results" msgstr "Zobrazit výsledky vyhledávání" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Projít" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Odstraňuji %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1227,7 +1232,6 @@ msgid ", latest stable version:" msgstr ", poslední stabilní verze:" #: js/messages.php:128 -#| msgid "Jump to database" msgid "up to date" msgstr "aktuální" @@ -1698,8 +1702,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -1994,7 +1998,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentace" @@ -4673,8 +4677,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 " @@ -4961,7 +4965,7 @@ msgstr "Vytvořit pohled" msgid "Link not found" msgstr "Odkaz nenalezen" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informace o verzi" @@ -5400,8 +5404,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -5868,7 +5872,6 @@ msgid "Convert to Kana" msgstr "Převést na Kanu" #: libraries/mult_submits.inc.php:249 -#| msgid "Fr" msgid "From" msgstr "Z" @@ -5886,7 +5889,6 @@ msgid "Add table prefix" msgstr "Přidat tabulce předponu" #: libraries/mult_submits.inc.php:266 -#| msgid "Add index" msgid "Add prefix" msgstr "Přidat předponu" @@ -6665,8 +6667,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " -"%spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" +"spopisy transformací%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6717,8 +6719,8 @@ msgid "" "No description is available for this transformation.
    Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
    Zeptejte se autora co " -"%s dělá." +"Pro tuto transformaci není dostupný žádný popis.
    Zeptejte se autora co %" +"s dělá." #: libraries/tbl_properties.inc.php:727 server_engines.php:56 #: tbl_operations.php:370 @@ -6957,27 +6959,27 @@ msgstr "Rozšíření PHP" msgid "Show PHP information" msgstr "Zobrazit informace o PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Oficiální stránka phpMyAdmina" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Přispějte" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Získejte podporu" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Seznam změn" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6988,7 +6990,7 @@ msgstr "" "nastavit heslo pro uživatele 'root' a tím podstatně zvýšit zabezpečení " "vašeho serveru." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6997,7 +6999,7 @@ msgstr "" "V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není " "kompatibilní s phpMyAdminem a může způsobit poškození dat!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7007,7 +7009,7 @@ msgstr "" "bajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně " "rozdělovat řetězce a proto to může mít nečekané následky." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7019,7 +7021,7 @@ msgstr "" "platnost cookies nastavená v phpMyAdminovi. Z tohoto důvodu bude vaše " "přilášení neplatné dříve, než je nastaveno v phpMyAdminovi." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7028,13 +7030,13 @@ msgstr "" "phpMyAdminovi. Z tohoto důvodu vaše přihlášení vyprší dříve než je nastavené " "v phpMyAdminovi." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním " "souboru (config.inc.php)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7044,7 +7046,7 @@ msgstr "" "existuje v adresáři s phpMyAdminem. Měli byste ho odstranit, jakmile je " "phpMyAdmin nastaven." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7053,7 +7055,7 @@ msgstr "" "Úložiště nastavení phpMyAdmina není plně dostupné, některé z rozšířených " "funkcí phpMyAdmina nelze používat. %sZde%s zjistíte proč." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7063,7 +7065,7 @@ msgstr "" "phpMyAdmin nemusí fungovat správně. Například navigační rám se nebude " "automaticky obnovovat." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7072,7 +7074,7 @@ msgstr "" "Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá " "verzi %s. Používání různých verzí může způsobit problémy." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7337,8 +7339,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " -"%sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" +"sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7786,8 +7788,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -9044,7 +9046,6 @@ msgid "Insecure connection" msgstr "Nezabezpečené připojení" #: setup/frames/index.inc.php:92 -#| msgid "Configuration storage" msgid "Configuration saved." msgstr "Konfigurace uložena." @@ -9256,8 +9257,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" -"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" +"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9268,8 +9269,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." @@ -9913,17 +9914,14 @@ msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" #: tbl_tracking.php:382 -#| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" #: tbl_tracking.php:384 tbl_tracking.php:401 -#| msgid "Gather errors" msgid "Query error" msgstr "Chyba dotazu" #: tbl_tracking.php:399 -#| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" @@ -9937,12 +9935,10 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Zobrazit %s s datem od %s do %s od uživatele %s %s" #: tbl_tracking.php:432 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Odstranit tyto informace o sledování této tabulky" #: tbl_tracking.php:443 -#| msgid "No databases" msgid "No data" msgstr "Nejsou k dispozici žádná data" diff --git a/po/cy.po b/po/cy.po index c871a37a05..0b98aa6506 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -1165,6 +1165,18 @@ msgstr "mewn ymholiad" msgid "Show search results" msgstr "Dangos ymholiad mewnosod" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Porwch" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "Dileu" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2045,7 +2057,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dogfennaeth" @@ -4976,7 +4988,7 @@ msgstr "Crëwch fersiwn" msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Gwybodaeth y fersiwn" @@ -6859,29 +6871,29 @@ msgstr "Estyniad PHP" msgid "Show PHP information" msgstr "Dangos gwybodaeth PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wici" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Hafan Swyddogol" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Dim newid" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6889,21 +6901,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6911,24 +6923,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6940,21 +6952,21 @@ msgstr "" "Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " "hanalluogi. Pwyswch %syma%s i ddarganfod pam." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/da.po b/po/da.po index c92c3c5d48..7a22ee5313 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" @@ -1161,6 +1161,18 @@ msgstr "i forespørgsel" msgid "Show search results" msgstr "Viser SQL-forespørgsel" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Vis" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Sletter %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2100,7 +2112,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentation" @@ -5053,7 +5065,7 @@ msgstr "Opret" msgid "Link not found" msgstr "Link ikke fundet" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versionsinformation" @@ -7091,31 +7103,31 @@ msgstr "" msgid "Show PHP information" msgstr "Vis PHP-information" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Officiel phpMyAdmin hjemmeside " -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Attributter" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Ingen ændring" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7127,7 +7139,7 @@ msgstr "" "kører med denne standardindstilling, er åben for indtrængen, og du " "opfordres stærkt til at gøre noget ved dette sikkerhedshul." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7137,7 +7149,7 @@ msgstr "" "indstilling er ikke kompatibel med phpMyAdmin og kan forårsage ødelæggelse " "af nogle data!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7147,7 +7159,7 @@ msgstr "" "multibyte tegnsæt. Uden mbstring-udvidelsen er phpMyAdmin ude af stand til " "at opdele strenge korrekt og dette kan forårsage uventede resultater" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7155,25 +7167,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7185,14 +7197,14 @@ msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7201,7 +7213,7 @@ msgstr "" "Din PHP MySQL-biblioteks version %s afviger fra din MySQL server version %s. " "Dette kan forårsage uforudsigelige resultater." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/de.po b/po/de.po index 5c222603d0..b35bcfc460 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" @@ -1132,6 +1132,18 @@ msgstr "Suchkriterien ausblenden" msgid "Show search results" msgstr "Suchkriterien anzeigen" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Anzeigen" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Lösche %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2007,7 +2019,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentation" @@ -5002,7 +5014,7 @@ msgstr "Erzeuge View" msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden." -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versionsinformationen" @@ -7036,27 +7048,27 @@ msgstr "PHP Erweiterung" msgid "Show PHP information" msgstr "PHP-Informationen anzeigen" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Offizielle Homepage " -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Mitmachen" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Unterstützung erhalten" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Liste der Änderungen" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7069,7 +7081,7 @@ msgstr "" "leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke " "unbedingt schließen!" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7079,7 +7091,7 @@ msgstr "" "aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen " "und Datenverlust kommen kann." -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7090,7 +7102,7 @@ msgstr "" "Erweiterung ist phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was " "zu unerwarteten Ergebnissen führen kann." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7102,7 +7114,7 @@ msgstr "" "die in phpMyAdmin konfigurierte Cookiegültigkeit, deshalb wird Ihre " "Anmeldung eher ablaufen als in phpMyAdmin konfiguriert." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7111,13 +7123,13 @@ msgstr "" "phpMyAdmin eingestellt ist, daher wird Ihre Anmeldung eher ablaufen als in " "phpMyAdmin konfiguriert." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Ab sofort muss ein geheimes Passwort zur Verschlüsselung in der " "Konfigurationsdatei gesetzt werden (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7126,7 +7138,7 @@ msgstr "" "Das [code]config[/code] Unterverzeichnis des Installationsskripts ist noch " "vorhanden. Sie sollten es nach der Konfiguration von phpMyAdmin entfernen." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7136,7 +7148,7 @@ msgstr "" "einige erweiterte Funktionen wurden deaktiviert. Klicken Sie %shier%s, um " "herauszufinden warum." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7146,7 +7158,7 @@ msgstr "" "von phpMyAdmin stehen daher nicht zur Verfügung. Zum Beispiel wird die " "Navigation nicht automatisch aktualisiert." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7155,7 +7167,7 @@ msgstr "" "Die Version der verwendeten PHP MySQL Bibliothek %s unterscheidet sich von " "der Version des MySQL Servers %s. Dies kann zu unerwartetem Verhalten führen." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/el.po b/po/el.po index 100377a89f..a725386ac8 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-05 11:15+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -1133,6 +1133,18 @@ msgstr "Απόκρυψη κριτηρίων αναζήτησης" msgid "Show search results" msgstr "Προβολή κριτηρίων αναζήτησης" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Περιήγηση" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Διαγραφή %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2007,7 +2019,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -5029,7 +5041,7 @@ msgstr "Δημιουργία προβολής" msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Πληροφορίες έκδοσης" @@ -7059,27 +7071,27 @@ msgstr "Επέκταση PHP" msgid "Show PHP information" msgstr "Εμφάνιση πληροφοριών της PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Επίσημη σελίδα του phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Συνεισφορά" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Υποστήριξη" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Λίστα αλλαγών" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7092,7 +7104,7 @@ msgstr "" "επιθέσεις και θα πρέπει να διορθώσετε το πρόβλημα εισάγωντας κωδικό " "πρόσβασης για το χρήστη «root».." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7102,7 +7114,7 @@ msgstr "" "επιλογή είναι ασύμβατη με το phpMyAdmin και ίσως προκαλέσει πρόβλημα με " "μερικά δεδομένα!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7113,7 +7125,7 @@ msgstr "" "μπορεί να χωρίσει συμβολοσειρές σωστά και ίσως προκύψουν μη αναμενόμενα " "αποτελέσματα." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7125,7 +7137,7 @@ msgstr "" "ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας " "θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7135,13 +7147,13 @@ msgstr "" "ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας " "θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Το αρχείο ρυθμίσεων χρειάζεται τώρα μία μυστική φράση-κλειδί " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7151,7 +7163,7 @@ msgstr "" "εγκατάστασης, υπάρχει ακόμα στο φάκελο phpMyAdmin. Πρέπει να τον διαγράψετε " "μόλις ρυθμιστεί το phpMyAdmin." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7161,7 +7173,7 @@ msgstr "" "εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" "sεδώ%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7171,7 +7183,7 @@ msgstr "" "σας. Μερικές λειτουργίες του phpMyAdmin δεν θα υφίσταται. Για παράδειγμα το " "πλαίσιο πλοήγησης δεν θα ανανεώνεται αυτόματα." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7180,7 +7192,7 @@ msgstr "" "Η έκδοση της βιβλιοθήκης PHP MySQL (%s) διαφέρει από την έκδοση του " "διακομιστή MySQL (%s). Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/en_GB.po b/po/en_GB.po index 0c5a4c271e..e735f2c3b1 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-17 13:52+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: english-gb \n" -"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -708,17 +708,14 @@ msgid "Analyze table" msgstr "Analyse table" #: db_structure.php:521 -#| msgid "Go to table" msgid "Add prefix to table" msgstr "Add prefix to table" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Replace table prefix" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Copy table with prefix" @@ -965,12 +962,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "You are about to DESTROY a complete table!" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "You are about to TRUNCATE a complete table!" @@ -1109,15 +1104,25 @@ msgid "Searching" msgstr "Searching" #: js/messages.php:84 -#| msgid "Hide search criteria" msgid "Hide search results" msgstr "Hide search results" #: js/messages.php:85 -#| msgid "Show search criteria" msgid "Show search results" msgstr "Show search results" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Browse" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Deleting %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1221,7 +1226,6 @@ msgid ", latest stable version:" msgstr ", latest stable version:" #: js/messages.php:128 -#| msgid "Jump to database" msgid "up to date" msgstr "up to date" @@ -1985,7 +1989,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentation" @@ -4947,7 +4951,7 @@ msgstr "Create view" msgid "Link not found" msgstr "Link not found" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Version information" @@ -5860,7 +5864,6 @@ msgid "Convert to Kana" msgstr "Convert to Kana" #: libraries/mult_submits.inc.php:249 -#| msgid "Fr" msgid "From" msgstr "From" @@ -5878,7 +5881,6 @@ msgid "Add table prefix" msgstr "Add table prefix" #: libraries/mult_submits.inc.php:266 -#| msgid "Add index" msgid "Add prefix" msgstr "Add prefix" @@ -6950,27 +6952,27 @@ msgstr "PHP extension" msgid "Show PHP information" msgstr "Show PHP information" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Official Homepage" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Contribute" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Get support" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "List of changes" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6982,7 +6984,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6992,7 +6994,7 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7002,7 +7004,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7014,7 +7016,7 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7022,12 +7024,12 @@ msgstr "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7037,7 +7039,7 @@ msgstr "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7046,7 +7048,7 @@ msgstr "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7056,7 +7058,7 @@ msgstr "" "functionality will be missing. For example navigation frame will not refresh " "automatically." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7065,7 +7067,7 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behaviour." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7911,7 +7913,6 @@ msgstr "Unable to change master" #: server_replication.php:72 #, php-format -#| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Master server changed successfully to %s" @@ -9045,7 +9046,6 @@ msgid "Insecure connection" msgstr "Insecure connection" #: setup/frames/index.inc.php:92 -#| msgid "Configuration storage" msgid "Configuration saved." msgstr "Configuration saved." @@ -9910,7 +9910,6 @@ msgid "Tracking data definition successfully deleted" msgstr "Tracking data definition successfully deleted" #: tbl_tracking.php:384 tbl_tracking.php:401 -#| msgid "Gather errors" msgid "Query error" msgstr "Query error" @@ -9928,12 +9927,10 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Show %s with dates from %s to %s by user %s %s" #: tbl_tracking.php:432 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Delete tracking data row from report" #: tbl_tracking.php:443 -#| msgid "No databases" msgid "No data" msgstr "No data" diff --git a/po/es.po b/po/es.po index 4639b8b42b..b7bad3d974 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-02 11:10+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -1138,6 +1138,18 @@ msgstr "Ocultar criterio de búsqueda" msgid "Show search results" msgstr "Mostrar criterio de búsqueda" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Examinar" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Borrando %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2014,7 +2026,7 @@ msgstr "es" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentación" @@ -5055,7 +5067,7 @@ msgstr "Crear vista" msgid "Link not found" msgstr "No se encontró el enlace" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Acerca de esta versión" @@ -7106,27 +7118,27 @@ msgstr "extensión PHP" msgid "Show PHP information" msgstr "Mostrar la información de PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Página oficial de phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Contribuir" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Obtener soporte" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Lista de cambios" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7141,7 +7153,7 @@ msgstr "" "contraseña a root@localhost. Deberá escribir la misma contraseña en config." "inc.php de phpMyAdmin." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7151,7 +7163,7 @@ msgstr "" "opción es incompatible con phpMyAdmin y podría causar la pérdida de algunos " "datos!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7161,7 +7173,7 @@ msgstr "" "tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas " "de caracteres sin la extensión mbstring y podría dar resultados inesperados." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7173,7 +7185,7 @@ msgstr "" "de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes " "de lo configurado en phpMyAdmin." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7182,13 +7194,13 @@ msgstr "" "de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes " "de lo configurado en phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "El archivo de configuración ahora necesita una frase secreta " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7198,7 +7210,7 @@ msgstr "" "aún existe en el directorio phpMyAdmin. Deberías eliminarlo una vez que " "phpMyAdmin fue configurado." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7208,7 +7220,7 @@ msgstr "" "configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" "sPulsa aquí para averiguar por qué%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7218,7 +7230,7 @@ msgstr "" "en el mismo. Faltará alguna funcionalidad phpMyAdmin; por ejemplo, el marco " "de navegación no actualizará automáticamente." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7227,7 +7239,7 @@ msgstr "" "Su versión de librería PHP MySQL %s es distinta de aquella de su versión de " "servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/et.po b/po/et.po index f4c1e5587c..2618524134 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -1177,6 +1177,18 @@ msgstr "SQL-päring" msgid "Show search results" msgstr "SQL-päring" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Vaata" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Kustutan %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2106,7 +2118,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentatsioon" @@ -5099,7 +5111,7 @@ msgstr "Suhte loomine (relation)" msgid "Link not found" msgstr "Linki ei leitud" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versiooni info" @@ -7151,31 +7163,31 @@ msgstr "PHP versioon" msgid "Show PHP information" msgstr "Näita PHP informatsiooni" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Ametlik phpMyAdmini koduleht" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Parameetrid" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Ei muudetud" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7187,7 +7199,7 @@ msgstr "" "server jookseb sellise seadega on ta avatud rünnakutele, soovitav on see " "turvaauk kiiresti parandada." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7196,7 +7208,7 @@ msgstr "" "Te olete lubanud mbstring.func_overload oma PHP konfiguratsioonis. See seade " "ei ühildu phpMyAdminiga ja võib osade andmete kadumist põhjustada!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7206,7 +7218,7 @@ msgstr "" "tähetabelit. Ilma mbstring lisata ei suuda phpMyAdmin poolitada teksti " "korrektselt ja tulemus võib olla ootustele mittevastav." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7214,24 +7226,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguratsioonifail nõuab nüüd salajast võtmesõna (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7243,21 +7255,21 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/eu.po b/po/eu.po index b59f4865fe..78106319cf 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -1159,6 +1159,18 @@ msgstr "SQL kontsulta" msgid "Show search results" msgstr "SQL kontsulta" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Arakatu" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s ezabatzen" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2078,7 +2090,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentazioa" @@ -5017,7 +5029,7 @@ msgstr "Zerbitzariaren bertsioa" msgid "Link not found" msgstr "Esteka aurkitugabea" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Saioa hasteko informazioa" @@ -7015,31 +7027,31 @@ msgstr "PHP Bertsioa" msgid "Show PHP information" msgstr "PHP informazioa erakutsi" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin-en webgune ofiziala" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributuak" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Aldaketarik ez" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7051,21 +7063,21 @@ msgstr "" "lehenetsitako balio hauekin ari da lanean; atzipen-saiakera arrotzei irekita " "beraz. Segurtasun-zulo hau konpondu beharko zenuke." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7073,26 +7085,26 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurazio-fitxategiak orain ezkutuko pasahitz bat behar du " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7104,21 +7116,21 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/fa.po b/po/fa.po index 6930e410af..0e0615fa0c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -1123,6 +1123,18 @@ msgstr "پرس و جوي SQL" msgid "Show search results" msgstr "پرس و جوي SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "مشاهده" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "در حال پاک کردن %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2036,7 +2048,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "مستندات" @@ -4940,7 +4952,7 @@ msgstr "نسخه سرور" msgid "Link not found" msgstr "پيوند پيدا نشد" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "اطلاعات ورود" @@ -6846,29 +6858,29 @@ msgstr "نسخه PHP" msgid "Show PHP information" msgstr "نمايش اطلاعات PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "صفحه خانه رسمي phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "ويژگيها" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6879,21 +6891,21 @@ msgstr "" "حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " "، و شما بايد اين حفره امنيتي را ذرست كنيد." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6901,24 +6913,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6930,21 +6942,21 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/fi.po b/po/fi.po index 480f553f0c..9a9d25ba5f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -1128,6 +1128,18 @@ msgstr "Piilota SQL-kyselykenttä" msgid "Show search results" msgstr "Näytä kyselykenttä" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Selaa" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Poistetaan: %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1999,7 +2011,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Ohjeet" @@ -5161,7 +5173,7 @@ msgstr "Luo käyttäjä" msgid "Link not found" msgstr "Linkkiä ei löydy" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versiotiedot" @@ -7260,32 +7272,32 @@ msgstr "PHP-laajennus" msgid "Show PHP information" msgstr "Näytä PHP:n asetustiedot" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdminin kotisivut" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Attribuutit" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Vienti" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Ei muutoksia" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7296,7 +7308,7 @@ msgstr "" "(root ilman salasanaa). Tällaisin asetuksin MySQL-palvelin on altis " "hyökkäyksille. Tämä tietoturvariski on syytä korjata pikimmiten!" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7306,7 +7318,7 @@ msgstr "" "valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen " "katoamiseen!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7316,7 +7328,7 @@ msgstr "" "olevan käytössä. Ilman mbstring-laajennusta phpMyAdmin ei osaa jaotella " "merkkijonoja oikein, ja tästä saattaa koitua odottamattomia seurauksia." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7328,7 +7340,7 @@ msgstr "" "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy " "nopeammin kuin phpMyAdminissa on määritetty." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7344,11 +7356,11 @@ msgstr "" "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy " "nopeammin kuin phpMyAdminissa on määritetty." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7358,7 +7370,7 @@ msgstr "" "hakemistossa. Sinun tulee poistaa kansio, kun phpMyAdminin asetukset on " "määritetty." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7370,14 +7382,14 @@ msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7386,7 +7398,7 @@ msgstr "" "PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. " "Tästä voi koitua arvaamattomia seurauksia." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/fr.po b/po/fr.po index 955fdbe409..a7f4ee95ac 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-16 16:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -709,17 +709,14 @@ msgid "Analyze table" msgstr "Analyser la table" #: db_structure.php:521 -#| msgid "Go to table" msgid "Add prefix to table" msgstr "Ajouter un préfixe à la table" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Remplacer le préfixe de table" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" @@ -976,12 +973,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "Vous êtes sur le point de DÉTRUIRE une table au complet !" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "Vous êtes sur le point de VIDER une table au complet !" @@ -1122,15 +1117,25 @@ msgid "Searching" msgstr "En recherche" #: js/messages.php:84 -#| msgid "Hide search criteria" msgid "Hide search results" msgstr "Cacher les résultats de recherche" #: js/messages.php:85 -#| msgid "Show search criteria" msgid "Show search results" msgstr "Afficher les résultats de recherche" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Afficher" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Destruction de %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1233,7 +1238,6 @@ msgid ", latest stable version:" msgstr ", dernière version stable :" #: js/messages.php:128 -#| msgid "Jump to database" msgid "up to date" msgstr "à jour" @@ -2006,7 +2010,7 @@ msgstr "fr" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentation" @@ -5004,7 +5008,7 @@ msgstr "Créer une vue" msgid "Link not found" msgstr "Lien absent" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Version" @@ -5935,7 +5939,6 @@ msgid "Convert to Kana" msgstr "Conversion en kana" #: libraries/mult_submits.inc.php:249 -#| msgid "Fr" msgid "From" msgstr "Depuis" @@ -5953,7 +5956,6 @@ msgid "Add table prefix" msgstr "Ajouter un préfixe de table" #: libraries/mult_submits.inc.php:266 -#| msgid "Add index" msgid "Add prefix" msgstr "Ajouter un préfixe" @@ -7034,27 +7036,27 @@ msgstr "Extension PHP" msgid "Show PHP information" msgstr "Afficher les informations relatives à PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Site officiel" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Contribuer" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Obtenir de l'aide" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Liste des changements" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7066,7 +7068,7 @@ msgstr "" "serveur MySQL est donc ouvert aux intrusions, et vous devriez corriger ce " "problème de sécurité." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7076,7 +7078,7 @@ msgstr "" "option est incompatible avec phpMyAdmin et peut nuire au traitement des " "données !" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7087,7 +7089,7 @@ msgstr "" "phpMyAdmin est incapable de gérer correctement les caractères et il peut en " "résulter des problèmes." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7099,7 +7101,7 @@ msgstr "" "que la durée du cookie configurée dans phpMyAdmin; donc, votre session de " "travail expirera plus tôt." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7108,13 +7110,13 @@ msgstr "" "LoginCookieValidity; donc, votre session de travail expirera plus tôt que la " "valeur configurée dans phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Vous devez ajouter dans le fichier de configuration une phrase de passe " "secrète (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7124,7 +7126,7 @@ msgstr "" "présent dans votre répertoire phpMyAdmin. Vous devriez le supprimer quand " "vous aurez terminé la configuration de phpMyAdmin." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7134,7 +7136,7 @@ msgstr "" "certaines fonctionnalités ont été désactivée. Pour en connaître la raison, " "cliquez %sici%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7144,7 +7146,7 @@ msgstr "" "fonctions de phpMyAdmin seront manquantes. Par exemple le cadre de " "navigation ne sera pas mis à jour automatiquement." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7153,7 +7155,7 @@ msgstr "" "La version de votre bibliothèque MySQL (%s) de PHP diffère de la version de " "votre serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -9185,7 +9187,6 @@ msgid "Insecure connection" msgstr "Connexion non sécurisée" #: setup/frames/index.inc.php:92 -#| msgid "Configuration storage" msgid "Configuration saved." msgstr "Configuration sauvegardée." @@ -10058,16 +10059,19 @@ msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" #: tbl_tracking.php:382 -msgid "Tracking data definition succesfully deleted" +#, fuzzy +#| msgid "Tracking data definition succesfully deleted" +msgid "Tracking data definition successfully deleted" msgstr "Le suivi des définitions de données a été effacé avec succès" #: tbl_tracking.php:384 tbl_tracking.php:401 -#| msgid "Gather errors" msgid "Query error" msgstr "Erreur de requête" #: tbl_tracking.php:399 -msgid "Tracking data manipulation succesfully deleted" +#, fuzzy +#| msgid "Tracking data manipulation succesfully deleted" +msgid "Tracking data manipulation successfully deleted" msgstr "Le suivi des manipulations de données a été effacé avec succès" #: tbl_tracking.php:411 @@ -10080,12 +10084,10 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Montrer %s depuis le %s jusqu'au %s par l'utilisateur %s %s" #: tbl_tracking.php:432 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Supprimer du rapport le suivi des données" #: tbl_tracking.php:443 -#| msgid "No databases" msgid "No data" msgstr "Aucune donnée" diff --git a/po/gl.po b/po/gl.po index ba46ef11cb..81f5967772 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -1183,6 +1183,18 @@ msgstr "Caixa de Procuras SQL" msgid "Show search results" msgstr "Caixa de Procuras SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visualizar" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "A eliminar %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2140,7 +2152,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentación" @@ -5350,7 +5362,7 @@ msgstr "Crear unha versión" msgid "Link not found" msgstr "Non se atopou o vínculo" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Información sobre a versión" @@ -7456,32 +7468,32 @@ msgstr "Engadido de PHP" msgid "Show PHP information" msgstr "Mostrar información sobre o PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Páxina Oficial do phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributos" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Exportar" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Sen cambios" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7494,7 +7506,7 @@ msgstr "" "configuración, está aberto a intrusións e habería que mirar de solucionar " "este problema de seguranza." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7503,7 +7515,7 @@ msgstr "" "Ten activada mbstring.func_overload na configuración do PHP. Esta opción é " "incompatíbel co phpMyAdmin e podería ocasionar danos nos datos" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7513,7 +7525,7 @@ msgstr "" "de caracteres multibyte. Sen o engadido mbstring, o phpMyAdmin é incapaz de " "partir cadeas correctamente e pode provocar resultados inesperados." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7525,7 +7537,7 @@ msgstr "" "das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " "caducará antes do que está configurado en phpMyAdmin." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7541,13 +7553,13 @@ msgstr "" "das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " "caducará antes do que está configurado en phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O ficheiro de configuración agora necesita un contrasinal secreto " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7557,7 +7569,7 @@ msgstr "" "existe aínda no directorio de phpMyAdmin. Deberíao eliminar unha vez " "finalice a configuración do phpMyAdmin." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7569,14 +7581,14 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7585,7 +7597,7 @@ msgstr "" "A versión %s da súa libraría de PHP MySQL difire da versión %s do seu " "servidor de MySQL. Isto pode ocasionar un comportamento impredicíbel." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/he.po b/po/he.po index 796b5d2165..0c049ae082 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -1151,6 +1151,18 @@ msgstr "שאילתת SQL" msgid "Show search results" msgstr "שאילתת SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "עיון" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "מוחק %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2070,7 +2082,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "תיעוד" @@ -5012,7 +5024,7 @@ msgstr "גרסת שרת" msgid "Link not found" msgstr "קישור לא נמצא" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "מידע גרסאות" @@ -6941,31 +6953,31 @@ msgstr "גרסת PHP" msgid "Show PHP information" msgstr "ראיית מידע PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "דף הבית phpMyAdmin הרשמי" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "תכונות" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "ללא שינוי" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6976,14 +6988,14 @@ msgstr "" "ברירת מחדל של MySQL. שרת MySQL שלך פועל עם ברירת מחדל זאת, והוא פתוח לחדירות," "ואתה ממש צריך לתקן את חור אבטחה זה." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6993,7 +7005,7 @@ msgstr "" "mbstring מותקנת, phpMyAdmin אינו יכול לחלק מחרוזות באופן תקין וזה יכול לגרום " "לתוצאות לא רצויות." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7001,24 +7013,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7029,21 +7041,21 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/hi.po b/po/hi.po index 82b9a31999..bd04d1a2c5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -1121,6 +1121,18 @@ msgstr "खोज मापदंड छिपाना" msgid "Show search results" msgstr "खोज मापदंड दिखाना" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "ब्राउज़" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "मिटाएँ" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1974,7 +1986,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "डोक्युमेंटेशन" @@ -4814,7 +4826,7 @@ msgstr "दृश्य बनाइये" msgid "Link not found" msgstr "लिंक नहीं मिला" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "संस्करण जानकारी" @@ -6699,31 +6711,31 @@ msgstr "PHPविस्तार" msgid "Show PHP information" msgstr "PHP कि जानकारी दिखाओ" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "विकी" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin का आधिकारिक होमपेज" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "विकी" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "समर्थन पाएं" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "परिवर्तनों की सूची" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6731,21 +6743,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6753,24 +6765,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6782,21 +6794,21 @@ msgstr "" "लिंक्ड टेबलओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. क्यों ये " "किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/hr.po b/po/hr.po index ba10ece21e..e942d60d1d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -1185,6 +1185,18 @@ msgstr "SQL upit" msgid "Show search results" msgstr "SQL upit" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Pretraživanje" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brisanje %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2122,7 +2134,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentacija" @@ -5117,7 +5129,7 @@ msgstr "Izradi relaciju" msgid "Link not found" msgstr "Veza nije pronađena" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Podaci o verziji" @@ -7203,31 +7215,31 @@ msgstr "PHP ekstenzija" msgid "Show PHP information" msgstr "Prikaži PHP podatke" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Službena stranica programa phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributi" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Bez izmjena" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7239,7 +7251,7 @@ msgstr "" "pokrenut je sa zadanim postavkama i kao takav otvoren je upadima. Potrebno " "je ispraviti ovaj sigurnosni nedostatak." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7249,7 +7261,7 @@ msgstr "" "opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati " "oštećivanje nekih podataka!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7259,7 +7271,7 @@ msgstr "" "tablicu znakova. Bez proširenja mbstring, phpMyAdmin nije u mogućnosti " "pravilno razdjeljivati naredbe i može doći do neočekivanih rezultata." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7267,24 +7279,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7296,14 +7308,14 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7312,7 +7324,7 @@ msgstr "" "Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL " "poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/hu.po b/po/hu.po index 82e259aabd..83c8019dd9 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-09 14:22+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" @@ -1129,6 +1129,18 @@ msgstr "Keresési kritériumok elrejtése" msgid "Show search results" msgstr "Keresési kritériumok mutatása" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Tartalom" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s törlése" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1995,7 +2007,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentáció" @@ -5086,7 +5098,7 @@ msgstr "Kapcsolat létrehozása" msgid "Link not found" msgstr "Nem található a hivatkozás" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Verziószám" @@ -7192,32 +7204,32 @@ msgstr "PHP-kiterjesztés" msgid "Show PHP information" msgstr "PHP információ megjelenítése" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Hivatalos honlap" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Tulajdonságok" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Exportálás" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Nincs változás" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7229,7 +7241,7 @@ msgstr "" "MySQL szerver most ezzel az alapbeállítással fut, behatolásra nyitott. " "Javítsa ezt a biztonsági rést." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7238,7 +7250,7 @@ msgstr "" "Ön engedélyezte az mbstring.func_overload funkciót a PHP konfigurációban. Ez " "a beállítás nem kompatibilis a phpMyAdminnal, és az adatsérüléssel járhat!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7249,7 +7261,7 @@ msgstr "" "tudja megfelelően felosztani a karakterláncokat, mely nem várt eredményhez " "vezethet." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7261,7 +7273,7 @@ msgstr "" "phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a " "phpMyAdminban beállítottnál előbb fog lejárni." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7277,13 +7289,13 @@ msgstr "" "phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a " "phpMyAdminban beállítottnál előbb fog lejárni." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "A konfigurációs fájlnak egy titkos hozzáférési kódra (blowfish_secret) van " "szüksége." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7292,7 +7304,7 @@ msgstr "" "A parancsfájl által használt [code]config[/code] könyvtár még létezik a " "phpMyAdmin könyvtárában. Távolítsa el a phpMyAdmin beállítása után." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7304,14 +7316,14 @@ msgstr "" "A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " "kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7320,7 +7332,7 @@ msgstr "" "A PHP MySQL függvénytár %s-s verziója eltér a MySQL szerver %s-s " "verziójától. Ez kiszámíthatatlan viselkedést okozhat." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/id.po b/po/id.po index 8b09551fe0..68f298fce9 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -1125,6 +1125,18 @@ msgstr "Sembunyikan kriteria pencarian" msgid "Show search results" msgstr "Tampilkan kriteria pencarian" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Browse" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Menghapus %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1995,7 +2007,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentasi" @@ -4940,7 +4952,7 @@ msgstr "Membuat versi" msgid "Link not found" msgstr "Link tidak ditemukan" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informasi tentang versi" @@ -6978,31 +6990,31 @@ msgstr "Versi PHP" msgid "Show PHP information" msgstr "Tampilkan informasi PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Homepage resmi phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atribut" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Tidak ada perubahan" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7015,7 +7027,7 @@ msgstr "" "penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) " "ini." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7024,7 +7036,7 @@ msgstr "" "Fungsi mbstring.func_overload aktif pada konfigurasi PHP Anda. Pilihan ini " "tidak cocok dengan phpMyAdmin dan mampu merusak sebagian data!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7035,7 +7047,7 @@ msgstr "" "baris-baris dengan cara yang benar. Hal ini mampu mengakibatkan hasil yang " "tidak diinginkan." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7043,18 +7055,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7064,7 +7076,7 @@ msgstr "" "di direktori phpMyAdmin Anda. Anda harus menghapus nya setelah phpMyAdmin di " "konfigurasi." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7076,21 +7088,21 @@ msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/it.po b/po/it.po index 944d8b2f75..fd2458469e 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-05 14:27+0200\n" "Last-Translator: \n" "Language-Team: italian \n" @@ -1135,6 +1135,18 @@ msgstr "Nascondi criteri di ricerca" msgid "Show search results" msgstr "Mostra criteri di ricerca" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Mostra" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Cancellazione in corso di %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2003,7 +2015,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentazione" @@ -5032,7 +5044,7 @@ msgstr "Crea vista" msgid "Link not found" msgstr "Link non trovato" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informazioni sulla versione" @@ -7063,27 +7075,27 @@ msgstr "Estensioni PHP" msgid "Show PHP information" msgstr "Mostra le info sul PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Home page ufficiale di phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Contribuisci" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Ricevi Auito" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Lista dei cambiamenti" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7096,7 +7108,7 @@ msgstr "" "dovresti realmente riparare a questa falla nella sicurezza impostando una " "password per l'utente 'root'." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7106,7 +7118,7 @@ msgstr "" "opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di " "alcuni dati!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7117,7 +7129,7 @@ msgstr "" "phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri " "e questo può portare a risultati inaspettati." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7129,7 +7141,7 @@ msgstr "" "validitá del cookie configurata in phpMyAdmin, per questo motivo, i dati di " "login scadranno prima di come configurato in phpMyAdmin." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7138,13 +7150,13 @@ msgstr "" "phpMyAdmin, per questo motivo, it tuo login scadrá prima di quanto " "configurato in phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Adesso c'è bisogno di una password per il file di configurazione " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7154,7 +7166,7 @@ msgstr "" "installazione, esiste ancora nella cartella del tuo phpMyAdmin. Si consiglia " "di rimuoverla una volta configurato phpMyAdmin." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7164,7 +7176,7 @@ msgstr "" "caratteristiche aggiuntive sono state disattivate. Per scoprire perché " "clicca %squi%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7174,7 +7186,7 @@ msgstr "" "funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei " "frame non sarà aggiornata automaticamente." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7183,7 +7195,7 @@ msgstr "" "Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di " "MySQL server %s. Potrebbe causare comportamenti imprevedibili." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ja.po b/po/ja.po index 47f5dcaa33..9d7f2e417b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-17 12:37+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -703,17 +703,14 @@ msgid "Analyze table" msgstr "テーブルを分析する" #: db_structure.php:521 -#| msgid "Go to table" msgid "Add prefix to table" msgstr "接頭辞をテーブル名に追加する" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "テーブル名の接頭辞を付け替える" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" @@ -965,12 +962,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "テーブルを完全に削除しようとしています!" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "テーブルを完全に空にしようとしています!" @@ -1111,19 +1106,31 @@ msgid "Searching" msgstr "検索中" #: js/messages.php:84 -#| msgid "Hide search criteria" msgid "Hide search results" msgstr "検索結果を隠す" #: js/messages.php:85 -#| msgid "Show search criteria" msgid "Show search results" msgstr "検索結果を表示する" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "表示" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s を削除中です" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されます。" +msgstr "" +"注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" +"す。" #: js/messages.php:93 msgid "Hide query box" @@ -1183,7 +1190,9 @@ msgstr "表示するカラムを選択してください" msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" -msgstr "レイアウトの変更を保存されていません。保存していない場合、それらは失われます。このまま続けてもよろしいですか?" +msgstr "" +"レイアウトの変更を保存されていません。保存していない場合、それらは失われま" +"す。このまま続けてもよろしいですか?" #: js/messages.php:114 msgid "Add an option for column " @@ -1220,7 +1229,6 @@ msgid ", latest stable version:" msgstr ", 最終安定バージョン:" #: js/messages.php:128 -#| msgid "Jump to database" msgid "up to date" msgstr "最新版" @@ -1979,7 +1987,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "ドキュメント" @@ -4948,7 +4956,7 @@ msgstr "ビューを作成" msgid "Link not found" msgstr "リンク先が見つかりません" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "バージョン情報" @@ -5851,7 +5859,6 @@ msgid "Convert to Kana" msgstr "全角カナへ変換する" #: libraries/mult_submits.inc.php:249 -#| msgid "Fr" msgid "From" msgstr "付け替え元" @@ -5869,7 +5876,6 @@ msgid "Add table prefix" msgstr "テーブル接頭辞の追加" #: libraries/mult_submits.inc.php:266 -#| msgid "Add index" msgid "Add prefix" msgstr "追加する接頭辞" @@ -6934,27 +6940,27 @@ msgstr "PHP 拡張" msgid "Show PHP information" msgstr "PHP 情報" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin のオフィシャルサイト" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "貢献するには" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "サポート" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "更新履歴" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6966,7 +6972,7 @@ msgstr "" "ト設定で動作しているため不正アクセス可能な状態になっています。このセキュリ" "ティホールはかならず閉ざしてください" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6975,7 +6981,7 @@ msgstr "" "PHP の設定で mbstring.func_overload が有効になっています。phpMyAdmin はこのオ" "プションに対応していないため、データが破壊されることがあります!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6985,7 +6991,7 @@ msgstr "" "いるようですが、mbstring 拡張がないと phpMyAdmin は文字列を正しく分割できない" "ため予期しない結果になることがあります" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6997,7 +7003,7 @@ msgstr "" "設定されているクッキーの有効期間より短くなっています。このため、phpMyAdmin に" "設定されているよりも早くログインの期限が切れます。" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7006,13 +7012,13 @@ msgstr "" "りも短くなっています。このため、phpMyAdmin に設定されているよりも早くログイン" "の期限が切れます。" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "設定ファイルが秘密のパスフレーズ (blowfish_secret) を必要とするようになりまし" "た" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7022,7 +7028,7 @@ msgstr "" "phpMyAdmin ディレクトリに存在しています。phpMyAdmin を設定し終えたら、それは" "削除するべきです。" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7031,7 +7037,7 @@ msgstr "" "phpMyAdmin の設定保存場所が完全に設定されていないため、いくつかの拡張機能が無" "効になっています。理由については%sこちら%sをご覧ください。" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7041,7 +7047,7 @@ msgstr "" "で、phpMyAdmin のいくつかの機能が失われます。例えば、ナビゲーションフレームが" "自動的に更新されません。" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7050,7 +7056,7 @@ msgstr "" "お使いの PHP MySQL ライブラリのバージョン %s が MySQL サーバのバージョン %s " "と異なります。これは予期しない不具合を起こす可能性があります。" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7897,7 +7903,6 @@ msgstr "マスタを切り替えることができません" #: server_replication.php:72 #, php-format -#| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "マスタサーバを %s へ切り替えるのに成功しました。" @@ -9024,7 +9029,6 @@ msgid "Insecure connection" msgstr "セキュリティで保護されていない接続" #: setup/frames/index.inc.php:92 -#| msgid "Configuration storage" msgid "Configuration saved." msgstr "設定を保存しました。" @@ -9033,9 +9037,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" -"設定は、phpMyAdmin ディレクトリの config/config.inc.php " -"ファイルに保存されています。それを使用するには、phpMyAdmin のトップレベルディレクトリにコピーして、config " -"ディレクトリは削除してください。" +"設定は、phpMyAdmin ディレクトリの config/config.inc.php ファイルに保存されて" +"います。それを使用するには、phpMyAdmin のトップレベルディレクトリにコピーし" +"て、config ディレクトリは削除してください。" #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" @@ -9893,17 +9897,14 @@ msgid "Version %s snapshot (SQL code)" msgstr "バージョン %s のスナップショット(SQL コード)" #: tbl_tracking.php:382 -#| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "追跡データ定義コマンドの削除に成功しました。" #: tbl_tracking.php:384 tbl_tracking.php:401 -#| msgid "Gather errors" msgid "Query error" msgstr "クエリエラー" #: tbl_tracking.php:399 -#| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "追跡データ操作コマンドの削除に成功しました。" @@ -9917,12 +9918,10 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "種別:%s、期間:%s-%s、ユーザ:%sで絞り込む %s" #: tbl_tracking.php:432 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" #: tbl_tracking.php:443 -#| msgid "No databases" msgid "No data" msgstr "データが存在しません" diff --git a/po/ka.po b/po/ka.po index 3a451d70bd..43cf39d329 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -1182,6 +1182,18 @@ msgstr "SQL Query box" msgid "Show search results" msgstr "SQL Query box" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "არჩევა" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s-ის წაშლა" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2130,7 +2142,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "დოკუმენტაცია" @@ -5282,7 +5294,7 @@ msgstr "Create relation" msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "ინფორმაცია ვერსიის შესახებ" @@ -7376,32 +7388,32 @@ msgstr "PHP-ის გაფართოება" msgid "Show PHP information" msgstr "PHP-ის ინფორმაციის ჩვენება" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "ვიკი" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "ოფიციალური ვებგვერდი" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "ატრიბუტები" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "ექსპორტი" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "ცვლილების გარეშე" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7413,7 +7425,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7423,7 +7435,7 @@ msgstr "" "პარამეტრი არაა თავსებადი phpMyAdmin-თან და შეიძლება გამოიწვიოს მონაცემების " "დაზიანება!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7434,7 +7446,7 @@ msgstr "" "არ შეუძლია სტრიქონების სწორად დაყოფა რის გამოც შეიძლება მიიღოთ მოულოდნელი " "შედეგი." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7446,7 +7458,7 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7462,19 +7474,19 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7486,14 +7498,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7502,7 +7514,7 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ko.po b/po/ko.po index 33b8ebaa6d..4b7a3b53d8 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -1147,6 +1147,18 @@ msgstr "SQL 질의" msgid "Show search results" msgstr "SQL 질의" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "보기" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr " %s 을 삭제합니다" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2015,7 +2027,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "문서" @@ -4954,7 +4966,7 @@ msgstr "서버 버전" msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "버전 정보" @@ -6856,31 +6868,31 @@ msgstr "PHP 버전" msgid "Show PHP information" msgstr "PHP 정보 보기" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin 공식 홈" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "보기" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "변화 없음" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6891,21 +6903,21 @@ msgstr "" "가 작동한다면 누구나 침입할 수 있으므로, 이 보안상 허점을 수정하시기 바랍니" "다." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6913,24 +6925,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6942,21 +6954,21 @@ msgstr "" "링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" "s여기를 클릭%s하십시오." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/lt.po b/po/lt.po index 8f6785b7a2..0f6fd4a281 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -1130,6 +1130,18 @@ msgstr "Slėpti paieškos kriterijų" msgid "Show search results" msgstr "Rodyti paieškos kriterijų" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Peržiūrėti" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Šaliname: %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1997,7 +2009,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentacija" @@ -4915,7 +4927,7 @@ msgstr "Sukurti naudotoją" msgid "Link not found" msgstr "Sąryšis nerastas" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versija" @@ -6905,27 +6917,27 @@ msgstr "PHP plėtinys" msgid "Show PHP information" msgstr "Rodyti PHP informaciją" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Oficialus phpMyAdmin tinklalapis" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Prisidėti" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Gauti pagalbą" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Pakeitimų sąrašas" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6937,7 +6949,7 @@ msgstr "" "nesaugi, bei gali būti atvira įsilaužimams, todėl rekomenduotina pakeisti " "šias parinktis." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6946,7 +6958,7 @@ msgstr "" "Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas " "nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6956,7 +6968,7 @@ msgstr "" "simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti " "stringų, todėl galite sulaukti netikėtų rezultatų." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6964,17 +6976,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6984,7 +6996,7 @@ msgstr "" "yra Jūsų phpMyAdmin kataloge. Jūs turėtumėte jį pašalinti iškart po to kai " "sukonfigūruosite phpMyAdmin." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage has been deactivated. To find out " @@ -6995,7 +7007,7 @@ msgid "" msgstr "" "phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7005,7 +7017,7 @@ msgstr "" "kurios phpMyAdmin funkcijos gali būti išnykę. Pavyzdžiui, navigacijos " "rėmelis automatiškai neatsinaujins." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7014,7 +7026,7 @@ msgstr "" "Jūsų PHP MySQL bibliotekos versija %s skiriasi nuo Jūsų MySQL serverio " "versijos %s. Tai gali sukelti nenuspėjamą elgesį." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/lv.po b/po/lv.po index b17abea941..5a4b54ac31 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -1160,6 +1160,18 @@ msgstr "SQL vaicājums" msgid "Show search results" msgstr "SQL vaicājums" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Apskatīt" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Dzēšam %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2083,7 +2095,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentācija" @@ -5022,7 +5034,7 @@ msgstr "Servera versija" msgid "Link not found" msgstr "Links nav atrasts" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Piekļuves informācija" @@ -7028,31 +7040,31 @@ msgstr "PHP Versija" msgid "Show PHP information" msgstr "Parādīt PHP informāciju" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Oficiālā phpMyAdmin mājaslapa" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atribūti" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Netika labots" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7064,21 +7076,21 @@ msgstr "" "MySQL serveris strādā ar šo noklusēto variantu, ir atvērts uzbrukumiem, un " "Jums tiešām jāaiztaisa šis drošības caurums." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7086,24 +7098,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurācijas fails tagad prasa slepeno paroli (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7115,21 +7127,21 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/mk.po b/po/mk.po index 1e86e466a0..7a9ac6475a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" @@ -1157,6 +1157,18 @@ msgstr "SQL упит" msgid "Show search results" msgstr "SQL упит" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Преглед" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Бришам %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2086,7 +2098,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Документација" @@ -5038,7 +5050,7 @@ msgstr "Верзија на серверот" msgid "Link not found" msgstr "Врската не е пронајдена" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Информации за верзијата" @@ -7083,31 +7095,31 @@ msgstr "PHP верзија" msgid "Show PHP information" msgstr "Прикажи информации за PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "официјален веб сајт на phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Нема измени" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7119,7 +7131,7 @@ msgstr "" "работи со овие подесувања, отворен е за упди, и навистина треба да го " "поправите овој сигурносен ризик." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7129,7 +7141,7 @@ msgstr "" "опција не е компатибилна со phpMyAdmin и може да доведе до грешки во некои " "податоци!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7139,7 +7151,7 @@ msgstr "" "мултибајт каратер сет. Без mbstring екстензиите phpMyAdmin не може исправно " "да ги раздвојува стринговите и тоа може да доведе до неочекувани резултати." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7147,24 +7159,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7176,21 +7188,21 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ml.po b/po/ml.po index 790d9a2868..399e1e1bd0 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" @@ -1091,6 +1091,14 @@ msgstr "" msgid "Show search results" msgstr "" +#: js/messages.php:86 +msgid "Browsing" +msgstr "" + +#: js/messages.php:87 +msgid "Deleting" +msgstr "" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1929,7 +1937,7 @@ msgstr "" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "" @@ -4712,7 +4720,7 @@ msgstr "" msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6533,27 +6541,27 @@ msgstr "" msgid "Show PHP information" msgstr "" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6561,21 +6569,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6583,45 +6591,45 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/mn.po b/po/mn.po index 49491c136f..80ce0e9aac 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -1157,6 +1157,18 @@ msgstr "асуултад" msgid "Show search results" msgstr "SQL асуудал харуулах" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Хөтлөх" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s-г устгаж байна" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2087,7 +2099,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Баримт" @@ -5033,7 +5045,7 @@ msgstr "Үүсгэх" msgid "Link not found" msgstr "Холбоос олдсонгүй" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Хувилбарын мэдээлэл" @@ -7051,32 +7063,32 @@ msgstr "" msgid "Show PHP information" msgstr "PHP -ийн мэдээлэл харах" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin-ын албан ёсны вэб сайт" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибутууд" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Гаргах" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Солигдохгүй" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7087,7 +7099,7 @@ msgstr "" "нууц үггүй) агуулжээ. Таны MySQL сервэр энэ анхдагчаар ажиллаж байгаа нь хэн " "ч урилгагүй орох боломжийг өгнө. Та хамгаалалтын асуудлаа засах хэрэгтэй" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7096,7 +7108,7 @@ msgstr "" "Таны PHP тохируулгад mbstring.func_overload нээлттэй байна. Энэ сонголт " "phpMyAdmin -д бүрэн боломжгүй бөгөөд зарим өгөгдөл алдагдаж болзошгүй!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7106,7 +7118,7 @@ msgstr "" "mbstring extension үгүйгээр phpMyAdmin нь тэмдэгт мөрийг зөв хувааж чадахгүй " "буюу буруу үр дүн гарч магадгүй." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7114,24 +7126,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Тохиргооны файл одоо нууцлал шаардаж байна (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7143,21 +7155,21 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ms.po b/po/ms.po index 7c1e401fcd..51d725b8ba 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -1146,6 +1146,18 @@ msgstr "kueri-SQL" msgid "Show search results" msgstr "kueri-SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Lungsur" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "Padam" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2059,7 +2071,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentasi" @@ -4976,7 +4988,7 @@ msgstr "Versi Pelayan" msgid "Link not found" msgstr "Pautan tidak dijumpai" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Informasi MasaJana" @@ -6898,31 +6910,31 @@ msgstr "Versi PHP" msgid "Show PHP information" msgstr "Papar maklumat PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Laman Rasmi phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atribut" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Tiada perubahan" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6934,21 +6946,21 @@ msgstr "" "dilaksanakan dengan pelengkapan asas, ianya terdedah kepada pencerobohan, " "dan anda hendaklah membetulkan lubang keselamatan ini." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6956,24 +6968,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6985,21 +6997,21 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/nb.po b/po/nb.po index e26f4dd2fe..5308ae31ac 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -1126,6 +1126,18 @@ msgstr "Skjul søkekriterier" msgid "Show search results" msgstr "Vis søkekriterier" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Se på" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Sletter %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1990,7 +2002,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentasjon" @@ -4991,7 +5003,7 @@ msgstr "Opprett bruker" msgid "Link not found" msgstr "Link ikke funnet" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versionsinformasjon" @@ -7002,32 +7014,32 @@ msgstr "PHP tillegg" msgid "Show PHP information" msgstr "Vis PHP-informasjon" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Offisiell phpMyAdmin-hjemmeside" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Attributter" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Eksporter" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Ingen endring" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7039,7 +7051,7 @@ msgstr "" "tjener kjører med denne standardinnstillingen, er åpen for misbruk, og du " "burde fikse dette sikkerhetshullet snarest." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7048,7 +7060,7 @@ msgstr "" "Du har slått på mbstring.func_overload i din PHP konfigurasjon. Denne " "opsjonen er ikke kompatibel med phpMyAdmin og kan medføre skader på data!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7058,7 +7070,7 @@ msgstr "" "flerbyte tegnsett. Uten mbstring-tillegget så kan ikke phpMyAdmin splitte " "strenger korrekt og dette kan medføre uønskede resultater." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7070,7 +7082,7 @@ msgstr "" "gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging " "utløpe raskere enn konfigurert i phpMyAdmin." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7086,12 +7098,12 @@ msgstr "" "gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging " "utløpe raskere enn konfigurert i phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurasjonsfila trenger nå et hemmelig passordfrase (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7101,7 +7113,7 @@ msgstr "" "fortsatt i din phpMyAdmin mappe. Du bør fjerne den så fort phpMyAdming har " "blitt konfigurert." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage has been deactivated. To find out " @@ -7112,7 +7124,7 @@ msgid "" msgstr "" "phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7122,7 +7134,7 @@ msgstr "" "phpMyAdmin funksjonalitet vil mangle. F.eks. navigasjonsrammen vil ikke " "oppdatere seg automatisk." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7131,7 +7143,7 @@ msgstr "" "Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL " "tjenerversjon %s. Dette kan forårsake uforutsett oppførsel." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/nl.po b/po/nl.po index 18014317ed..63f1312dc7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-16 20:18+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -1135,6 +1135,18 @@ msgstr "Verberg zoekcriteria" msgid "Show search results" msgstr "Toon zoek-criteria" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Verkennen" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Verwijderen van %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2008,7 +2020,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentatie" @@ -5020,7 +5032,7 @@ msgstr "VIEW aanmaken" msgid "Link not found" msgstr "Link niet gevonden" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versie informatie" @@ -7046,27 +7058,27 @@ msgstr "PHP uitbreiding" msgid "Show PHP information" msgstr "Laat informatie over PHP zien" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Officiële phpMyAdmin Website" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Bijdragen" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Ondersteuning krijgen" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Lijst met wijzigingen" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7078,7 +7090,7 @@ msgstr "" "met deze standaard waardes, en is open voor ongewilde toegang. Het wordt dus " "aangeraden dit op te lossen." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7088,7 +7100,7 @@ msgstr "" "optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige data " "corrupt raakt!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7098,7 +7110,7 @@ msgstr "" "karakterset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings " "niet correct splitsen, wat tot onverwachte resultaten kan leiden." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7110,7 +7122,7 @@ msgstr "" "ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie " "eerder dan in phpMyAdmin is ingesteld." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7119,13 +7131,13 @@ msgstr "" "ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie " "eerder dan in phpMyAdmin is ingesteld." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Het configuratiebestand heeft nu een geheime wachtwoordzin nodig " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7135,7 +7147,7 @@ msgstr "" "nog in de phpMyAdmin directory. Het kan beter worden verwijderd zodra " "phpMyAdmin is geconfigureerd." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7145,7 +7157,7 @@ msgstr "" "uitgebreide mogelijkheden zijn uitgeschakeld. Om te weten te komen waarom " "klik %shier%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7156,7 +7168,7 @@ msgstr "" "beschikbaar zijn. Zo zal bijvoorbeeld het navigatieframe zich niet " "automatisch vernieuwen." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7165,7 +7177,7 @@ msgstr "" "Uw PHP MySQL bibliotheek versie %s verschilt van uw MySQL-server versie %s. " "Dit kan onvoorspelbaar gedrag veroorzaken." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 5e91510ec4..38b76b7691 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1093,6 +1093,14 @@ msgstr "" msgid "Show search results" msgstr "" +#: js/messages.php:86 +msgid "Browsing" +msgstr "" + +#: js/messages.php:87 +msgid "Deleting" +msgstr "" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1931,7 +1939,7 @@ msgstr "" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "" @@ -4714,7 +4722,7 @@ msgstr "" msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6535,27 +6543,27 @@ msgstr "" msgid "Show PHP information" msgstr "" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6563,21 +6571,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6585,45 +6593,45 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, possible-php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, possible-php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, possible-php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/pl.po b/po/pl.po index 6c15248c22..70094d280c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" @@ -1146,6 +1146,18 @@ msgstr "Ukryj okno zapytania SQL" msgid "Show search results" msgstr "Okno zapytania SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Przeglądaj" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Usuwanie %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2042,7 +2054,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentacja" @@ -5154,7 +5166,7 @@ msgstr "Utwórz związek" msgid "Link not found" msgstr "Łącze nie znalezione" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informacja o wersji" @@ -7260,32 +7272,32 @@ msgstr "Rozszerzenie PHP" msgid "Show PHP information" msgstr "Informacje o PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Oficjalna strona phpMyAdmina" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atrybuty" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Eksport" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Bez zmian" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7297,7 +7309,7 @@ msgstr "" "działa z takim ustawieniem, jest otwarty dla włamywaczy. Ta luka w " "bezpieczeństwie naprawdę powinna zostać naprawiona." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7306,7 +7318,7 @@ msgstr "" "Opcja mbstring.func_overload jest włączona w pliku konfiguracyjnym PHP. Jest " "ona niezgodna z phpMyAdminem i może powodować utratę niektórych danych!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7317,7 +7329,7 @@ msgstr "" "phpMyAdmin nie ma możliwości poprawnego rozbijania napisów, co może " "skutkować niespodziewanymi rezultatami." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7329,7 +7341,7 @@ msgstr "" "czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu " "sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7345,12 +7357,12 @@ msgstr "" "czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu " "sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7360,7 +7372,7 @@ msgstr "" "Będzie on nadal znajdował się w katalogu phpMyAdmina. Możesz go usunąć po " "skonfigurowaniu phpMyAdmina." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7372,14 +7384,14 @@ msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7388,7 +7400,7 @@ msgstr "" "Wersja %s biblioteki MySQL dla PHP różni się od wersji %s serwera MySQL. " "Może to powodować nieprzewidywalne zachowanie." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/pt.po b/po/pt.po index 93aa663020..3b048730c6 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -1136,6 +1136,18 @@ msgstr "Comando SQL" msgid "Show search results" msgstr "Comando SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visualizar" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "A apagar %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2054,7 +2066,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentação" @@ -5004,7 +5016,7 @@ msgstr "Versão do servidor" msgid "Link not found" msgstr "Link não encontrado" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Informação de Login " @@ -6951,31 +6963,31 @@ msgstr "versão do PHP" msgid "Show PHP information" msgstr "Mostra informação do PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Página Oficial do phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributos" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Sem alterações" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6987,21 +6999,21 @@ msgstr "" "está a correr com este valor por defeito, assim aberto a intrusões, deveria " "corrigir este buraco de segurança." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7009,26 +7021,26 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O ficheiro de configuração precisa agora de uma frase-passe secreta " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7040,21 +7052,21 @@ msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/pt_BR.po b/po/pt_BR.po index b5f9df4349..03ce2b863d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-14 17:44+0200\n" "Last-Translator: \n" "Language-Team: brazilian_portuguese \n" @@ -1139,6 +1139,18 @@ msgstr "Ocultar critério de pesquisa" msgid "Show search results" msgstr "Exibir critério de pesquisa" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visualizar" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Eliminando %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2040,7 +2052,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentação" @@ -4994,7 +5006,7 @@ msgstr "Criar usuário" msgid "Link not found" msgstr "Link não encontrado" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informações da versão" @@ -7048,32 +7060,32 @@ msgstr "Extensão do PHP" msgid "Show PHP information" msgstr "Mostrar informações do PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Página Oficial do phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributos" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Exportar" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Sem Mudança" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7085,7 +7097,7 @@ msgstr "" "com esse padrão estará aberto a invasões, você realmente deveria corrigir " "este furo de segurança." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7094,7 +7106,7 @@ msgstr "" "Você habilitou mbstring.func_overload nas configurações do PHP. Essa opção é " "incompatível com o phpMyAdmin e certamente causará a perda de algum dado!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7105,7 +7117,7 @@ msgstr "" "será capaz de dividir as strings corretamente isso pode causar resultados " "inesperados." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7113,26 +7125,26 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O arquivo de configuração agora precisa de uma frase secreta com senha " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage has been deactivated. To find out " @@ -7144,14 +7156,14 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7160,7 +7172,7 @@ msgstr "" "Sua versão %s da biblioteca MySQL do PHP difere da versão %s do seu servidor " "MySQL. Isso pode causar um comportamento estranho." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ro.po b/po/ro.po index 891cc7e6f6..9317832557 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -1185,6 +1185,18 @@ msgstr "Comanda SQL" msgid "Show search results" msgstr "Comanda SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Navigare" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Șterge %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2117,7 +2129,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Documentație" @@ -5117,7 +5129,7 @@ msgstr "Creare relație" msgid "Link not found" msgstr "Legatură nevalidă" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informații despre versiune" @@ -7203,32 +7215,32 @@ msgstr "Extensie PHP" msgid "Show PHP information" msgstr "Arată informația PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Pagina oficială phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Proprietăți" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Exportă" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Nici o schimbare" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7239,7 +7251,7 @@ msgstr "" "Serverul MySQL poate fi astfel vulnerabil. Reparați neapărat această " "greșeală." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7248,7 +7260,7 @@ msgstr "" "Ați activat mbstring.func_overload în configurația PHP. Această opțiune nu " "este compatibilă cu phpMyAdmin și poate duce la pierderea unor date!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7258,7 +7270,7 @@ msgstr "" "charactere multi-octet. Fără extensia mbstring, phpMyAdmin nu poate diviza " "șirurile corect și aceasta poate duce la rezultate neașteptate." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7266,26 +7278,26 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Fișierul de configurare necesită o expresie de protecție secretă " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7297,14 +7309,14 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7314,7 +7326,7 @@ msgstr "" "%s a serverului dumneavoastră MySQL. Această diferență poate cauza " "comportamente imprevizibile." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ru.po b/po/ru.po index 78d2438e34..0691d3db00 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-13 21:17+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" @@ -1136,6 +1136,18 @@ msgstr "Скрыть параметры поиска" msgid "Show search results" msgstr "Отобразить параметры поиска" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Обзор" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Удаление %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2008,7 +2020,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Документация" @@ -5026,7 +5038,7 @@ msgstr "Создать представление" msgid "Link not found" msgstr "Связь не найдена" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Информация о версии" @@ -7046,27 +7058,27 @@ msgstr "PHP расширение" msgid "Show PHP information" msgstr "Показать информацию PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Вики" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Официальная страница phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Пожертвования" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Получение помощи" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Список изменений" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7079,7 +7091,7 @@ msgstr "" "доступа, поэтому настоятельно рекомендуется установить пароль для " "пользователя 'root'." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7089,7 +7101,7 @@ msgstr "" "func_overload. Для предотвращения возможной потери данных, данный параметр " "должен быть выключен!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7100,7 +7112,7 @@ msgstr "" "разбиение строк, что может привести к непредсказуемым результатам. " "Установите расширение PHP "mbstring"." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7112,7 +7124,7 @@ msgstr "" "cookie определенная в phpMyAdmin, по этой причине, данные входа истекут " "быстрее установленных." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7120,13 +7132,13 @@ msgstr "" "Параметр хранения cookie данных меньше, чем длительность cookie определенная " "в phpMyAdmin, по этой причине, данные входа истекут быстрее установленных." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "При cookie-аутентификации, в конфигурационном файле необходимо задать " "парольную фразу установив значение директивы $cfg['blowfish_secret']." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7136,7 +7148,7 @@ msgstr "" "находится в установочной директории phpMyAdmin. Обязательно удалите его " "сразу после настройки phpMyAdmin." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7145,7 +7157,7 @@ msgstr "" "Дополнительные возможности phpMyAdmin не настроены в полной мере, некоторые " "функции были отключены. Для определения причины нажмите %sздесь%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7155,7 +7167,7 @@ msgstr "" "функции phpMyAdmin будет отсутствовать. Например, фрейм навигации не будет " "обновляться автоматически." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7164,7 +7176,7 @@ msgstr "" "Версия клиентской библиотеки MySQL (%s) отличается от версии установленного " "MySQL-сервера (%s). Это может привести к некорректной работе." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/si.po b/po/si.po index 1fa967db1b..98802391da 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-13 17:05+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -1121,6 +1121,18 @@ msgstr "SQL විමසුම" msgid "Show search results" msgstr "SQL විමසුම" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "පිරික්සන්න" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s ඉවත් කරමින් පවතී" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1987,7 +1999,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "ලියකියවිලි" @@ -4838,7 +4850,7 @@ msgstr "දසුනක් සාදන්න" msgid "Link not found" msgstr "Link not found" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "අනුවාදය පිළිබඳ තොරතුරු" @@ -6833,27 +6845,27 @@ msgstr "PHP දිගුව" msgid "Show PHP information" msgstr "PHP තොරතුරු පෙන්වන්න" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "විකි" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "නිල phpMyAdmin මුල් පිටුව" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "දායක වන්න" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "සහාය ලබා ගන්න" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "වෙනස්කම් ලැයිස්තුව" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6864,7 +6876,7 @@ msgstr "" "වරප්‍රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම අනවසර ඇතුල්වීම් වලට හේතු විය හැකි " "බැවින් ඔබ 'root' භාවිතා කරන්නා සඳහා වෙනත් මුරපදයක් ලබා දිය යුතුය." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6874,7 +6886,7 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6884,7 +6896,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6892,25 +6904,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -6919,7 +6931,7 @@ msgstr "" "phpMyAdmin හි configuration storage සම්පූර්ණයෙන් සකසා නැති බැවින් යම් විස්තෘත විශේෂාංග " "අක්‍රිය වී ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් කරන්න." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6928,14 +6940,14 @@ msgstr "" "ඔබගේ බවුසරයේ Javascript සහය නැත/අක්‍රිය කර ඇත. එබැවින් යම් phpMyAdmin විශේෂාංග අක්‍රිය " "වී ඇත. උදාහරණයක් ලෙස යාත්‍රණ රාමුව ස්වයංක්‍රියව යාවත්කාලීන නොවේ." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/sk.po b/po/sk.po index dd17adf2e9..9910d64f69 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-17 15:58+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -112,8 +112,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na " -"www.phpmyadmin.net." +"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na www." +"phpmyadmin.net." #: db_create.php:58 #, php-format @@ -342,9 +342,6 @@ msgstr "Zotriedenie" #: db_operations.php:565 #, php-format -#| msgid "" -#| "The additional features for working with linked tables have been " -#| "deactivated. To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." @@ -475,7 +472,6 @@ msgid "Modify" msgstr "Zmeniť" #: db_qbe.php:606 -#| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Pridať/Odobrať riadky s kritériami" @@ -530,7 +526,6 @@ msgstr "Prehľadať výsledky na \"%s\" %s:" #: db_search.php:247 #, php-format -#| msgid "%s match(es) inside table %s" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s výskyt v tabuľke %s" @@ -716,17 +711,14 @@ msgid "Analyze table" msgstr "Analyzovať tabuľku" #: db_structure.php:521 -#| msgid "Go to table" msgid "Add prefix to table" msgstr "Pridať predponu k tabuľke" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Nahradiť predponu tabuľky" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" @@ -977,12 +969,10 @@ msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZRUŠIŤ celú databázu!" #: js/messages.php:32 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" msgstr "Chystáte sa ZRUŠIŤ celú tabuľku!" #: js/messages.php:33 -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" msgstr "Chystáte sa VYPRÁZDNIŤ celú tabuľku!" @@ -1129,10 +1119,23 @@ msgstr "Skryť výsledky vyhľadávania" msgid "Show search results" msgstr "Zobraziť výsledky vyhľadávania" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Prechádzať" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Odstraňuje sa %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" +msgstr "" +"Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" #: js/messages.php:93 msgid "Hide query box" @@ -1143,7 +1146,6 @@ msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" #: js/messages.php:95 -#| msgid "Engines" msgid "Inline Edit" msgstr "Tu upraviť" @@ -1232,7 +1234,6 @@ msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" #: js/messages.php:128 -#| msgid "Go to database" msgid "up to date" msgstr "aktuálne" @@ -1526,8 +1527,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"Chyba pri presune nahrávaného súboru, viď " -"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" +"Chyba pri presune nahrávaného súboru, viď [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" @@ -1597,7 +1598,6 @@ msgstr "Chyba" #: libraries/Message.class.php:260 #, php-format -#| msgid "%1$d row(s) affected." msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "Ovplyvnený bol %1$d riadok." @@ -1606,7 +1606,6 @@ msgstr[2] "Ovplyvnených bolo %1$d riadkov." #: libraries/Message.class.php:279 #, php-format -#| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "Bol zmazaný %1$d riadok." @@ -1615,7 +1614,6 @@ msgstr[2] "Bolo zmazaných %1$d riadkov." #: libraries/Message.class.php:298 #, php-format -#| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "Bol vložený %1$d riadok." @@ -1807,7 +1805,6 @@ msgid "PBMS error" msgstr "Chyba PBMS" #: libraries/blobstreaming.lib.php:267 -#| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Pripojenie k PBMS zlyhalo:" @@ -1875,17 +1872,14 @@ msgid "Overhead" msgstr "Naviac" #: libraries/build_html_for_db.lib.php:93 -#| msgid "Go to database" msgid "Jump to database" msgstr "Prejsť do databázy" #: libraries/build_html_for_db.lib.php:130 -#| msgid "Master replication" msgid "Not replicated" msgstr "Nie je replikované" #: libraries/build_html_for_db.lib.php:136 -#| msgid "Replication" msgid "Replicated" msgstr "Replikované" @@ -1907,7 +1901,6 @@ msgid "Query execution time comparison (in microseconds)" msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" #: libraries/chart.lib.php:83 -#| msgid "Query results operations" msgid "Query results" msgstr "Výsledky dopytu" @@ -1933,15 +1926,14 @@ msgid "" "is fine." msgstr "" "phpMyAdmin nebol schopný načítať konfiguračný súbor!
    Tento problém sa " -"zvyčajne vyskytne ak súbor obsahuje chybu alebo ho php nemohlo nájsť.
    Zavolajte browserom tento súbor priamo použitím nasledujúceho odkazu na " +"zvyčajne vyskytne ak súbor obsahuje chybu alebo ho php nemohlo nájsť.
    Zavolajte browserom tento súbor priamo použitím nasledujúceho odkazu na " "získanie chybových hlášok, ktoré sú ním spôsobené. Väčšinou sa jedná o " "chýbajúcu úvodzovku alebo bodkočiarku.
    Ak dostanete iba prázdnu " "stránku, všetko je v poriadku." #: libraries/common.inc.php:587 #, php-format -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\"" @@ -1955,7 +1947,6 @@ msgstr "" #: libraries/common.inc.php:622 #, php-format -#| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Chybný index servera: %s" @@ -2009,7 +2000,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentácia" @@ -2060,7 +2051,6 @@ msgid "Inline edit of this query" msgstr "" #: libraries/common.lib.php:1267 -#| msgid "Engines" msgid "Inline" msgstr "Upraviť tu" @@ -2188,7 +2178,6 @@ msgstr "Prechádzať váš počítač:" #: libraries/common.lib.php:2979 #, php-format -#| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" @@ -2210,7 +2199,6 @@ msgid "Open" msgstr "Otvorené" #: libraries/config.values.php:74 -#| msgid "Unclosed quote" msgid "Closed" msgstr "Zatvorené" @@ -2230,7 +2218,6 @@ msgstr "dáta" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#| msgid "Structure and data" msgid "structure and data" msgstr "štruktúra a dáta" @@ -2247,12 +2234,10 @@ msgid "Custom - like above, but without the quick/custom choice" msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný" #: libraries/config.values.php:119 -#| msgid "Complete inserts" msgid "complete inserts" msgstr "úplné vloženia" #: libraries/config.values.php:120 -#| msgid "Extended inserts" msgid "extended inserts" msgstr "Rozšírené vkladania" @@ -2298,7 +2283,6 @@ msgstr "Chýba hodnota pre %s" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 -#| msgid "Variable" msgid "unavailable" msgstr "nedostupné" @@ -2386,8 +2370,8 @@ msgid "" "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" +"phpMyAdmina vo vnútri rámca a je potenciálnou [strong]bezpečnostnou dierou[/" +"strong] dovoľujúcou XFS (cross-frame scripting) útoky" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -2402,8 +2386,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:25 msgid "Blowfish secret" @@ -2444,8 +2428,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:33 msgid "CHAR columns editing" @@ -2574,12 +2558,10 @@ msgid "Edit SQL queries in popup window" msgstr "Upravovať SQL dopyty vo vyskakovacom okne" #: libraries/config/messages.inc.php:61 -#| msgid "Edit next row" msgid "Edit in window" msgstr "Upraviť v okne" #: libraries/config/messages.inc.php:62 -#| msgid "Display Features" msgid "Display errors" msgstr "Zobraziť chyby" @@ -2631,21 +2613,18 @@ msgstr "Kompresia" #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 #: libraries/export/xls.php:24 libraries/export/xlsx.php:24 -#| msgid "Put fields names in the first row" msgid "Put columns names in the first row" msgstr "Pridať názvy polí na prvý riadok" #: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 #: libraries/config/messages.inc.php:245 libraries/import/csv.php:75 #: libraries/import/ldi.php:41 -#| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polia uzatvorené do" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:239 #: libraries/config/messages.inc.php:246 libraries/import/csv.php:80 #: libraries/import/ldi.php:42 -#| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Polia uvedené pomocou" @@ -2664,7 +2643,6 @@ msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:250 libraries/import/csv.php:62 #: libraries/import/ldi.php:40 -#| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Riadky ukončené" @@ -2674,7 +2652,6 @@ msgid "Lines terminated by" msgstr "Riadky ukončené" #: libraries/config/messages.inc.php:80 -#| msgid "Excel edition" msgid "Excel edition" msgstr "Verzia Excelu" @@ -2695,7 +2672,6 @@ msgstr "Vzor pre názov tabuľky" #: libraries/config/messages.inc.php:140 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 -#| msgid "%s table(s)" msgid "Dump table" msgstr "Vypísať tabuľku" @@ -2729,7 +2705,6 @@ msgid "Relations" msgstr "Prepojenia" #: libraries/config/messages.inc.php:103 -#| msgid "Export type" msgid "Export method" msgstr "Metóda exportu" @@ -2747,7 +2722,6 @@ msgid "Remember file name template" msgstr "Zapamätať si vzor pre názov súboru" #: libraries/config/messages.inc.php:118 -#| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" @@ -2809,8 +2783,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 "" -"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; " -"[kbd]obsah[/kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" +"Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; [kbd]obsah[/" +"kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" #: libraries/config/messages.inc.php:148 msgid "Foreign key dropdown order" @@ -2877,7 +2851,6 @@ msgid "Features" msgstr "Funkcie" #: libraries/config/messages.inc.php:165 -#| msgid "Generate" msgid "General" msgstr "Všeobecné" @@ -2945,7 +2918,6 @@ msgid "Microsoft Office" msgstr "Microsoft Office" #: libraries/config/messages.inc.php:185 -#| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document" @@ -2958,7 +2930,6 @@ msgid "Settings that didn't fit enywhere else" msgstr "Nastavenia, ktoré sa nedajú zaradiť inde" #: libraries/config/messages.inc.php:189 -#| msgid "Page number:" msgid "Page titles" msgstr "Mená stránok" @@ -2968,9 +2939,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -"Zadajte titulku, ktorú bude zobrazovať prehliadač. V " -"[a@Documentation.html#cfg_TitleTable]documentácii[/a] 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 [a@Documentation." +"html#cfg_TitleTable]documentácii[/a] nájdete špeciálne reťazce, ktoré môžete " +"použiť na získanie špeciálnych hodnôt." #: libraries/config/messages.inc.php:191 #: libraries/navigation_header.inc.php:83 @@ -3000,12 +2971,10 @@ msgid "Basic settings" msgstr "Základné nastavenia" #: libraries/config/messages.inc.php:196 -#| msgid "Documentation" msgid "Authentication" msgstr "Overenie" #: libraries/config/messages.inc.php:197 -#| msgid "Replication status" msgid "Authentication settings" msgstr "Nastavenie overovania" @@ -3026,7 +2995,6 @@ msgid "Enter server connection parameters" msgstr "Vložte parametre pripojenia servera" #: libraries/config/messages.inc.php:201 -#| msgid "Configuration file" msgid "Configuration storage" msgstr "Miesto uloženia konfigurácie" @@ -3086,7 +3054,6 @@ msgid "SQL queries settings" msgstr "Nastavenia SQL dopytov" #: libraries/config/messages.inc.php:217 -#| msgid "SQL history" msgid "SQL Validator" msgstr "Validátor SQL" @@ -3097,11 +3064,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:219 msgid "Startup" @@ -3120,7 +3086,6 @@ msgid "Choose how you want tabs to work" msgstr "Zvoľte, ako majú panely fungovať" #: libraries/config/messages.inc.php:223 -#| msgid "Use text field" msgid "Text fields" msgstr "Textové polia" @@ -3224,7 +3189,6 @@ msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importovať percentá ako desatinné čísla (0.12 namiesto 12.00%|" #: libraries/config/messages.inc.php:255 -#| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Počet dopytov, ktoré sa majú preskočiť od začiatku" @@ -3233,7 +3197,6 @@ msgid "Partial import: skip queries" msgstr "Čiastočný import: preskočiť dopyty" #: libraries/config/messages.inc.php:258 -#| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" @@ -3270,7 +3233,6 @@ msgid "Display servers selection" msgstr "Zobraziť výber serverov" #: libraries/config/messages.inc.php:269 -#| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek" @@ -3488,7 +3450,6 @@ msgid "Use natural order for sorting table and database names" msgstr "" #: libraries/config/messages.inc.php:318 -#| msgid "Alter table order by" msgid "Natural order" msgstr "Prirodzené poradie" @@ -3581,17 +3542,14 @@ msgid "Query window height (in pixels)" msgstr "" #: libraries/config/messages.inc.php:341 -#| msgid "Query window" msgid "Query window height" msgstr "Výška okna dopytov" #: libraries/config/messages.inc.php:342 -#| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Šírka okna dopytov (v pixeloch)" #: libraries/config/messages.inc.php:343 -#| msgid "Query window" msgid "Query window width" msgstr "Šírka okna dopytov" @@ -3608,7 +3566,6 @@ msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" #: libraries/config/messages.inc.php:347 -#| msgid "Repair threads" msgid "Repeat headers" msgstr "Opakovať záhlavie" @@ -3848,7 +3805,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:400 -#| msgid "database name" msgid "Database name" msgstr "Meno databázy" @@ -3927,7 +3883,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:417 -#| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Zobrazenie stĺpcov tabuľky" @@ -3966,7 +3921,6 @@ msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" #: libraries/config/messages.inc.php:425 -#| msgid "Statements" msgid "Statements to track" msgstr "Sledované príkazy" @@ -3987,7 +3941,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:429 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaticky vytvárať verzie" @@ -4055,7 +4008,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:444 -#| msgid "Show open tables" msgid "Show field types" msgstr "Zobraziť typy polí" @@ -4195,7 +4147,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:477 -#| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Stĺpce s textovou oblasťou" @@ -4218,7 +4169,6 @@ msgid "Title of browser window when nothing is selected" msgstr "" #: libraries/config/messages.inc.php:483 -#| msgid "Default" msgid "Default title" msgstr "Východzí popis" @@ -4356,7 +4306,6 @@ msgstr "" #: libraries/config/setup.forms.php:266 #: libraries/config/user_preferences.forms.php:169 -#| msgid "Custom color" msgid "Custom" msgstr "Vlastné" @@ -4471,8 +4420,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" +"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11" +"[/a]" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." @@ -4512,7 +4461,6 @@ msgid "Password Hashing" msgstr "Hashovanie hesla" #: libraries/display_change_password.lib.php:65 -#| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" msgstr "Kompatibilné s MySQL 4.0" @@ -4536,7 +4484,6 @@ msgid "Create table on database %s" msgstr "Vytvoriť novú tabuľku v databáze %s" #: libraries/display_create_table.lib.php:55 -#| msgid "Number of fields" msgid "Number of columns" msgstr "Počet polí" @@ -4546,24 +4493,20 @@ msgstr "" "Nepodarilo sa načítať exportné pluginy, skontrolujte prosím vašu inštaláciu!" #: libraries/display_export.lib.php:87 -#| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" msgstr "Exportujem databázy z aktuálneho servera" #: libraries/display_export.lib.php:89 #, php-format -#| msgid "Create table on database %s" msgid "Exporting tables from \"%s\" database" msgstr "Exportujem tabuľky z databázy \"%s\"" #: libraries/display_export.lib.php:91 #, php-format -#| msgid "Create table on database %s" msgid "Exporting rows from \"%s\" table" msgstr "Exportujem riadky z tabuľky \"%s\"" #: libraries/display_export.lib.php:97 -#| msgid "Export type" msgid "Export Method:" msgstr "Metóda exportu:" @@ -4576,27 +4519,22 @@ msgid "Custom - display all possible options" msgstr "" #: libraries/display_export.lib.php:137 -#| msgid "Databases" msgid "Database(s):" msgstr "Databáza(y):" #: libraries/display_export.lib.php:139 -#| msgid "Tables" msgid "Table(s):" msgstr "Tabuľka(y):" #: libraries/display_export.lib.php:149 -#| msgid "Rows" msgid "Rows:" msgstr "Riadky:" #: libraries/display_export.lib.php:157 -#| msgid "Update row(s)" msgid "Dump some row(s)" msgstr "Vypísať niektoré riadky" #: libraries/display_export.lib.php:159 -#| msgid "Number of fields" msgid "Number of rows:" msgstr "Počet riadkov:" @@ -4614,17 +4552,14 @@ msgstr "" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 #, php-format -#| msgid "Save on server in %s directory" msgid "Save on server in the directory %s" msgstr "Uložiť na server do adresára %s" #: libraries/display_export.lib.php:206 -#| msgid "Save as file" msgid "Save output to a file" msgstr "Uložiť výstup do suboru" #: libraries/display_export.lib.php:227 -#| msgid "File name template" msgid "File name template:" msgstr "Šablóna pre názov súboru:" @@ -4642,10 +4577,6 @@ msgstr "" #: libraries/display_export.lib.php:237 #, 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." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " "formatting strings. Additionally the following transformations will happen: %" @@ -4666,7 +4597,6 @@ msgid "Character set of the file:" msgstr "Znaková sada súboru:" #: libraries/display_export.lib.php:309 -#| msgid "Compression" msgid "Compression:" msgstr "Kompresia:" @@ -4677,28 +4607,23 @@ msgid "None" msgstr "Žiadny" #: libraries/display_export.lib.php:313 -#| msgid "\"zipped\"" msgid "zipped" msgstr "zazipované" #: libraries/display_export.lib.php:315 -#| msgid "\"gzipped\"" msgid "gzipped" msgstr "gzip-ované" #: libraries/display_export.lib.php:317 -#| msgid "\"bzipped\"" msgid "bzipped" msgstr "bzip-ované" #: libraries/display_export.lib.php:326 -#| msgid "Save as file" msgid "View output as text" msgstr "Zobraziť výstup ako text" #: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:37 -#| msgid "Format" msgid "Format:" msgstr "Formát:" @@ -4739,24 +4664,20 @@ msgid "" msgstr "" #: libraries/display_import.lib.php:129 -#| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Importujem na aktuálny server" #: libraries/display_import.lib.php:131 #, php-format -#| msgid "Go to database" msgid "Importing into the database \"%s\"" msgstr "Importujem do databázy \"%s\"" #: libraries/display_import.lib.php:133 #, php-format -#| msgid "Go to database" msgid "Importing into the table \"%s\"" msgstr "Importujem do tabuľky \"%s\"" #: libraries/display_import.lib.php:139 -#| msgid "File to import" msgid "File to Import:" msgstr "Súbor na importovanie:" @@ -4776,7 +4697,6 @@ msgid "File uploads are not allowed on this server." msgstr "Ukladanie súborov na server nie je povolené." #: libraries/display_import.lib.php:208 -#| msgid "Partial import" msgid "Partial Import:" msgstr "Čiastočný import:" @@ -4789,10 +4709,6 @@ msgstr "" "bude pokračovať od pozície %d." #: libraries/display_import.lib.php:221 -#| 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 good way to import large files, " @@ -4803,7 +4719,6 @@ msgstr "" "zároveň spôsobiť problémy s transakciami.)" #: libraries/display_import.lib.php:228 -#| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" msgstr "Počet riadkov od začiatku, ktoré sa majú preskočiť:" @@ -4822,7 +4737,6 @@ msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." #: libraries/display_tbl.lib.php:392 -#| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "riadky začínajúce od riadku #" @@ -4866,12 +4780,10 @@ msgid "Options" msgstr "Nastavenia" #: libraries/display_tbl.lib.php:546 libraries/display_tbl.lib.php:556 -#| msgid "Partial Texts" msgid "Partial texts" msgstr "Čiastočné texty" #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:560 -#| msgid "Full Texts" msgid "Full texts" msgstr "Plné texty" @@ -4943,7 +4855,6 @@ msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" #: libraries/display_tbl.lib.php:2331 tbl_chart.php:81 -#| msgid "Display PDF schema" msgid "Display chart" msgstr "Zobraziť graf" @@ -4956,7 +4867,7 @@ msgstr "Vytvoriť relaciu" msgid "Link not found" msgstr "Linka nebola nájdená" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informácie o verzii" @@ -5219,7 +5130,6 @@ msgid "" msgstr "" #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 -#| msgid "Relations" msgid "Related Links" msgstr "Súvisiace odkazy" @@ -5370,22 +5280,18 @@ msgid "The PrimeBase Media Streaming (PBMS) home page" msgstr "" #: libraries/export/csv.php:21 libraries/import/csv.php:27 -#| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Polia oddelené s:" #: libraries/export/csv.php:22 libraries/import/csv.php:28 -#| msgid "Fields enclosed by" msgid "Columns enclosed with:" msgstr "Polia uzatvorené do:" #: libraries/export/csv.php:23 libraries/import/csv.php:29 -#| msgid "Fields escaped by" msgid "Columns escaped with:" msgstr "Polia uvedené pomocou:" #: libraries/export/csv.php:24 libraries/import/csv.php:30 -#| msgid "Lines terminated by" msgid "Lines terminated with:" msgstr "Riadky ukončené:" @@ -5393,7 +5299,6 @@ msgstr "Riadky ukončené:" #: libraries/export/htmlword.php:28 libraries/export/latex.php:79 #: libraries/export/ods.php:23 libraries/export/odt.php:59 #: libraries/export/xls.php:23 libraries/export/xlsx.php:23 -#| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Nahradiť NULL hodnoty:" @@ -5402,7 +5307,6 @@ msgid "Remove carriage return/line feed characters within columns" msgstr "" #: libraries/export/excel.php:32 -#| msgid "Excel edition" msgid "Excel edition:" msgstr "Verzia Excelu:" @@ -5443,24 +5347,20 @@ msgid "Object creation options" msgstr "Parametre transformácie" #: libraries/export/latex.php:51 libraries/export/latex.php:75 -#| msgid "Table caption" msgid "Table caption (continued)" msgstr "Nadpis tabuľky (pokračovanie)" #: libraries/export/latex.php:56 libraries/export/odt.php:42 #: libraries/export/sql.php:40 -#| msgid "Disable foreign key checks" msgid "Display foreign key relationships" msgstr "Zobraziť vzťahy cudzích kľúčov" #: libraries/export/latex.php:59 libraries/export/odt.php:45 -#| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Zobraziť komentáre" #: libraries/export/latex.php:62 libraries/export/odt.php:48 #: libraries/export/sql.php:44 -#| msgid "Available MIME types" msgid "Display MIME types" msgstr "Zobraziť MIME typy" @@ -5503,7 +5403,6 @@ msgid "(Generates a report containing the data of a single table)" msgstr "(Generuje report obsahujúci dáta jednej tabuľky)" #: libraries/export/pdf.php:24 -#| msgid "Report title" msgid "Report title:" msgstr "Názov výpisu:" @@ -5518,7 +5417,6 @@ msgid "" msgstr "" #: libraries/export/sql.php:35 -#| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Pridať vlastný komentár do hlavičky (\n" @@ -5538,12 +5436,10 @@ msgstr "" #: libraries/export/sql.php:72 libraries/export/sql.php:105 #: libraries/export/sql.php:107 #, php-format -#| msgid "Statements" msgid "Add %s statement" msgstr "Pridať údaj %s" #: libraries/export/sql.php:91 -#| msgid "Statements" msgid "Add statements:" msgstr "Pridať príkazy:" @@ -5662,7 +5558,6 @@ msgid "Object creation options (all are recommended)" msgstr "" #: libraries/export/xml.php:40 -#| msgid "View" msgid "Views" msgstr "Pohľady" @@ -5737,7 +5632,6 @@ msgid "" msgstr "" #: libraries/import/csv.php:41 -#| msgid "Column names" msgid "Column names: " msgstr "Názvy stĺpcov: " @@ -5761,7 +5655,6 @@ msgstr "Chybný formát v CSV vstupe na riadku %d." #: libraries/import/csv.php:324 #, php-format -#| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." @@ -5792,12 +5685,10 @@ msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" #: libraries/import/sql.php:32 -#| msgid "SQL compatibility mode" msgid "SQL compatibility mode:" msgstr "Režim kompatibility SQL" #: libraries/import/sql.php:42 -#| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" @@ -5808,7 +5699,6 @@ msgid "" msgstr "" #: libraries/kanji-encoding.lib.php:142 -#| msgid "None" msgctxt "None encoding conversion" msgid "None" msgstr "Žiadny" @@ -5819,7 +5709,6 @@ msgid "Convert to Kana" msgstr "" #: libraries/mult_submits.inc.php:249 -#| msgid "Fri" msgid "From" msgstr "Z" @@ -6055,7 +5944,6 @@ msgid "Reload navigation frame" msgstr "" #: libraries/plugin_interface.lib.php:336 -#| msgid "This format has no options" msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" @@ -6234,7 +6122,6 @@ msgstr "Vytvoriť Heslo" #: libraries/schema/Svg_Relation_Schema.class.php:369 #: libraries/schema/Visio_Relation_Schema.class.php:213 #, php-format -#| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabuľka \"%s\" neexistuje!" @@ -6252,7 +6139,6 @@ msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" #: libraries/schema/Svg_Relation_Schema.class.php:737 #: libraries/schema/Visio_Relation_Schema.class.php:502 #, php-format -#| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schéma databázy \"%s\" - Strana %s" @@ -6291,12 +6177,10 @@ msgid "Create a page" msgstr "Vytvoriť novú Stránku" #: libraries/schema/User_Schema.class.php:99 -#| msgid "Page number:" msgid "Page name" msgstr "Názov stránky" #: libraries/schema/User_Schema.class.php:103 -#| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatické rozvrhnutie podľa" @@ -6313,7 +6197,6 @@ msgid "Please choose a page to edit" msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť" #: libraries/schema/User_Schema.class.php:153 -#| msgid "Select Tables" msgid "Select page" msgstr "Zvoliť stránku" @@ -6322,7 +6205,6 @@ msgid "Select Tables" msgstr "Vybrať Tabuľky" #: libraries/schema/User_Schema.class.php:346 -#| msgid "Relational schema" msgid "Display relational schema" msgstr "Zobraziť relačnú schému" @@ -6359,7 +6241,6 @@ msgid "Portrait" msgstr "Na výšku" #: libraries/schema/User_Schema.class.php:394 -#| msgid "Creation" msgid "Orientation" msgstr "Orientácia" @@ -6391,7 +6272,6 @@ msgid "Unknown language: %1$s." msgstr "Neznámy jazyk: %1$s." #: libraries/select_server.lib.php:38 libraries/select_server.lib.php:44 -#| msgid "Current server" msgid "Current Server" msgstr "Aktuálny server" @@ -6423,7 +6303,6 @@ msgid "Synchronize" msgstr "Synchronizovať" #: libraries/server_links.inc.php:99 -#| msgid "settings" msgid "Settings" msgstr "Nastavenia" @@ -6466,7 +6345,6 @@ msgid "Clear" msgstr "Kalendár" #: libraries/sql_query_form.lib.php:302 -#| msgid "Column names" msgid "Columns" msgstr "Stĺpce" @@ -6592,11 +6470,6 @@ msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" #: libraries/tbl_properties.inc.php:104 -#| msgid "" -#| "If field type is \"enum\" or \"set\", please enter the values using this " -#| "format: 'a','b','c'...
    If you ever need to put a backslash (\"\\\") " -#| "or a single quote (\"'\") amongst those values, precede it with a " -#| "backslash (for example '\\\\xyz' or 'a\\'b')." msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
    If you ever need to put a backslash (\"\\\") or " @@ -6604,9 +6477,9 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" "Ak je pole typu \"enum\" alebo \"set\", prosím zadávajte hodnoty v tvare: " -"'a','b','c'...
    Ak potrebujete zadať spätné lomítko (\"\\\") alebo apostrof " -"(\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho spätného " -"lomítka (napr. '\\\\xyz' alebo 'a\\'b')." +"'a','b','c'...
    Ak potrebujete zadať spätné lomítko (\"\\\") alebo " +"apostrof (\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho " +"spätného lomítka (napr. '\\\\xyz' alebo 'a\\'b')." #: libraries/tbl_properties.inc.php:105 msgid "" @@ -6656,7 +6529,6 @@ msgid "Get more editing space" msgstr "" #: libraries/tbl_properties.inc.php:396 -#| msgid "None" msgctxt "for default" msgid "None" msgstr "Žiadny" @@ -6695,12 +6567,10 @@ msgstr "" #: libraries/tbl_properties.inc.php:780 tbl_structure.php:636 #, php-format -#| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Pridať %s stĺpcov" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:630 -#| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." @@ -6800,9 +6670,6 @@ msgstr "" "(predvolený je 1)" #: libraries/transformations/text_plain__formatted.inc.php:9 -#| msgid "" -#| "Displays the contents of the field as-is, without running it through " -#| "htmlspecialchars(). 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." @@ -6811,24 +6678,16 @@ msgstr "" "To znamená, že pole už obsahuje platný HTML kód." #: libraries/transformations/text_plain__imagelink.inc.php:9 -#| msgid "" -#| "Displays an image and a link; the field contains the filename. The first " -#| "option is a URL prefix like \"http://www.example.com/\". The second and " -#| "third options are the width and the height in pixels." msgid "" "Displays an image and a link; the column contains the filename. The first " "option is a URL prefix like \"http://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" "Zobrazí obrázok a odkaz; pole obsahuje meno súboru. Prvý parameter je prefix " -"URL (napr. \"http://www.example.com/\"). Druhý a tretí parameter určujú šírku " -"a výšku obrázku v pixeloch." +"URL (napr. \"http://www.example.com/\"). Druhý a tretí parameter určujú " +"šírku a výšku obrázku v pixeloch." #: libraries/transformations/text_plain__link.inc.php:9 -#| msgid "" -#| "Displays a link; the field contains the filename. The first option is a " -#| "URL prefix like \"http://www.example.com/\". The second option is a title " -#| "for the link." msgid "" "Displays a link; the column contains the filename. The first option is a URL " "prefix like \"http://www.example.com/\". The second option is a title for " @@ -6867,7 +6726,6 @@ msgid "Manage your settings" msgstr "Možnosti všeobecných vzťahov" #: libraries/user_preferences.inc.php:47 prefs_manage.php:291 -#| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Nastavenia boli uložené" @@ -6899,7 +6757,6 @@ msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archíve:" #: main.php:65 -#| msgid "General relation features" msgid "General Settings" msgstr "Všeobecné nastavenia" @@ -6912,7 +6769,6 @@ msgid "Appearance Settings" msgstr "" #: main.php:146 prefs_manage.php:274 -#| msgid "settings" msgid "More settings" msgstr "Viac nastavení" @@ -6946,30 +6802,28 @@ msgstr "rozšírenie PHP" msgid "Show PHP information" msgstr "Zobraziť informácie o PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Oficiálne stránky phpMyAdmin" -#: main.php:214 -#| msgid "Attributes" +#: main.php:217 msgid "Contribute" msgstr "Prispejte" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "Exportovať" -#: main.php:216 -#| msgid "No change" +#: main.php:219 msgid "List of changes" msgstr "Zoznam zmien" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6981,7 +6835,7 @@ msgstr "" "nastavením, nie je zabezpečený proti napadnutiu, táto bezpečnostná chyba by " "mala byť urýchlene odstránená." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6990,7 +6844,7 @@ msgstr "" "V nastavení PHP je aktívna funkcia mbstring.func_overload, ktorá nie je " "kompatibilná s phpMyAdmin-om a môže spôsobiť stratu dát!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7001,7 +6855,7 @@ msgstr "" "rozdeľovať reťazce kódované v týchto znakových sadách a môže to viesť k " "nečakaným výsledkom." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7009,19 +6863,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte prosím kľúč pre šifrovanie cookies v konfiguračnom súbore " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7031,7 +6885,7 @@ msgstr "" "vašom phpMyAdmin adresári. Mali by ste ho odstrániť, ak je phpMyAdmin " "nakonfigurovaný." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7043,14 +6897,14 @@ msgstr "" "Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " "chcete zistiť prečo, kliknite %ssem%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7059,7 +6913,7 @@ msgstr "" "Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. " "Toto môže spôsobiť nepredvídateľné správanie." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7075,12 +6929,10 @@ msgid "Filter" msgstr "Filter" #: navigation.php:277 -#| msgid "table name" msgid "filter tables by name" msgstr "filtrovať tabuľky podľa mena" #: navigation.php:308 navigation.php:309 -#| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Vytvoriť tabuľku" @@ -7138,7 +6990,6 @@ msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" #: pmd_general.php:120 -#| msgid "Submit Query" msgid "Build Query" msgstr "Vytvoriť dopyt" @@ -7171,13 +7022,11 @@ msgstr "Zobraziť prepojenia" #: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652 #: pmd_general.php:769 -#| msgid "Export" msgid "Except" msgstr "Okrem" #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 #: pmd_general.php:775 -#| msgid "in query" msgid "subquery" msgstr "poddopyt" @@ -7187,12 +7036,10 @@ msgid "Rename to" msgstr "Premenovať tabuľku na" #: pmd_general.php:482 pmd_general.php:581 -#| msgid "User name" msgid "New name" msgstr "Nové meno" #: pmd_general.php:485 pmd_general.php:700 -#| msgid "Create" msgid "Aggregate" msgstr "Zlúčiť" @@ -7203,7 +7050,6 @@ msgid "Operator" msgstr "Operátor" #: pmd_general.php:810 -#| msgid "Table options" msgid "Active options" msgstr "Zapnuté parametre" @@ -7227,27 +7073,22 @@ msgid "Page creation failed" msgstr "" #: pmd_pdf.php:89 -#| msgid "pages" msgid "Page" msgstr "Stránka" #: pmd_pdf.php:99 -#| msgid "Import files" msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" #: pmd_pdf.php:100 -#| msgid "No rows selected" msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" #: pmd_pdf.php:102 -#| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Vytvoriť novú stránku a exportovať do nej" #: pmd_pdf.php:111 -#| msgid "User name" msgid "New page name: " msgstr "Nový názov stránky: " @@ -7294,7 +7135,6 @@ msgid "Cannot save settings, submitted form contains errors" msgstr "" #: prefs_manage.php:80 -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Nepodarilo sa načítať konfiguráciu" @@ -7311,7 +7151,6 @@ msgid "Saved on: @DATE@" msgstr "" #: prefs_manage.php:239 -#| msgid "Import files" msgid "Import from file" msgstr "Importovať zo súboru" @@ -7373,7 +7212,6 @@ msgid "%s table not found or not set in %s" msgstr "Tabuľka %s nebola nájdená alebo nie je nastavená v %s" #: schema_export.php:45 -#| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" msgstr "Súbor neexistuje" @@ -7653,7 +7491,6 @@ msgid "No privileges." msgstr "Žiadne práva." #: server_privileges.php:312 server_privileges.php:313 -#| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Žiadny" @@ -7698,7 +7535,6 @@ msgid "Do not change the password" msgstr "Nezmeniť heslo" #: server_privileges.php:817 server_privileges.php:2286 -#| msgid "No user(s) found." msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." @@ -7858,7 +7694,6 @@ msgid "Database for user" msgstr "Databáza pre používateľa" #: server_privileges.php:2118 -#| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Žiadny" @@ -7928,7 +7763,6 @@ msgstr "" #: server_replication.php:72 #, php-format -#| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Master server zmenený úspešne na %s" @@ -8033,7 +7867,6 @@ msgid "Reset slave" msgstr "" #: server_replication.php:326 -#| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Spustiť len SQL vlákno" @@ -8042,7 +7875,6 @@ msgid "Stop SQL Thread only" msgstr "" #: server_replication.php:331 -#| msgid "Structure only" msgid "Start IO Thread only" msgstr "Spustiť len IO vlákno" @@ -8102,8 +7934,8 @@ msgid "" msgstr "" "Počet dočasných tabuliek automaticky vytvorených serverom pri vykonávaní " "príkazov. Ak je hodnota Created_tmp_disk_tables príliš vysoká, môžete zvýšiť " -"hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie " -"na disk." +"hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " +"disk." #: server_status.php:49 msgid "How many temporary files mysqld has created." @@ -8788,7 +8620,6 @@ msgid "Show processes" msgstr "Zobraziť procesy" #: server_status.php:470 -#| msgid "Reset" msgctxt "for Show status" msgid "Reset" msgstr "Vynulovať" @@ -8799,7 +8630,6 @@ msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento server beží %s. Bol spustený %s." #: server_status.php:486 -#| msgid "This server is configured as master in a replication process." msgid "" "This MySQL server works as master and slave in replication process." @@ -8808,23 +8638,17 @@ msgstr "" "replikačnom procese." #: server_status.php:488 -#| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Tento MYSQL server je nakonfigurovaný ako master v replikačnom " "procese." #: server_status.php:490 -#| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." #: server_status.php:492 -#| msgid "" -#| "This MySQL server works as %s in replication process. For further " -#| "information about replication status on the server, please visit the replication section." msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8887,8 +8711,7 @@ msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -"Štatistika dopytov: Od spustenia bolo odoslaných %s dopytov na " -"server." +"Štatistika dopytov: Od spustenia bolo odoslaných %s dopytov na server." #: server_status.php:626 msgid "per minute" @@ -9006,13 +8829,11 @@ msgid "Enter manually" msgstr "" #: server_synchronize.php:1138 -#| msgid "max. concurrent connections" msgid "Current connection" msgstr "Súčasné pripojenie" #: server_synchronize.php:1167 #, php-format -#| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfigurácia: %s" @@ -9072,7 +8893,6 @@ msgid "Insecure connection" msgstr "" #: setup/frames/index.inc.php:92 -#| msgid "Configuration file" msgid "Configuration saved." msgstr "Konfigurácia bola uložená." @@ -9338,7 +9158,6 @@ msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" #: sql.php:622 -#| msgid "Validate SQL" msgid "Validated SQL" msgstr "Skontrolované SQL" @@ -9424,20 +9243,16 @@ msgid "Continue insertion with %s rows" msgstr "" #: tbl_chart.php:56 -#| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." msgstr "Graf bol úspešne vytvorený." #: tbl_chart.php:59 -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" msgid "" "The result of this query can't be used for a chart. See [a@./Documentation." "html#faq6_29@Documentation]FAQ 6.29[/a]" msgstr "" -"Výsledok tohto dopytu nemôže byť použitý pre graf. Viď " -"[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +"Výsledok tohto dopytu nemôže byť použitý pre graf. Viď [a@./Documentation." +"html#faq6_29@Documentation]FAQ 6.29[/a]" #: tbl_chart.php:90 msgid "Width" @@ -9468,7 +9283,6 @@ msgid "Legend margins" msgstr "" #: tbl_chart.php:134 -#| msgid "Mar" msgid "Bar" msgstr "Stĺpec" @@ -9481,12 +9295,10 @@ msgid "Radar" msgstr "" #: tbl_chart.php:138 -#| msgid "PiB" msgid "Pie" msgstr "Koláč" #: tbl_chart.php:144 -#| msgid "Query type" msgid "Bar type" msgstr "Typ stĺpca" @@ -9643,12 +9455,10 @@ msgid "Table %s has been flushed" msgstr "Tabuľka %s bola vyprázdnená" #: tbl_operations.php:668 -#| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (FLUSH)" #: tbl_operations.php:677 -#| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Odstrániť dáta alebo tabuľku" @@ -9657,7 +9467,6 @@ msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:712 -#| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Odstrániť tabuľku (DROP)" @@ -9745,7 +9554,6 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "" #: tbl_relation.php:402 -#| msgid "Internal relations" msgid "Internal relation" msgstr "Interné vzťahy" @@ -9768,7 +9576,6 @@ msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" #: tbl_select.php:233 -#| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Zvoliť stĺpec (najmenej jeden):" @@ -9805,14 +9612,12 @@ msgid "Add FULLTEXT index" msgstr "Pridať fulltextový index" #: tbl_structure.php:385 -#| msgid "None" msgctxt "None for default" msgid "None" msgstr "Žiadny" #: tbl_structure.php:398 #, php-format -#| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Stĺpec %s bol odstránený" @@ -9828,7 +9633,6 @@ msgid "An index has been added on %s" msgstr "Bol pridaný index pre %s" #: tbl_structure.php:471 -#| msgid "Show PHP information" msgid "Show more actions" msgstr "Zobraziť viac operácii" @@ -9841,7 +9645,6 @@ msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" #: tbl_structure.php:634 -#| msgid "Add column(s)" msgid "Add column" msgstr "Pridať stĺpec" @@ -9860,7 +9663,6 @@ msgstr "Po %s" #: tbl_structure.php:689 #, php-format -#| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" @@ -9916,7 +9718,6 @@ msgid "Tracking data definition successfully deleted" msgstr "" #: tbl_tracking.php:384 tbl_tracking.php:401 -#| msgid "Query type" msgid "Query error" msgstr "Chyba dopytu" @@ -9934,12 +9735,10 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" #: tbl_tracking.php:432 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" #: tbl_tracking.php:443 -#| msgid "No databases" msgid "No data" msgstr "Žiadne dáta" @@ -10046,7 +9845,6 @@ msgid "Available transformations" msgstr "Dostupné transformácie" #: transformation_overview.php:47 -#| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" diff --git a/po/sl.po b/po/sl.po index 5f8b697550..a9a92dae79 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-03-24 22:38+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -1134,6 +1134,18 @@ msgstr "Skrij iskalne pogoje" msgid "Show search results" msgstr "Prikaži iskalne pogoje" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Prebrskaj" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brišem %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2005,7 +2017,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentacija" @@ -4982,7 +4994,7 @@ msgstr "Ustvari pogled" msgid "Link not found" msgstr "Povezave ni mogoče najti" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Podatki o različici" @@ -6993,27 +7005,27 @@ msgstr "Razširitev PHP" msgid "Show PHP information" msgstr "Pokaži podatke o PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Uradna domača stran phpMyAdmin" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Prispevaj" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Prosi za podporo" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Seznam sprememb" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7025,7 +7037,7 @@ msgstr "" "privzetimi nastavitvami, zato je izpostavljen vdorom. Čimprej odpravite to " "varnostno luknjo tako, da uporabniku 'root' nastavite geslo." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7034,7 +7046,7 @@ msgstr "" "V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Ta možnost ni " "združljiva s phpMyAdminom in lahko pokvari nekatere podatke!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7044,7 +7056,7 @@ msgstr "" "nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno " "razcepiti nizov, kar lahko vodi v nepričakovane rezultate." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7056,7 +7068,7 @@ msgstr "" "piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla " "prej, kot je določeno v phpMyAdminu." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7065,13 +7077,13 @@ msgstr "" "določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla prej, kot je " "določeno v phpMyAdminu." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfiguracijski datoteki morate sedaj določiti skrivno geslo " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7081,7 +7093,7 @@ msgstr "" "obstaja v vaši mapi phpMyAdmin. Priporočljivo jo je odstraniti, ko je " "phpMyAdmin enkrat že konfiguriran." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7091,7 +7103,7 @@ msgstr "" "nekatere razširjene zmožnosti onemogočene. Če želite izvedeti zakaj, " "kliknite %stukaj%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7101,7 +7113,7 @@ msgstr "" "nekatere funkcije phpMyAdmina manjkale. Na primer navigacijski okvir se ne " "bo osveževal samodejno." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7110,7 +7122,7 @@ msgstr "" "Vaša PHP-knjižica MySQL različice %s se razlikuje od vašega strežnika MySQL " "različice %s. To lahko povzroči nepredvidljivo vedenje." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/sq.po b/po/sq.po index e02d8f156c..484b4e7734 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -1162,6 +1162,18 @@ msgstr "query SQL" msgid "Show search results" msgstr "query SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Shfleto" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Në fshirje e sipër të %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2085,7 +2097,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentet" @@ -5023,7 +5035,7 @@ msgstr "Versioni i MySQL" msgid "Link not found" msgstr "Lidhja nuk u gjet" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "Informacione mbi Identifikimin" @@ -7032,31 +7044,31 @@ msgstr "Versioni i PHP" msgid "Show PHP information" msgstr "Trego info mbi PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Faqja zyrtare e phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Pronësi" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Asnjë ndryshim" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7068,21 +7080,21 @@ msgstr "" "MySQL funksionues me këto zgjedhje është i pambrojtur ndaj sulmeve, dhe ju " "duhet patjetër të korrigjoni këtë vrimë në siguri." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7090,25 +7102,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Tani nevoitet një fjalëkalim sekret për file e konfigurimit(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7120,21 +7132,21 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/sr.po b/po/sr.po index a9b11d943b..47008983a9 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -1175,6 +1175,18 @@ msgstr "SQL упит" msgid "Show search results" msgstr "SQL упит" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Преглед" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Бришем %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2107,7 +2119,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Документација" @@ -5104,7 +5116,7 @@ msgstr "Направи релацију" msgid "Link not found" msgstr "Веза није пронађена" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Информације о верзији" @@ -7152,31 +7164,31 @@ msgstr "верзија PHP-a" msgid "Show PHP information" msgstr "Прикажи информације о PHP-у" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin веб сајт" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Нема измена" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7188,7 +7200,7 @@ msgstr "" "овим подешавањима, отворен је за упаде, и заиста треба да исправите овај " "сигурносни ризик." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7197,7 +7209,7 @@ msgstr "" "У PHP подешавањима Вам је укључена mbstring.func_overload опција. Ова опција " "је некомпатибилна са phpMyAdmin и може довести до грешака у неким подацима!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7207,7 +7219,7 @@ msgstr "" "скуп знакова. Без екстензије mbstring phpMyAdmin не може исправно да " "раздваја стрингове и то може довести до неочекиваних резултата." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7215,24 +7227,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7244,14 +7256,14 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7260,7 +7272,7 @@ msgstr "" "Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL " "сервера %s. Ово може довести до непредвидљивог понашања." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/sr@latin.po b/po/sr@latin.po index bf56de49aa..90befe9780 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -1169,6 +1169,18 @@ msgstr "SQL upit" msgid "Show search results" msgstr "SQL upit" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Pregled" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Brišem %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2101,7 +2113,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentacija" @@ -5097,7 +5109,7 @@ msgstr "Napravi relaciju" msgid "Link not found" msgstr "Veza nije pronađena" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Informacije o verziji" @@ -7140,31 +7152,31 @@ msgstr "verzija PHP-a" msgid "Show PHP information" msgstr "Prikaži informacije o PHP-u" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin veb sajt" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributi" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Nema izmena" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7176,7 +7188,7 @@ msgstr "" "ovim podešavanjima, otvoren je za upade, i zaista treba da ispravite ovaj " "sigurnosni rizik." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7186,7 +7198,7 @@ msgstr "" "opcija je nekompatibilna sa phpMyAdmin i može dovesti do grešaka u nekim " "podacima!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7196,7 +7208,7 @@ msgstr "" "skup znakova. Bez ekstenzije mbstring phpMyAdmin ne može ispravno da " "razdvaja stringove i to može dovesti do neočekivanih rezultata." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7204,24 +7216,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7233,14 +7245,14 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7249,7 +7261,7 @@ msgstr "" "Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL " "servera %s. Ovo može dovesti do nepredvidljivog ponašanja." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/sv.po b/po/sv.po index 8bd8782dfb..036c2719b4 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-02-16 21:42+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -1124,6 +1124,18 @@ msgstr "Dölj sökkriterier" msgid "Show search results" msgstr "Visa sökkriterier" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Visa" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Tar bort %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1988,7 +2000,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentation" @@ -4956,7 +4968,7 @@ msgstr "Skapa vy" msgid "Link not found" msgstr "Länken hittades inte" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versionsinformation" @@ -6964,27 +6976,27 @@ msgstr "PHP-tillägg" msgid "Show PHP information" msgstr "Visa PHP-information" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Wiki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin:s officiella hemsida" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Bidra" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Få support" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Lista över ändringar" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6996,7 +7008,7 @@ msgstr "" "denna standard, är öppen för intrång, och du bör verkligen fixa detta " "säkerhetshål genom att ange ett lösenord för användare 'root'." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7006,7 +7018,7 @@ msgstr "" "alternativ är inkompatibelt med phpMyAdmin och kan leda till att data kan " "skadas!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7016,7 +7028,7 @@ msgstr "" "flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt " "utan tillägget mbstring, vilket kan resultera i oväntade resultat." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7028,7 +7040,7 @@ msgstr "" "giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning " "upphöra att gälla tidigare än konfigurerat i phpMyAdmin." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7037,11 +7049,11 @@ msgstr "" "grund av detta kommer dina inloggningsuppgifter upphöra att gälla tidigare " "än konfigurerat i phpMyAdmin." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7051,7 +7063,7 @@ msgstr "" "fortfarande i din phpMyAdmin-katalog. Du borde ta bort den när phpMyAdmin " "har konfigurerats." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7060,7 +7072,7 @@ msgstr "" " phpMyAdmin konfigurationen är inte fullständigt konfigurerat, vissa utökade " "funktioner har inaktiverats.. Föra att ta reda på varför klicka%shär%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7070,7 +7082,7 @@ msgstr "" "phpMyAdmin funktionalitet kommer saknas. Till exempel kommer " "navigeringsramen inte uppdateras automatiskt." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7079,7 +7091,7 @@ msgstr "" "Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" "s. Detta kan orsaka oförutsägbara beteenden." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ta.po b/po/ta.po index 563c764227..cac1bc7841 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -1103,6 +1103,14 @@ msgstr "" msgid "Show search results" msgstr "" +#: js/messages.php:86 +msgid "Browsing" +msgstr "" + +#: js/messages.php:87 +msgid "Deleting" +msgstr "" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1990,7 +1998,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "" @@ -4787,7 +4795,7 @@ msgstr "" msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6621,27 +6629,27 @@ msgstr "" msgid "Show PHP information" msgstr "" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6649,21 +6657,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6671,45 +6679,45 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/te.po b/po/te.po index fb7afe7165..7ffdc0c201 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -1135,6 +1135,16 @@ msgstr "" msgid "Show search results" msgstr "" +#: js/messages.php:86 +msgid "Browsing" +msgstr "" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "తొలగించు" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1987,7 +1997,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "పత్రావళి" @@ -4802,7 +4812,7 @@ msgstr "సృష్టించు" msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "సంచిక సమాచారం" @@ -6667,27 +6677,27 @@ msgstr "" msgid "Show PHP information" msgstr "" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "వికీ" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "సహాయాన్ని పొందండి" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "మార్పుల జాబితా" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6695,21 +6705,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6717,45 +6727,45 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/th.po b/po/th.po index e42a112992..f0dd8387db 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -1134,6 +1134,18 @@ msgstr "คำค้น SQL" msgid "Show search results" msgstr "คำค้น SQL" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "เปิดดู" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "กำลังลบ %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2047,7 +2059,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "เอกสารอ้างอิง" @@ -4986,7 +4998,7 @@ msgstr "รุ่นของเซิร์ฟเวอร์" msgid "Link not found" msgstr "ไม่พบลิงก์" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 #, fuzzy msgid "Version information" msgstr "ข้อมูลล็อกอิน" @@ -6925,31 +6937,31 @@ msgstr "รุ่นของ PHP" msgid "Show PHP information" msgstr "แสดงข้อมูลของ PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "โฮมเพจอย่างเป็นทางการของ phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "แอตทริบิวต์" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "ไม่มีการเปลี่ยนแปลง" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6960,21 +6972,21 @@ msgstr "" "ซึ่งจะถูกใช้เป็นชื่อปริยายซึ่งมีสิทธิพิเศษ. เซิร์ฟเวอร์ MySQL ที่ทำงานด้วยค่าปริยายนี้ อาจถูกบุกรุกได้ " "คุณควรจะแก้ไขรูรั่วอันนี้ทันที เพื่อความปลอดภัย" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6982,24 +6994,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7010,21 +7022,21 @@ msgid "" msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/tr.po b/po/tr.po index d3aab70aa3..7815197b74 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-17 19:11+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -1126,6 +1126,18 @@ msgstr "Arama kriterini gizle" msgid "Show search results" msgstr "Arama kriterini göster" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Gözat" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "%s siliniyor" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1992,7 +2004,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Belgeler" @@ -4989,7 +5001,7 @@ msgstr "Görünüm oluştur" msgid "Link not found" msgstr "Bağlantı bulunamadı" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Sürüm bilgisi" @@ -7006,27 +7018,27 @@ msgstr "PHP uzantısı" msgid "Show PHP information" msgstr "PHP bilgisini göster" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Viki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Resmî phpMyAdmin Anasayfası" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "Katkıda bulun" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "Destek al" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "Değişikliklerin listesi" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7038,7 +7050,7 @@ msgstr "" "açık ayarlarla çalışıyor ve bu güvenlik açığını gerçekten düzeltmeniz " "gerekmektedir." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7048,7 +7060,7 @@ msgstr "" "Bu seçenek phpMyAdmin ile uyumlusuzdur ve bazı veri bozulmalarına sebep " "olabilir!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7058,7 +7070,7 @@ msgstr "" "görünüyor. Mbstring uzantısı olmadan phpMyAdmin karakter dizgilerini doğru " "olarak bölemez ve bu beklenmedik sonuçlar doğurabilir." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7070,7 +7082,7 @@ msgstr "" "session.gc-maxlifetime@]session.gc_maxlifetime[/a] düşük, bundan dolayı " "oturum açmanızın süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır." -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -7079,13 +7091,13 @@ msgstr "" "tanımlama bilgisi depolamadan düşük, bundan dolayı oturum açmanızın süresi " "phpMyAdmin içinde yapılandırılmadıkça dolacaktır." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Yapılandırma dosyası için gizli bir parola ifadesi gerekiyor " "(blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7095,7 +7107,7 @@ msgstr "" "phpMyAdmin dizininiz içinde mevcut. Birkez phpMyAdmin yapılandırıldı mı bunu " "kaldırmalısınız." -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -7104,7 +7116,7 @@ msgstr "" "phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı. Nedenini " "öğrenmek için %sburaya%s tıklayın." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7114,7 +7126,7 @@ msgstr "" "phpMyAdmin işlevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik " "olarak yenilemeyecek." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7123,7 +7135,7 @@ msgstr "" "PHP MySQL kütüphanenizin %s sürümü MySQL sunucunuzun %s sürümünden farklı. " "Bu tarafsız davranışa sebep olabilir." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/tt.po b/po/tt.po index 46e552bfa4..48ae3b97f0 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -1162,6 +1162,18 @@ msgstr "SQL-soraw" msgid "Show search results" msgstr "SQL-soraw" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Küzätü" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "\"%s\" Beterü" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2088,7 +2100,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Qullanma" @@ -5061,7 +5073,7 @@ msgstr "Server söreme" msgid "Link not found" msgstr "Bäyläneş tabılmadı" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Söreme turında" @@ -7083,31 +7095,31 @@ msgstr "PHP Söreme" msgid "Show PHP information" msgstr "PHP turında" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin säxifäse" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Üzençälek" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Üzgäreşsez" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7118,7 +7130,7 @@ msgstr "" "xisap saylanğan (sersüzsez \"root\"). MySQL-server şul töp xisap belän " "açılğan da, andıy xällär iminlekneñ citdi tişege tip sanala." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7127,7 +7139,7 @@ msgstr "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause breaking of some data!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7137,7 +7149,7 @@ msgstr "" "charset. Without mbstring extension phpMyAdmin is unable to split strings " "correctly and it may result in unexpected results." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7145,25 +7157,25 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7175,21 +7187,21 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ug.po b/po/ug.po index 7f2fc21ead..6f7acaebd4 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -1138,6 +1138,18 @@ msgstr "" msgid "Show search results" msgstr "SQL سورىقى" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "كۆزەت" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "ئۆچۈرۈش" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2004,7 +2016,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "قوللانما" @@ -4882,7 +4894,7 @@ msgstr "نەشىرنى قۇىماق" msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6759,27 +6771,27 @@ msgstr "" msgid "Show PHP information" msgstr "" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6787,21 +6799,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6809,24 +6821,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The phpMyAdmin configuration storage has been deactivated. To find out " @@ -6838,21 +6850,21 @@ msgstr "" "ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" "sبۇ يەرنى كۆرۈڭ%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/uk.po b/po/uk.po index fd4280f371..2b9ee95a73 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" @@ -1109,6 +1109,18 @@ msgstr "Сховати критерії пошуку" msgid "Show search results" msgstr "Показати критерії пошуку" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Переглянути" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "Усунути %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1962,7 +1974,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Документація" @@ -4771,7 +4783,7 @@ msgstr "Створити користувача" msgid "Link not found" msgstr "Лінк не знайдено" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6729,31 +6741,31 @@ msgstr "" msgid "Show PHP information" msgstr "Показати інформацію про PHP" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Змін немає" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6765,21 +6777,21 @@ msgstr "" "відкритий для вторгнення і тому Вам обов'язково слід виправити цю прогалину " "у безпеці." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6787,24 +6799,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфігураційний файл потребує секретну фразу (пароль)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6816,21 +6828,21 @@ msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/ur.po b/po/ur.po index 07706eb94d..84bb7d1348 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -1130,6 +1130,18 @@ msgstr "تلاش کسوٹی چھپائیں" msgid "Show search results" msgstr "تلاش کسوٹی دکھائیں" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "براؤز" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Delete" +msgid "Deleting" +msgstr "حذف" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1988,7 +2000,7 @@ msgstr "انگریزی" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "دستاویزات" @@ -4879,7 +4891,7 @@ msgstr "تخلیق کیا گیا" msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "" @@ -6736,27 +6748,27 @@ msgstr "" msgid "Show PHP information" msgstr "" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6764,21 +6776,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6786,24 +6798,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -6815,21 +6827,21 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/uz.po b/po/uz.po index aa6b6c9f3d..43df282b48 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -1187,6 +1187,18 @@ msgstr "SQL сўровлари қутиси" msgid "Show search results" msgstr "SQL сўровлари қутиси" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Кўриб чиқиш" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "\"%s\" ўчирилмоқда" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2142,7 +2154,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Документация" @@ -5351,7 +5363,7 @@ msgstr "Версиясини тузиш" msgid "Link not found" msgstr "Алоқа топилмади" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Версия ҳақида маълумот" @@ -7463,31 +7475,31 @@ msgstr "PHP кенгайтмаси" msgid "Show PHP information" msgstr "PHP ҳақида маълумотни кўрсатиш" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Вики" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr " phpMyAdmin расмий веб-саҳифаси" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибутлар" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "Ўзгариш йўқ" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7499,7 +7511,7 @@ msgstr "" "созланган MySQL сервери хавфсизлик жиҳатидан анча заиф ҳисобланади, шунинг " "учун \"root\" суперфойдаланувчисига парол ўрнатиш қатъиян тавсия этилади." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7509,7 +7521,7 @@ msgstr "" "func_overload параметри ёқилган. Маълумот йўқолиши олдини олиш учун, ушбу " "параметр ўчирилиши керак!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7520,7 +7532,7 @@ msgstr "" "маълумот йўқолишига олиб келиши мумкин. PHP \"mbstring\" кенгайтмасини " "ўрнатиш қатъий тавсия этилади." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7533,7 +7545,7 @@ msgstr "" "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7550,13 +7562,13 @@ msgstr "" "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg" "[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7566,7 +7578,7 @@ msgstr "" "каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни " "ўчириш тавсия этилади." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7578,7 +7590,7 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7588,7 +7600,7 @@ msgstr "" "баъзи функциялари ишламайди. Масалан, навигация ойнаси автоматик тарзда " "янгиланиб турмайди." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7597,7 +7609,7 @@ msgstr "" "MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан " "фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/uz@latin.po b/po/uz@latin.po index e949a20192..7e69c318dc 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -1192,6 +1192,18 @@ msgstr "SQL so‘rovlari qutisi" msgid "Show search results" msgstr "SQL so‘rovlari qutisi" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "Ko‘rib chiqish" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "\"%s\" o‘chirilmoqda" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2150,7 +2162,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "Dokumentatsiya" @@ -5374,7 +5386,7 @@ msgstr "Vеrsiyasini tuzish" msgid "Link not found" msgstr "Aloqa topilmadi" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "Versiya haqida ma`lumot" @@ -7498,31 +7510,31 @@ msgstr "PHP kengaytmasi" msgid "Show PHP information" msgstr "PHP haqida ma`lumotni ko‘rsatish" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "Viki" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr " phpMyAdmin rasmiy veb-sahifasi" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Atributlar" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "O‘zgarish yo‘q" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7535,7 +7547,7 @@ msgstr "" "shuning uchun \"root\" superfoydalanuvchisiga parol o‘rnatish qat`iyan " "tavsiya etiladi." -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7545,7 +7557,7 @@ msgstr "" "func_overload parametri yoqilgan. Ma`lumot yo‘qolishi oldini olish uchun, " "ushbu parametr o‘chirilishi kerak!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7556,7 +7568,7 @@ msgstr "" "navbatida ma`lumot yo‘qolishiga olib kelishi mumkin. PHP \"mbstring\" " "kengaytmasini o‘rnatish qat`iy tavsiya etiladi." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7569,7 +7581,7 @@ msgstr "" "davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin " "dasturida konfiguratsiya qilganingizdan tezroq tugaydi." -#: main.php:271 +#: main.php:274 #, fuzzy #| msgid "" #| "Your PHP parameter [a@http://php.net/manual/en/session.configuration." @@ -7586,13 +7598,13 @@ msgstr "" "davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin " "dasturida konfiguratsiya qilganingizdan tezroq tugaydi." -#: main.php:279 +#: main.php:282 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." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7602,7 +7614,7 @@ msgstr "" "katalogi haliyam mavjud. phpMyAdmin muvaffaqiyatli o‘rnatilgandan keyin, uni " "o‘chirish tavsiya etiladi." -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7614,7 +7626,7 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7624,7 +7636,7 @@ msgstr "" "dasturining ba’zi funktsiyalari ishlamaydi. Masalan, navigatsiya oynasi " "avtomatik tarzda yangilanib turmaydi." -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7633,7 +7645,7 @@ msgstr "" "MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")" "dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin." -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/zh_CN.po b/po/zh_CN.po index 64519d33a7..f60a034a84 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-06 03:13+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -1108,6 +1108,18 @@ msgstr "隐藏搜索条件" msgid "Show search results" msgstr "显示搜索条件" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "浏览" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "正在删除 %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -1954,7 +1966,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "文档" @@ -4818,7 +4830,7 @@ msgstr "新建视图" msgid "Link not found" msgstr "找不到链接" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "版本信息" @@ -6726,27 +6738,27 @@ msgstr "PHP 扩展" msgid "Show PHP information" msgstr "显示 PHP 信息" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "维基 (Wiki) (外链,英文)" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "官方主页 (外链,英文)" -#: main.php:214 +#: main.php:217 msgid "Contribute" msgstr "贡献" -#: main.php:215 +#: main.php:218 msgid "Get support" msgstr "获取支持" -#: main.php:216 +#: main.php:219 msgid "List of changes" msgstr "更新列表" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6757,7 +6769,7 @@ msgstr "" "务器使用默认值运行当然没有问题,不过这样的话,被入侵的可能性会很大,我们强烈" "建议您应该立即给 'root' 用户设置一个密码来补上这个安全漏洞。" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6766,7 +6778,7 @@ msgstr "" "PHP 配置中已启用了 mbstring.func_overload 。这个选项和 phpMyAdmin 不兼容,可" "能会导致一些数据损坏!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6775,7 +6787,7 @@ msgstr "" "没有找到 PHP 扩展 mbstring,而您现在好像在使用多字节字符集。没有 mbstring 扩" "展的 phpMyAdmin 不能正确分割字符串,可能产生意想不到的结果。" -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6787,7 +6799,7 @@ msgstr "" "phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 " "phpMyAdmin 中设置的时间要更短。" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." @@ -6795,11 +6807,11 @@ msgstr "" "phpMyAdmin 中所设置的登录 cookie 存储小于 cookie 有效期,因此您的登录过期时间" "将会比您在 phpMyAdmin 中设置的时间要更短。" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "配置文件现在需要一个短语密码。" -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6808,7 +6820,7 @@ msgstr "" "安装时所用的 [code]config[/code] 文件夹尚未删除,如果 phpMyAdmin 已经安装配置" "好,请立即删除该文件夹。" -#: main.php:296 +#: main.php:299 #, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " @@ -6816,7 +6828,7 @@ msgid "" msgstr "" "phpMyAdmin 高级功能未全部设置,部分功能不可用。要查出原因请%s点这里%s。" -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6825,7 +6837,7 @@ msgstr "" "你的浏览器不支持或禁用了 Javascript,部分 phpMyAdmin 功能将不可用。如导航框架" "将不能自动刷新。" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6834,7 +6846,7 @@ msgstr "" "你的 PHP MySQL 库版本 %s 和你的 MySQL 服务器版本 %s 不同。这可能造成一些未知" "的问题。" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " diff --git a/po/zh_TW.po b/po/zh_TW.po index 7d54770a0c..54a7747394 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-16 10:31-0400\n" +"POT-Creation-Date: 2011-05-17 12:36-0400\n" "PO-Revision-Date: 2011-05-14 10:37+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" @@ -1116,6 +1116,18 @@ msgstr "SQL 語法" msgid "Show search results" msgstr "SQL 語法" +#: js/messages.php:86 +#, fuzzy +#| msgid "Browse" +msgid "Browsing" +msgstr "瀏覽" + +#: js/messages.php:87 +#, fuzzy +#| msgid "Deleting %s" +msgid "Deleting" +msgstr "刪除 %s" + #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" @@ -2030,7 +2042,7 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432 -#: main.php:209 server_variables.php:63 +#: main.php:212 server_variables.php:63 msgid "Documentation" msgstr "說明文件" @@ -4992,7 +5004,7 @@ msgstr "伺服器版本" msgid "Link not found" msgstr "找不到連結" -#: libraries/engines/bdb.lib.php:20 main.php:208 +#: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" msgstr "版本資訊" @@ -6984,32 +6996,32 @@ msgstr "PHP 版本" msgid "Show PHP information" msgstr "顯示 PHP 資訊" -#: main.php:210 +#: main.php:213 msgid "Wiki" msgstr "" -#: main.php:213 +#: main.php:216 msgid "Official Homepage" msgstr "phpMyAdmin 官方網站" -#: main.php:214 +#: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "屬性" -#: main.php:215 +#: main.php:218 #, fuzzy msgid "Get support" msgstr "輸出" -#: main.php:216 +#: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" msgstr "沒有變更" -#: main.php:240 +#: main.php:243 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7019,7 +7031,7 @@ msgstr "" "設定檔內有關設定 (root登入及沒有密碼) 與預設的 MySQL 權限戶口相同。 MySQL 伺" "服器在這預設的設定運行的話會很容易被入侵,您應更改有關設定去防止安全漏洞。" -#: main.php:248 +#: main.php:251 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7028,7 +7040,7 @@ msgstr "" "你在 PHP 設定內啟動了 mbstring.func_overload 選項, 這個選項暫時不兼容 " "phpMyAdmin , 你可能會損失部份資料!" -#: main.php:256 +#: main.php:259 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7037,7 +7049,7 @@ msgstr "" "找不到 PHP 內的 mbstring 編碼模組, 沒有這個模組, phpMyAdmin 無法準確地分割雙" "字元文字, 而可能產生問題." -#: main.php:264 +#: main.php:267 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7045,24 +7057,24 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:271 +#: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)." -#: main.php:287 +#: main.php:290 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:299 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -7072,21 +7084,21 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: main.php:311 +#: main.php:314 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:329 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " From b091f91f92060b4911120ae3a8fc8d82364c9eb8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 17 May 2011 22:15:58 +0530 Subject: [PATCH 1129/1652] bug #3301249 [interface] Iconic table operations does not remove inline edit label --- ChangeLog | 1 + js/functions.js | 2 +- js/messages.php | 1 + js/sql.js | 131 ++++++++++++++++++++------------ themes/original/img/b_close.png | Bin 0 -> 250 bytes themes/original/img/b_save.png | Bin 0 -> 603 bytes themes/pmahomme/img/b_close.png | Bin 0 -> 250 bytes 7 files changed, 86 insertions(+), 49 deletions(-) create mode 100644 themes/original/img/b_close.png create mode 100644 themes/original/img/b_save.png create mode 100644 themes/pmahomme/img/b_close.png diff --git a/ChangeLog b/ChangeLog index 737897cf3f..d35b15d3a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ - bug #3285929 [privileges] Revert temporary fix - bug #3302872 [synchronize] Synchronize and user name - bug #3302733 [core] Some browsers report an insecure https connection +- bug #3301249 [interface] Iconic table operations does not remove inline edit label 3.4.0.0 (2011-05-11) + rfe #2890226 [view] Enable VIEW rename diff --git a/js/functions.js b/js/functions.js index 2359502735..8c5bc647a5 100644 --- a/js/functions.js +++ b/js/functions.js @@ -606,7 +606,7 @@ $(document).ready(function() { */ $('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) { // do not trigger when clicked on anchor - if ($(e.target).is('a, a *')) { + if ($(e.target).is('a, img, a *')) { return; } // XXX: FF fires two click events for
$cfg['Servers'][$i]['SignonSession'] string
Name of session which will be used for signon authentication method. + You should use something different than phpMyAdmin, because + this is session which phpMyAdmin uses internally.
$cfg['Servers'][$i]['SignonURL'] string
URL where user will be redirected to log in for signon authentication method. Should be absolute including protocol. From 14357cb1804bbb54f097d41c06e618fb889a240b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:23:54 +0200 Subject: [PATCH 1323/1652] Translation update done using Pootle. --- po/el.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index c9490af84b..8d4c5bb5b6 100644 --- a/po/el.po +++ b/po/el.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-04-05 11:15+0200\n" +"PO-Revision-Date: 2011-05-19 13:23+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -112,8 +112,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"Το αρχείο %s δεν είναι διαθέσιμο σε αυτό το σύστημα. Eπισκεφτείτε το www." -"phpmyadmin.net για περισσότερες πληροφορίες." +"Το αρχείο %s δεν είναι διαθέσιμο σε αυτό το σύστημα. Eπισκεφτείτε το " +"www.phpmyadmin.net για περισσότερες πληροφορίες." #: db_create.php:58 #, php-format From b11e966bc338c3dcffd3175565b24506f73bd5a0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:24:01 +0200 Subject: [PATCH 1324/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 8d4c5bb5b6..7ae12599a0 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:23+0200\n" +"PO-Revision-Date: 2011-05-19 13:24+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" From d4119424802b688eee765a3f7c044b36ef04e99f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:25:01 +0200 Subject: [PATCH 1325/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 7ae12599a0..702ad7f8c6 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:24+0200\n" +"PO-Revision-Date: 2011-05-19 13:25+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" From 8f3553b350915e99f0f6175f704dff42ce7f8846 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:25:55 +0200 Subject: [PATCH 1326/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 702ad7f8c6..71f7309904 100644 --- a/po/el.po +++ b/po/el.po @@ -1148,7 +1148,7 @@ msgstr "Διαγραφή %s" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν" #: js/messages.php:93 msgid "Hide query box" From 50f9edbb78d6c748591e5e4f2d955d40f44a906b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:26:49 +0200 Subject: [PATCH 1327/1652] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 71f7309904..6b41e06747 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:25+0200\n" +"PO-Revision-Date: 2011-05-19 13:26+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1218,6 +1218,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " +"Θέλετε να συνεχίσετε;" #: js/messages.php:115 msgid "Add an option for column " From d46106af1bc52fc2ec1539e7415d8bc203dad032 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:27:09 +0200 Subject: [PATCH 1328/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 6b41e06747..46365aa928 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:26+0200\n" +"PO-Revision-Date: 2011-05-19 13:27+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5973,10 +5973,9 @@ msgid "Convert to Kana" msgstr "Μετατροπή σε Kana" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Πα" +msgstr "Από" #: libraries/mult_submits.inc.php:252 msgid "To" From a1b00ca7810d3fa5859a0078ba35c6e986c9f928 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:27:14 +0200 Subject: [PATCH 1329/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 46365aa928..174902bf7a 100644 --- a/po/el.po +++ b/po/el.po @@ -5979,7 +5979,7 @@ msgstr "Από" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "Προς" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:440 From 39d8e218464d7f3dc3ad5beb6f7e0063252fd0f1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:27:40 +0200 Subject: [PATCH 1330/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 174902bf7a..d987e86a83 100644 --- a/po/el.po +++ b/po/el.po @@ -5991,10 +5991,9 @@ msgid "Add table prefix" msgstr "" #: libraries/mult_submits.inc.php:266 -#, fuzzy #| msgid "Add index" msgid "Add prefix" -msgstr "Προσθήκη ευρετηρίου" +msgstr "Προσθήκη προθέματος" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" From b9af801e151ac12558cdc98fdea3d1bb2c983946 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:28:05 +0200 Subject: [PATCH 1331/1652] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d987e86a83..6062e2a70d 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:27+0200\n" +"PO-Revision-Date: 2011-05-19 13:28+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5988,7 +5988,7 @@ msgstr "Αποστολή" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "Προσθήκη προθέματος πίνακα" #: libraries/mult_submits.inc.php:266 #| msgid "Add index" From 484eac6e791413687af8793b5631fd173ae0d24b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:37:01 +0200 Subject: [PATCH 1332/1652] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 6062e2a70d..e5e4154592 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:28+0200\n" +"PO-Revision-Date: 2011-05-19 13:37+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9268,6 +9268,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Οι ρυθμίσεις αποθηκεύονται στο αρχείο config/config.inc.php στο ριζικό " +"φάκελο του phpMyAdmin. Αντιγράψτε το στο ριζικό φάκελο και διαγράψτε το " +"φάκελο config για να το χρησιμοποιήσετε." #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From 45b16398b58fdf5448dd1a469fa357d5a366bdbd Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:37:35 +0200 Subject: [PATCH 1333/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index e5e4154592..bdbd9a629d 100644 --- a/po/el.po +++ b/po/el.po @@ -709,10 +709,9 @@ msgid "Analyze table" msgstr "Ανάλυση Πίνακα" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "Μετάβαση στον πίνακα" +msgstr "Προσθήκη προθέματος στον πίνακα" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From ae8145d16ad2290a21900bddf1a1f322bca52aa5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:38:00 +0200 Subject: [PATCH 1334/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index bdbd9a629d..958ae2861c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:37+0200\n" +"PO-Revision-Date: 2011-05-19 13:38+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -714,10 +714,9 @@ msgid "Add prefix to table" msgstr "Προσθήκη προθέματος στον πίνακα" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Αντικατάσταση δεδομένων Πίνακα με το αρχείο" +msgstr "Αντικατάσταση προθέματος πίνακα" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 46606afe746d829f38d8e1be74b6351169f6d69b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:38:18 +0200 Subject: [PATCH 1335/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 958ae2861c..ed44c044a0 100644 --- a/po/el.po +++ b/po/el.po @@ -719,10 +719,9 @@ msgid "Replace table prefix" msgstr "Αντικατάσταση προθέματος πίνακα" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Αντικατάσταση δεδομένων Πίνακα με το αρχείο" +msgstr "Αντιγραφή πίνακα με πρόθεμα" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From 95d6481dbcb4dbdfd8e4f82a23d637d0e150b22e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:38:42 +0200 Subject: [PATCH 1336/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ed44c044a0..99ee61e395 100644 --- a/po/el.po +++ b/po/el.po @@ -972,10 +972,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!" +msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) έναν ολόκληρο πίνακα!" #: js/messages.php:33 #, fuzzy From 0040dff6544704b4fa99e4bf9f87d0f916977759 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:39:34 +0200 Subject: [PATCH 1337/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 99ee61e395..52cf85324f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:38+0200\n" +"PO-Revision-Date: 2011-05-19 13:39+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -977,10 +977,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) έναν ολόκληρο πίνακα!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!" +msgstr "Πρόκειται να ΑΔΕΙΑΣΕΤΕ (TRUNCATE) έναν ολόκληρο πίνακα!" #: js/messages.php:34 msgid "Dropping Event" From 58085c3f8d591757f35c36ca79cbcafebad95ae9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:39:59 +0200 Subject: [PATCH 1338/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 52cf85324f..ac1a484617 100644 --- a/po/el.po +++ b/po/el.po @@ -1117,10 +1117,9 @@ msgid "Searching" msgstr "Αναζήτηση" #: js/messages.php:84 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Απόκρυψη κριτηρίων αναζήτησης" +msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" #: js/messages.php:85 #, fuzzy From 411347478600e7a46f841e79e0e24b033e0fdfcb Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:40:08 +0200 Subject: [PATCH 1339/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index ac1a484617..9c75d8f83b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:39+0200\n" +"PO-Revision-Date: 2011-05-19 13:40+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1122,10 +1122,9 @@ msgid "Hide search results" msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" #: js/messages.php:85 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "Προβολή κριτηρίων αναζήτησης" +msgstr "Προβολή αποτελεσμάτων αναζήτησης" #: js/messages.php:86 #, fuzzy From 5fc56a8e9153dc7552a3942ab61e44d50c7786d4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:40:22 +0200 Subject: [PATCH 1340/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 9c75d8f83b..3682afd092 100644 --- a/po/el.po +++ b/po/el.po @@ -1127,10 +1127,9 @@ msgid "Show search results" msgstr "Προβολή αποτελεσμάτων αναζήτησης" #: js/messages.php:86 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "Περιήγηση" +msgstr "Αναζήτηση" #: js/messages.php:87 #, fuzzy From b3e578e9de5673da22f2387f2bee75db4724a10c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:40:31 +0200 Subject: [PATCH 1341/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 3682afd092..de84040749 100644 --- a/po/el.po +++ b/po/el.po @@ -1132,10 +1132,9 @@ msgid "Browsing" msgstr "Αναζήτηση" #: js/messages.php:87 -#, fuzzy #| msgid "Deleting %s" msgid "Deleting" -msgstr "Διαγραφή %s" +msgstr "Διαγραφή" #: js/messages.php:90 msgid "" From 53330e65b05024f7191a77c7b473e8b48a7fcb44 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:41:15 +0200 Subject: [PATCH 1342/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index de84040749..dc59012f44 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:40+0200\n" +"PO-Revision-Date: 2011-05-19 13:41+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1247,10 +1247,9 @@ msgid ", latest stable version:" msgstr ". τελευταία έκδοση:" #: js/messages.php:129 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "Μετάβαση στη βάση δεδομένων" +msgstr "ενημερωμένο" #. l10n: Display text for calendar close link #: js/messages.php:147 From b284a294cd24ed91b0a3a0d3586ed4d90b85f11d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:41:27 +0200 Subject: [PATCH 1343/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index dc59012f44..b6d56106cc 100644 --- a/po/el.po +++ b/po/el.po @@ -4631,10 +4631,9 @@ msgstr "Συμβατό με MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Δημιουργία νέας βάσης" +msgstr "Δημιουργία βάσης δεδομένων" #: libraries/display_create_database.lib.php:33 msgid "Create" From 493bea12a7872261eabb4f5b57d63bcdfcad1348 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:41:56 +0200 Subject: [PATCH 1344/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index b6d56106cc..c649c6f99d 100644 --- a/po/el.po +++ b/po/el.po @@ -8049,7 +8049,7 @@ msgid "Unable to change master" msgstr "Αδύνατη η αλλαγή της πρωτεύουσας" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Ο πρωτεύων διακομιστής άλλαξε επιτυχώς σε %s" From d7d858e4bf135774ce3c444d0f77088d1cf0e5c0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:43:13 +0200 Subject: [PATCH 1345/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index c649c6f99d..cc50eae3e9 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:41+0200\n" +"PO-Revision-Date: 2011-05-19 13:43+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9247,10 +9247,9 @@ msgid "Insecure connection" msgstr "Μη ασφαλής σύνδεση" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Χώρος αποθήκευση ρυθμίσεων" +msgstr "Οι ρυθμίσεις αποθηκεύτηκαν." #: setup/frames/index.inc.php:93 msgid "" From 2bb81e067a2684b72b9c82667ca37c844236ac40 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:43:58 +0200 Subject: [PATCH 1346/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index cc50eae3e9..3e0d1e326f 100644 --- a/po/el.po +++ b/po/el.po @@ -10128,10 +10128,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" #: tbl_tracking.php:382 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" +msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" #: tbl_tracking.php:384 tbl_tracking.php:401 #, fuzzy From e2bcc4fb0ff0816391f2f29eaabdf899cf7c038f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:44:18 +0200 Subject: [PATCH 1347/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 3e0d1e326f..410efc62ff 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:43+0200\n" +"PO-Revision-Date: 2011-05-19 13:44+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -10133,10 +10133,9 @@ msgid "Tracking data definition successfully deleted" msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Gather errors" msgid "Query error" -msgstr "Συγκέντρωση σφαλμάτων" +msgstr "Σφάλμα ερωτήματος" #: tbl_tracking.php:399 #, fuzzy From dfae381f7b68fcdaaf01751e9365905415a04d6a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:45:00 +0200 Subject: [PATCH 1348/1652] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 410efc62ff..44f2ebf364 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:44+0200\n" +"PO-Revision-Date: 2011-05-19 13:45+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -10138,10 +10138,9 @@ msgid "Query error" msgstr "Σφάλμα ερωτήματος" #: tbl_tracking.php:399 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" +msgstr "Ο χειρισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" #: tbl_tracking.php:411 msgid "Tracking statements" From 689c45ce3da106528ec593994deebf7b66bdee89 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:45:26 +0200 Subject: [PATCH 1349/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 44f2ebf364..fe569500ce 100644 --- a/po/el.po +++ b/po/el.po @@ -10152,10 +10152,9 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Εμφάνιση %s με ημερομηνίες από %s έως %s από χρήστη %s %s" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" +msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" #: tbl_tracking.php:443 #, fuzzy From 0d2dae9f5d2acf6e044718a628c012f3b53dae13 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:45:38 +0200 Subject: [PATCH 1350/1652] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index fe569500ce..fcd13f9de8 100644 --- a/po/el.po +++ b/po/el.po @@ -10157,10 +10157,9 @@ msgid "Delete tracking data row from report" msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Δεν υπάρχουν βάσεις δεδομένων" +msgstr "Δεν υπάρχουν δεδομένα" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From 77586342e00c96585141496d26ea84802f29d847 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:46:27 +0200 Subject: [PATCH 1351/1652] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index fcd13f9de8..4dcfec8a4b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:45+0200\n" +"PO-Revision-Date: 2011-05-19 13:46+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3026,7 +3026,7 @@ msgid "" "storage[/a] in documentation" msgstr "" "Προσαρμογή βάσης δεδομένων phpMyAdmin για παροχή πρόσβασης σε πρόσθετα " -"χαρακτηριστικά. Δείτε την [a@../Documentation.html#linked-tables]υποδομή " +"χαρακτηριστικά. Δείτε την [a@../Documentation.html#linked-tables]υποδομή " "συνδεδεμένων πινάκων[/a] στην τεκμηρίωση" #: libraries/config/messages.inc.php:203 From 0d00e21bad1a98ff4f219d7992a56a2895bcb250 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:46:37 +0200 Subject: [PATCH 1352/1652] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4dcfec8a4b..d423c0afd3 100644 --- a/po/el.po +++ b/po/el.po @@ -5752,8 +5752,8 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" "Αχρήστευση στηλών ΧΡΟΝΟΣΦΡΑΓΙΔΑΣ (TIMESTAMP) σε UTC (ενεργοποιεί τις " -"στήλες TIMESTAMP να αχρηστευτούν και να επαναφορτωθούν μεταξύ διακομιστών " -"σε διαφορετικές ζώνες ώρας)" +"στήλες TIMESTAMP να αχρηστευτούν και να επαναφορτωθούν μεταξύ διακομιστών σε " +"διαφορετικές ζώνες ώρας)" #: libraries/export/sql.php:209 libraries/export/xml.php:34 msgid "Procedures" From 5672b463009a90a9b08298d02af547b322e22f39 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:46:46 +0200 Subject: [PATCH 1353/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index d423c0afd3..40ce8b1fe5 100644 --- a/po/el.po +++ b/po/el.po @@ -6670,7 +6670,7 @@ msgstr "" "εξετάστε το ερώτημά σας προσεκτικά και ελέγξτε ότι όλα τα εισαγωγικά " "ανοίγουν και κλείνουν σωστά. Άλλες πιθανές αιτίες μπορούν να είναι η " "αποστολή αρχείου με δυαδικό κώδικα εκτός εισαγωγικών. Μπορείτε επίσης να " -"δοκιμάσετε το ερώτημά σας στη γραμμή εντολών της MySQL. Εάν συνεχίζετε να " +"δοκιμάσετε το ερώτημά σας στη γραμμή εντολών της MySQL. Εάν συνεχίζετε να " "έχετε πρόβλημα, ή εάν ο αναλυτής αποτυγχάνει όπου η γραμμή εντολών " "επιτυγχάνει, παρακαλώ απομονώστε το ερώτημα εκείνο που δημιουργεί το " "πρόβλημα και στείλτε αναφορά λάθους με τα δεδομένα που βρίσκονται στο τμήμα " From 73e7fbd0f978839421b5d8982f80848d992b0cd5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:47:05 +0200 Subject: [PATCH 1354/1652] Translation update done using Pootle. --- po/el.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 40ce8b1fe5..65a0447dbd 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:46+0200\n" +"PO-Revision-Date: 2011-05-19 13:47+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7452,8 +7452,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Μπορείτε να ορίσετε περισσότερες ρυθμίσεις αλλάζοντας το αρχείο config.inc." -"php, π.χ. χρησιμοποιώντας τον %sκώδικα Εγκατάστασης%s." +"Μπορείτε να ορίσετε περισσότερες ρυθμίσεις αλλάζοντας το αρχείο " +"config.inc.php, π.χ. χρησιμοποιώντας τον %sκώδικα Εγκατάστασης%s." #: prefs_manage.php:302 msgid "Save to browser's storage" From b51f738734881c418096688aa36268c549daa6a6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:48:07 +0200 Subject: [PATCH 1355/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 65a0447dbd..2ce4685908 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:47+0200\n" +"PO-Revision-Date: 2011-05-19 13:48+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" From 2ea3559738a3b93b1194223e5963b917424d100f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:49:27 +0200 Subject: [PATCH 1356/1652] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 2ce4685908..d70f5e2d43 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:48+0200\n" +"PO-Revision-Date: 2011-05-19 13:49+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -399,7 +399,7 @@ msgstr "Τελευταία ενημέρωση" #: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451 #: tbl_structure.php:920 msgid "Last check" -msgstr "τελευταίος έλεγχος" +msgstr "Tελευταίος έλεγχος" #: db_printview.php:220 db_structure.php:439 #, php-format From 91459026657da50221a64f1b47fe8f484a47552e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:50:22 +0200 Subject: [PATCH 1357/1652] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d70f5e2d43..284308d4c6 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:49+0200\n" +"PO-Revision-Date: 2011-05-19 13:50+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -817,7 +817,7 @@ msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδ #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" -msgstr "Επανεκκίνηση εισαγωγής και προσθήκη μιας νέας τιμής" +msgstr "+ Επανεκκίνηση εισαγωγής και προσθήκη μιας νέας τιμής" #: enum_editor.php:67 msgid "Output" From 1735a2a7bac2edc5733b6a6183c0eed2a297270a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Thu, 19 May 2011 13:51:01 +0200 Subject: [PATCH 1358/1652] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 284308d4c6..15ef7ca5d5 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 13:50+0200\n" +"PO-Revision-Date: 2011-05-19 13:51+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" From e53c1c0ecbda7b67bd097c7f12063ae8307b45a5 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:01:43 +0200 Subject: [PATCH 1359/1652] Translation update done using Pootle. --- po/sl.po | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4fd7c64388..6d7c49ed59 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-03-24 22:38+0200\n" +"PO-Revision-Date: 2011-05-19 16:01+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -712,10 +712,9 @@ msgid "Analyze table" msgstr "Analiziraj tabelo" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "Pojdi v tabelo" +msgstr "Dodaj predpono tabeli" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From 28ff884d0a662510bc26f690981a18166ec5b074 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:01:51 +0200 Subject: [PATCH 1360/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 6d7c49ed59..c3fe3508fc 100644 --- a/po/sl.po +++ b/po/sl.po @@ -717,10 +717,9 @@ msgid "Add prefix to table" msgstr "Dodaj predpono tabeli" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Podatke v tabeli zamenjaj z datoteko" +msgstr "Zamenjaj predpono tabele" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 2ad04afadac79b49d0ea55c239c4424f4e0a0b45 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:00 +0200 Subject: [PATCH 1361/1652] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index c3fe3508fc..b561118e4e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:01+0200\n" +"PO-Revision-Date: 2011-05-19 16:02+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -722,10 +722,9 @@ msgid "Replace table prefix" msgstr "Zamenjaj predpono tabele" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Podatke v tabeli zamenjaj z datoteko" +msgstr "Kopiraj tabelo s predpono" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From 6c1834d4149406c6df52b8319625b9758f1be22b Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:11 +0200 Subject: [PATCH 1362/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b561118e4e..80b6e462c1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -972,10 +972,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" +msgstr "S tem dejanjem boste UNIČILI celotno tabelo!" #: js/messages.php:33 #, fuzzy From d7abb7b619976763c83b4408414f8559759ff40d Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:29 +0200 Subject: [PATCH 1363/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 80b6e462c1..58e546d953 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1119,10 +1119,9 @@ msgid "Searching" msgstr "Iskanje" #: js/messages.php:84 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Skrij iskalne pogoje" +msgstr "Skrij rezultate iskanja" #: js/messages.php:85 #, fuzzy From 5e4c3e866d07abfa1923a506d6abaab6e9da44b3 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:36 +0200 Subject: [PATCH 1364/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 58e546d953..6906b24efc 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1124,10 +1124,9 @@ msgid "Hide search results" msgstr "Skrij rezultate iskanja" #: js/messages.php:85 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "Prikaži iskalne pogoje" +msgstr "Prikaži rezultate iskanja" #: js/messages.php:86 #, fuzzy From 8c0d7393e4ea6c1935b3af8e9e787c95494cd3f8 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:40 +0200 Subject: [PATCH 1365/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 6906b24efc..81c00d4748 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1129,10 +1129,9 @@ msgid "Show search results" msgstr "Prikaži rezultate iskanja" #: js/messages.php:86 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "Prebrskaj" +msgstr "Brskanje" #: js/messages.php:87 #, fuzzy From dcf6f56a355bb64324d08d6b8dd3510affb96c5e Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:44 +0200 Subject: [PATCH 1366/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 81c00d4748..715fec2586 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1134,10 +1134,9 @@ msgid "Browsing" msgstr "Brskanje" #: js/messages.php:87 -#, fuzzy #| msgid "Deleting %s" msgid "Deleting" -msgstr "Brišem %s" +msgstr "Brisanje" #: js/messages.php:90 msgid "" From 917dca9c352245b970d7fd65d6796a06078a59d2 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:02:55 +0200 Subject: [PATCH 1367/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 715fec2586..621523c5c4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1247,10 +1247,9 @@ msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" #: js/messages.php:129 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "Pojdi v zbirko podatkov" +msgstr "posodobljeno" #. l10n: Display text for calendar close link #: js/messages.php:147 From 610f852dcbf65187004fd06cf536d2100bd57c60 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:00 +0200 Subject: [PATCH 1368/1652] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 621523c5c4..85e1a4034b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:02+0200\n" +"PO-Revision-Date: 2011-05-19 16:03+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -4585,10 +4585,9 @@ msgstr "Združljivo z MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Ustvari novo zbirko podatkov" +msgstr "Ustvari zbirko podatkov" #: libraries/display_create_database.lib.php:33 msgid "Create" From 217b9c6e6f4f2a8ad8ca07191706ec54e9895d15 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:04 +0200 Subject: [PATCH 1369/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 85e1a4034b..a900c3576e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -5908,10 +5908,9 @@ msgid "Convert to Kana" msgstr "Pretvori v kano" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "pe" +msgstr "Od" #: libraries/mult_submits.inc.php:252 msgid "To" From 7312db950a63ffe57c29fcf00d69ebcd3bdb86c1 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:06 +0200 Subject: [PATCH 1370/1652] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a900c3576e..ebeaeefcf6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -5914,7 +5914,7 @@ msgstr "Od" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "Za" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:440 From 68a7f63720466bf9f4f51322502a72217af21cb0 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:21 +0200 Subject: [PATCH 1371/1652] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index ebeaeefcf6..58e4bfb05d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -5923,7 +5923,7 @@ msgstr "Pošlji" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "Dodaj predpono tabele" #: libraries/mult_submits.inc.php:266 #, fuzzy From 29ec4a8e088ba9533c8b671941c547bba0bb5092 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:30 +0200 Subject: [PATCH 1372/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 58e4bfb05d..75de107b02 100644 --- a/po/sl.po +++ b/po/sl.po @@ -5926,10 +5926,9 @@ msgid "Add table prefix" msgstr "Dodaj predpono tabele" #: libraries/mult_submits.inc.php:266 -#, fuzzy #| msgid "Add index" msgid "Add prefix" -msgstr "Dodaj indeks" +msgstr "Dodaj predpono" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" From df770560b69865c2a4a42bdbd48e45d96520987c Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:47 +0200 Subject: [PATCH 1373/1652] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 75de107b02..2c8ab7b0bb 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7967,7 +7967,7 @@ msgid "Unable to change master" msgstr "Ne morem spremeniti glavnega strežnika" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Glavni strežnik je uspešno spremenjen v %s" From f04b1f9707b63cfd339244654e376ce4165c2191 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:03:55 +0200 Subject: [PATCH 1374/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 2c8ab7b0bb..ad25035804 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9115,10 +9115,9 @@ msgid "Insecure connection" msgstr "Nezavarovana povezava" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Hramba konfiguracije" +msgstr "Konfiguracija je shranjena." #: setup/frames/index.inc.php:93 msgid "" From 2b513a6c66f92d605d9d2689152cba014dd9d1d9 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:05:02 +0200 Subject: [PATCH 1375/1652] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index ad25035804..9d8bbc1639 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:03+0200\n" +"PO-Revision-Date: 2011-05-19 16:05+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -9978,10 +9978,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" #: tbl_tracking.php:382 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Sledi tem stavkom opredeljevanja podatkov:" +msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" #: tbl_tracking.php:384 tbl_tracking.php:401 #, fuzzy From b68af1e0f7552ce8134e0a8d5fab95535b0be764 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:05:16 +0200 Subject: [PATCH 1376/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9d8bbc1639..df73bdc517 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9983,10 +9983,9 @@ msgid "Tracking data definition successfully deleted" msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Gather errors" msgid "Query error" -msgstr "Zberi napake" +msgstr "Napaka poizvedbe" #: tbl_tracking.php:399 #, fuzzy From 806fc120b0633d7e800a11e1d08826d2f697cc4f Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:05:35 +0200 Subject: [PATCH 1377/1652] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index df73bdc517..540eb44b85 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10009,10 +10009,9 @@ msgid "Delete tracking data row from report" msgstr "Izbriši podatke sledenja te tabele" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Brez zbirk podatkov" +msgstr "Brez podatkov" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From db69f98ec1c736d5ecd18b8f528f16b87a52706b Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:08:23 +0200 Subject: [PATCH 1378/1652] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 540eb44b85..74d22698cf 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:05+0200\n" +"PO-Revision-Date: 2011-05-19 16:08+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -9988,10 +9988,9 @@ msgid "Query error" msgstr "Napaka poizvedbe" #: tbl_tracking.php:399 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Sledi tem stavkom upravljanja s podatki:" +msgstr "Stavek upravljanja s podatki je uspešno izbrisan" #: tbl_tracking.php:411 msgid "Tracking statements" From f8556d2f367d35984ccedbd6e22ef3fd886fc9b5 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:10:55 +0200 Subject: [PATCH 1379/1652] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 74d22698cf..d3a5c22e43 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:08+0200\n" +"PO-Revision-Date: 2011-05-19 16:10+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10002,10 +10002,9 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Prikaži %s z datumi od %s do %s uporabnika %s %s" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Izbriši podatke sledenja te tabele" +msgstr "Izbriši vrstico podatkov sledenja iz poročila" #: tbl_tracking.php:443 #| msgid "No databases" From 2528521ae8a54979c4b8446ca77d3d6681e0ae45 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:12:39 +0200 Subject: [PATCH 1380/1652] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index d3a5c22e43..fb5a7ef7b4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:10+0200\n" +"PO-Revision-Date: 2011-05-19 16:12+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -977,10 +977,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "S tem dejanjem boste UNIČILI celotno tabelo!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" +msgstr "S tem dejanjem boste IZPRAZNILI celotno tabelo!" #: js/messages.php:34 msgid "Dropping Event" From b1cf93d64ca75b9e9cf443f6dfc2b5edb1910c76 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:12:57 +0200 Subject: [PATCH 1381/1652] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index fb5a7ef7b4..3066078695 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1140,7 +1140,7 @@ msgstr "Brisanje" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno" #: js/messages.php:93 msgid "Hide query box" From 03260df9d7acbb11c2ec4eae4e785ca76bafa3dc Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:15:59 +0200 Subject: [PATCH 1382/1652] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 3066078695..501e6a07e3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:12+0200\n" +"PO-Revision-Date: 2011-05-19 16:15+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1210,6 +1210,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " +"Želite nadaljevati?" #: js/messages.php:115 msgid "Add an option for column " From b072db0fcf98d8dbd396d653d6fa101d41e182de Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 19 May 2011 16:18:13 +0200 Subject: [PATCH 1383/1652] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 501e6a07e3..8fd9ce0d4c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 16:15+0200\n" +"PO-Revision-Date: 2011-05-19 16:18+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -9125,6 +9125,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Konfiguracija je shranjena v datoteko config/config.inc.php v vrhnji mapi " +"phpMyAdmin; skopirajte jo v vrhnjo mapo in izbrišite mapo config, če jo " +"želite uporabiti." #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From e62ba0ec56a4402e43f95316de03f6538dfa89a2 Mon Sep 17 00:00:00 2001 From: sjanevski Date: Thu, 19 May 2011 17:02:28 +0200 Subject: [PATCH 1384/1652] Translation update done using Pootle. --- po/mk.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/po/mk.po b/po/mk.po index 5eca6c7452..006628e6a2 100644 --- a/po/mk.po +++ b/po/mk.po @@ -4,14 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2010-03-12 09:16+0100\n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2011-05-19 17:02+0200\n" +"Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" -"X-Generator: Translate Toolkit 1.5.3\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 #: libraries/display_tbl.lib.php:341 server_privileges.php:1583 @@ -103,7 +104,7 @@ msgstr "" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Неуспешно отворање на далечински URL" #: changelog.php:32 license.php:28 #, php-format From 41f6921bcb49dddf76c2432272c458a3721e2148 Mon Sep 17 00:00:00 2001 From: sjanevski Date: Thu, 19 May 2011 17:03:01 +0200 Subject: [PATCH 1385/1652] Translation update done using Pootle. --- po/mk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/mk.po b/po/mk.po index 006628e6a2..b84d95c978 100644 --- a/po/mk.po +++ b/po/mk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 17:02+0200\n" +"PO-Revision-Date: 2011-05-19 17:03+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" "Language: mk\n" From a4a45c250f01865b1a955e1a2336a437875d24b2 Mon Sep 17 00:00:00 2001 From: sjanevski Date: Thu, 19 May 2011 17:04:25 +0200 Subject: [PATCH 1386/1652] Translation update done using Pootle. --- po/mk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/mk.po b/po/mk.po index b84d95c978..5f76e84d24 100644 --- a/po/mk.po +++ b/po/mk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 17:03+0200\n" +"PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" "Language: mk\n" @@ -114,9 +114,9 @@ msgid "" msgstr "" #: db_create.php:58 -#, fuzzy, php-format +#, php-format msgid "Database %1$s has been created." -msgstr "Базата на податоци %s не е прифатена" +msgstr "Базата на податоци %1$s е креирана" #: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " From 8fdfee40c6da97a9c59a9b45271eaf3f3fc94237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:54:50 +0200 Subject: [PATCH 1387/1652] Translation update done using Pootle. --- po/es.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/es.po b/po/es.po index 39a82144a1..508ab6b723 100644 --- a/po/es.po +++ b/po/es.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-04-02 11:10+0200\n" +"PO-Revision-Date: 2011-05-19 18:54+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -713,10 +713,9 @@ msgid "Analyze table" msgstr "Analizar la tabla" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "Ir a la tabla" +msgstr "Agregar prefijo a la tabla" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From 7474c86ff21d72d4a1e43f70af39e750a3fac3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:01 +0200 Subject: [PATCH 1388/1652] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 508ab6b723..a996482d7c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 18:54+0200\n" +"PO-Revision-Date: 2011-05-19 18:55+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -718,10 +718,9 @@ msgid "Add prefix to table" msgstr "Agregar prefijo a la tabla" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Reemplazar los datos de la tabla con los del archivo" +msgstr "Reemplazar prefijo de la tabla" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 70b6ef218c5e67a1dd36012d6eedabca4132e9d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:10 +0200 Subject: [PATCH 1389/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a996482d7c..b7aa7d3587 100644 --- a/po/es.po +++ b/po/es.po @@ -723,10 +723,9 @@ msgid "Replace table prefix" msgstr "Reemplazar prefijo de la tabla" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Reemplazar los datos de la tabla con los del archivo" +msgstr "Copiar tabla con prefijo" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From bf3d77d74f16d88a97b2b6ebb53c215b82e3ecb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:21 +0200 Subject: [PATCH 1390/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b7aa7d3587..23d4654c2c 100644 --- a/po/es.po +++ b/po/es.po @@ -976,10 +976,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "¡Está a punto de DESTRUIR una base de datos completa!" +msgstr "¡Está a punto de DESTRUIR una tabla completa!" #: js/messages.php:33 #, fuzzy From 56e025a5b12a232a77067797214495e80231d11f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:35 +0200 Subject: [PATCH 1391/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 23d4654c2c..fce94d4ca2 100644 --- a/po/es.po +++ b/po/es.po @@ -981,10 +981,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "¡Está a punto de DESTRUIR una tabla completa!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "¡Está a punto de DESTRUIR una base de datos completa!" +msgstr "¡Está a punto de TRUNCAR una tabla completa!" #: js/messages.php:34 msgid "Dropping Event" From e546d8290065cd57cae2825d2a59cc515e79cc88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:41 +0200 Subject: [PATCH 1392/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index fce94d4ca2..fe0e73f064 100644 --- a/po/es.po +++ b/po/es.po @@ -1122,10 +1122,9 @@ msgid "Searching" msgstr "Buscando" #: js/messages.php:84 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Ocultar criterio de búsqueda" +msgstr "Ocultar resultados de búsqueda" #: js/messages.php:85 #, fuzzy From 1e00fca50c168b94c873994842618f1602fe72e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:48 +0200 Subject: [PATCH 1393/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index fe0e73f064..97a8f2cf2c 100644 --- a/po/es.po +++ b/po/es.po @@ -1127,10 +1127,9 @@ msgid "Hide search results" msgstr "Ocultar resultados de búsqueda" #: js/messages.php:85 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "Mostrar criterio de búsqueda" +msgstr "Mostrar resultados de búsqueda" #: js/messages.php:86 #, fuzzy From c2675a568234de28d2b09a092e787eb420cc34a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:52 +0200 Subject: [PATCH 1394/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 97a8f2cf2c..3eaee27309 100644 --- a/po/es.po +++ b/po/es.po @@ -1132,10 +1132,9 @@ msgid "Show search results" msgstr "Mostrar resultados de búsqueda" #: js/messages.php:86 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "Examinar" +msgstr "Examinando" #: js/messages.php:87 #, fuzzy From 7c18291c6de47ec7292adba1106eb270ab8dc514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:55:59 +0200 Subject: [PATCH 1395/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 3eaee27309..0b38f72a65 100644 --- a/po/es.po +++ b/po/es.po @@ -1137,10 +1137,9 @@ msgid "Browsing" msgstr "Examinando" #: js/messages.php:87 -#, fuzzy #| msgid "Deleting %s" msgid "Deleting" -msgstr "Borrando %s" +msgstr "Borrando" #: js/messages.php:90 msgid "" From dc668b0b50d8a0bd063a23fdadbc78d28c6f67a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:56:16 +0200 Subject: [PATCH 1396/1652] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0b38f72a65..12356b7f31 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 18:55+0200\n" +"PO-Revision-Date: 2011-05-19 18:56+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -1144,7 +1144,7 @@ msgstr "Borrando" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "Nota: si la fila contiene múltiples tablas, van a ser combinadas en una" #: js/messages.php:93 msgid "Hide query box" From 78335667538c85a5e4305991010ab745a784dd51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:56:49 +0200 Subject: [PATCH 1397/1652] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index 12356b7f31..82d1935590 100644 --- a/po/es.po +++ b/po/es.po @@ -1214,6 +1214,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"No se guardaron los cambios en la disposición. Serán perdidos si no los " +"guardas. ¿Deseas continuar?" #: js/messages.php:115 msgid "Add an option for column " From aad00419f97b80e49347a8ce10dc74d7dc767224 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:56:56 +0200 Subject: [PATCH 1398/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 82d1935590..2d678d7074 100644 --- a/po/es.po +++ b/po/es.po @@ -1252,10 +1252,9 @@ msgid ", latest stable version:" msgstr ", versión estable más reciente:" #: js/messages.php:129 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "Saltar a la base de datos" +msgstr "actualizada" #. l10n: Display text for calendar close link #: js/messages.php:147 From a9099f206afe8f44ae518023a6b0cb56b703ca8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:57:03 +0200 Subject: [PATCH 1399/1652] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 2d678d7074..1a6e3ded97 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 18:56+0200\n" +"PO-Revision-Date: 2011-05-19 18:57+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -4655,10 +4655,9 @@ msgstr "Compatible con MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Crear nueva base de datos" +msgstr "Crear base de datos" #: libraries/display_create_database.lib.php:33 msgid "Create" From 865cefc44d7f1b3ff5819099ff415e1fd9cabea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:57:07 +0200 Subject: [PATCH 1400/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1a6e3ded97..18e96089b3 100644 --- a/po/es.po +++ b/po/es.po @@ -6006,10 +6006,9 @@ msgid "Convert to Kana" msgstr "Convertir a Kana" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Vi" +msgstr "De" #: libraries/mult_submits.inc.php:252 msgid "To" From 355423b1a98517a2077900bae07a26d8573891de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:57:09 +0200 Subject: [PATCH 1401/1652] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 18e96089b3..e0e2c5416c 100644 --- a/po/es.po +++ b/po/es.po @@ -6012,7 +6012,7 @@ msgstr "De" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "A" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:440 From 89eed6056531b58fe4cd4f9b99e915d8aca3b17c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:57:16 +0200 Subject: [PATCH 1402/1652] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e0e2c5416c..abf4d09f90 100644 --- a/po/es.po +++ b/po/es.po @@ -6021,7 +6021,7 @@ msgstr "Enviar" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "Agregar prefijo a la tabla" #: libraries/mult_submits.inc.php:266 #, fuzzy From 4aa570a284b5e9be5e1ce27aa9d5bf84d10125a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:57:29 +0200 Subject: [PATCH 1403/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index abf4d09f90..bbb2f1c4ac 100644 --- a/po/es.po +++ b/po/es.po @@ -6024,10 +6024,9 @@ msgid "Add table prefix" msgstr "Agregar prefijo a la tabla" #: libraries/mult_submits.inc.php:266 -#, fuzzy #| msgid "Add index" msgid "Add prefix" -msgstr "Agregar índice" +msgstr "Agregar prefijo" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" From 7d784b061b7bad3978542c83af9b8044d48b288e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:58:27 +0200 Subject: [PATCH 1404/1652] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index bbb2f1c4ac..4dff0b5a4d 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 18:57+0200\n" +"PO-Revision-Date: 2011-05-19 18:58+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -8106,7 +8106,7 @@ msgid "Unable to change master" msgstr "No se pudo cambiar maestro" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "El servidor maestro fue cambiado exitosamente a %s" From 102837e99f1c56151575a71760401e8c9a4f896b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:58:38 +0200 Subject: [PATCH 1405/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 4dff0b5a4d..76488024db 100644 --- a/po/es.po +++ b/po/es.po @@ -9287,10 +9287,9 @@ msgid "Insecure connection" msgstr "Conexión insegura" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Almacenamiento de configuración" +msgstr "Configuración guardada" #: setup/frames/index.inc.php:93 msgid "" From c968d551a47ce35a3182085bade7879a9022eeac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:59:24 +0200 Subject: [PATCH 1406/1652] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 76488024db..80dd18a614 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 18:58+0200\n" +"PO-Revision-Date: 2011-05-19 18:59+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -9296,6 +9296,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Configuración guardada al archivo config/config.inc.php en el directorio " +"raíz de phpMyAdmin, copialo al directorio raíz y elimina el directorio " +"config para utilizarlo." #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From 6a4a563ce3e7979a93e2e055b0237e6596572af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 18:59:56 +0200 Subject: [PATCH 1407/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 80dd18a614..102d2a6466 100644 --- a/po/es.po +++ b/po/es.po @@ -10164,10 +10164,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "Captura de la versión %s (código SQL)" #: tbl_tracking.php:382 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Hacer un seguimiento de estas sentencias de definición de datos:" +msgstr "Definición de seguimiento de datos eliminado exitosamente" #: tbl_tracking.php:384 tbl_tracking.php:401 #, fuzzy From 0e77bf178de46388a60dcdac848d6b715c6b1f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 19:00:08 +0200 Subject: [PATCH 1408/1652] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 102d2a6466..6e737aa1ff 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 18:59+0200\n" +"PO-Revision-Date: 2011-05-19 19:00+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -10169,10 +10169,9 @@ msgid "Tracking data definition successfully deleted" msgstr "Definición de seguimiento de datos eliminado exitosamente" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Gather errors" msgid "Query error" -msgstr "Agrupar los errores" +msgstr "Errores de consulta" #: tbl_tracking.php:399 #, fuzzy From ffe9a548e43d13ea1081694c85a740767fa0a66d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 19:01:24 +0200 Subject: [PATCH 1409/1652] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 6e737aa1ff..2af50fafd9 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 19:00+0200\n" +"PO-Revision-Date: 2011-05-19 19:01+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -10174,10 +10174,9 @@ msgid "Query error" msgstr "Errores de consulta" #: tbl_tracking.php:399 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:" +msgstr "Manipulación de seguimiento de datos eliminada exitosamente" #: tbl_tracking.php:411 msgid "Tracking statements" From 66fbc3f0470c822104c326775def558d43f4df46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 19:01:41 +0200 Subject: [PATCH 1410/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2af50fafd9..3c75132161 100644 --- a/po/es.po +++ b/po/es.po @@ -10188,10 +10188,9 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Muestra %s con fechas de %s a %s por parte del usuario %s %s" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Borrar los datos de seguimiento para esta tabla" +msgstr "Borrar fila de seguimiento de datos del reporte" #: tbl_tracking.php:443 #, fuzzy From bf044ab952f002adac82a06306523d306f8150c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 19 May 2011 19:01:46 +0200 Subject: [PATCH 1411/1652] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 3c75132161..2d49b04695 100644 --- a/po/es.po +++ b/po/es.po @@ -10193,10 +10193,9 @@ msgid "Delete tracking data row from report" msgstr "Borrar fila de seguimiento de datos del reporte" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "No hay bases de datos" +msgstr "No hay datos" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From e9f2b5594cca92afaab8077955f18c804107ef22 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 20:58:43 +0200 Subject: [PATCH 1412/1652] Translation update done using Pootle. --- po/cy.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/cy.po b/po/cy.po index 8bc4ba66af..62f0d92ea0 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2010-06-07 20:23+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-05-19 20:58+0200\n" +"Last-Translator: \n" "Language-Team: Welsh \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" -"X-Generator: Pootle 2.0.1\n" +"X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 #: libraries/display_tbl.lib.php:341 server_privileges.php:1583 @@ -99,7 +99,7 @@ msgstr "Defnyddiwch y gwerth hwn" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "" +msgstr "Dim gweinydd ffrydio blob wedi'i ffurfweddu!" #: bs_disp_as_mime_type.php:35 #, fuzzy From 4b8b84058a7c0be5b4dbd79f55e3bb50033e8480 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 20:59:19 +0200 Subject: [PATCH 1413/1652] Translation update done using Pootle. --- po/cy.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cy.po b/po/cy.po index 62f0d92ea0..225cd5ec5e 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 20:58+0200\n" +"PO-Revision-Date: 2011-05-19 20:59+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -102,10 +102,9 @@ msgid "No blob streaming server configured!" msgstr "Dim gweinydd ffrydio blob wedi'i ffurfweddu!" #: bs_disp_as_mime_type.php:35 -#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" -msgstr "Methu ag ysgrifennu i'r ddisg." +msgstr "Methu â nôl pennawd" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From e3aa042a52b3d277a64d4c9f43caf839610eb939 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 20:59:35 +0200 Subject: [PATCH 1414/1652] Translation update done using Pootle. --- po/cy.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index 225cd5ec5e..6d71f3c4ca 100644 --- a/po/cy.po +++ b/po/cy.po @@ -104,7 +104,7 @@ msgstr "Dim gweinydd ffrydio blob wedi'i ffurfweddu!" #: bs_disp_as_mime_type.php:35 #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" -msgstr "Methu â nôl pennawd" +msgstr "Methu â nôl penawdau" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From 5123ec5705aea52dd19e476410f42f8ca6061740 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 20:59:48 +0200 Subject: [PATCH 1415/1652] Translation update done using Pootle. --- po/cy.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index 6d71f3c4ca..da8f695d85 100644 --- a/po/cy.po +++ b/po/cy.po @@ -108,7 +108,7 @@ msgstr "Methu â nôl penawdau" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Methu ag agor URL pell" #: changelog.php:32 license.php:28 #, php-format From 7c3368c4a8ab964c2b422cd02270ad794f54f9cb Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:00:35 +0200 Subject: [PATCH 1416/1652] Translation update done using Pootle. --- po/cy.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index da8f695d85..cd65ba46ab 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 20:59+0200\n" +"PO-Revision-Date: 2011-05-19 21:00+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -116,6 +116,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"Dyw'r ffeil %s ddim ar gael ar y system hon, ewch i www.phpmyadmin.net am " +"wybodaeth bellach." #: db_create.php:58 #, php-format From 1de52733b860a73bee3eadb66a185b12c47260d3 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:02:09 +0200 Subject: [PATCH 1417/1652] Translation update done using Pootle. --- po/cy.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cy.po b/po/cy.po index cd65ba46ab..8479267aba 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:00+0200\n" +"PO-Revision-Date: 2011-05-19 21:02+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -282,10 +282,9 @@ msgid "Command" msgstr "Gorchymyn" #: db_operations.php:440 -#, fuzzy #| msgid "Rename database to" msgid "Remove database" -msgstr "Ailenwch y gronfa ddata i" +msgstr "Tynnwch y gronfa ddata" #: db_operations.php:452 #, php-format From 40ff60d14456583189187bd567db891dacdf8898 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:02:58 +0200 Subject: [PATCH 1418/1652] Translation update done using Pootle. --- po/cy.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index 8479267aba..a42edf37a7 100644 --- a/po/cy.po +++ b/po/cy.po @@ -292,10 +292,9 @@ msgid "Database %s has been dropped." msgstr "Cafodd cronfa ddata %s ei gollwng." #: db_operations.php:457 -#, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" -msgstr "Copïwch y gronfa ddata i" +msgstr "Dilëwch y gronfa ddata (DROP)" #: db_operations.php:487 msgid "Copy database to" From 6eefbb1d2318f8cc739c7bc83987a985410ae604 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:04:43 +0200 Subject: [PATCH 1419/1652] Translation update done using Pootle. --- po/cy.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/cy.po b/po/cy.po index a42edf37a7..f75934eb28 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:02+0200\n" +"PO-Revision-Date: 2011-05-19 21:04+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -347,7 +347,7 @@ msgid "Collation" msgstr "Coladiad" #: db_operations.php:565 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -355,8 +355,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " -"hanalluogi. Pwyswch %syma%s i ddarganfod pam." +"Cafodd storfa ffurfwedd phpMyAdmin ei dadweithredu. Pwyswch %syma%s i " +"ddarganfod pam." #: db_operations.php:600 #, fuzzy From df8f689cf4ddfee2dd1defe8a7eba7c12bfd080b Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:05:32 +0200 Subject: [PATCH 1420/1652] Translation update done using Pootle. --- po/cy.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cy.po b/po/cy.po index f75934eb28..471b1abf3d 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:04+0200\n" +"PO-Revision-Date: 2011-05-19 21:05+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -359,10 +359,9 @@ msgstr "" "ddarganfod pam." #: db_operations.php:600 -#, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" -msgstr "Sgema perthynol" +msgstr "Golygu neu allforio sgema perthynol" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 #: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37 From 3197904023bda213b20251da936e192339546b2d Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:06:09 +0200 Subject: [PATCH 1421/1652] Translation update done using Pootle. --- po/cy.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index 471b1abf3d..57bfd0a935 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:05+0200\n" +"PO-Revision-Date: 2011-05-19 21:06+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -428,7 +428,7 @@ msgstr "" #: db_qbe.php:186 msgid "visual builder" -msgstr "" +msgstr "adeiladwr gweledol" #: db_qbe.php:222 libraries/db_structure.lib.php:95 #: libraries/display_tbl.lib.php:852 From c30c1dfa025efc8c3c6be4742b7b7fd064a75182 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:06:58 +0200 Subject: [PATCH 1422/1652] Translation update done using Pootle. --- po/cy.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index 57bfd0a935..590f88487d 100644 --- a/po/cy.po +++ b/po/cy.po @@ -503,7 +503,7 @@ msgstr "Ymholiad SQL ar gronfa ddata %s:" #: db_qbe.php:956 libraries/common.lib.php:1188 msgid "Submit Query" -msgstr "Cyflwynwch yr Ymholiad" +msgstr "Cyflwyno Ymholiad" #: db_search.php:52 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 From 8b283074eea60bedf3ddc94c5ccd3e1bcc8d31a1 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:07:17 +0200 Subject: [PATCH 1423/1652] Translation update done using Pootle. --- po/cy.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index 590f88487d..c91380dd80 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:06+0200\n" +"PO-Revision-Date: 2011-05-19 21:07+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -545,7 +545,7 @@ msgstr[1] "%s ergyd mewn tabl %s" #: libraries/common.lib.php:3012 libraries/common.lib.php:3013 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" -msgstr "Porwch" +msgstr "Pori" #: db_search.php:259 #, fuzzy, php-format From 709da841af8f85d0d6461ee2a9d124845f9ee659 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:07:55 +0200 Subject: [PATCH 1424/1652] Translation update done using Pootle. --- po/cy.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index c91380dd80..9bdb356040 100644 --- a/po/cy.po +++ b/po/cy.po @@ -548,10 +548,10 @@ msgid "Browse" msgstr "Pori" #: db_search.php:259 -#, fuzzy, php-format +#, php-format #| msgid "Delete tracking data for this table" msgid "Delete the matches for the %s table?" -msgstr "Dilëwch data tracio ar gyfer y tabl hwn" +msgstr "Dileu y cydweddau ar gyfer tabl %s" #: db_search.php:259 libraries/display_tbl.lib.php:1223 #: libraries/display_tbl.lib.php:2153 From 6a79b37f1c900c779d33657c8bd6cfde4dc03f3e Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:08:36 +0200 Subject: [PATCH 1425/1652] Translation update done using Pootle. --- po/cy.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index 9bdb356040..bae5daef0b 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:07+0200\n" +"PO-Revision-Date: 2011-05-19 21:08+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -551,7 +551,7 @@ msgstr "Pori" #, php-format #| msgid "Delete tracking data for this table" msgid "Delete the matches for the %s table?" -msgstr "Dileu y cydweddau ar gyfer tabl %s" +msgstr "Dileu'r cydweddau ar gyfer tabl %s" #: db_search.php:259 libraries/display_tbl.lib.php:1223 #: libraries/display_tbl.lib.php:2153 From 88384a52e3f832bdb167255d4fcf497ffb2e5587 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:08:54 +0200 Subject: [PATCH 1426/1652] Translation update done using Pootle. --- po/cy.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/cy.po b/po/cy.po index bae5daef0b..1d203aae5b 100644 --- a/po/cy.po +++ b/po/cy.po @@ -566,12 +566,12 @@ msgid "Delete" msgstr "Dileu" #: db_search.php:272 -#, fuzzy, php-format +#, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "Cyfanswm: %s ergyd" -msgstr[1] "Cyfanswm: %s ergyd" +msgstr[0] "Cyfanswm: %s cydwedd" +msgstr[1] "Cyfanswm: %s cydwedd" #: db_search.php:295 msgid "Search in database" From 7166b2bc6c62ef96f0566a13354f99ac35dc3539 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:09:04 +0200 Subject: [PATCH 1427/1652] Translation update done using Pootle. --- po/cy.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index 1d203aae5b..25d2764f81 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:08+0200\n" +"PO-Revision-Date: 2011-05-19 21:09+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" @@ -575,7 +575,7 @@ msgstr[1] "Cyfanswm: %s cydwedd" #: db_search.php:295 msgid "Search in database" -msgstr "Chwiliwch yn y gronfa ddata" +msgstr "Chwilio yn y gronfa ddata" #: db_search.php:298 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" From 8c7fef3502469e947d42ce3563a5719b76f8bc1a Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:09:12 +0200 Subject: [PATCH 1428/1652] Translation update done using Pootle. --- po/cy.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index 25d2764f81..116811927d 100644 --- a/po/cy.po +++ b/po/cy.po @@ -583,7 +583,7 @@ msgstr "Geiriau neu werthoedd i'w chwilio amdanyn nhw (nod-chwiliwr: \"%\"):" #: db_search.php:303 msgid "Find:" -msgstr "Darganfyddwch:" +msgstr "Darganfod:" #: db_search.php:307 db_search.php:308 msgid "Words are separated by a space character (\" \")." From 64cd0e119eb0316f32e558e2ea87b427cb1d0fcc Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:21:09 +0200 Subject: [PATCH 1429/1652] Translation update done using Pootle. --- po/cy.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index 116811927d..ee40dc1457 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:09+0200\n" +"PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" "Language: cy\n" From 770a413a334f5c2bf6b527fb14a13fb54b6b2fa5 Mon Sep 17 00:00:00 2001 From: ardavies Date: Thu, 19 May 2011 21:21:22 +0200 Subject: [PATCH 1430/1652] Translation update done using Pootle. --- po/cy.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index ee40dc1457..68b48183ea 100644 --- a/po/cy.po +++ b/po/cy.po @@ -598,7 +598,6 @@ msgid "Inside column:" msgstr "Tu fewn colofn:" #: db_structure.php:59 -#, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." From 31071bb4de9d1e4eef82f0dd82a28dd7cd48f2c4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:38:48 +0200 Subject: [PATCH 1431/1652] Translation update done using Pootle. --- po/tr.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/tr.po b/po/tr.po index 59b402fda5..c18f02983a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-04-17 19:11+0200\n" +"PO-Revision-Date: 2011-05-19 21:38+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -704,10 +704,9 @@ msgid "Analyze table" msgstr "Tabloyu incele" #: db_structure.php:521 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "Tabloya git" +msgstr "Tabloya ön ek ekle" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From 943d216eb6a8b6d10b3fb51f96505dff8857817f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:39:21 +0200 Subject: [PATCH 1432/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index c18f02983a..2c719daa36 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:38+0200\n" +"PO-Revision-Date: 2011-05-19 21:39+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -709,10 +709,9 @@ msgid "Add prefix to table" msgstr "Tabloya ön ek ekle" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Tablo verisini dosya ile değiştir" +msgstr "Tablo ön ekini değiştir" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 36b5de17803d333b29cac18bab0378568c71e4e7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:39:44 +0200 Subject: [PATCH 1433/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 2c719daa36..3358c61fcb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -714,10 +714,9 @@ msgid "Replace table prefix" msgstr "Tablo ön ekini değiştir" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Tablo verisini dosya ile değiştir" +msgstr "Tabloyu ön eki ile kopyala" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From c7874f23049ea7ca58b22999de7b96c01b268ae2 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:40:29 +0200 Subject: [PATCH 1434/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 3358c61fcb..a274e260af 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:39+0200\n" +"PO-Revision-Date: 2011-05-19 21:40+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -964,10 +964,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" +msgstr "Bütün bir tabloyu YOK ETMEK üzeresiniz!" #: js/messages.php:33 #, fuzzy From 5e286b53e0e21cc7bfc56ae975bc6a2ce80aa1f0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:41:35 +0200 Subject: [PATCH 1435/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index a274e260af..965c7b0747 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:40+0200\n" +"PO-Revision-Date: 2011-05-19 21:41+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -969,10 +969,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "Bütün bir tabloyu YOK ETMEK üzeresiniz!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" +msgstr "Bütün bir tabloyu KESMEK üzeresiniz!" #: js/messages.php:34 msgid "Dropping Event" From 074a1a875dba03f3c649401fcdacf3098388bd84 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:41:48 +0200 Subject: [PATCH 1436/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 965c7b0747..33af65c815 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1110,10 +1110,9 @@ msgid "Searching" msgstr "Aranıyor" #: js/messages.php:84 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Arama kriterini gizle" +msgstr "Arama sonuçlarını gizle" #: js/messages.php:85 #, fuzzy From 74565813be013e4e92523beb1755c40101c0d12d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:42:02 +0200 Subject: [PATCH 1437/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 33af65c815..349009cb7c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:41+0200\n" +"PO-Revision-Date: 2011-05-19 21:42+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1115,10 +1115,9 @@ msgid "Hide search results" msgstr "Arama sonuçlarını gizle" #: js/messages.php:85 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "Arama kriterini göster" +msgstr "Arama sonuçlarını göster" #: js/messages.php:86 #, fuzzy From 9cc23fdad54b32099a1786a5c9c25ab4e00daf61 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:42:12 +0200 Subject: [PATCH 1438/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 349009cb7c..4ba6a45fc7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1120,10 +1120,9 @@ msgid "Show search results" msgstr "Arama sonuçlarını göster" #: js/messages.php:86 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "Gözat" +msgstr "Gözatılıyor" #: js/messages.php:87 #, fuzzy From 42e72f8484da96fd9fbb34148cb8a04d8128792c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:42:19 +0200 Subject: [PATCH 1439/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4ba6a45fc7..e31cb1036a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1125,10 +1125,9 @@ msgid "Browsing" msgstr "Gözatılıyor" #: js/messages.php:87 -#, fuzzy #| msgid "Deleting %s" msgid "Deleting" -msgstr "%s siliniyor" +msgstr "Siliniyor" #: js/messages.php:90 msgid "" From 14688a85395228e7a69da6c1e2cd5c9108c97b72 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:42:28 +0200 Subject: [PATCH 1440/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index e31cb1036a..5f3dcb5d01 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1238,10 +1238,9 @@ msgid ", latest stable version:" msgstr ", son sağlam sürüm:" #: js/messages.php:129 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "Veritabanına git" +msgstr "güncel" #. l10n: Display text for calendar close link #: js/messages.php:147 From d199afde9bfe9ae07dbc70b6c5a58ea1f6c986be Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:42:37 +0200 Subject: [PATCH 1441/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5f3dcb5d01..9b347d5e72 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4591,10 +4591,9 @@ msgstr "MySQL 4.0 uyumlu" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Yeni veritabanı oluştur" +msgstr "Veritabanı oluştur" #: libraries/display_create_database.lib.php:33 msgid "Create" From 31e3816e00a23f724982929221672412d46ab6c0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:42:55 +0200 Subject: [PATCH 1442/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9b347d5e72..32e6215f7d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -5913,10 +5913,9 @@ msgid "Convert to Kana" msgstr "Kana'ya dönüştür" #: libraries/mult_submits.inc.php:249 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Cu" +msgstr "Buradan" #: libraries/mult_submits.inc.php:252 msgid "To" From f13774a17f2f3af178f2565a7a7122abfeb1de56 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:43:07 +0200 Subject: [PATCH 1443/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 32e6215f7d..73d1f7f6b0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:42+0200\n" +"PO-Revision-Date: 2011-05-19 21:43+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -5931,10 +5931,9 @@ msgid "Add table prefix" msgstr "" #: libraries/mult_submits.inc.php:266 -#, fuzzy #| msgid "Add index" msgid "Add prefix" -msgstr "İndeks ekle" +msgstr "Ön ek ekle" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" From b4f5b3f2b4aeec0f6c1e05ccaeb7cce30ed1a9e5 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:44:18 +0200 Subject: [PATCH 1444/1652] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 73d1f7f6b0..9f4ea3d291 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:43+0200\n" +"PO-Revision-Date: 2011-05-19 21:44+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -7975,10 +7975,10 @@ msgid "Unable to change master" msgstr "Master değiştirilemiyor" #: server_replication.php:72 -#, fuzzy, php-format +#, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" -msgstr "Master sunucu %s'na başarılı olarak değiştirildi" +msgstr "Master sunucu %s olarak başarılı bir şekilde değiştirildi" #: server_replication.php:180 msgid "This server is configured as master in a replication process." From bda02aa229cce88d7c8195bb235d50c7c0f919be Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:44:34 +0200 Subject: [PATCH 1445/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9f4ea3d291..67041d9cbb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9124,10 +9124,9 @@ msgid "Insecure connection" msgstr "Güvensiz bağlantı" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Yapılandırma depolama" +msgstr "Yapılandırma kaydedildi." #: setup/frames/index.inc.php:93 msgid "" From 7d32abc13d9c5b3b0398ad0b9ff781657491c9d8 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:45:28 +0200 Subject: [PATCH 1446/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 67041d9cbb..73f0163b70 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:44+0200\n" +"PO-Revision-Date: 2011-05-19 21:45+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9990,10 +9990,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" #: tbl_tracking.php:382 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Bu veri tanımlama ifadelerini izle:" +msgstr "İzlenen veri tanımlaması başarılı olarak silindi" #: tbl_tracking.php:384 tbl_tracking.php:401 #, fuzzy From 0629a717a223623a7e6ff3de2a1f756fe8570806 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:45:48 +0200 Subject: [PATCH 1447/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 73f0163b70..42a24cdb31 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9995,10 +9995,9 @@ msgid "Tracking data definition successfully deleted" msgstr "İzlenen veri tanımlaması başarılı olarak silindi" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy #| msgid "Gather errors" msgid "Query error" -msgstr "Hataları toparla" +msgstr "Sorgu hatası" #: tbl_tracking.php:399 #, fuzzy From 7e09ec7a5a661433e9e57543034633556af63a66 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:50:46 +0200 Subject: [PATCH 1448/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 42a24cdb31..bef86ab705 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:45+0200\n" +"PO-Revision-Date: 2011-05-19 21:50+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10000,10 +10000,9 @@ msgid "Query error" msgstr "Sorgu hatası" #: tbl_tracking.php:399 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Bu veri işleme ifadelerini izle:" +msgstr "İzlenen veri işlemesi başarılı olarak silindi" #: tbl_tracking.php:411 msgid "Tracking statements" From 8ebeef327e401ba07d2bd447bd2364aa20fd9393 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:51:18 +0200 Subject: [PATCH 1449/1652] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index bef86ab705..3e4ea65be8 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:50+0200\n" +"PO-Revision-Date: 2011-05-19 21:51+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -10015,10 +10015,9 @@ msgstr "" "%s tarihleriyle göster. %s ile %s arasını. %s %s kullanıcısı tarafından" #: tbl_tracking.php:432 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Bu tabloyu izleme verisini sil" +msgstr "Rapordan izlenen veri satırını sil" #: tbl_tracking.php:443 #, fuzzy From da5c9c864561f319c1a030805a4c76eda7405e82 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:51:26 +0200 Subject: [PATCH 1450/1652] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 3e4ea65be8..5ef1b4f807 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10020,10 +10020,9 @@ msgid "Delete tracking data row from report" msgstr "Rapordan izlenen veri satırını sil" #: tbl_tracking.php:443 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "Veritabanı yok" +msgstr "Veri yok" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" From 33c54ede4d217ab7d725f25c623e299cb7741c73 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:53:06 +0200 Subject: [PATCH 1451/1652] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 5ef1b4f807..c2a8663732 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:51+0200\n" +"PO-Revision-Date: 2011-05-19 21:53+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1133,6 +1133,8 @@ msgstr "Siliniyor" msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " +"birleştirilecektir" #: js/messages.php:93 msgid "Hide query box" From 32e3117a435f26d865131f30af70f9bf80fcb139 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:55:39 +0200 Subject: [PATCH 1452/1652] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index c2a8663732..7c73cf8c6c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:53+0200\n" +"PO-Revision-Date: 2011-05-19 21:55+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1204,6 +1204,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" +"Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " +"kaybolacaklardır. Devam etmek istiyor musunuz?" #: js/messages.php:115 msgid "Add an option for column " From b54829d26124d9fa807578abfe0bb31e3ced40dd Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:55:56 +0200 Subject: [PATCH 1453/1652] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 7c73cf8c6c..4fa51ab1f2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -5923,7 +5923,7 @@ msgstr "Buradan" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "Buraya" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:440 From 9883097309d21ea528d4cd8b51213dc0afdc647f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:56:09 +0200 Subject: [PATCH 1454/1652] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4fa51ab1f2..78c0dcc464 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:55+0200\n" +"PO-Revision-Date: 2011-05-19 21:56+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -5932,7 +5932,7 @@ msgstr "Gönder" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "Tablo ön eki ekle" #: libraries/mult_submits.inc.php:266 #| msgid "Add index" From f93c985b7e5f01c61f4e4d397dc075465325427c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 19 May 2011 21:59:51 +0200 Subject: [PATCH 1455/1652] Translation update done using Pootle. --- po/tr.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 78c0dcc464..91b85a7625 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 21:56+0200\n" +"PO-Revision-Date: 2011-05-19 21:59+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9137,6 +9137,9 @@ msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Yapılandırma phpMyAdmin'in en üst dizini içindeki config/config.inc.php " +"dosyasına kaydedildi, dosyayı bir dizin yukarı kopyalayın ve kullanmak için " +"config dizinini silin." #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" From 3df91f2ce0adb373e8ae53f18cc1419d15149596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:09:51 +0200 Subject: [PATCH 1456/1652] Translation update done using Pootle. --- po/hu.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/hu.po b/po/hu.po index 99bea9eb54..43bed05b4c 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-09 14:22+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-05-19 22:09+0200\n" +"Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -10396,9 +10396,8 @@ msgid "No data" msgstr "Nincs adatbázis" #: tbl_tracking.php:453 tbl_tracking.php:510 -#, fuzzy msgid "Date" -msgstr "Adatok" +msgstr "Dátum" #: tbl_tracking.php:455 msgid "Data definition statement" From 29f88b063bc395a0a5418f6a14f124e91e4741de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:10:46 +0200 Subject: [PATCH 1457/1652] Translation update done using Pootle. --- po/hu.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hu.po b/po/hu.po index 43bed05b4c..297d5beac9 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:09+0200\n" +"PO-Revision-Date: 2011-05-19 22:10+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -10096,9 +10096,8 @@ msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:712 -#, fuzzy msgid "Delete the table (DROP)" -msgstr "Nincs adatbázis" +msgstr "Tábla törlése (DROP)" #: tbl_operations.php:733 msgid "Partition maintenance" From 69e2ee8896989920b518d26188dff3a0c83500e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:11:01 +0200 Subject: [PATCH 1458/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 297d5beac9..34ecdafea6 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:10+0200\n" +"PO-Revision-Date: 2011-05-19 22:11+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -10093,7 +10093,7 @@ msgstr "A tábla adatainak kiíratása" #: tbl_operations.php:692 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "Tábla kiürítése (TRUNCATE)" #: tbl_operations.php:712 msgid "Delete the table (DROP)" From cd0803dcf8a0f120a70ad280445c66fef14d5301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:11:35 +0200 Subject: [PATCH 1459/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 34ecdafea6..16b63fe41d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9875,7 +9875,7 @@ msgstr "" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "Magasság" #: tbl_chart.php:98 msgid "Title" From 328dc20a9b4c186297f3da0ec7fe818b84d0495c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:11:42 +0200 Subject: [PATCH 1460/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 16b63fe41d..78ab38a97b 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9871,7 +9871,7 @@ msgstr "Becsült érték lehet. Lásd: GYIK 3.11" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "Szélesség" #: tbl_chart.php:94 msgid "Height" From 4d6b7fcb9c581b528a56821ab3b7120f62381456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:11:48 +0200 Subject: [PATCH 1461/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 78ab38a97b..9607571b8e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9879,7 +9879,7 @@ msgstr "Magasság" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "Cím" #: tbl_chart.php:103 msgid "X Axis label" From 48a9c56cddd2ef7720fee3ce6128891dc74ea7e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:11:57 +0200 Subject: [PATCH 1462/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 9607571b8e..d228e1839b 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9883,7 +9883,7 @@ msgstr "Cím" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "X tengely címkéje" #: tbl_chart.php:107 msgid "Y Axis label" From b503292f8ae1fa017503328d86bd5354c481a624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:12:03 +0200 Subject: [PATCH 1463/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index d228e1839b..9d4cc73957 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:11+0200\n" +"PO-Revision-Date: 2011-05-19 22:12+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9887,7 +9887,7 @@ msgstr "X tengely címkéje" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "Y tengely címkéje" #: tbl_chart.php:112 msgid "Area margins" From cbfbcfe4bbaddd7c4d000dadbcda0cf7060c4825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:13:08 +0200 Subject: [PATCH 1464/1652] Translation update done using Pootle. --- po/hu.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hu.po b/po/hu.po index 9d4cc73957..287af8cd09 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:12+0200\n" +"PO-Revision-Date: 2011-05-19 22:13+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9404,10 +9404,9 @@ msgid "Insecure connection" msgstr "Veszélyes kapcsolat" #: setup/frames/index.inc.php:92 -#, fuzzy #| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Konfigurációs tároló" +msgstr "Beállítások elmentve." #: setup/frames/index.inc.php:93 msgid "" From 4c43a5a62eb64d5abb573b34f15340db7052f323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:13:32 +0200 Subject: [PATCH 1465/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 287af8cd09..c6ab4b5d7d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9305,7 +9305,7 @@ msgstr "" #: server_synchronize.php:450 server_synchronize.php:895 msgid "Synchronize Databases" -msgstr "" +msgstr "Adatbázisok szinkronizálása" #: server_synchronize.php:463 msgid "Selected target tables have been synchronized with source tables." From 37d8de4d34c3027f8ee73477f09323b29d546b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:14:51 +0200 Subject: [PATCH 1466/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index c6ab4b5d7d..ac92063de9 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:13+0200\n" +"PO-Revision-Date: 2011-05-19 22:14+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -10238,7 +10238,7 @@ msgstr "" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" -msgstr "" +msgstr "Index hozzáadása" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" From a9659d8600a79b4963b028e9d51117194cd48487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:14:59 +0200 Subject: [PATCH 1467/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index ac92063de9..8f2c89b702 100644 --- a/po/hu.po +++ b/po/hu.po @@ -10242,7 +10242,7 @@ msgstr "Index hozzáadása" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Elsődleges kulcs hozzáadása" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" From 17c0eaeddae91a04b904517ecffe3ea7726a7359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:15:47 +0200 Subject: [PATCH 1468/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 8f2c89b702..4ce2c64b0f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:14+0200\n" +"PO-Revision-Date: 2011-05-19 22:15+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9955,7 +9955,7 @@ msgstr "" #: tbl_chart.php:181 msgid "Redraw" -msgstr "" +msgstr "Újrarajzolás" #: tbl_create.php:56 #, php-format From df0568acfd8b32dee6a1a3161b086731b7dfddc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:15:59 +0200 Subject: [PATCH 1469/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 4ce2c64b0f..3c7915ab43 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9960,7 +9960,7 @@ msgstr "Újrarajzolás" #: tbl_create.php:56 #, php-format msgid "Table %s already exists!" -msgstr "Már létezik nevű %s tábla!" +msgstr "Már létezik %s nevű tábla!" #: tbl_create.php:242 #, php-format From 811e3328b2b01f06b4ff98f56518c517550b38fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:16:44 +0200 Subject: [PATCH 1470/1652] Translation update done using Pootle. --- po/hu.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hu.po b/po/hu.po index 3c7915ab43..8d188b4f4f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:15+0200\n" +"PO-Revision-Date: 2011-05-19 22:16+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9853,10 +9853,9 @@ msgid "Continue insertion with %s rows" msgstr "Beszúrás újrakezdése %s sorral" #: tbl_chart.php:56 -#, fuzzy #| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." -msgstr "A jogok újratöltése sikerült." +msgstr "A grafikon generálása sikeres." #: tbl_chart.php:59 #, fuzzy From 452669a1746898a08129d3a555ac4b1ec084b423 Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Thu, 19 May 2011 22:01:01 +0200 Subject: [PATCH 1471/1652] XSS in Tracking page --- tbl_tracking.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tbl_tracking.php b/tbl_tracking.php index 224ed87890..88e70cbf49 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -638,7 +638,7 @@ if ($last_version > 0) {
- +
@@ -651,7 +651,7 @@ if ($last_version > 0) {
- +
@@ -666,7 +666,7 @@ if ($last_version > 0) {
- + From df64baac48b39d17c82f72d26ec8d6bece25a1b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:17:07 +0200 Subject: [PATCH 1472/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 8d188b4f4f..4549b53144 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:16+0200\n" +"PO-Revision-Date: 2011-05-19 22:17+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" From f0a64bf7e26a2364cd3b3c7619dec8a8ea05203f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:17:12 +0200 Subject: [PATCH 1473/1652] Translation update done using Pootle. --- po/hu.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 4549b53144..f95506980a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9728,7 +9728,6 @@ msgid "You allow for connecting to the server without a password." msgstr "Ön engedélyezi a jelszó nélküli csatlakozást a szerverhez." #: setup/lib/index.lib.php:351 -#, fuzzy #| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." msgstr "Túl rövid a kulcs, legalább 8 karakterből álljon" From 5b7d30c55151d111010d2e6ee7fd1a80fd57bab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:17:43 +0200 Subject: [PATCH 1474/1652] Translation update done using Pootle. --- po/hu.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index f95506980a..9cf439a6d1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9324,10 +9324,9 @@ msgid "Enter manually" msgstr "" #: server_synchronize.php:1138 -#, fuzzy #| msgid "Insecure connection" msgid "Current connection" -msgstr "Veszélyes kapcsolat" +msgstr "Jelenlegi kapcsolat" #: server_synchronize.php:1167 #, fuzzy, php-format From d69ffb5ad1ce01d1cfca6fdf4c3844a76c323506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:18:00 +0200 Subject: [PATCH 1475/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 9cf439a6d1..a253d01c08 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:17+0200\n" +"PO-Revision-Date: 2011-05-19 22:18+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9293,7 +9293,7 @@ msgstr "" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" -msgstr "" +msgstr "Sorok beszúrása" #: server_synchronize.php:445 server_synchronize.php:889 msgid "Would you like to delete all the previous rows from target tables?" From 82ce3d1615f6231d7e46700adb5e4d388df15bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:18:07 +0200 Subject: [PATCH 1476/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index a253d01c08..8d3bd9706a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9289,7 +9289,7 @@ msgstr "" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" -msgstr "" +msgstr "Sorok frissítése" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" From ea236ab7a75e3c07049382da062735041b93112f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:18:15 +0200 Subject: [PATCH 1477/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 8d3bd9706a..a9843db6c6 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9281,7 +9281,7 @@ msgstr "" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" -msgstr "" +msgstr "Indexek törlése" #: server_synchronize.php:433 server_synchronize.php:876 msgid "Apply index(s)" From 7f5f9a059d341dc8e44396afe72967fc73100750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:18:33 +0200 Subject: [PATCH 1478/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index a9843db6c6..117625d1e2 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9301,7 +9301,7 @@ msgstr "" #: server_synchronize.php:448 server_synchronize.php:893 msgid "Apply Selected Changes" -msgstr "" +msgstr "Kiválasztott módosítások végrehajtása" #: server_synchronize.php:450 server_synchronize.php:895 msgid "Synchronize Databases" From 69e8b79f4d5bc90a4aa914b7e6ac15c44107d06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:18:58 +0200 Subject: [PATCH 1479/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 117625d1e2..dd70677898 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9269,7 +9269,7 @@ msgstr "" #: server_synchronize.php:429 server_synchronize.php:872 msgid "Add column(s)" -msgstr "" +msgstr "Oszlop(ok) hozzáadása" #: server_synchronize.php:430 server_synchronize.php:873 msgid "Remove column(s)" From 35c454e00f342b98d2b0979083c59f306ad87373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:19:08 +0200 Subject: [PATCH 1480/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index dd70677898..a3ac50ec8b 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:18+0200\n" +"PO-Revision-Date: 2011-05-19 22:19+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9273,7 +9273,7 @@ msgstr "Oszlop(ok) hozzáadása" #: server_synchronize.php:430 server_synchronize.php:873 msgid "Remove column(s)" -msgstr "" +msgstr "Oszlop(ok) eltávolítása" #: server_synchronize.php:431 server_synchronize.php:874 msgid "Alter column(s)" From f921605219456ca4bbd96a7343e9b20e3f7828d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:19:16 +0200 Subject: [PATCH 1481/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index a3ac50ec8b..e87e32b22c 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9277,7 +9277,7 @@ msgstr "Oszlop(ok) eltávolítása" #: server_synchronize.php:431 server_synchronize.php:874 msgid "Alter column(s)" -msgstr "" +msgstr "Oszlop(ok) módosítása" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" From 7c2133c236e94db226df15b4df8ddb5743e6db03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:19:23 +0200 Subject: [PATCH 1482/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index e87e32b22c..bd50faeb9a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9281,7 +9281,7 @@ msgstr "Oszlop(ok) módosítása" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" -msgstr "Indexek törlése" +msgstr "Index(ek) törlése" #: server_synchronize.php:433 server_synchronize.php:876 msgid "Apply index(s)" From da672a02136c3fee10ab754f97f8cce791f739f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:19:36 +0200 Subject: [PATCH 1483/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index bd50faeb9a..984e2b0dc1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9285,7 +9285,7 @@ msgstr "Index(ek) törlése" #: server_synchronize.php:433 server_synchronize.php:876 msgid "Apply index(s)" -msgstr "" +msgstr "Index(ek) alkalmazása" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" From c46d75119cecacc44e50974afe0638c17c898b22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:19:45 +0200 Subject: [PATCH 1484/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 984e2b0dc1..b6d4b9460c 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9289,7 +9289,7 @@ msgstr "Index(ek) alkalmazása" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" -msgstr "Sorok frissítése" +msgstr "Sor(ok) frissítése" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" From b254f1da6eabdc8d83f8e805ff6ce4d1028baa5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:19:49 +0200 Subject: [PATCH 1485/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index b6d4b9460c..d25b5ace5c 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9293,7 +9293,7 @@ msgstr "Sor(ok) frissítése" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" -msgstr "Sorok beszúrása" +msgstr "Sor(ok) beszúrása" #: server_synchronize.php:445 server_synchronize.php:889 msgid "Would you like to delete all the previous rows from target tables?" From 4566b564703fd6bbf367fa7eac64640186e8f812 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:20:12 +0200 Subject: [PATCH 1486/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index d25b5ace5c..ba038b8566 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:19+0200\n" +"PO-Revision-Date: 2011-05-19 22:20+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -9244,7 +9244,7 @@ msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." -msgstr "" +msgstr "Nem létezik '%s' nevű adatbázis." #: server_synchronize.php:263 msgid "Structure Synchronization" From 4527d981aa399877ebcf93f25d5fb0a0354e4ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:20:52 +0200 Subject: [PATCH 1487/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index ba038b8566..6c7fb36711 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8383,7 +8383,7 @@ msgstr "" #: server_replication.php:343 msgid "Skip next" -msgstr "" +msgstr "Következő átugrása" #: server_replication.php:346 msgid "errors." From cbac67aefb35e7722c22faef0e8d630670c02797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:21:18 +0200 Subject: [PATCH 1488/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 6c7fb36711..9509ef2127 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:20+0200\n" +"PO-Revision-Date: 2011-05-19 22:21+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -8228,7 +8228,7 @@ msgstr "AZ" #: server_replication.php:49 msgid "Unknown error" -msgstr "" +msgstr "Ismeretlen hiba" #: server_replication.php:56 #, php-format From b3b19ad0e9a105d489e8d396ffd32b6c1d387246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:21:44 +0200 Subject: [PATCH 1489/1652] Translation update done using Pootle. --- po/hu.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 9509ef2127..88d1940303 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7681,10 +7681,9 @@ msgstr "" "Nem található a(z) %s tábla, vagy nem adták meg a(z) %s adatbázisban" #: schema_export.php:45 -#, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" -msgstr "Nem létezik a(z) \"%s\" tábla!" +msgstr "A fájl nem létezik" #: server_binlog.php:106 msgid "Select binary log to view" From 1956359bc71420e3d2bcaa6808d60e7c8bdbc3cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:22:08 +0200 Subject: [PATCH 1490/1652] Translation update done using Pootle. --- po/hu.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hu.po b/po/hu.po index 88d1940303..88c457b59f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:21+0200\n" +"PO-Revision-Date: 2011-05-19 22:22+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -7614,10 +7614,9 @@ msgid "Saved on: @DATE@" msgstr "" #: prefs_manage.php:239 -#, fuzzy #| msgid "Import files" msgid "Import from file" -msgstr "Fájlok importálása" +msgstr "Importálás fájlból" #: prefs_manage.php:245 msgid "Import from browser's storage" From f4393c677cb4dfdaf471b31f14620d66cb441491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:22:21 +0200 Subject: [PATCH 1491/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 88c457b59f..0e6888cbaf 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7620,7 +7620,7 @@ msgstr "Importálás fájlból" #: prefs_manage.php:245 msgid "Import from browser's storage" -msgstr "" +msgstr "Importálás a böngészőből" #: prefs_manage.php:248 msgid "Settings will be imported from your browser's local storage." From f9d722a43fd7b1a8c1b32a80c7940ee6db75acf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:22:54 +0200 Subject: [PATCH 1492/1652] Translation update done using Pootle. --- po/hu.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 0e6888cbaf..5d1d94098a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7360,7 +7360,6 @@ msgid "filter tables by name" msgstr "Tábla rendezésének módosítása e szerint:" #: navigation.php:308 navigation.php:309 -#, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" From dfd04536cd31322cfe3109251be4266777369496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:23:03 +0200 Subject: [PATCH 1493/1652] Translation update done using Pootle. --- po/hu.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hu.po b/po/hu.po index 5d1d94098a..8ba21037a8 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:22+0200\n" +"PO-Revision-Date: 2011-05-19 22:23+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -7349,9 +7349,8 @@ msgid "No databases" msgstr "Nincs adatbázis" #: navigation.php:277 -#, fuzzy msgid "Filter" -msgstr "Fájlok" +msgstr "Szűrő" #: navigation.php:277 #, fuzzy From ccb74d61ab0a151e1f68634dcd92b02fab83fbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:23:23 +0200 Subject: [PATCH 1494/1652] Translation update done using Pootle. --- po/hu.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 8ba21037a8..9fe8c44ecc 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7227,10 +7227,9 @@ msgid "Get support" msgstr "Exportálás" #: main.php:219 -#, fuzzy #| msgid "No change" msgid "List of changes" -msgstr "Nincs változás" +msgstr "Változások listája" #: main.php:243 msgid "" From a4a5c121cfe755e1cebd48a89daf668cd0ff3d13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:24:01 +0200 Subject: [PATCH 1495/1652] Translation update done using Pootle. --- po/hu.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hu.po b/po/hu.po index 9fe8c44ecc..36d762f15f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:23+0200\n" +"PO-Revision-Date: 2011-05-19 22:24+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -6653,9 +6653,8 @@ msgstr "" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 -#, fuzzy msgid "Remote server" -msgstr "Új szerver" +msgstr "Távoli szerver" #: libraries/server_synchronize.lib.php:1344 msgid "Difference" From d02f39cd2800f2179b3594e5d95394eb485834aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:24:09 +0200 Subject: [PATCH 1496/1652] Translation update done using Pootle. --- po/hu.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index 36d762f15f..32c0088dcc 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6636,10 +6636,9 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:99 -#, fuzzy #| msgid "General relation features" msgid "Settings" -msgstr "Általános relációs jellemzők" +msgstr "Beállítások" #: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1115 #, fuzzy From 1175a978d60ffa55b82bcd8294ab26b59786f54f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:24:19 +0200 Subject: [PATCH 1497/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 32c0088dcc..2981ad53e0 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6648,7 +6648,7 @@ msgstr "Keresés az adatbázisban" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 msgid "Current server" -msgstr "" +msgstr "Jelenlegi szerver" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 From ccb883dee9cd1048d220a3d5006ba61a9462559c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:25:28 +0200 Subject: [PATCH 1498/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 2981ad53e0..f217deb8db 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:24+0200\n" +"PO-Revision-Date: 2011-05-19 22:25+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" From 4832407a14028d53f9e9d43f4300f4f4842a0014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:25:38 +0200 Subject: [PATCH 1499/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index f217deb8db..162ba94683 100644 --- a/po/hu.po +++ b/po/hu.po @@ -953,7 +953,7 @@ msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." #: server_synchronize.php:738 server_synchronize.php:766 #: server_synchronize.php:794 server_synchronize.php:806 msgid "Click to select" -msgstr "Kattintson a kiválasztáshoz." +msgstr "Kattintson a kijelöléshez." #: js/messages.php:26 msgid "Click to unselect" From a7dd78327e19d10fb8193fd4d28ef14d8515081f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:26:06 +0200 Subject: [PATCH 1500/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 162ba94683..57c7ecd93a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:25+0200\n" +"PO-Revision-Date: 2011-05-19 22:26+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" From 9fe4487e670cf68740564bed3106bb11553eb2f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:27:06 +0200 Subject: [PATCH 1501/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 57c7ecd93a..039d3bc149 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:26+0200\n" +"PO-Revision-Date: 2011-05-19 22:27+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" From d6f443b68a6dbea5daaf95cfe5279d638ad3ece1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:27:25 +0200 Subject: [PATCH 1502/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 039d3bc149..7e773fd3d1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1312,7 +1312,7 @@ msgstr "Augusztus" #: js/messages.php:164 msgid "September" -msgstr "szept." +msgstr "Szeptember" #: js/messages.php:165 msgid "October" From d8bca279eb5a9741f5fb7b2eda6e354d41b45dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:27:35 +0200 Subject: [PATCH 1503/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 7e773fd3d1..aa26712038 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1320,7 +1320,7 @@ msgstr "Október" #: js/messages.php:166 msgid "November" -msgstr "Nov." +msgstr "November" #: js/messages.php:167 msgid "December" From b59c80d05a81e5bc9fa084d1fcd0324a04924413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:27:40 +0200 Subject: [PATCH 1504/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index aa26712038..92f684287e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1324,7 +1324,7 @@ msgstr "November" #: js/messages.php:167 msgid "December" -msgstr "Dec." +msgstr "December" #. l10n: Short month name #: js/messages.php:171 libraries/common.lib.php:1569 From c15476d97dda82dc9d09035c24fbbf2df58f0b5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:27:50 +0200 Subject: [PATCH 1505/1652] Translation update done using Pootle. --- po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hu.po b/po/hu.po index 92f684287e..c053696614 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1296,7 +1296,7 @@ msgstr "Április" #: js/messages.php:160 msgid "May" -msgstr "máj." +msgstr "Május" #: js/messages.php:161 msgid "June" From b8a411a227c70ed6d0304251703b368886b45cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Thu, 19 May 2011 22:30:17 +0200 Subject: [PATCH 1506/1652] Translation update done using Pootle. --- po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hu.po b/po/hu.po index c053696614..8a9085f350 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-19 22:27+0200\n" +"PO-Revision-Date: 2011-05-19 22:30+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" "Language: hu\n" @@ -2105,7 +2105,7 @@ msgstr "EB" #. l10n: Thousands separator #: libraries/common.lib.php:1431 msgid "," -msgstr " " +msgstr ", " #. l10n: Decimal separator #: libraries/common.lib.php:1433 From 1300510d3686b40adefafb7f1778a6f06d0a553a Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Thu, 19 May 2011 22:39:43 +0200 Subject: [PATCH 1507/1652] XSS in Tracking page, more --- libraries/tbl_links.inc.php | 2 +- tbl_tracking.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php index b6c91215b6..22cdbc3803 100644 --- a/libraries/tbl_links.inc.php +++ b/libraries/tbl_links.inc.php @@ -136,7 +136,7 @@ unset($tabs); if(PMA_Tracker::isActive() and PMA_Tracker::isTracked($GLOBALS["db"], $GLOBALS["table"])) { - $msg = PMA_Message::notice(''.sprintf($strTrackingActivated, $GLOBALS["db"], $GLOBALS["table"]).''); + $msg = PMA_Message::notice(''.sprintf($strTrackingActivated, htmlspecialchars($GLOBALS["db"]), htmlspecialchars($GLOBALS["table"])).''); $msg->display(); } diff --git a/tbl_tracking.php b/tbl_tracking.php index 88e70cbf49..b3ac4f3220 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -185,7 +185,7 @@ if (isset($_REQUEST['submit_create_version'])) { $tracking_set = rtrim($tracking_set, ','); if (PMA_Tracker::createVersion($GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'], $tracking_set )) { - $msg = PMA_Message::success(sprintf($strTrackingVersionCreated, $_REQUEST['version'], $GLOBALS['db'], $GLOBALS['table'])); + $msg = PMA_Message::success(sprintf($strTrackingVersionCreated, $_REQUEST['version'], htmlspecialchars($GLOBALS['db']), htmlspecialchars($GLOBALS['table']))); $msg->display(); } } @@ -193,7 +193,7 @@ if (isset($_REQUEST['submit_create_version'])) { // Deactivate tracking if (isset($_REQUEST['submit_deactivate_now'])) { if (PMA_Tracker::deactivateTracking($GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])) { - $msg = PMA_Message::success(sprintf($strTrackingVersionDeactivated, $GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])); + $msg = PMA_Message::success(sprintf($strTrackingVersionDeactivated, htmlspecialchars($GLOBALS['db']), htmlspecialchars($GLOBALS['table']), $_REQUEST['version'])); $msg->display(); } } @@ -201,7 +201,7 @@ if (isset($_REQUEST['submit_deactivate_now'])) { // Activate tracking if (isset($_REQUEST['submit_activate_now'])) { if (PMA_Tracker::activateTracking($GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])) { - $msg = PMA_Message::success(sprintf($strTrackingVersionActivated, $GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])); + $msg = PMA_Message::success(sprintf($strTrackingVersionActivated, htmlspecialchars($GLOBALS['db']), htmlspecialchars($GLOBALS['table']), $_REQUEST['version'])); $msg->display(); } } From 32d8446e01d5097599e89cb78ade338f03e82a1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 20 May 2011 08:32:16 +0200 Subject: [PATCH 1508/1652] Update from master --- po/cy.po | 8 +++++--- po/hu.po | 46 +++++++++++++++++++++++----------------------- po/mk.po | 2 +- 3 files changed, 29 insertions(+), 27 deletions(-) diff --git a/po/cy.po b/po/cy.po index d8e2bf0e14..b81a06e00b 100644 --- a/po/cy.po +++ b/po/cy.po @@ -99,7 +99,7 @@ msgstr "Defnyddiwch y gwerth hwn" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "" +msgstr "Dim gweinydd ffrydio blob wedi'i ffurfweddu!" #: bs_disp_as_mime_type.php:35 #, fuzzy @@ -109,7 +109,7 @@ msgstr "Methu ag ysgrifennu i'r ddisg." #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Methu ag agor URL pell" #: changelog.php:32 license.php:28 #, php-format @@ -117,6 +117,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"Dyw'r ffeil %s ddim ar gael ar y system hon, ewch i www.phpmyadmin.net am " +"wybodaeth bellach." #: db_create.php:58 #, php-format @@ -429,7 +431,7 @@ msgstr "" #: db_qbe.php:186 msgid "visual builder" -msgstr "" +msgstr "adeiladwr gweledol" #: db_qbe.php:222 libraries/db_structure.lib.php:95 #: libraries/display_tbl.lib.php:852 diff --git a/po/hu.po b/po/hu.po index 954dd44906..37e66b8fce 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6552,7 +6552,7 @@ msgstr "Keresés az adatbázisban" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 msgid "Current server" -msgstr "" +msgstr "Jelenlegi szerver" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 @@ -7528,7 +7528,7 @@ msgstr "Fájlok importálása" #: prefs_manage.php:245 msgid "Import from browser's storage" -msgstr "" +msgstr "Importálás a böngészőből" #: prefs_manage.php:248 msgid "Settings will be imported from your browser's local storage." @@ -8135,7 +8135,7 @@ msgstr "AZ" #: server_replication.php:49 msgid "Unknown error" -msgstr "" +msgstr "Ismeretlen hiba" #: server_replication.php:56 #, php-format @@ -8289,7 +8289,7 @@ msgstr "" #: server_replication.php:343 msgid "Skip next" -msgstr "" +msgstr "Következő átugrása" #: server_replication.php:346 msgid "errors." @@ -9150,7 +9150,7 @@ msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." -msgstr "" +msgstr "Nem létezik '%s' nevű adatbázis." #: server_synchronize.php:263 msgid "Structure Synchronization" @@ -9175,31 +9175,31 @@ msgstr "" #: server_synchronize.php:429 server_synchronize.php:872 msgid "Add column(s)" -msgstr "" +msgstr "Oszlop(ok) hozzáadása" #: server_synchronize.php:430 server_synchronize.php:873 msgid "Remove column(s)" -msgstr "" +msgstr "Oszlop(ok) eltávolítása" #: server_synchronize.php:431 server_synchronize.php:874 msgid "Alter column(s)" -msgstr "" +msgstr "Oszlop(ok) módosítása" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" -msgstr "" +msgstr "Index(ek) törlése" #: server_synchronize.php:433 server_synchronize.php:876 msgid "Apply index(s)" -msgstr "" +msgstr "Index(ek) alkalmazása" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" -msgstr "" +msgstr "Sor(ok) frissítése" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" -msgstr "" +msgstr "Sor(ok) beszúrása" #: server_synchronize.php:445 server_synchronize.php:889 msgid "Would you like to delete all the previous rows from target tables?" @@ -9207,11 +9207,11 @@ msgstr "" #: server_synchronize.php:448 server_synchronize.php:893 msgid "Apply Selected Changes" -msgstr "" +msgstr "Kiválasztott módosítások végrehajtása" #: server_synchronize.php:450 server_synchronize.php:895 msgid "Synchronize Databases" -msgstr "" +msgstr "Adatbázisok szinkronizálása" #: server_synchronize.php:463 msgid "Selected target tables have been synchronized with source tables." @@ -9765,23 +9765,23 @@ msgstr "Becsült érték lehet. Lásd: GYIK 3.11" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "Szélesség" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "Magasság" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "Cím" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "X tengely címkéje" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "Y tengely címkéje" #: tbl_chart.php:112 msgid "Area margins" @@ -9850,7 +9850,7 @@ msgstr "" #: tbl_chart.php:181 msgid "Redraw" -msgstr "" +msgstr "Újrarajzolás" #: tbl_create.php:56 #, php-format @@ -9987,7 +9987,7 @@ msgstr "A tábla adatainak kiíratása" #: tbl_operations.php:688 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "Tábla kiürítése (TRUNCATE)" #: tbl_operations.php:708 #, fuzzy @@ -10134,11 +10134,11 @@ msgstr "" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" -msgstr "" +msgstr "Index hozzáadása" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "Elsődleges kulcs hozzáadása" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" diff --git a/po/mk.po b/po/mk.po index 6dda875120..993a9b9005 100644 --- a/po/mk.po +++ b/po/mk.po @@ -103,7 +103,7 @@ msgstr "" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Неуспешно отворање на далечински URL" #: changelog.php:32 license.php:28 #, php-format From ecfc8ba4f7b4ea612c58ab5726054ed0f28e200d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 20 May 2011 09:01:20 +0200 Subject: [PATCH 1509/1652] Make redirector require valid token --- libraries/common.inc.php | 2 -- libraries/core.lib.php | 7 +++++-- url.php | 6 ++---- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 49937c8ed6..7d71993eae 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -477,8 +477,6 @@ if (! PMA_isValid($_REQUEST['token']) || $_SESSION[' PMA_token '] != $_REQUEST[' 'media_type', 'custom_type', 'bs_reference', /* for changing BLOB repository file MIME type */ 'bs_db', 'bs_table', 'bs_ref', 'bs_new_mime_type', - /* URL redirector */ - 'url' ); /** * Require cleanup functions diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 76d2c86126..1152d6ab1c 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -681,12 +681,15 @@ function PMA_array_remove($path, &$array) * @return string URL for a link. */ function PMA_linkURL($url) { + $params = array(); + $params['url'] = $url; + $goto = 'url.php' . PMA_generate_common_url($params); if (!preg_match('#^https?://#', $url)) { return $url; } elseif (defined('PMA_SETUP')) { - return '../url.php?url=' . $url; + return '../' . $goto; } else { - return './url.php?url=' . $url; + return './' . $goto; } } diff --git a/url.php b/url.php index ec0ab39a0e..5088eff2c1 100644 --- a/url.php +++ b/url.php @@ -3,16 +3,14 @@ * URL redirector to avoid leaking Referer with some sensitive information. */ -define('PMA_MINIMUM_COMMON', TRUE); - /** * Gets core libraries and defines some variables */ require_once './libraries/common.inc.php'; -if (empty($GLOBALS['url']) || ! preg_match('/^https?:\/\/[^\n\r]*$/', $GLOBALS['url'])) { +if (! PMA_isValid($_GET['url']) || ! preg_match('/^https?:\/\/[^\n\r]*$/', $_GET['url'])) { header('Location: ' . $cfg['PmaAbsoluteUri']); } else { - header('Location: ' . $GLOBALS['url']); + header('Location: ' . $_GET['url']); } ?> From b7a8179eb6bf0f1643970ac57a70b5b513a1cd4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 20 May 2011 09:46:15 +0200 Subject: [PATCH 1510/1652] Can not use redirector for setup. We currently have no reasonable way to protect it there. --- libraries/core.lib.php | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 1152d6ab1c..1350247ae2 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -681,15 +681,12 @@ function PMA_array_remove($path, &$array) * @return string URL for a link. */ function PMA_linkURL($url) { - $params = array(); - $params['url'] = $url; - $goto = 'url.php' . PMA_generate_common_url($params); - if (!preg_match('#^https?://#', $url)) { + if (!preg_match('#^https?://#', $url) || defined('PMA_SETUP')) { return $url; - } elseif (defined('PMA_SETUP')) { - return '../' . $goto; } else { - return './' . $goto; + $params = array(); + $params['url'] = $url; + return './url.php' . PMA_generate_common_url($params); } } From 0c2a2a6220b8f1084c70f7dfdd14b4ab4fc4f4a4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 20 May 2011 12:27:55 -0400 Subject: [PATCH 1511/1652] XSS on Tracking page --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index e42d62dbac..f2075798bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $ +3.3.10.1 (2011-05-20) +- [security] XSS on Tracking page + 3.3.10.0 (2011-03-19) - patch #3147400 [structure] Aria table size printed as unknown, thanks to erickoh75 - erickoh75 From d3ccf798fdbd4f8a89d4088130637d8dee918492 Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Fri, 20 May 2011 12:41:33 -0400 Subject: [PATCH 1512/1652] XSS in Tracking page --- tbl_tracking.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tbl_tracking.php b/tbl_tracking.php index 757456be64..9e8b2044ab 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -632,7 +632,7 @@ if ($last_version > 0) {
- +
@@ -645,7 +645,7 @@ if ($last_version > 0) {
- +
@@ -660,7 +660,7 @@ if ($last_version > 0) {
- + From 7e10c132a3887c8ebfd7a8eee356b28375f1e287 Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Fri, 20 May 2011 12:49:49 -0400 Subject: [PATCH 1513/1652] XSS in Tracking page, more --- libraries/tbl_links.inc.php | 2 +- tbl_tracking.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php index bc72d2152a..e31dd5305f 100644 --- a/libraries/tbl_links.inc.php +++ b/libraries/tbl_links.inc.php @@ -112,7 +112,7 @@ unset($tabs); if(PMA_Tracker::isActive() and PMA_Tracker::isTracked($GLOBALS["db"], $GLOBALS["table"])) { - $msg = PMA_Message::notice(''.sprintf(__('Tracking of %s.%s is activated.'), $GLOBALS["db"], $GLOBALS["table"]).''); + $msg = PMA_Message::notice(''.sprintf(__('Tracking of %s.%s is activated.'), htmlspecialchars($GLOBALS["db"]), htmlspecialchars($GLOBALS["table"])).''); $msg->display(); } diff --git a/tbl_tracking.php b/tbl_tracking.php index 9e8b2044ab..99a540e75f 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -179,7 +179,7 @@ if (isset($_REQUEST['submit_create_version'])) { $tracking_set = rtrim($tracking_set, ','); if (PMA_Tracker::createVersion($GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'], $tracking_set )) { - $msg = PMA_Message::success(sprintf(__('Version %s is created, tracking for %s.%s is activated.'), $_REQUEST['version'], $GLOBALS['db'], $GLOBALS['table'])); + $msg = PMA_Message::success(sprintf(__('Version %s is created, tracking for %s.%s is activated.'), $_REQUEST['version'], htmlspecialchars($GLOBALS['db']), htmlspecialchars($GLOBALS['table']))); $msg->display(); } } @@ -187,7 +187,7 @@ if (isset($_REQUEST['submit_create_version'])) { // Deactivate tracking if (isset($_REQUEST['submit_deactivate_now'])) { if (PMA_Tracker::deactivateTracking($GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])) { - $msg = PMA_Message::success(sprintf(__('Tracking for %s.%s , version %s is deactivated.'), $GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])); + $msg = PMA_Message::success(sprintf(__('Tracking for %s.%s , version %s is deactivated.'), htmlspecialchars($GLOBALS['db']), htmlspecialchars($GLOBALS['table']), $_REQUEST['version'])); $msg->display(); } } @@ -195,7 +195,7 @@ if (isset($_REQUEST['submit_deactivate_now'])) { // Activate tracking if (isset($_REQUEST['submit_activate_now'])) { if (PMA_Tracker::activateTracking($GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])) { - $msg = PMA_Message::success(sprintf(__('Tracking for %s.%s , version %s is activated.'), $GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'])); + $msg = PMA_Message::success(sprintf(__('Tracking for %s.%s , version %s is activated.'), htmlspecialchars($GLOBALS['db']), htmlspecialchars($GLOBALS['table']), $_REQUEST['version'])); $msg->display(); } } From 89c8f3cbfe5356995ad71e5a41438e81fa994a55 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 20 May 2011 12:55:23 -0400 Subject: [PATCH 1514/1652] ChangeLog entries for security fixes --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 99d74441a1..f6b479f520 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ - bug #3285929 [privileges] Revert temporary fix - bug #3302872 [synchronize] Synchronize and user name - bug #3302733 [core] Some browsers report an insecure https connection +- [security] Make redirector require valid token 3.4.0.0 (2011-05-11) + rfe #2890226 [view] Enable VIEW rename @@ -167,6 +168,9 @@ 3.3.11.0 (not yet released) +3.3.10.1 (2011-05-20) +- [security] XSS on Tracking page + 3.3.10.0 (2011-03-19) - patch #3147400 [structure] Aria table size printed as unknown, thanks to erickoh75 - erickoh75 From 16a28bbeaa9bc70a82891b5aac9a88d45987659b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 20 May 2011 13:17:17 -0400 Subject: [PATCH 1515/1652] 3.4.1 --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a7c19b4dc2..1f945db6f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,7 +6,7 @@ - bug #3303869 [interface] Unnecessary scrolling on Databases page - patch #3303813 [setup] Define a label that was missing -3.4.1.0 (not yet released) +3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host - bug #3302457 Inline edit and $cfg['PropertiesIconic'] - Patch #3302313 Show a translated label From da8521c9b181199b21555488e20f237b0eae3ad3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 20 May 2011 13:17:56 -0400 Subject: [PATCH 1516/1652] 3.4.1 --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 09d7c1355f..2219ea470a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,7 +13,7 @@ - bug #3303869 [interface] Unnecessary scrolling on Databases page - patch #3303813 [setup] Define a label that was missing -3.4.1.0 (not yet released) +3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host - bug #3302457 Inline edit and $cfg['PropertiesIconic'] - Patch #3302313 Show a translated label From fe53e42d1dfff53967ef5c3d6930b1bd9ac4b428 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 18 May 2011 20:49:04 +0200 Subject: [PATCH 1517/1652] Remove deprecated function PMA_DBI_get_fields --- db_qbe.php | 2 +- libraries/database_interface.lib.php | 23 ----------------------- libraries/import/csv.php | 2 +- libraries/relation.lib.php | 6 +++--- libraries/replication_gui.lib.php | 2 +- libraries/server_synchronize.lib.php | 10 +++++----- server_privileges.php | 2 +- tbl_indexes.php | 2 +- 8 files changed, 13 insertions(+), 36 deletions(-) diff --git a/db_qbe.php b/db_qbe.php index 34c85eed3f..a076798741 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -105,7 +105,7 @@ if (0 == $tbl_result_cnt) { // The tables list gets from MySQL while (list($tbl) = PMA_DBI_fetch_row($tbl_result)) { - $fld_results = PMA_DBI_get_fields($db, $tbl); + $fld_results = PMA_DBI_get_columns($db, $tbl, true); if (empty($tbl_names[$tbl]) && !empty($_REQUEST['TableList'])) { $tbl_names[$tbl] = ''; diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index be8d9f5f89..9735a8212b 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -774,29 +774,6 @@ function PMA_DBI_get_columns_full($database = null, $table = null, return $columns; } -/** - * @todo should only return columns names, for more info use PMA_DBI_get_columns_full() - * - * @deprecated by PMA_DBI_get_columns() or PMA_DBI_get_columns_full() - * @param string $database name of database - * @param string $table name of table to retrieve columns from - * @param mixed $link mysql link resource - * @return array column info - */ -function PMA_DBI_get_fields($database, $table, $link = null) -{ - // here we use a try_query because when coming from - // tbl_create + tbl_properties.inc.php, the table does not exist - $fields = PMA_DBI_fetch_result( - 'SHOW FULL COLUMNS - FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table), - null, null, $link); - if (! is_array($fields) || count($fields) < 1) { - return false; - } - return $fields; -} - /** * array PMA_DBI_get_columns(string $database, string $table, bool $full = false, mysql db link $link = null) * diff --git a/libraries/import/csv.php b/libraries/import/csv.php index aaff1b1dcd..757e3b491d 100644 --- a/libraries/import/csv.php +++ b/libraries/import/csv.php @@ -106,7 +106,7 @@ if (!$analyze) { } $sql_template .= ' INTO ' . PMA_backquote($table); - $tmp_fields = PMA_DBI_get_fields($db, $table); + $tmp_fields = PMA_DBI_get_columns($db, $table); if (empty($csv_columns)) { $fields = $tmp_fields; diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 9588853f94..338f833a91 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -517,7 +517,7 @@ function PMA_getDisplayField($db, $table) * Gets the comments for all rows of a table or the db itself * * @access public - * @uses PMA_DBI_get_fields() + * @uses PMA_DBI_get_columns() * @uses PMA_getDbComment() * @param string the name of the db to check for * @param string the name of the table to check for @@ -529,9 +529,9 @@ function PMA_getComments($db, $table = '') if ($table != '') { // MySQL native column comments - $fields = PMA_DBI_get_fields($db, $table); + $fields = PMA_DBI_get_columns($db, $table); if ($fields) { - foreach ($fields as $key => $field) { + foreach ($fields as $field) { if (! empty($field['Comment'])) { $comments[$field['Field']] = $field['Comment']; } diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php index d64e5f417a..1d99166389 100644 --- a/libraries/replication_gui.lib.php +++ b/libraries/replication_gui.lib.php @@ -204,7 +204,7 @@ function PMA_replication_print_slaves_table($hidden = false) { */ function PMA_replication_get_username_hostname_length() { - $fields_info = PMA_DBI_get_fields('mysql', 'user'); + $fields_info = PMA_DBI_get_columns('mysql', 'user'); $username_length = 16; $hostname_length = 41; foreach ($fields_info as $key => $val) { diff --git a/libraries/server_synchronize.lib.php b/libraries/server_synchronize.lib.php index ba6f813389..aca007fca7 100644 --- a/libraries/server_synchronize.lib.php +++ b/libraries/server_synchronize.lib.php @@ -68,7 +68,7 @@ function PMA_getNonMatchingTargetTables($trg_tables, $matching_tables, &$uncommo * If update is required, it is placed in $update_array * Otherwise that entry is placed in the $insert_array. * - * @uses PMA_DBI_get_fields() + * @uses PMA_DBI_get_columns() * @uses PMA_DBI_get_column_values() * @uses PMA_DBI_fetch_result() * @@ -95,7 +95,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching { if (isset($matching_table[$matching_table_index])) { $fld = array(); - $fld_results = PMA_DBI_get_fields($src_db, $matching_table[$matching_table_index], $src_link); + $fld_results = PMA_DBI_get_columns($src_db, $matching_table[$matching_table_index], true, $src_link); $is_key = array(); if (isset($fld_results)) { foreach ($fld_results as $each_field) { @@ -113,7 +113,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching $source_result_set = PMA_DBI_get_column_values($src_db, $matching_table[$matching_table_index], $is_key, $src_link); $source_size = sizeof($source_result_set); - $trg_fld_results = PMA_DBI_get_fields($trg_db, $matching_table[$matching_table_index], $trg_link); + $trg_fld_results = PMA_DBI_get_columns($trg_db, $matching_table[$matching_table_index], true, $trg_link); $all_keys_match = true; $trg_keys = array(); @@ -597,7 +597,7 @@ function PMA_insertIntoTargetTable($matching_table, $src_db, $trg_db, $src_link, /** * PMA_createTargetTables() Create the missing table $uncommon_table in target database * -* @uses PMA_DBI_get_fields() +* @uses PMA_DBI_get_columns() * @uses PMA_backquote() * @uses PMA_DBI_fetch_result() * @@ -613,7 +613,7 @@ function PMA_insertIntoTargetTable($matching_table, $src_db, $trg_db, $src_link, function PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link, &$uncommon_tables, $table_index, &$uncommon_tables_fields, $display) { if (isset($uncommon_tables[$table_index])) { - $fields_result = PMA_DBI_get_fields($src_db, $uncommon_tables[$table_index], $src_link); + $fields_result = PMA_DBI_get_columns($src_db, $uncommon_tables[$table_index], true, $src_link); $fields = array(); foreach ($fields_result as $each_field) { $field_name = $each_field['Field']; diff --git a/server_privileges.php b/server_privileges.php index e2a930ea3c..1407fdfea0 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -663,7 +663,7 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE) function PMA_displayLoginInformationFields($mode = 'new') { // Get user/host name lengths - $fields_info = PMA_DBI_get_fields('mysql', 'user'); + $fields_info = PMA_DBI_get_columns('mysql', 'user', true); $username_length = 16; $hostname_length = 41; foreach ($fields_info as $key => $val) { diff --git a/tbl_indexes.php b/tbl_indexes.php index 46e5e1ce78..5fcfee95b3 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -15,7 +15,7 @@ require_once './libraries/tbl_common.php'; // Get fields and stores their name/type $fields = array(); -foreach (PMA_DBI_get_fields($db, $table) as $row) { +foreach (PMA_DBI_get_columns($db, $table) as $row) { if (preg_match('@^(set|enum)\((.+)\)$@i', $row['Type'], $tmp)) { $tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'', ',' . $tmp[2]), 1); From f64de0a3ead27c07b99231097bc226f8de4f9048 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Fri, 20 May 2011 23:21:11 +0200 Subject: [PATCH 1518/1652] Remove deprecated function PMA_DBI_get_fields --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 2219ea470a..d2da49eb68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ + Update to jQuery 1.6.1 + Patch #3256122 [search] Show/hide db search results + Patch #3302354 Add gettext wrappers around a message ++ Remove deprecated function PMA_DBI_get_fields 3.4.2.0 (not yet released) - bug #3301249 [interface] Iconic table operations does not remove inline edit label From f5eaf8c7d87e2c793f26127da20d25becf959ad8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 22 May 2011 09:30:44 +0530 Subject: [PATCH 1519/1652] bug #3305606 [interface] Show all button wraps on privileges page --- ChangeLog | 1 + server_privileges.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1f945db6f8..5aede20fc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ - bug #3301249 [interface] Iconic table operations does not remove inline edit label - bug #3303869 [interface] Unnecessary scrolling on Databases page - patch #3303813 [setup] Define a label that was missing +- bug #3305606 [interface] Show all button wraps on privileges page 3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host diff --git a/server_privileges.php b/server_privileges.php index 11714c4cb3..7e60f09709 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -1159,7 +1159,7 @@ if (!empty($update_privs)) { $sql_query2 .= ';'; } if (! PMA_DBI_try_query($sql_query0)) { - // This might fail when the executing user does not have ALL PRIVILEGES himself. + // This might fail when the executing user does not have ALL PRIVILEGES himself. // See https://sourceforge.net/tracker/index.php?func=detail&aid=3285929&group_id=23067&atid=377408 $sql_query0 = ''; } @@ -1580,7 +1580,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs echo '' . $tmp_initial . ''; } } - echo '[' . __('Show all') . ']' . "\n"; + echo '[' . __('Show all') . ']' . "\n"; echo ''; } From ba51526222702d8df76b728f0d1720f1805082b0 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:37:40 +0200 Subject: [PATCH 1520/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index eb8345fbf9..5ec22e50fa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-18 13:54+0200\n" +"PO-Revision-Date: 2011-05-22 08:37+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -6570,7 +6570,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:373 msgid "Get more editing space" -msgstr "" +msgstr "Získať viac miesta pre úpravy" #: libraries/tbl_properties.inc.php:396 msgctxt "for default" From 4cb91e92c24d5e23d2b73b636c7a9b9b4323f613 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:39:23 +0200 Subject: [PATCH 1521/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5ec22e50fa..e107dbe405 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:37+0200\n" +"PO-Revision-Date: 2011-05-22 08:39+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4266,7 +4266,7 @@ msgstr "" #: libraries/config/messages.inc.php:495 msgid "Enable the Developer tab in settings" -msgstr "" +msgstr "Povoliť záložku Pre vývojára v nastaveniach" #: libraries/config/messages.inc.php:496 msgid "" From 07cdf59d649d274a5a13dd6f658e09ee9f2bfe3a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:40:00 +0200 Subject: [PATCH 1522/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e107dbe405..80de46562a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:39+0200\n" +"PO-Revision-Date: 2011-05-22 08:40+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6789,7 +6789,7 @@ msgstr "Overenie MySQL spojenia" #: main.php:119 msgid "Appearance Settings" -msgstr "" +msgstr "Nastavenia vzhľadu" #: main.php:146 prefs_manage.php:274 msgid "More settings" From 1e11a70f71af68c095c5bae1a91bea035b30ce4b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:40:45 +0200 Subject: [PATCH 1523/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 80de46562a..a26751f6fc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7152,7 +7152,7 @@ msgstr "Zmeny boli uložené" #: prefs_forms.php:78 msgid "Cannot save settings, submitted form contains errors" -msgstr "" +msgstr "Nepodarilo sa uložiť nastavenia, odoslaný formulár obsahuje chyby" #: prefs_manage.php:80 msgid "Could not import configuration" From a9cc7165b0cfe562d47660247e49b02eaba893db Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:41:17 +0200 Subject: [PATCH 1524/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a26751f6fc..794775de35 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:40+0200\n" +"PO-Revision-Date: 2011-05-22 08:41+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7164,7 +7164,7 @@ msgstr "" #: prefs_manage.php:128 msgid "Do you want to import remaining settings?" -msgstr "" +msgstr "Prajete si načítať zostávajúce nastavenia?" #: prefs_manage.php:225 prefs_manage.php:251 msgid "Saved on: @DATE@" From bfdc27058bb3ac7affa883f9d4fc548ce859564a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:41:49 +0200 Subject: [PATCH 1525/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 794775de35..fdd28d3700 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7184,7 +7184,7 @@ msgstr "" #: prefs_manage.php:254 msgid "You have no saved settings!" -msgstr "" +msgstr "Nemáte žiadne uložené nastavenia!" #: prefs_manage.php:258 prefs_manage.php:312 msgid "This feature is not supported by your web browser" From 325d65d8fe7be268cecbb81cfa4e0f8d23b89c00 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:42:42 +0200 Subject: [PATCH 1526/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index fdd28d3700..776400ff4f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:41+0200\n" +"PO-Revision-Date: 2011-05-22 08:42+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7212,7 +7212,7 @@ msgstr "" #: prefs_manage.php:308 msgid "Existing settings will be overwritten!" -msgstr "" +msgstr "Súčasné nastavenia budú prepísané!" #: prefs_manage.php:323 msgid "You can reset all your settings and restore them to default values." From 05450347f4fe4dbe3d20b0bce97428b899e0ee9b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:44:16 +0200 Subject: [PATCH 1527/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 776400ff4f..684289a8a4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:42+0200\n" +"PO-Revision-Date: 2011-05-22 08:44+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6838,9 +6838,8 @@ msgid "Contribute" msgstr "Prispejte" #: main.php:218 -#, fuzzy msgid "Get support" -msgstr "Exportovať" +msgstr "Získať podporu" #: main.php:219 msgid "List of changes" From 7aebe026446177813337d1238160c25949f99b3f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:54:56 +0200 Subject: [PATCH 1528/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 684289a8a4..105667b06c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:44+0200\n" +"PO-Revision-Date: 2011-05-22 08:54+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -641,7 +641,7 @@ msgstr "Celkom" #: db_structure.php:455 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s." +msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 #: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183 From f3c6c3f76d90f43fa9e2e8cba97157f77b2f2017 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:55:24 +0200 Subject: [PATCH 1529/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 105667b06c..d3eec772b0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:54+0200\n" +"PO-Revision-Date: 2011-05-22 08:55+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1631,7 +1631,7 @@ msgstr "Úložný systém %s je na tomto MySQL serveri dostupný." #: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." -msgstr "Úložný systém %s bol vypnutý na tomto MySQL servri." +msgstr "Úložný systém %s na tomto MySQL serveri bol vypnutý." #: libraries/StorageEngine.class.php:361 #, php-format From 6c3ee9e419e037e776be4c03ea2484634e70bb0f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:55:37 +0200 Subject: [PATCH 1530/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d3eec772b0..1f546380c8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6375,7 +6375,7 @@ msgstr "Cieľová databáza" #: libraries/sql_query_form.lib.php:224 #, php-format msgid "Run SQL query/queries on server %s" -msgstr "Spustiť SQL príkaz(y) na servri %s" +msgstr "Spustiť SQL príkaz(y) na serveri %s" #: libraries/sql_query_form.lib.php:241 libraries/sql_query_form.lib.php:265 #, php-format From d727a040e44f91ea0dbd2f881365117ca81101c9 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:56:16 +0200 Subject: [PATCH 1531/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 1f546380c8..b8bae2bff3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:55+0200\n" +"PO-Revision-Date: 2011-05-22 08:56+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6384,9 +6384,8 @@ msgstr "Spustiť SQL dopyt/dopyty na databázu %s" #: libraries/sql_query_form.lib.php:297 navigation.php:276 #: setup/frames/index.inc.php:231 -#, fuzzy msgid "Clear" -msgstr "Kalendár" +msgstr "Vyčistiť" #: libraries/sql_query_form.lib.php:302 msgid "Columns" From 4846f05f1f392aafbea3fbab4f5c048ec422bc72 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:58:33 +0200 Subject: [PATCH 1532/1652] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b8bae2bff3..8ac4584961 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:56+0200\n" +"PO-Revision-Date: 2011-05-22 08:58+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8678,8 +8678,8 @@ msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -"Traffic serveru: Tieto tabuľky zobrazujú štatistiky sieťového " -"trafficu na tomto MySQL serveri od jeho štartu." +"Premávka servera: Tieto tabuľky zobrazujú štatistiky sieťovej " +"premávky na tomto MySQL serveri od jeho štartu." #: server_status.php:514 msgid "Traffic" From 57f96c11635e0ef29e0858ec8a08a5ce1e7b779d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 08:59:03 +0200 Subject: [PATCH 1533/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8ac4584961..159d56617a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:58+0200\n" +"PO-Revision-Date: 2011-05-22 08:59+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8683,7 +8683,7 @@ msgstr "" #: server_status.php:514 msgid "Traffic" -msgstr "Prevádzka" +msgstr "Vyťaženie" #: server_status.php:514 msgid "" From 7a88287bafc64177e10e6e481dc57aebe7367b1e Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 09:00:19 +0200 Subject: [PATCH 1534/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 159d56617a..0085c652b8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 08:59+0200\n" +"PO-Revision-Date: 2011-05-22 09:00+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8678,7 +8678,7 @@ msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -"Premávka servera: Tieto tabuľky zobrazujú štatistiky sieťovej " +"Vyťaženie servera: Tieto tabuľky zobrazujú štatistiky sieťovej " "premávky na tomto MySQL serveri od jeho štartu." #: server_status.php:514 From ca62aa55b8ae674985e695454f13d6c653df84f7 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 09:01:10 +0200 Subject: [PATCH 1535/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0085c652b8..14ec622baf 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 09:00+0200\n" +"PO-Revision-Date: 2011-05-22 09:01+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1891,7 +1891,7 @@ msgstr "Skontrolovať oprávnenia" #: libraries/chart.lib.php:40 msgid "Query statistics" -msgstr "Štatistika dopytu" +msgstr "Štatistika dopytov" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" From 8d5e5c5d0beed6073c70ca3b827aa00060712faa Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 09:03:50 +0200 Subject: [PATCH 1536/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 14ec622baf..9de3085b35 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 09:01+0200\n" +"PO-Revision-Date: 2011-05-22 09:03+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8743,9 +8743,8 @@ msgid "Query type" msgstr "Typ dopytu" #: server_status.php:725 server_status.php:726 -#, fuzzy msgid "Show query chart" -msgstr "SQL dopyt" +msgstr "Zobraziť graf dopytov" #: server_status.php:727 msgid "Note: Generating the query chart can take a long time." From 8606177287d2040939d22a8a935a679ea356308f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 09:04:33 +0200 Subject: [PATCH 1537/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9de3085b35..400503c033 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 09:03+0200\n" +"PO-Revision-Date: 2011-05-22 09:04+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8748,7 +8748,7 @@ msgstr "Zobraziť graf dopytov" #: server_status.php:727 msgid "Note: Generating the query chart can take a long time." -msgstr "" +msgstr "Poznámka: Generovanie grafu dopytov môže trvať dlhý čas." #: server_status.php:872 msgid "Replication status" From 16305005c58e57b4f89150fe01b93f9071131601 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 22 May 2011 13:00:39 +0530 Subject: [PATCH 1538/1652] bug #3305517 [config] Config for export compression not used --- ChangeLog | 1 + libraries/display_export.lib.php | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5aede20fc2..3942083534 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,7 @@ - bug #3303869 [interface] Unnecessary scrolling on Databases page - patch #3303813 [setup] Define a label that was missing - bug #3305606 [interface] Show all button wraps on privileges page +- bug #3305517 [config] Config for export compression not used 3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index 10e8178d27..87c3a8e9f4 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -296,7 +296,9 @@ if(isset($_GET['sql_query'])) { ?> Date: Sun, 22 May 2011 22:01:47 +0530 Subject: [PATCH 1539/1652] bug #3305883 [interface] Table is dropped regardless of confirmation --- ChangeLog | 1 + js/sql.js | 7 ++++++- libraries/sql_query_form.lib.php | 3 +-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3942083534..02db3598fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ - patch #3303813 [setup] Define a label that was missing - bug #3305606 [interface] Show all button wraps on privileges page - bug #3305517 [config] Config for export compression not used +- bug #3305883 [interface] Table is dropped regardless of confirmation 3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host diff --git a/js/sql.js b/js/sql.js index 13fade0748..32a5bbaf1a 100644 --- a/js/sql.js +++ b/js/sql.js @@ -263,10 +263,15 @@ $(document).ready(function() { */ $("#sqlqueryform.ajax").live('submit', function(event) { event.preventDefault(); + + $form = $(this); + if (! checkSqlQuery($form[0])) { + return false; + } + // remove any div containing a previous error message $('.error').remove(); - $form = $(this); var $msgbox = PMA_ajaxShowMessage(); PMA_prepareForAjaxRequest($form); diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php index 9852e0aec8..25f67cdbb8 100644 --- a/libraries/sql_query_form.lib.php +++ b/libraries/sql_query_form.lib.php @@ -119,8 +119,7 @@ function PMA_sqlQueryForm($query = true, $display_tab = false, $delimiter = ';') if ($GLOBALS['cfg']['AjaxEnable']) { echo ' class="ajax"'; } - echo ' id="sqlqueryform"' - .' onsubmit="return checkSqlQuery(this)" name="sqlform">' . "\n"; + echo ' id="sqlqueryform" name="sqlform">' . "\n"; } if ($is_querywindow) { From 91f658f2f18befea59de33e7635a0e24f2e9431a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 19:55:41 +0200 Subject: [PATCH 1540/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 400503c033..acec1514fe 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 09:04+0200\n" +"PO-Revision-Date: 2011-05-22 19:55+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3859,6 +3859,8 @@ msgid "" "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 [a@http://wiki.phpmyadmin.net/pma/relation" +"]relation-links[/a] podpory, navrhované: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:404 msgid "Relation table" From 694179cd5af071d1779ea25ed673a8a6dc17d360 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 19:57:20 +0200 Subject: [PATCH 1541/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index acec1514fe..b5ea0ebfd3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 19:55+0200\n" +"PO-Revision-Date: 2011-05-22 19:57+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3979,6 +3979,8 @@ msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" +"Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov, " +"navrhované: [kbd]pma_tracking[/kbd]" #: libraries/config/messages.inc.php:427 msgid "SQL query tracking table" From 01bcd1d08abc182eaca48ddc532cdf0dd29378c7 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 19:58:36 +0200 Subject: [PATCH 1542/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b5ea0ebfd3..bead16041b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 19:57+0200\n" +"PO-Revision-Date: 2011-05-22 19:58+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4020,7 +4020,7 @@ msgstr "" #: libraries/config/messages.inc.php:435 msgid "Verbose check" -msgstr "" +msgstr "Podrobná kontrola" #: libraries/config/messages.inc.php:436 msgid "" From 7898fff63f74d3bfd29d277c247836b15ad25d05 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:01:06 +0200 Subject: [PATCH 1543/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index bead16041b..77f2bd965f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 19:58+0200\n" +"PO-Revision-Date: 2011-05-22 20:01+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4027,6 +4027,8 @@ msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" +"Užívateľsky prívetivý popis tohto servera. Ak necháte prízdne, zobrazí sa " +"namiesto popisu meno servera." #: libraries/config/messages.inc.php:437 msgid "Verbose name of this server" From 293fa1c9166ab83dd6dc3bd6806e1a09ba99ebbb Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:01:38 +0200 Subject: [PATCH 1544/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 77f2bd965f..b8d924fc3a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4032,7 +4032,7 @@ msgstr "" #: libraries/config/messages.inc.php:437 msgid "Verbose name of this server" -msgstr "" +msgstr "Dlhé meno tohto servera" #: libraries/config/messages.inc.php:438 msgid "Whether a user should be displayed a "show all (rows)" button" From 7e0c1155b13354794aef8a0c25decd6db366dbb1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:03:27 +0200 Subject: [PATCH 1545/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b8d924fc3a..2d099ac254 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:01+0200\n" +"PO-Revision-Date: 2011-05-22 20:03+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4037,6 +4037,8 @@ msgstr "Dlhé meno tohto servera" #: libraries/config/messages.inc.php:438 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" +"Či sa bude užívateľovi zobrazovať tlačidlo "zobraziť všetky " +"(riadky)"" #: libraries/config/messages.inc.php:439 msgid "Allow to display all the rows" From 1adda706ac75a5dbb659bfb8b284a4ce47ce9583 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:03:50 +0200 Subject: [PATCH 1546/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2d099ac254..ebed2e8a68 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4042,7 +4042,7 @@ msgstr "" #: libraries/config/messages.inc.php:439 msgid "Allow to display all the rows" -msgstr "" +msgstr "Povoliť zobraziť všetky riadky" #: libraries/config/messages.inc.php:440 msgid "" From e837ab44313942a4e372e1676417badd2829c446 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:04:14 +0200 Subject: [PATCH 1547/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ebed2e8a68..277bd3552f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:03+0200\n" +"PO-Revision-Date: 2011-05-22 20:04+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4053,7 +4053,7 @@ msgstr "" #: libraries/config/messages.inc.php:441 msgid "Show password change form" -msgstr "" +msgstr "Zobraziť formulár na zmenu hesla" #: libraries/config/messages.inc.php:442 msgid "Show create database form" From df37f5d3dcd7eab13f423dfa9ad158b952daa42b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:04:32 +0200 Subject: [PATCH 1548/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 277bd3552f..139aefd3e0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4057,7 +4057,7 @@ msgstr "Zobraziť formulár na zmenu hesla" #: libraries/config/messages.inc.php:442 msgid "Show create database form" -msgstr "" +msgstr "Zobraziť formulár na vytvorenie databázy" #: libraries/config/messages.inc.php:443 msgid "" From fb31a7aa26437039e49486b980cc5e6818b9ed44 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:05:27 +0200 Subject: [PATCH 1549/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 139aefd3e0..fa736bf9ec 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:04+0200\n" +"PO-Revision-Date: 2011-05-22 20:05+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4071,7 +4071,7 @@ msgstr "Zobraziť typy polí" #: libraries/config/messages.inc.php:445 msgid "Display the function fields in edit/insert mode" -msgstr "" +msgstr "Zobraziť zoznam funkcií v móde úprav" #: libraries/config/messages.inc.php:446 msgid "Show function fields" From fac2dc5490b6f83c531c20ac3adb728fe23b0386 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:05:50 +0200 Subject: [PATCH 1550/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fa736bf9ec..fa8b0817d3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4075,7 +4075,7 @@ msgstr "Zobraziť zoznam funkcií v móde úprav" #: libraries/config/messages.inc.php:446 msgid "Show function fields" -msgstr "" +msgstr "Zobraziť zoznam funkcií" #: libraries/config/messages.inc.php:447 msgid "" From 1e24c60b91dd79e471d7c43c8fa363aa5fc7299e Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:06:39 +0200 Subject: [PATCH 1551/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fa8b0817d3..249096404e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:05+0200\n" +"PO-Revision-Date: 2011-05-22 20:06+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4082,6 +4082,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" #: libraries/config/messages.inc.php:448 msgid "Show phpinfo() link" From a1a89b5d8d11a883d5dd9aabe545bc2b22c1982b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:07:09 +0200 Subject: [PATCH 1552/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 249096404e..7f70ba3881 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:06+0200\n" +"PO-Revision-Date: 2011-05-22 20:07+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4087,7 +4087,7 @@ msgstr "" #: libraries/config/messages.inc.php:448 msgid "Show phpinfo() link" -msgstr "" +msgstr "Zobraziť odkaz na phpinfo()" #: libraries/config/messages.inc.php:449 msgid "Show detailed MySQL server information" From 814bfe3549865b6d779902e1a8c17975ff135e41 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:07:31 +0200 Subject: [PATCH 1553/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7f70ba3881..34f6ad41e5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4091,7 +4091,7 @@ msgstr "Zobraziť odkaz na phpinfo()" #: libraries/config/messages.inc.php:449 msgid "Show detailed MySQL server information" -msgstr "" +msgstr "Zobraziť podrobné informácie o MySQL serveri" #: libraries/config/messages.inc.php:450 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" From 15be3999e7883c6f7415af04832d51298b407617 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:07:54 +0200 Subject: [PATCH 1554/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 34f6ad41e5..d45f49509b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4098,9 +4098,8 @@ msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" #: libraries/config/messages.inc.php:451 -#, fuzzy msgid "Show SQL queries" -msgstr "Zobraziť kompletné dopyty" +msgstr "Zobraziť SQL dopyty" #: libraries/config/messages.inc.php:452 msgid "Allow to display database and table statistics (eg. space usage)" From 76642eb191cda2299d850b3d0912dbb59edbd4b3 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:09:21 +0200 Subject: [PATCH 1555/1652] Translation update done using Pootle. --- po/sk.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d45f49509b..7e0443525d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:07+0200\n" +"PO-Revision-Date: 2011-05-22 20:09+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4104,6 +4104,7 @@ msgstr "Zobraziť SQL dopyty" #: libraries/config/messages.inc.php:452 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" +"Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)" #: libraries/config/messages.inc.php:453 #, fuzzy From d59f9c46dfbce26421a3c5381d1da745e7fa77c6 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:09:55 +0200 Subject: [PATCH 1556/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7e0443525d..ffcc770c57 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4107,9 +4107,8 @@ msgstr "" "Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)" #: libraries/config/messages.inc.php:453 -#, fuzzy msgid "Show statistics" -msgstr "Štatistika riadku" +msgstr "Zobraziť štatistiky" #: libraries/config/messages.inc.php:454 msgid "" From 836370dc20f4dc6664a747007a4364631ba6c1fd Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:11:08 +0200 Subject: [PATCH 1557/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ffcc770c57..1c102715a8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:09+0200\n" +"PO-Revision-Date: 2011-05-22 20:11+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4118,7 +4118,7 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "Display database comment instead of its name" -msgstr "" +msgstr "Zobraziť komentár k databáze namiesto mena" #: libraries/config/messages.inc.php:456 msgid "" From 6471e199707ac6e01764f71a191f2a561ff66123 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:11:34 +0200 Subject: [PATCH 1558/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1c102715a8..052973176f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4130,7 +4130,7 @@ msgstr "" #: libraries/config/messages.inc.php:457 msgid "Display table comment instead of its name" -msgstr "" +msgstr "Zobraziť komentár k tabuľke namiesto mena" #: libraries/config/messages.inc.php:458 msgid "Display table comments in tooltips" From 77a6618c517139f62bb9965d58a314f8e489429b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:12:33 +0200 Subject: [PATCH 1559/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 052973176f..fba01b0804 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:11+0200\n" +"PO-Revision-Date: 2011-05-22 20:12+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4142,9 +4142,8 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:460 -#, fuzzy msgid "Skip locked tables" -msgstr "Zobraziť otvorené tabuľky" +msgstr "Preskočiť zamknuté tabuľky" #: libraries/config/messages.inc.php:465 msgid "Requires SQL Validator to be enabled" From 1b0f4a680a7665c7c6f26cbf081ba31d24e097c2 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:14:34 +0200 Subject: [PATCH 1560/1652] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fba01b0804..42a80674ed 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:12+0200\n" +"PO-Revision-Date: 2011-05-22 20:14+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4164,6 +4164,8 @@ msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" +"[strong]Varovanie:[/strong] vyžaduje nainštalované rozšírenia PHP SOAP alebo " +"PEAR SOAP" #: libraries/config/messages.inc.php:469 msgid "Enable SQL Validator" From 90b76c465373144d1451ce4ea30507ec83934ae8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:14:48 +0200 Subject: [PATCH 1561/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 42a80674ed..e856762af8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4169,7 +4169,7 @@ msgstr "" #: libraries/config/messages.inc.php:469 msgid "Enable SQL Validator" -msgstr "" +msgstr "Povoliť kontrolovanie SQL" #: libraries/config/messages.inc.php:470 msgid "" From 387eaf26583fe0499cae22e86d2526499d170884 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:15:49 +0200 Subject: [PATCH 1562/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e856762af8..07d34d0c47 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:14+0200\n" +"PO-Revision-Date: 2011-05-22 20:15+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4190,7 +4190,7 @@ msgstr "" #: libraries/config/messages.inc.php:473 msgid "Suggest new database name" -msgstr "" +msgstr "Navrhnúť meno novej databázy" #: libraries/config/messages.inc.php:474 msgid "A warning is displayed on the main page if Suhosin is detected" From 69e263e24373c1d48370a47954b89a4e4df18fc5 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:16:51 +0200 Subject: [PATCH 1563/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 07d34d0c47..05087befa7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:15+0200\n" +"PO-Revision-Date: 2011-05-22 20:16+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4198,7 +4198,7 @@ msgstr "" #: libraries/config/messages.inc.php:475 msgid "Suhosin warning" -msgstr "" +msgstr "Varovanie Suhosin rozšírenia" #: libraries/config/messages.inc.php:476 msgid "" From 30d050cd5125b4a856d3fd6ab222157bdcc1125a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:17:31 +0200 Subject: [PATCH 1564/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 05087befa7..502bc96d12 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:16+0200\n" +"PO-Revision-Date: 2011-05-22 20:17+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4218,7 +4218,7 @@ msgstr "" #: libraries/config/messages.inc.php:479 msgid "Textarea rows" -msgstr "" +msgstr "Riadkov v textovej oblasti" #: libraries/config/messages.inc.php:480 msgid "Title of browser window when a database is selected" From 84817e4c0641dd9386fe7d9c3163fe80fdca8d75 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:18:02 +0200 Subject: [PATCH 1565/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 502bc96d12..ae6a7921bd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:17+0200\n" +"PO-Revision-Date: 2011-05-22 20:18+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4222,7 +4222,7 @@ msgstr "Riadkov v textovej oblasti" #: libraries/config/messages.inc.php:480 msgid "Title of browser window when a database is selected" -msgstr "" +msgstr "Popis okna prehliadača pri výbere databázy" #: libraries/config/messages.inc.php:482 msgid "Title of browser window when nothing is selected" From 8deff43c9436e06550de63efd62a8cfa4f1d2915 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:18:34 +0200 Subject: [PATCH 1566/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ae6a7921bd..5fa552b253 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4226,7 +4226,7 @@ msgstr "Popis okna prehliadača pri výbere databázy" #: libraries/config/messages.inc.php:482 msgid "Title of browser window when nothing is selected" -msgstr "" +msgstr "Popis okna prehliadača keď nie je nič vybrané" #: libraries/config/messages.inc.php:483 msgid "Default title" From 48bb25e66bea212ca87383cd8631890821fe7695 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:18:55 +0200 Subject: [PATCH 1567/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 5fa552b253..3171a065a5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4234,7 +4234,7 @@ msgstr "Východzí popis" #: libraries/config/messages.inc.php:484 msgid "Title of browser window when a server is selected" -msgstr "" +msgstr "Popis okna prehliadača keď je vybraný server" #: libraries/config/messages.inc.php:486 msgid "Title of browser window when a table is selected" From 2c5a515ad6be2a21a7500ba4c00cc87ae7ee9885 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:19:18 +0200 Subject: [PATCH 1568/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3171a065a5..8c3c5dde9a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:18+0200\n" +"PO-Revision-Date: 2011-05-22 20:19+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4238,7 +4238,7 @@ msgstr "Popis okna prehliadača keď je vybraný server" #: libraries/config/messages.inc.php:486 msgid "Title of browser window when a table is selected" -msgstr "" +msgstr "Popis okna prehliadača keď je vybraná tabuľka" #: libraries/config/messages.inc.php:488 msgid "" From 651c3e562a421985206217c640855fcd4c1410a8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:20:23 +0200 Subject: [PATCH 1569/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8c3c5dde9a..a59e643497 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:19+0200\n" +"PO-Revision-Date: 2011-05-22 20:20+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4254,7 +4254,7 @@ msgstr "" #: libraries/config/messages.inc.php:490 msgid "Directory on server where you can upload files for import" -msgstr "" +msgstr "Adresár na serveri, kde môžete nahrať súbor pre import" #: libraries/config/messages.inc.php:491 msgid "Upload directory" From d4b262fa70eb4921495c12f7998a95a5834032df Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:20:34 +0200 Subject: [PATCH 1570/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a59e643497..0ba0af09a7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4258,7 +4258,7 @@ msgstr "Adresár na serveri, kde môžete nahrať súbor pre import" #: libraries/config/messages.inc.php:491 msgid "Upload directory" -msgstr "" +msgstr "Adresár pre nahrávanie" #: libraries/config/messages.inc.php:492 msgid "Allow for searching inside the entire database" From 99fe3292e972e820c06eb220ef5c9e9cf8ba3eff Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:20:55 +0200 Subject: [PATCH 1571/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 0ba0af09a7..978e271285 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4262,7 +4262,7 @@ msgstr "Adresár pre nahrávanie" #: libraries/config/messages.inc.php:492 msgid "Allow for searching inside the entire database" -msgstr "" +msgstr "Povoliť prehľadávať celú databázu" #: libraries/config/messages.inc.php:493 msgid "Use database search" From 21f6e699a0b266abc06ae8e247282083a0e8f356 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:21:56 +0200 Subject: [PATCH 1572/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 978e271285..4e0ce1169c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:20+0200\n" +"PO-Revision-Date: 2011-05-22 20:21+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4266,7 +4266,7 @@ msgstr "Povoliť prehľadávať celú databázu" #: libraries/config/messages.inc.php:493 msgid "Use database search" -msgstr "" +msgstr "Použiť databázové vyhľadávanie" #: libraries/config/messages.inc.php:494 msgid "" From 0658795aa0976273b075fdc3312af0e41d8ca05f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:23:22 +0200 Subject: [PATCH 1573/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4e0ce1169c..e599e4538e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:21+0200\n" +"PO-Revision-Date: 2011-05-22 20:23+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4291,7 +4291,7 @@ msgstr "" #: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241 msgid "Check for latest version" -msgstr "" +msgstr "Skontrolovať najnovšiu verziu" #: libraries/config/messages.inc.php:499 msgid "Enables check for latest version on main phpMyAdmin page" From 165f6d88e6de92f63495ad1a7eb73215454b49ce Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:23:57 +0200 Subject: [PATCH 1574/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index e599e4538e..bcc57ae31a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4295,7 +4295,7 @@ msgstr "Skontrolovať najnovšiu verziu" #: libraries/config/messages.inc.php:499 msgid "Enables check for latest version on main phpMyAdmin page" -msgstr "" +msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" #: libraries/config/messages.inc.php:500 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 From 965425b326691ff245cf4534ab8b71a1a8f07dd4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:24:21 +0200 Subject: [PATCH 1575/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bcc57ae31a..4dd715d2b5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:23+0200\n" +"PO-Revision-Date: 2011-05-22 20:24+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4303,7 +4303,7 @@ msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 #: setup/lib/index.lib.php:200 msgid "Version check" -msgstr "" +msgstr "Kontrola verzie" #: libraries/config/messages.inc.php:501 msgid "" From 4e23a4b33f8d56dc7e2af41c498eff150e9f13c0 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:25:04 +0200 Subject: [PATCH 1576/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4dd715d2b5..a5c5a864d9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:24+0200\n" +"PO-Revision-Date: 2011-05-22 20:25+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4341,7 +4341,7 @@ msgstr "CSV pomocou LOAD DATA" #: libraries/config/user_preferences.forms.php:245 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" -msgstr "" +msgstr "Excel 97-2003 XLS pracovný zošit" #: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:155 From 0d54a65512ac49433103e4b6763729cbf094e937 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:25:28 +0200 Subject: [PATCH 1577/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a5c5a864d9..9d68f2aee0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4348,7 +4348,7 @@ msgstr "Excel 97-2003 XLS pracovný zošit" #: libraries/config/user_preferences.forms.php:249 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" -msgstr "" +msgstr "Excel 2007 XLSX pracovný zošit" #: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:158 From 5e4c1d0fa2c939735d583d74d08b1d34c14f71da Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:26:01 +0200 Subject: [PATCH 1578/1652] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9d68f2aee0..98f6b872a8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:25+0200\n" +"PO-Revision-Date: 2011-05-22 20:26+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4390,9 +4390,8 @@ msgid "Open Document Text" msgstr "Open Document Text" #: libraries/config/validate.lib.php:202 libraries/config/validate.lib.php:209 -#, fuzzy msgid "Could not connect to MySQL server" -msgstr "Nepodarilo sa pripojiť k zdroju" +msgstr "Nepodarilo sa pripojiť k MySQL serveru" #: libraries/config/validate.lib.php:234 msgid "Empty username while using config authentication method" From c32f8efc177599879876f27a85385a2ed29280d4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:27:05 +0200 Subject: [PATCH 1579/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 98f6b872a8..9462200c85 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:26+0200\n" +"PO-Revision-Date: 2011-05-22 20:27+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4416,7 +4416,7 @@ msgstr "" #: libraries/config/validate.lib.php:367 #, php-format msgid "Incorrect IP address: %s" -msgstr "" +msgstr "Nesprávna IP adresa: %s" #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 From 4072219f1e50b5e6252d4bd1d209f9520999c8e4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:27:45 +0200 Subject: [PATCH 1580/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 9462200c85..af1402331f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4448,7 +4448,7 @@ msgstr "Databáza vyzerá prázdna!" #: libraries/db_links.inc.php:66 libraries/relation.lib.php:143 #: libraries/tbl_links.inc.php:90 msgid "Tracking" -msgstr "" +msgstr "Sledovanie" #: libraries/db_links.inc.php:71 msgid "Query" From e61df1134372c8959be7aa6b736384bd159c0b51 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:28:08 +0200 Subject: [PATCH 1581/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index af1402331f..d20cc1dc71 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:27+0200\n" +"PO-Revision-Date: 2011-05-22 20:28+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4470,7 +4470,7 @@ msgstr "" #: libraries/db_routines.inc.php:37 msgid "Return type" -msgstr "" +msgstr "Návratový typ" #: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923 msgid "" From c9174049b18adb420a55ec34ee5b5674316c8ce1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:28:25 +0200 Subject: [PATCH 1582/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index d20cc1dc71..b8ee98d47e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4495,7 +4495,7 @@ msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)" #: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703 msgid "Details..." -msgstr "" +msgstr "Podrobnosti..." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 From a95fe95dc246616319e52b6de68897d4e0ad670e Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:28:35 +0200 Subject: [PATCH 1583/1652] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b8ee98d47e..c8be58cd23 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4523,10 +4523,9 @@ msgstr "Kompatibilné s MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Vytvoriť novú databázu" +msgstr "Vytvoriť databázu" #: libraries/display_create_database.lib.php:33 msgid "Create" From f74b49611a46415f0838af35d5aa035d8ae7bcd5 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:29:04 +0200 Subject: [PATCH 1584/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index c8be58cd23..82e378de15 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:28+0200\n" +"PO-Revision-Date: 2011-05-22 20:29+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4598,7 +4598,7 @@ msgstr "Počet riadkov:" #: libraries/display_export.lib.php:162 msgid "Row to begin at:" -msgstr "" +msgstr "Začať od riadku:" #: libraries/display_export.lib.php:173 msgid "Dump all rows" From b8deb3c7b93cb2951a8ff0267456b0ce23615a20 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:29:32 +0200 Subject: [PATCH 1585/1652] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 82e378de15..3a564fffa6 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4606,7 +4606,7 @@ msgstr "" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" -msgstr "" +msgstr "Výstup:" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 #, php-format From ededdf64076367b0efc3f9d68963e9722c475e1e Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:30:48 +0200 Subject: [PATCH 1586/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3a564fffa6..2d0bce3f86 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:29+0200\n" +"PO-Revision-Date: 2011-05-22 20:30+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4647,7 +4647,7 @@ msgstr "" #: libraries/display_export.lib.php:275 msgid "use this for future exports" -msgstr "" +msgstr "použiť aj pre budúce exporty" #: libraries/display_export.lib.php:281 libraries/display_import.lib.php:188 #: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:517 From bacc729edaa16f87e952c60cd164bb62cd2b0044 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:32:23 +0200 Subject: [PATCH 1587/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 2d0bce3f86..20d1d1b042 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:30+0200\n" +"PO-Revision-Date: 2011-05-22 20:32+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4711,7 +4711,7 @@ msgstr "" #: libraries/display_import.lib.php:76 msgid "The file is being processed, please be patient." -msgstr "" +msgstr "Súbor sa spracováva, buďte prosím trpezliví." #: libraries/display_import.lib.php:98 msgid "" From 6b1dd6caf623085a09b8354feff54aa02f271390 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Sun, 22 May 2011 20:33:25 +0200 Subject: [PATCH 1588/1652] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 20d1d1b042..68daedbffa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-22 20:32+0200\n" +"PO-Revision-Date: 2011-05-22 20:33+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4740,7 +4740,7 @@ msgstr "Súbor na importovanie:" #: libraries/display_import.lib.php:156 #, php-format msgid "File may be compressed (%s) or uncompressed." -msgstr "" +msgstr "Súbor môže byť komprimovaný (%s) alebo nekomprimovaný." #: libraries/display_import.lib.php:158 msgid "" From adc6de06850e57cdb0118f9ca6f3d90f4bba47a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 23 May 2011 10:33:14 +0200 Subject: [PATCH 1589/1652] [auth] Fixed error handling for signon auth method. The message is now stored in caller session data and properly displayed in example script. --- ChangeLog | 1 + libraries/auth/signon.auth.lib.php | 41 +++++++++++++++++++++--------- scripts/signon.php | 15 ++++++----- 3 files changed, 38 insertions(+), 19 deletions(-) diff --git a/ChangeLog b/ChangeLog index 02db3598fa..0bed539eee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ - bug #3305606 [interface] Show all button wraps on privileges page - bug #3305517 [config] Config for export compression not used - bug #3305883 [interface] Table is dropped regardless of confirmation +- [auth] Fixed error handling for signon auth method. 3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host diff --git a/libraries/auth/signon.auth.lib.php b/libraries/auth/signon.auth.lib.php index 3e0d64bce6..0735020f4a 100644 --- a/libraries/auth/signon.auth.lib.php +++ b/libraries/auth/signon.auth.lib.php @@ -202,18 +202,35 @@ function PMA_auth_set_user() */ function PMA_auth_fails() { - if (! empty($GLOBALS['login_without_password_is_forbidden'])) { - $_SESSION['PMA_single_signon_error_message'] = __('Login without a password is forbidden by configuration (see AllowNoPassword)'); - } elseif (! empty($GLOBALS['allowDeny_forbidden'])) { - $_SESSION['PMA_single_signon_error_message'] = __('Access denied'); - } elseif (! empty($GLOBALS['no_activity'])) { - $_SESSION['PMA_single_signon_error_message'] = sprintf(__('No activity within %s seconds; please log in again'), $GLOBALS['cfg']['LoginCookieValidity']); - } elseif (PMA_DBI_getError()) { - $_SESSION['PMA_single_signon_error_message'] = PMA_sanitize(PMA_DBI_getError()); - } elseif (isset($php_errormsg)) { - $_SESSION['PMA_single_signon_error_message'] = $php_errormsg; - } else { - $_SESSION['PMA_single_signon_error_message'] = __('Cannot log in to the MySQL server'); + /* Session name */ + $session_name = $GLOBALS['cfg']['Server']['SignonSession']; + + /* Does session exist? */ + if (isset($_COOKIE[$session_name])) { + /* End current session */ + $old_session = session_name(); + $old_id = session_id(); + session_write_close(); + + /* Load single signon session */ + session_name($session_name); + session_id($_COOKIE[$session_name]); + session_start(); + + /* Set error message */ + if (! empty($GLOBALS['login_without_password_is_forbidden'])) { + $_SESSION['PMA_single_signon_error_message'] = __('Login without a password is forbidden by configuration (see AllowNoPassword)'); + } elseif (! empty($GLOBALS['allowDeny_forbidden'])) { + $_SESSION['PMA_single_signon_error_message'] = __('Access denied'); + } elseif (! empty($GLOBALS['no_activity'])) { + $_SESSION['PMA_single_signon_error_message'] = sprintf(__('No activity within %s seconds; please log in again'), $GLOBALS['cfg']['LoginCookieValidity']); + } elseif (PMA_DBI_getError()) { + $_SESSION['PMA_single_signon_error_message'] = PMA_sanitize(PMA_DBI_getError()); + } elseif (isset($php_errormsg)) { + $_SESSION['PMA_single_signon_error_message'] = $php_errormsg; + } else { + $_SESSION['PMA_single_signon_error_message'] = __('Cannot log in to the MySQL server'); + } } PMA_auth(); } // end of the 'PMA_auth_fails()' function diff --git a/scripts/signon.php b/scripts/signon.php index acb5f7d07a..e585625db9 100644 --- a/scripts/signon.php +++ b/scripts/signon.php @@ -11,14 +11,15 @@ * @subpackage Example */ +/* Need to have cookie visible from parent directory */ +session_set_cookie_params(0, '/', '', 0); +/* Create signon session */ +$session_name = 'SignonSession'; +session_name($session_name); +session_start(); + /* Was data posted? */ if (isset($_POST['user'])) { - /* Need to have cookie visible from parent directory */ - session_set_cookie_params(0, '/', '', 0); - /* Create signon session */ - $session_name = 'SignonSession'; - session_name($session_name); - session_start(); /* Store there credentials */ $_SESSION['PMA_single_signon_user'] = $_POST['user']; $_SESSION['PMA_single_signon_password'] = $_POST['password']; @@ -47,7 +48,7 @@ if (isset($_POST['user'])) { ' . $_SESSION['PMA_single_signon_message'] . '

'; + echo '

' . $_SESSION['PMA_single_signon_error_message'] . '

'; } ?> From 548b62e93f2281805aff12f286e4df011c8791c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 23 May 2011 10:40:26 +0200 Subject: [PATCH 1590/1652] Update po files --- po/af.po | 2 +- po/ar.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/be@latin.po | 2 +- po/bg.po | 2 +- po/bn.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/en_GB.po | 2 +- po/es.po | 2 +- po/et.po | 2 +- po/eu.po | 2 +- po/fa.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/gl.po | 2 +- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/id.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/ka.po | 2 +- po/ko.po | 2 +- po/lt.po | 2 +- po/lv.po | 2 +- po/mk.po | 2 +- po/ml.po | 2 +- po/mn.po | 2 +- po/ms.po | 2 +- po/nb.po | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/si.po | 2 +- po/sk.po | 105 +++++++++++++++++++++++++++---------------------- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/sv.po | 2 +- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tr.po | 2 +- po/tt.po | 2 +- po/ug.po | 2 +- po/uk.po | 2 +- po/ur.po | 2 +- po/uz.po | 2 +- po/uz@latin.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 63 files changed, 121 insertions(+), 108 deletions(-) diff --git a/po/af.po b/po/af.po index 4bcb300db0..b4ec79fcc6 100644 --- a/po/af.po +++ b/po/af.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" diff --git a/po/ar.po b/po/ar.po index b716a17d00..93ff613596 100644 --- a/po/ar.po +++ b/po/ar.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" diff --git a/po/az.po b/po/az.po index a22e342dd9..f31bff5c9b 100644 --- a/po/az.po +++ b/po/az.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" diff --git a/po/be.po b/po/be.po index 0557710c7e..9cb450266a 100644 --- a/po/be.po +++ b/po/be.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" diff --git a/po/be@latin.po b/po/be@latin.po index c096453222..481987dceb 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" diff --git a/po/bg.po b/po/bg.po index 778ce572f9..23eb015d0c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-22 12:51+0200\n" diff --git a/po/bn.po b/po/bn.po index c6d2efdbd7..3510ea61c3 100644 --- a/po/bn.po +++ b/po/bn.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" diff --git a/po/bs.po b/po/bs.po index aab0ca64f2..6b62306810 100644 --- a/po/bs.po +++ b/po/bs.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" diff --git a/po/ca.po b/po/ca.po index 9e52bee4d0..b7bfacb46a 100644 --- a/po/ca.po +++ b/po/ca.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" diff --git a/po/cs.po b/po/cs.po index 743d5b0687..db571309c8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" diff --git a/po/cy.po b/po/cy.po index b81a06e00b..f88d081803 100644 --- a/po/cy.po +++ b/po/cy.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" diff --git a/po/da.po b/po/da.po index fcf770b957..50db740ae0 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" diff --git a/po/de.po b/po/de.po index 7e13d59813..1c37fb6930 100644 --- a/po/de.po +++ b/po/de.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" diff --git a/po/el.po b/po/el.po index 27e1be0dd7..b9aca15d9f 100644 --- a/po/el.po +++ b/po/el.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-05 11:15+0200\n" diff --git a/po/en_GB.po b/po/en_GB.po index 5a206eb908..c2ab85dcfa 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 16:24+0200\n" diff --git a/po/es.po b/po/es.po index 551dc8af75..eec3207428 100644 --- a/po/es.po +++ b/po/es.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-02 11:10+0200\n" diff --git a/po/et.po b/po/et.po index 6fcd3e4752..6cff2d4941 100644 --- a/po/et.po +++ b/po/et.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" diff --git a/po/eu.po b/po/eu.po index c0f76b086f..5b03610e81 100644 --- a/po/eu.po +++ b/po/eu.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" diff --git a/po/fa.po b/po/fa.po index 97d7832a2c..04e72de029 100644 --- a/po/fa.po +++ b/po/fa.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" diff --git a/po/fi.po b/po/fi.po index 5a3c3402bc..a502ff3461 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" diff --git a/po/fr.po b/po/fr.po index 13eff6603f..b9867fa69f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 19:23+0200\n" diff --git a/po/gl.po b/po/gl.po index 29f2fc4d11..052e87475a 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" diff --git a/po/he.po b/po/he.po index e066b521f9..cac00dac64 100644 --- a/po/he.po +++ b/po/he.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" diff --git a/po/hi.po b/po/hi.po index 411212ace5..962682c67e 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-24 00:23+0200\n" diff --git a/po/hr.po b/po/hr.po index 06bf7d6c08..1ac83fd53a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" diff --git a/po/hu.po b/po/hu.po index 37e66b8fce..87c30620b1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-05-05 12:49+0200\n" diff --git a/po/id.po b/po/id.po index 18ddb7e8ca..aa339d0c9b 100644 --- a/po/id.po +++ b/po/id.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" diff --git a/po/it.po b/po/it.po index 2d60785e72..add88e8f39 100644 --- a/po/it.po +++ b/po/it.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-05 14:27+0200\n" diff --git a/po/ja.po b/po/ja.po index bcfe71c274..29a38b6644 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-05-05 11:38+0200\n" diff --git a/po/ka.po b/po/ka.po index 9941a82c73..afa9aae62c 100644 --- a/po/ka.po +++ b/po/ka.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" diff --git a/po/ko.po b/po/ko.po index fc019e19c5..687b3fb4f9 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" diff --git a/po/lt.po b/po/lt.po index 78d59d0962..43efc2d646 100644 --- a/po/lt.po +++ b/po/lt.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" diff --git a/po/lv.po b/po/lv.po index e74f550f50..52399511d9 100644 --- a/po/lv.po +++ b/po/lv.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" diff --git a/po/mk.po b/po/mk.po index 993a9b9005..4311a5d4f3 100644 --- a/po/mk.po +++ b/po/mk.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" diff --git a/po/ml.po b/po/ml.po index e14f263556..e1a2fbe8ae 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the phpMyAdmin package. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" diff --git a/po/mn.po b/po/mn.po index c028ea191a..cf9d7d3ce4 100644 --- a/po/mn.po +++ b/po/mn.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" diff --git a/po/ms.po b/po/ms.po index 02b9ad06f1..8707dc2149 100644 --- a/po/ms.po +++ b/po/ms.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" diff --git a/po/nb.po b/po/nb.po index a9414f1985..f823b52159 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" diff --git a/po/nl.po b/po/nl.po index 1c0ffa7f84..b7e1b7eaa5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-16 20:18+0200\n" diff --git a/po/pl.po b/po/pl.po index 5b51d66a9f..e271d2a437 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" diff --git a/po/pt.po b/po/pt.po index 28e2acaa16..535452f6e3 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 14ddc75735..e93ba1daa7 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-14 17:44+0200\n" diff --git a/po/ro.po b/po/ro.po index f3e0f027bf..dade929af6 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" diff --git a/po/ru.po b/po/ru.po index 5385fdbf3a..3ccba4b52d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-13 21:17+0200\n" diff --git a/po/si.po b/po/si.po index b784534888..c95b51e8ac 100644 --- a/po/si.po +++ b/po/si.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-05-04 14:56+0200\n" diff --git a/po/sk.po b/po/sk.po index 2b0fce3c34..abb5b01c7c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" @@ -4016,6 +4016,8 @@ msgid "" "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 [a@http://wiki.phpmyadmin.net/pma/relation]" +"relation-links[/a] podpory, navrhované: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:404 #, fuzzy @@ -4140,6 +4142,8 @@ msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" +"Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov, " +"navrhované: [kbd]pma_tracking[/kbd]" #: libraries/config/messages.inc.php:427 msgid "SQL query tracking table" @@ -4180,25 +4184,29 @@ msgstr "" #: libraries/config/messages.inc.php:435 msgid "Verbose check" -msgstr "" +msgstr "Podrobná kontrola" #: libraries/config/messages.inc.php:436 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" +"Užívateľsky prívetivý popis tohto servera. Ak necháte prízdne, zobrazí sa " +"namiesto popisu meno servera." #: libraries/config/messages.inc.php:437 msgid "Verbose name of this server" -msgstr "" +msgstr "Dlhé meno tohto servera" #: libraries/config/messages.inc.php:438 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" +"Či sa bude užívateľovi zobrazovať tlačidlo "zobraziť všetky (riadky)" +""" #: libraries/config/messages.inc.php:439 msgid "Allow to display all the rows" -msgstr "" +msgstr "Povoliť zobraziť všetky riadky" #: libraries/config/messages.inc.php:440 msgid "" @@ -4209,11 +4217,11 @@ msgstr "" #: libraries/config/messages.inc.php:441 msgid "Show password change form" -msgstr "" +msgstr "Zobraziť formulár na zmenu hesla" #: libraries/config/messages.inc.php:442 msgid "Show create database form" -msgstr "" +msgstr "Zobraziť formulár na vytvorenie databázy" #: libraries/config/messages.inc.php:443 msgid "" @@ -4229,25 +4237,27 @@ msgstr "Zobraziť otvorené tabuľky" #: libraries/config/messages.inc.php:445 msgid "Display the function fields in edit/insert mode" -msgstr "" +msgstr "Zobraziť zoznam funkcií v móde úprav" #: libraries/config/messages.inc.php:446 msgid "Show function fields" -msgstr "" +msgstr "Zobraziť zoznam funkcií" #: libraries/config/messages.inc.php:447 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" #: libraries/config/messages.inc.php:448 msgid "Show phpinfo() link" -msgstr "" +msgstr "Zobraziť odkaz na phpinfo()" #: libraries/config/messages.inc.php:449 msgid "Show detailed MySQL server information" -msgstr "" +msgstr "Zobraziť podrobné informácie o MySQL serveri" #: libraries/config/messages.inc.php:450 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -4261,6 +4271,7 @@ msgstr "Zobraziť kompletné dopyty" #: libraries/config/messages.inc.php:452 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" +"Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)" #: libraries/config/messages.inc.php:453 #, fuzzy @@ -4275,7 +4286,7 @@ msgstr "" #: libraries/config/messages.inc.php:455 msgid "Display database comment instead of its name" -msgstr "" +msgstr "Zobraziť komentár k databáze namiesto mena" #: libraries/config/messages.inc.php:456 msgid "" @@ -4287,7 +4298,7 @@ msgstr "" #: libraries/config/messages.inc.php:457 msgid "Display table comment instead of its name" -msgstr "" +msgstr "Zobraziť komentár k tabuľke namiesto mena" #: libraries/config/messages.inc.php:458 msgid "Display table comments in tooltips" @@ -4322,10 +4333,12 @@ msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" +"[strong]Varovanie:[/strong] vyžaduje nainštalované rozšírenia PHP SOAP alebo " +"PEAR SOAP" #: libraries/config/messages.inc.php:469 msgid "Enable SQL Validator" -msgstr "" +msgstr "Povoliť kontrolovanie SQL" #: libraries/config/messages.inc.php:470 msgid "" @@ -4347,7 +4360,7 @@ msgstr "" #: libraries/config/messages.inc.php:473 msgid "Suggest new database name" -msgstr "" +msgstr "Navrhnúť meno novej databázy" #: libraries/config/messages.inc.php:474 msgid "A warning is displayed on the main page if Suhosin is detected" @@ -4355,7 +4368,7 @@ msgstr "" #: libraries/config/messages.inc.php:475 msgid "Suhosin warning" -msgstr "" +msgstr "Varovanie Suhosin rozšírenia" #: libraries/config/messages.inc.php:476 msgid "" @@ -4377,15 +4390,15 @@ msgstr "" #: libraries/config/messages.inc.php:479 msgid "Textarea rows" -msgstr "" +msgstr "Riadkov v textovej oblasti" #: libraries/config/messages.inc.php:480 msgid "Title of browser window when a database is selected" -msgstr "" +msgstr "Popis okna prehliadača pri výbere databázy" #: libraries/config/messages.inc.php:482 msgid "Title of browser window when nothing is selected" -msgstr "" +msgstr "Popis okna prehliadača keď nie je nič vybrané" #: libraries/config/messages.inc.php:483 #, fuzzy @@ -4395,11 +4408,11 @@ msgstr "Predvolené" #: libraries/config/messages.inc.php:484 msgid "Title of browser window when a server is selected" -msgstr "" +msgstr "Popis okna prehliadača keď je vybraný server" #: libraries/config/messages.inc.php:486 msgid "Title of browser window when a table is selected" -msgstr "" +msgstr "Popis okna prehliadača keď je vybraná tabuľka" #: libraries/config/messages.inc.php:488 msgid "" @@ -4415,19 +4428,19 @@ msgstr "" #: libraries/config/messages.inc.php:490 msgid "Directory on server where you can upload files for import" -msgstr "" +msgstr "Adresár na serveri, kde môžete nahrať súbor pre import" #: libraries/config/messages.inc.php:491 msgid "Upload directory" -msgstr "" +msgstr "Adresár pre nahrávanie" #: libraries/config/messages.inc.php:492 msgid "Allow for searching inside the entire database" -msgstr "" +msgstr "Povoliť prehľadávať celú databázu" #: libraries/config/messages.inc.php:493 msgid "Use database search" -msgstr "" +msgstr "Použiť databázové vyhľadávanie" #: libraries/config/messages.inc.php:494 msgid "" @@ -4437,7 +4450,7 @@ msgstr "" #: libraries/config/messages.inc.php:495 msgid "Enable the Developer tab in settings" -msgstr "" +msgstr "Povoliť záložku Pre vývojára v nastaveniach" #: libraries/config/messages.inc.php:496 msgid "" @@ -4452,11 +4465,11 @@ msgstr "" #: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229 msgid "Check for latest version" -msgstr "" +msgstr "Skontrolovať najnovšiu verziu" #: libraries/config/messages.inc.php:499 msgid "Enables check for latest version on main phpMyAdmin page" -msgstr "" +msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" #: libraries/config/messages.inc.php:500 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 @@ -4464,7 +4477,7 @@ msgstr "" #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 #: setup/lib/index.lib.php:200 msgid "Version check" -msgstr "" +msgstr "Kontrola verzie" #: libraries/config/messages.inc.php:501 msgid "" @@ -4504,14 +4517,14 @@ msgstr "CSV pomocou LOAD DATA" #: libraries/config/user_preferences.forms.php:245 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" -msgstr "" +msgstr "Excel 97-2003 XLS pracovný zošit" #: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:347 #: libraries/config/user_preferences.forms.php:155 #: libraries/config/user_preferences.forms.php:249 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" -msgstr "" +msgstr "Excel 2007 XLSX pracovný zošit" #: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:158 @@ -4582,7 +4595,7 @@ msgstr "" #: libraries/config/validate.lib.php:367 #, php-format msgid "Incorrect IP address: %s" -msgstr "" +msgstr "Nesprávna IP adresa: %s" #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 @@ -4614,7 +4627,7 @@ msgstr "Databáza vyzerá prázdna!" #: libraries/db_links.inc.php:66 libraries/relation.lib.php:143 #: libraries/tbl_links.inc.php:90 msgid "Tracking" -msgstr "" +msgstr "Sledovanie" #: libraries/db_links.inc.php:71 msgid "Query" @@ -4636,7 +4649,7 @@ msgstr "" #: libraries/db_routines.inc.php:37 msgid "Return type" -msgstr "" +msgstr "Návratový typ" #: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923 msgid "" @@ -4659,7 +4672,7 @@ msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)" #: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703 msgid "Details..." -msgstr "" +msgstr "Podrobnosti..." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 @@ -4781,7 +4794,7 @@ msgstr "Počet polí" #: libraries/display_export.lib.php:162 msgid "Row to begin at:" -msgstr "" +msgstr "Začať od riadku:" #: libraries/display_export.lib.php:173 msgid "Dump all rows" @@ -4789,7 +4802,7 @@ msgstr "" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" -msgstr "" +msgstr "Výstup:" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 #, fuzzy, php-format @@ -4838,7 +4851,7 @@ msgstr "" #: libraries/display_export.lib.php:275 msgid "use this for future exports" -msgstr "" +msgstr "použiť aj pre budúce exporty" #: libraries/display_export.lib.php:281 libraries/display_import.lib.php:188 #: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:517 @@ -4917,7 +4930,7 @@ msgstr "" #: libraries/display_import.lib.php:76 msgid "The file is being processed, please be patient." -msgstr "" +msgstr "Súbor sa spracováva, buďte prosím trpezliví." #: libraries/display_import.lib.php:98 msgid "" @@ -4952,7 +4965,7 @@ msgstr "Súbor na importovanie" #: libraries/display_import.lib.php:156 #, php-format msgid "File may be compressed (%s) or uncompressed." -msgstr "" +msgstr "Súbor môže byť komprimovaný (%s) alebo nekomprimovaný." #: libraries/display_import.lib.php:158 msgid "" @@ -6857,7 +6870,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:373 msgid "Get more editing space" -msgstr "" +msgstr "Získať viac miesta pre úpravy" #: libraries/tbl_properties.inc.php:396 #, fuzzy @@ -7118,7 +7131,7 @@ msgstr "Overenie MySQL spojenia" #: main.php:119 msgid "Appearance Settings" -msgstr "" +msgstr "Nastavenia vzhľadu" #: main.php:146 prefs_manage.php:274 #, fuzzy @@ -7517,7 +7530,7 @@ msgstr "Zmeny boli uložené" #: prefs_forms.php:78 msgid "Cannot save settings, submitted form contains errors" -msgstr "" +msgstr "Nepodarilo sa uložiť nastavenia, odoslaný formulár obsahuje chyby" #: prefs_manage.php:80 #, fuzzy @@ -7531,7 +7544,7 @@ msgstr "" #: prefs_manage.php:128 msgid "Do you want to import remaining settings?" -msgstr "" +msgstr "Prajete si načítať zostávajúce nastavenia?" #: prefs_manage.php:225 prefs_manage.php:251 msgid "Saved on: @DATE@" @@ -7553,7 +7566,7 @@ msgstr "" #: prefs_manage.php:254 msgid "You have no saved settings!" -msgstr "" +msgstr "Nemáte žiadne uložené nastavenia!" #: prefs_manage.php:258 prefs_manage.php:312 msgid "This feature is not supported by your web browser" @@ -7581,7 +7594,7 @@ msgstr "" #: prefs_manage.php:308 msgid "Existing settings will be overwritten!" -msgstr "" +msgstr "Súčasné nastavenia budú prepísané!" #: prefs_manage.php:323 msgid "You can reset all your settings and restore them to default values." @@ -9145,7 +9158,7 @@ msgstr "SQL dopyt" #: server_status.php:727 msgid "Note: Generating the query chart can take a long time." -msgstr "" +msgstr "Poznámka: Generovanie grafu dopytov môže trvať dlhý čas." #: server_status.php:872 msgid "Replication status" diff --git a/po/sl.po b/po/sl.po index 513738c275..8851a53c69 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-24 22:38+0200\n" diff --git a/po/sq.po b/po/sq.po index 31293836b3..2ab948db9b 100644 --- a/po/sq.po +++ b/po/sq.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" diff --git a/po/sr.po b/po/sr.po index fce4777144..c9c1f1a1f5 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" diff --git a/po/sr@latin.po b/po/sr@latin.po index 3b972481d1..6fbde20498 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" diff --git a/po/sv.po b/po/sv.po index 05ff9e505e..6b3f5c6b2e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-02-16 21:42+0200\n" diff --git a/po/ta.po b/po/ta.po index e4b385c791..2d83950e6c 100644 --- a/po/ta.po +++ b/po/ta.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" diff --git a/po/te.po b/po/te.po index 5a849185a4..3295f2f8de 100644 --- a/po/te.po +++ b/po/te.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" diff --git a/po/th.po b/po/th.po index 066021a49c..6315dc737c 100644 --- a/po/th.po +++ b/po/th.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" diff --git a/po/tr.po b/po/tr.po index 5a44d6858e..414be82f9b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-17 19:11+0200\n" diff --git a/po/tt.po b/po/tt.po index 312572fff6..5b19dc5b52 100644 --- a/po/tt.po +++ b/po/tt.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" diff --git a/po/ug.po b/po/ug.po index 90eaa22c58..0680a0353c 100644 --- a/po/ug.po +++ b/po/ug.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" diff --git a/po/uk.po b/po/uk.po index 9acd5b868e..7a03d209c8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" diff --git a/po/ur.po b/po/ur.po index 2ded270e1f..7031624b55 100644 --- a/po/ur.po +++ b/po/ur.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" diff --git a/po/uz.po b/po/uz.po index 991d146088..842b84fdc5 100644 --- a/po/uz.po +++ b/po/uz.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" diff --git a/po/uz@latin.po b/po/uz@latin.po index 3bafea2193..a9c48e73ac 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -1,7 +1,7 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 874000ef6b..4b8a168628 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2011-03-04 09:47+0200\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 5d5e7b2fd2..17a1037205 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n" +"Project-Id-Version: phpMyAdmin 3.4.2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-16 10:31+0200\n" "PO-Revision-Date: 2010-11-05 14:13+0200\n" From eb52f22eb013a12f25f23225a15cb29ba0825f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 23 May 2011 13:19:43 +0200 Subject: [PATCH 1591/1652] bug #3276001 [core] Avoid caching of index.php. --- ChangeLog | 1 + index.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0bed539eee..07a810aaf1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ - bug #3305517 [config] Config for export compression not used - bug #3305883 [interface] Table is dropped regardless of confirmation - [auth] Fixed error handling for signon auth method. +- bug #3276001 [core] Avoid caching of index.php. 3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host diff --git a/index.php b/index.php index 5d197586ca..5f78320b87 100644 --- a/index.php +++ b/index.php @@ -89,7 +89,7 @@ $lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][1]; // start output -header('Content-Type: text/html; charset=' . $GLOBALS['charset']); +include ('./libraries/header_http.inc.php'); ?> From cd7b134a28f9fe0892aaf6c886853d1eef34fdd5 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:37:51 +0200 Subject: [PATCH 1592/1652] Translation update done using Pootle. --- po/zh_TW.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index a7eadf5e37..ba191acb68 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-14 10:37+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-05-23 17:37+0200\n" +"Last-Translator: \n" "Language-Team: chinese_traditional \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -338,14 +338,14 @@ msgid "Collation" msgstr "校對" #: db_operations.php:565 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." -msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." +msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原因." #: db_operations.php:600 msgid "Edit or export relational schema" From ffe862556beb1dec30182bee2de4affafa7a8e93 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:38:09 +0200 Subject: [PATCH 1593/1652] Translation update done using Pootle. --- po/zh_TW.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index ba191acb68..7234633990 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:37+0200\n" +"PO-Revision-Date: 2011-05-23 17:38+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -400,12 +400,11 @@ msgid "Last check" msgstr "最後檢查" #: db_printview.php:220 db_structure.php:439 -#, fuzzy, php-format +#, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s 資料表" -msgstr[1] "%s 資料表" +msgstr[0] "%s 張資料表" #: db_qbe.php:41 msgid "You have to choose at least one column to display" From 5871b6ba3d4673ad1934a02bc770d92a380d3e05 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:38:36 +0200 Subject: [PATCH 1594/1652] Translation update done using Pootle. --- po/zh_TW.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 7234633990..8f9a552245 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -527,7 +527,6 @@ msgstr "搜索 \"%s\" 的結果 %s:" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 項資料符合 - 於資料表 %s" -msgstr[1] "%s 項資料符合 - 於資料表 %s" #: db_search.php:254 libraries/common.lib.php:2830 #: libraries/common.lib.php:3012 libraries/common.lib.php:3013 From 219818671026b7a5e21e5899f21f4b125cc93d64 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:39:45 +0200 Subject: [PATCH 1595/1652] Translation update done using Pootle. --- po/zh_TW.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 8f9a552245..8842e86c01 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:38+0200\n" +"PO-Revision-Date: 2011-05-23 17:39+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -535,10 +535,10 @@ msgid "Browse" msgstr "瀏覽" #: db_search.php:259 -#, fuzzy, php-format +#, php-format #| msgid "Delete tracking data for this table" msgid "Delete the matches for the %s table?" -msgstr "刪除此資料表的追蹤資料" +msgstr "刪除 %s 資料表中符合的資料?" #: db_search.php:259 libraries/display_tbl.lib.php:1223 #: libraries/display_tbl.lib.php:2153 From 2b1257ee9429e23be5a011eeff3885f7543b0d69 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:40:11 +0200 Subject: [PATCH 1596/1652] Translation update done using Pootle. --- 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 8842e86c01..db9d3a9706 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:39+0200\n" +"PO-Revision-Date: 2011-05-23 17:40+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -558,7 +558,6 @@ msgstr "刪除" msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "總計: %s 項資料符合" -msgstr[1] "總計: %s 項資料符合" #: db_search.php:295 msgid "Search in database" From f9ed73eef958fb7ded03cf74b9180cc716bb3c65 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:40:49 +0200 Subject: [PATCH 1597/1652] Translation update done using Pootle. --- 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 db9d3a9706..e5a54cda3f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -580,10 +580,9 @@ msgid "Inside table(s):" msgstr "於以下資料表:" #: db_search.php:351 -#, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" -msgstr "於以下資料表:" +msgstr "於以下欄位:" #: db_structure.php:59 #, fuzzy From 839bbcb91a9bc68bf3f3987b59a90431b91131b0 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:41:03 +0200 Subject: [PATCH 1598/1652] Translation update done using Pootle. --- 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 e5a54cda3f..998787ebdd 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:40+0200\n" +"PO-Revision-Date: 2011-05-23 17:41+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -585,7 +585,6 @@ msgid "Inside column:" msgstr "於以下欄位:" #: db_structure.php:59 -#, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "資料庫中沒有資料表" From 5c171ed5879a0bdfecd2fb147a3899ba6a3d8bf4 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:41:37 +0200 Subject: [PATCH 1599/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 998787ebdd..216b2a9068 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -708,7 +708,7 @@ msgstr "分析資料表" #: db_structure.php:521 msgid "Add prefix to table" -msgstr "" +msgstr "於資料表增加前置字串" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #, fuzzy From df2224b6df5e41a385c29579e8fa1298478d8c5e Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:42:06 +0200 Subject: [PATCH 1600/1652] Translation update done using Pootle. --- 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 216b2a9068..9af7b483cf 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:41+0200\n" +"PO-Revision-Date: 2011-05-23 17:42+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -711,10 +711,9 @@ msgid "Add prefix to table" msgstr "於資料表增加前置字串" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "以檔案取代資料表資料" +msgstr "變更資料表的前置字串" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 0c4fa526fc08a5833114313724ca4739d5fe48a4 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:45:17 +0200 Subject: [PATCH 1601/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 9af7b483cf..e05fa1d874 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:42+0200\n" +"PO-Revision-Date: 2011-05-23 17:45+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -879,6 +879,8 @@ msgid "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" +"未接收到要匯入的資料. 可能是檔案名稱未送出, 也可能是檔案大小超出 PHP 限制. 請參閱 " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" #: import.php:371 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" From d83b0d193589fa95544f6eb9f640f98656c3c5a6 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:47:15 +0200 Subject: [PATCH 1602/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index e05fa1d874..ca359339ad 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:45+0200\n" +"PO-Revision-Date: 2011-05-23 17:47+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -914,7 +914,7 @@ msgstr "指令已逾時, 如果想完成匯入, 請重提交相同檔案然後 msgid "" "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." -msgstr "" +msgstr "在最後一次執行時, 解析失敗. 請增加 PHP 運行時間限制, 否則 phpMyAdmin 將無法完成資料匯入." #: import.php:453 libraries/Message.class.php:185 #: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140 From 312c06d02f1a35f453826f980e492768fae5298d Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:47:34 +0200 Subject: [PATCH 1603/1652] Translation update done using Pootle. --- 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 ca359339ad..9320584a61 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -956,10 +956,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "您將會刪除整個資料庫!" #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "您將會刪除整個資料庫!" +msgstr "您將會刪除整個資料表!" #: js/messages.php:33 #, fuzzy From cff207af23ff16189ba678c0ce73370d1b68ad36 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:47:48 +0200 Subject: [PATCH 1604/1652] Translation update done using Pootle. --- 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 9320584a61..738a82a4c4 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -961,10 +961,9 @@ msgid "You are about to DESTROY a complete table!" msgstr "您將會刪除整個資料表!" #: js/messages.php:33 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "您將會刪除整個資料庫!" +msgstr "您將會清空整個資料表!" #: js/messages.php:34 msgid "Dropping Event" From f04c28a0542ffdf6b80d4fb08c3a33cc71766408 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:48:21 +0200 Subject: [PATCH 1605/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 738a82a4c4..e7098a4359 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:47+0200\n" +"PO-Revision-Date: 2011-05-23 17:48+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -993,7 +993,7 @@ msgstr "您將要關閉一個BLOB儲存" #: js/messages.php:43 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" -msgstr "" +msgstr "您確定要在資料庫 %s 上停用 BLOB 功能?" #: js/messages.php:46 msgid "Missing value in the form!" From af4acd9ef6986a44d10d24c421d3e79ee3d9c819 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:48:38 +0200 Subject: [PATCH 1606/1652] Translation update done using Pootle. --- 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 e7098a4359..5282ceaad7 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1101,9 +1101,8 @@ msgid "Searching" msgstr "搜索" #: js/messages.php:84 -#, fuzzy msgid "Hide search results" -msgstr "SQL 語法" +msgstr "隱藏搜尋結果" #: js/messages.php:85 #, fuzzy From 859fd3ced64ba17bd8ddda42c6016fff9fb8f19c Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:48:54 +0200 Subject: [PATCH 1607/1652] Translation update done using Pootle. --- 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 5282ceaad7..25c5a6c06e 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1105,9 +1105,8 @@ msgid "Hide search results" msgstr "隱藏搜尋結果" #: js/messages.php:85 -#, fuzzy msgid "Show search results" -msgstr "SQL 語法" +msgstr "顯示搜尋結果" #: js/messages.php:86 #, fuzzy From e8d6ea6a48a81f6587175f75ace38b843d767e85 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:49:03 +0200 Subject: [PATCH 1608/1652] Translation update done using Pootle. --- 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 25c5a6c06e..41a4071942 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:48+0200\n" +"PO-Revision-Date: 2011-05-23 17:49+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -1109,7 +1109,6 @@ msgid "Show search results" msgstr "顯示搜尋結果" #: js/messages.php:86 -#, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "瀏覽" From 5b5f38c3771baf8b76ed12e3c08973dede407048 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:49:13 +0200 Subject: [PATCH 1609/1652] Translation update done using Pootle. --- 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 41a4071942..e0da5146b6 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1114,10 +1114,9 @@ msgid "Browsing" msgstr "瀏覽" #: js/messages.php:87 -#, fuzzy #| msgid "Deleting %s" msgid "Deleting" -msgstr "刪除 %s" +msgstr "刪除" #: js/messages.php:90 msgid "" From e2f0f2fa034a48e970f4b44bc65488d7ca00e32d Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:49:56 +0200 Subject: [PATCH 1610/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index e0da5146b6..2800e701e8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1121,7 +1121,7 @@ msgstr "刪除" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" -msgstr "" +msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表." #: js/messages.php:93 msgid "Hide query box" From c9ced044ef5c9a4d18d0150c64029f7ddcfe296d Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:50:07 +0200 Subject: [PATCH 1611/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 2800e701e8..7dedcec64f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:49+0200\n" +"PO-Revision-Date: 2011-05-23 17:50+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -1155,7 +1155,7 @@ msgstr "儲存" #: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" -msgstr "" +msgstr "隱藏" #: js/messages.php:101 msgid "Hide search criteria" From e268e72a4d28bfaccfffbf61ff35c81415a9f390 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 17:50:37 +0200 Subject: [PATCH 1612/1652] Translation update done using Pootle. --- po/zh_TW.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 7dedcec64f..05742225e6 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1244,7 +1244,6 @@ msgstr "不適用" #. l10n: Display text for previous month link in calendar #: js/messages.php:149 -#, fuzzy #| msgid "Previous" msgid "Prev" msgstr "前一頁" From eb62d0474006ab4530a2b76fc5593aa63d23fc04 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:12:11 +0200 Subject: [PATCH 1613/1652] Translation update done using Pootle. --- po/zh_TW.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 05742225e6..afb3104e6b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 17:50+0200\n" +"PO-Revision-Date: 2011-05-23 19:12+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -522,11 +522,11 @@ msgid "Search results for \"%s\" %s:" msgstr "搜索 \"%s\" 的結果 %s:" #: db_search.php:247 -#, fuzzy, php-format +#, php-format #| msgid "%s match(es) inside table %s" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "%s 項資料符合 - 於資料表 %s" +msgstr[0] "%s 筆資料符合 - 於資料表 %s" #: db_search.php:254 libraries/common.lib.php:2830 #: libraries/common.lib.php:3012 libraries/common.lib.php:3013 From 33092e1ea4f0ef5746fb4664a3f7a0fe1b24d84a Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:12:32 +0200 Subject: [PATCH 1614/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index afb3104e6b..93c3fd5073 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -553,7 +553,7 @@ msgid "Delete" msgstr "刪除" #: db_search.php:272 -#, fuzzy, php-format +#, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" From 0f9eee8a049a585eb02270e5aab83a5f248597ce Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:28:09 +0200 Subject: [PATCH 1615/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 93c3fd5073..9b14b892df 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:12+0200\n" +"PO-Revision-Date: 2011-05-23 19:28+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -723,7 +723,7 @@ msgstr "以檔案取代資料表資料" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" -msgstr "數據字典" +msgstr "資料字典" #: db_tracking.php:79 msgid "Tracked tables" From 8176d93bca29f9d2703691fe3fcf9596e0644678 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:29:20 +0200 Subject: [PATCH 1616/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 9b14b892df..a331193e27 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:28+0200\n" +"PO-Revision-Date: 2011-05-23 19:29+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -708,7 +708,7 @@ msgstr "分析資料表" #: db_structure.php:521 msgid "Add prefix to table" -msgstr "於資料表增加前置字串" +msgstr "增加檔案於資料表" #: db_structure.php:523 libraries/mult_submits.inc.php:246 #| msgid "Replace table data with file" From b743eb3f2640be07b1ca5df1b8444701d15b8a55 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:29:26 +0200 Subject: [PATCH 1617/1652] Translation update done using Pootle. --- po/zh_TW.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/zh_TW.po b/po/zh_TW.po index a331193e27..74fac79885 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -707,6 +707,7 @@ msgid "Analyze table" msgstr "分析資料表" #: db_structure.php:521 +#, fuzzy msgid "Add prefix to table" msgstr "增加檔案於資料表" From 6412466efaf111c8c7579de23c2c31b310c5611b Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:29:46 +0200 Subject: [PATCH 1618/1652] Translation update done using Pootle. --- po/zh_TW.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 74fac79885..4b7142333e 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -712,9 +712,10 @@ msgid "Add prefix to table" msgstr "增加檔案於資料表" #: db_structure.php:523 libraries/mult_submits.inc.php:246 +#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "變更資料表的前置字串" +msgstr "以檔案置換資料表" #: db_structure.php:525 libraries/mult_submits.inc.php:246 #, fuzzy From 1ac922804d30983049a633408e4918cb253c89a8 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:30:20 +0200 Subject: [PATCH 1619/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 4b7142333e..ab0b21d3a5 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:29+0200\n" +"PO-Revision-Date: 2011-05-23 19:30+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -721,7 +721,7 @@ msgstr "以檔案置換資料表" #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "以檔案取代資料表資料" +msgstr "將檔案複製至資料表" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" From 5ef8f41d123e41f1cb577af74d79d032a72fd023 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:31:09 +0200 Subject: [PATCH 1620/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index ab0b21d3a5..4d72d46c99 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:30+0200\n" +"PO-Revision-Date: 2011-05-23 19:31+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -746,7 +746,7 @@ msgstr "資料庫" #: db_tracking.php:86 msgid "Last version" -msgstr "上一個版本" +msgstr "最新版本" #: db_tracking.php:87 tbl_tracking.php:645 msgid "Created" From 73ccea6d99ee0fa9663d5422e833a384ce85d1fc Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:31:57 +0200 Subject: [PATCH 1621/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 4d72d46c99..6b22fe8833 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -767,7 +767,7 @@ msgstr "狀態" #: server_privileges.php:1612 server_privileges.php:1805 #: server_privileges.php:2154 tbl_structure.php:208 msgid "Action" -msgstr "執行" +msgstr "動作" #: db_tracking.php:101 js/messages.php:36 msgid "Delete tracking data for this table" From f690b5dace8f25f1276feefe1f37678068dad5d2 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:32:10 +0200 Subject: [PATCH 1622/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 6b22fe8833..a4fb3cefc1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:31+0200\n" +"PO-Revision-Date: 2011-05-23 19:32+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" From 06dd27b4b10c286b423b28a5738cb32e4d892a0a Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:32:41 +0200 Subject: [PATCH 1623/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index a4fb3cefc1..de8d5603be 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -779,7 +779,7 @@ msgstr "啟用" #: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659 msgid "not active" -msgstr "未啟用" +msgstr "停用" #: db_tracking.php:134 msgid "Versions" From 11e7d9c4110a58b7cb39aa71b4359f4819d9c887 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:32:59 +0200 Subject: [PATCH 1624/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index de8d5603be..1a1836e74f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -787,7 +787,7 @@ msgstr "版本" #: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676 msgid "Tracking report" -msgstr "追蹤報表" +msgstr "追蹤報告" #: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676 msgid "Structure snapshot" From d51a00938fb095bd03382986986a012716473de7 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:33:02 +0200 Subject: [PATCH 1625/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 1a1836e74f..a55232c9fc 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:32+0200\n" +"PO-Revision-Date: 2011-05-23 19:33+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" From fd8259a496364e1d3c7a006dde6a8e74f5baed22 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:33:39 +0200 Subject: [PATCH 1626/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index a55232c9fc..b12aa0d558 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -800,7 +800,7 @@ msgstr "未追蹤的資料表" #: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622 #: tbl_structure.php:624 msgid "Track table" -msgstr "檢查資料表" +msgstr "追蹤資料表" #: db_tracking.php:229 msgid "Database Log" From 16d90c232d51a79d1823b1e13908222fa3909b2d Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:34:18 +0200 Subject: [PATCH 1627/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index b12aa0d558..c25987444a 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:33+0200\n" +"PO-Revision-Date: 2011-05-23 19:34+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -809,7 +809,7 @@ msgstr "資料庫紀錄" #: enum_editor.php:21 libraries/tbl_properties.inc.php:793 #, php-format msgid "Values for the column \"%s\"" -msgstr "%s 欄的數值" +msgstr "%s 欄位的值" #: enum_editor.php:22 libraries/tbl_properties.inc.php:794 msgid "Enter each value in a separate field." From ef72087178bbb64af1b2d46f587343f3d109df5c Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:35:32 +0200 Subject: [PATCH 1628/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index c25987444a..81983892d1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:34+0200\n" +"PO-Revision-Date: 2011-05-23 19:35+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -817,7 +817,7 @@ msgstr "給每一欄位輸入數值" #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" -msgstr "+重啟插入並加入新值" +msgstr "+重新執行插入並增加新值" #: enum_editor.php:67 msgid "Output" From 4ed9c7dc278a473080bb4f6a93e2dbc67e144a45 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:36:17 +0200 Subject: [PATCH 1629/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 81983892d1..de75273c46 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:35+0200\n" +"PO-Revision-Date: 2011-05-23 19:36+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -825,7 +825,7 @@ msgstr "輸出" #: enum_editor.php:68 msgid "Copy and paste the joined values into the \"Length/Values\" field" -msgstr "複製並貼上結合數值至\"Length/Values\"欄位" +msgstr "複製並貼上結合的數值至 \"Length/Values\" 欄位" #: export.php:73 msgid "Selected export type has to be saved in file!" From 3c27763341eb9a031489db627fd6a1fd4d53fa86 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:37:13 +0200 Subject: [PATCH 1630/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index de75273c46..fa3776fe40 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:36+0200\n" +"PO-Revision-Date: 2011-05-23 19:37+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -829,7 +829,7 @@ msgstr "複製並貼上結合的數值至 \"Length/Values\" 欄位" #: export.php:73 msgid "Selected export type has to be saved in file!" -msgstr "選擇匯出模式必須存入檔案!" +msgstr "選擇的匯出模式必須被存入檔案!" #: export.php:164 export.php:189 export.php:671 #, php-format From f729298be270e9ffd9bd0ef4fe874ac1b59a884c Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:37:32 +0200 Subject: [PATCH 1631/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index fa3776fe40..5151cfe53b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -834,7 +834,7 @@ msgstr "選擇的匯出模式必須被存入檔案!" #: export.php:164 export.php:189 export.php:671 #, php-format msgid "Insufficient space to save the file %s." -msgstr "空間不足儲存檔案 %s." +msgstr "空間不足以儲存檔案 %s." #: export.php:307 #, php-format From 04e8d2df4e59949af8af96855e2bb33c78460d6d Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:37:57 +0200 Subject: [PATCH 1632/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 5151cfe53b..38ab667960 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -840,7 +840,7 @@ msgstr "空間不足以儲存檔案 %s." #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." -msgstr "檔案 %s 已存在,請更改檔案名稱或選擇「覆寫己存在檔案」選項." +msgstr "檔案 %s 已存在, 請更改檔案名稱或選擇「覆寫己存在檔案」選項." #: export.php:311 export.php:315 #, php-format From 837ee8da46b0071aa74c656109ab10e4038e51a8 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:38:38 +0200 Subject: [PATCH 1633/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 38ab667960..c606b883f8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:37+0200\n" +"PO-Revision-Date: 2011-05-23 19:38+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -845,7 +845,7 @@ msgstr "檔案 %s 已存在, 請更改檔案名稱或選擇「覆寫己存在檔 #: export.php:311 export.php:315 #, php-format msgid "The web server does not have permission to save the file %s." -msgstr "Web 伺服器沒有權限儲存檔案 %s." +msgstr "權限不足以在 Web 伺服器儲存檔案 %s." #: export.php:673 #, php-format From 9d35d0ea7a56fcbdce941f2c4af36b575bab5c55 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:39:23 +0200 Subject: [PATCH 1634/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index c606b883f8..0b3bc2c62d 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:38+0200\n" +"PO-Revision-Date: 2011-05-23 19:39+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -850,7 +850,7 @@ msgstr "權限不足以在 Web 伺服器儲存檔案 %s." #: export.php:673 #, php-format msgid "Dump has been saved to file %s." -msgstr "備份已儲到檔案 %s." +msgstr "備份已儲存至檔案 %s." #: import.php:58 #, php-format From 2dc7647f3063a41088096108b83cd7d48ca8a81f Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:40:50 +0200 Subject: [PATCH 1635/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 0b3bc2c62d..85c784b087 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:39+0200\n" +"PO-Revision-Date: 2011-05-23 19:40+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -857,7 +857,7 @@ msgstr "備份已儲存至檔案 %s." msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" "s for ways to workaround this limit." -msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制." +msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 From 5d52b6501ffe7ebb0eef0ce62785280b8a6fe1f2 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:41:09 +0200 Subject: [PATCH 1636/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 85c784b087..13df5280c3 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:40+0200\n" +"PO-Revision-Date: 2011-05-23 19:41+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -862,7 +862,7 @@ msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決 #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 msgid "File could not be read" -msgstr "讀案無法讀取" +msgstr "檔案無法讀取" #: import.php:286 import.php:295 import.php:314 import.php:323 #: libraries/File.class.php:681 libraries/File.class.php:689 From 8f9cb3677401ed43f27069f57e3397f2414848a8 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:42:40 +0200 Subject: [PATCH 1637/1652] Translation update done using Pootle. --- po/zh_TW.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 13df5280c3..5c07982303 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:41+0200\n" +"PO-Revision-Date: 2011-05-23 19:42+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -871,9 +871,7 @@ msgstr "檔案無法讀取" msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -msgstr "" -"您試圖載入無法支援的壓縮檔 (%s). 可能是它的支援尚未完成或在您的設定檔中被關" -"閉." +msgstr "您試圖載入無法支援的壓縮檔 (%s). 可能是檔案格式尚未被支援或該檔案的支援功能在您的設定檔中被停用." #: import.php:336 msgid "" From 8453144463849757dc259a062025addb83a0d985 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:43:13 +0200 Subject: [PATCH 1638/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 5c07982303..64add2b31a 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:42+0200\n" +"PO-Revision-Date: 2011-05-23 19:43+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -888,7 +888,7 @@ msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" #: import.php:396 msgid "The bookmark has been deleted." -msgstr "書籤已經刪除." +msgstr "書籤已被刪除." #: import.php:400 msgid "Showing bookmark" From d1a6d0e94186537afd36a5c51958bf4ac09c5680 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:44:00 +0200 Subject: [PATCH 1639/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 64add2b31a..357b2ac094 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:43+0200\n" +"PO-Revision-Date: 2011-05-23 19:44+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -902,7 +902,7 @@ msgstr "書籤 %s 已建立" #: import.php:408 import.php:414 #, php-format msgid "Import has been successfully finished, %d queries executed." -msgstr "載入成功, 共 %d 句語法已執行." +msgstr "匯入成功, 共 %d 個查詢語法被執行." #: import.php:423 msgid "" From be4064c25f88544d65b335effdd7dfc74b3d9177 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:45:04 +0200 Subject: [PATCH 1640/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 357b2ac094..9bd80e8137 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:44+0200\n" +"PO-Revision-Date: 2011-05-23 19:45+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -908,7 +908,7 @@ msgstr "匯入成功, 共 %d 個查詢語法被執行." msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -msgstr "指令已逾時, 如果想完成匯入, 請重提交相同檔案然後匯入會繼續." +msgstr "指令已逾時, 如果想完成匯入, 請重新送出相同檔案, 送出後匯入動作會繼續執行." #: import.php:425 msgid "" From bc6a18e690d7e2fd91f56bc8b26d60416080ce50 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:45:28 +0200 Subject: [PATCH 1641/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 9bd80e8137..5ef9f47e24 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -921,7 +921,7 @@ msgstr "在最後一次執行時, 解析失敗. 請增加 PHP 運行時間限制 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" -msgstr "您的SQL語法已順利執行" +msgstr "您的 SQL 語法已順利執行" #: import_status.php:30 libraries/common.lib.php:682 #: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 From a05141c4d7b8d24f01de8e9732c2bf8469155eb2 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:46:12 +0200 Subject: [PATCH 1642/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 5ef9f47e24..5e7b271647 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:45+0200\n" +"PO-Revision-Date: 2011-05-23 19:46+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -930,7 +930,7 @@ msgstr "回上一頁" #: index.php:185 msgid "phpMyAdmin is more friendly with a frames-capable browser." -msgstr "phpMyAdmin 較為適合使用在支援頁框的瀏覽器." +msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器." #: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 #: server_synchronize.php:372 server_synchronize.php:379 From 8273ba46b6e5bdc80d2104a9681cd3530efb1fe6 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:46:36 +0200 Subject: [PATCH 1643/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 5e7b271647..58a3fef31f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -937,7 +937,7 @@ msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器." #: server_synchronize.php:738 server_synchronize.php:766 #: server_synchronize.php:794 server_synchronize.php:806 msgid "Click to select" -msgstr "按選" +msgstr "點選" #: js/messages.php:26 msgid "Click to unselect" From cefdbbc360d8bc71b0eeab022efe86acf0695a12 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:47:08 +0200 Subject: [PATCH 1644/1652] Translation update done using Pootle. --- po/zh_TW.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 58a3fef31f..7cb3bfd9eb 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:46+0200\n" +"PO-Revision-Date: 2011-05-23 19:47+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" @@ -937,7 +937,7 @@ msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器." #: server_synchronize.php:738 server_synchronize.php:766 #: server_synchronize.php:794 server_synchronize.php:806 msgid "Click to select" -msgstr "點選" +msgstr "點擊選取" #: js/messages.php:26 msgid "Click to unselect" From 1495f395ff7ac1492b0040f7bc1df6cb76aa4ad8 Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:47:13 +0200 Subject: [PATCH 1645/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 7cb3bfd9eb..d771f7fc10 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -941,7 +941,7 @@ msgstr "點擊選取" #: js/messages.php:26 msgid "Click to unselect" -msgstr "反按選" +msgstr "點擊取消" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 msgid "\"DROP DATABASE\" statements are disabled." From 4b3780760ce251cdcb351ba51a5374f1529951ad Mon Sep 17 00:00:00 2001 From: joehorn Date: Mon, 23 May 2011 19:48:03 +0200 Subject: [PATCH 1646/1652] Translation update done using Pootle. --- po/zh_TW.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index d771f7fc10..37210f7252 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-05-18 07:46-0400\n" -"PO-Revision-Date: 2011-05-23 19:47+0200\n" +"PO-Revision-Date: 2011-05-23 19:48+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" From c2edb0a165115b71a13b26f7e27d870f1cd3c1d7 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Tue, 24 May 2011 08:31:50 +0700 Subject: [PATCH 1647/1652] Remove inline javascript and use jQuery instead --- js/functions.js | 4 ++++ libraries/header.inc.php | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/js/functions.js b/js/functions.js index 572c857501..50fd6f87c7 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2276,5 +2276,9 @@ $(document).ready(function() { } }); + $('#update_recent_tables').ready(function() { + window.parent.frame_navigation.PMA_reloadRecentTable(); + }); + }) // end of $(document).ready() diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 05d272effb..4036f862ea 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -21,9 +21,7 @@ require_once './libraries/RecentTable.class.php'; function PMA_addRecentTable($db, $table) { $tmp_result = RecentTable::getInstance()->add($db, $table); if ($tmp_result === true) { - echo ''; + echo ''; } else { $error = $tmp_result; $error->display(); From ab6d16ed2f4728c9f066353a851621a352ef969f Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Tue, 24 May 2011 08:38:09 +0700 Subject: [PATCH 1648/1652] Set default LeftRecentTable to 10 --- libraries/config.default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/config.default.php b/libraries/config.default.php index ae4018c5e2..5c0b1b2d14 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -806,7 +806,7 @@ $cfg['LeftLogoLinkWindow'] = 'main'; * * @global integer $cfg['LeftRecentTable'] */ -$cfg['LeftRecentTable'] = 5; +$cfg['LeftRecentTable'] = 10; /** * display a JavaScript table filter in the left frame From 755fc28b49b3012cc80881720f54f5c3781285ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 24 May 2011 13:08:10 +0200 Subject: [PATCH 1649/1652] Add space between size and unit --- libraries/display_tbl.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 6fa8e9be5d..036536c042 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -2381,7 +2381,7 @@ function PMA_handle_non_printable_contents($category, $content, $transform_funct } elseif (isset($content)) { $size = strlen($content); $display_size = PMA_formatByteDown($size, 3, 1); - $result .= ' - '. $display_size[0] . $display_size[1]; + $result .= ' - '. $display_size[0] . ' ' . $display_size[1]; } $result .= ']'; From 8ec702efece928a6ab4cedb91680b39591b5b7f7 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 24 May 2011 10:25:49 +0200 Subject: [PATCH 1650/1652] Remove unnecessary assign in PMA_formatByteDown --- libraries/common.lib.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index e8e6b8a9d0..24a487047f 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -1392,10 +1392,9 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0) /* l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ */ $byteUnits = array(__('B'), __('KiB'), __('MiB'), __('GiB'), __('TiB'), __('PiB'), __('EiB')); - $dh = PMA_pow(10, $comma); - $li = PMA_pow(10, $limes); - $return_value = $value; - $unit = $byteUnits[0]; + $dh = PMA_pow(10, $comma); + $li = PMA_pow(10, $limes); + $unit = $byteUnits[0]; for ($d = 6, $ex = 15; $d >= 1; $d--, $ex-=3) { if (isset($byteUnits[$d]) && $value >= $li * PMA_pow(10, $ex)) { From 9f5fad2697564642aa88f3652f08d75cb3ac0b04 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 24 May 2011 14:58:03 +0200 Subject: [PATCH 1651/1652] Cleanup: fixed argument names and order in comments, removed @uses of builtin functions, removed unused variables --- libraries/common.lib.php | 248 +++++++++++++++++---------------------- 1 file changed, 106 insertions(+), 142 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 24a487047f..538d8ac9a4 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -9,14 +9,9 @@ /** * Exponential expression / raise number into power * - * @uses function_exists() - * @uses bcpow() - * @uses gmp_pow() - * @uses gmp_strval() - * @uses pow() - * @param number $base - * @param number $exp - * @param string pow function use, or false for auto-detect + * @param string $base + * @param string $exp + * @param mixed $use_function pow function to use, or false for auto-detect * @return mixed string or float */ function PMA_pow($base, $exp, $use_function = false) @@ -69,12 +64,11 @@ function PMA_pow($base, $exp, $use_function = false) * * @uses $GLOBALS['pmaThemeImage'] * @uses $GLOBALS['cfg']['PropertiesIconic'] - * @uses htmlspecialchars() - * @param string $icon name of icon file - * @param string $alternate alternate text - * @param boolean $container include in container - * @param boolean $$force_text whether to force alternate text to be displayed - * @return html img tag + * @param string $icon name of icon file + * @param string $alternate alternate text + * @param boolean $container include in container + * @param boolean $force_text whether to force alternate text to be displayed + * @return html img tag */ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = false) { @@ -127,9 +121,7 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f * Displays the maximum size for an upload * * @uses PMA_formatByteDown() - * @uses sprintf() - * @param integer the size - * + * @param integer $max_upload_size the size * @return string the message * * @access public @@ -146,8 +138,7 @@ function PMA_displayMaximumUploadSize($max_upload_size) * Generates a hidden field which should indicate to the browser * the maximum size for upload * - * @param integer the size - * + * @param integer $max_size the size * @return string the INPUT field * * @access public @@ -161,15 +152,13 @@ function PMA_displayMaximumUploadSize($max_upload_size) * Add slashes before "'" and "\" characters so a value containing them can * be used in a sql comparison. * - * @uses str_replace() - * @param string the string to slash - * @param boolean whether the string will be used in a 'LIKE' clause - * (it then requires two more escaped sequences) or not - * @param boolean whether to treat cr/lfs as escape-worthy entities - * (converts \n to \\n, \r to \\r) - * - * @param boolean whether this function is used as part of the - * "Create PHP code" dialog + * @param string $a_string the string to slash + * @param bool $is_like whether the string will be used in a 'LIKE' clause + * (it then requires two more escaped sequences) or not + * @param bool $crlf whether to treat cr/lfs as escape-worthy entities + * (converts \n to \\n, \r to \\r) + * @param bool $php_code whether this function is used as part of the + * "Create PHP code" dialog * * @return string the slashed string * @@ -204,9 +193,7 @@ function PMA_sqlAddslashes($a_string = '', $is_like = false, $crlf = false, $php * database, table and field names. * Note: This function does not escape backslashes! * - * @uses str_replace() - * @param string the string to escape - * + * @param string $name the string to escape * @return string the escaped string * * @access public @@ -223,7 +210,6 @@ function PMA_escape_mysql_wildcards($name) * removes slashes before "_" and "%" characters * Note: This function does not unescape backslashes! * - * @uses str_replace() * @param string $name the string to escape * @return string the escaped string * @access public @@ -241,8 +227,6 @@ function PMA_unescape_mysql_wildcards($name) * * checks if the sting is quoted and removes this quotes * - * @uses str_replace() - * @uses substr() * @param string $quoted_string string to remove quotes from * @param string $quote type of quote to remove * @return string unqoted string @@ -279,10 +263,9 @@ function PMA_unQuote($quoted_string, $quote = null) * @uses PMA_SQP_isError() * @uses PMA_SQP_formatHtml() * @uses PMA_SQP_formatNone() - * @uses is_array() - * @param mixed pre-parsed SQL structure - * - * @return string the formatted sql + * @param mixed $parsed_sql pre-parsed SQL structure + * @param string $unparsed_sql + * @return string the formatted sql * * @global array the configuration array * @global boolean whether the current statement is a multiple one or not @@ -342,12 +325,11 @@ function PMA_formatSql($parsed_sql, $unparsed_sql = '') * @uses $cfg['ReplaceHelpImg'] * @uses $GLOBALS['pmaThemeImage'] * @uses PMA_MYSQL_INT_VERSION - * @uses strtolower() - * @uses str_replace() - * @param string chapter of "HTML, one page per chapter" documentation - * @param string contains name of page/anchor that is being linked - * @param bool whether to use big icon (like in left frame) - * @param string anchor to page part + * @param string $chapter chapter of "HTML, one page per chapter" documentation + * @param string $link contains name of page/anchor that is being linked + * @param bool $big_icon whether to use big icon (like in left frame) + * @param string $anchor anchor to page part + * @param bool $just_open whether only the opening tag should be returned * * @return string the html link * @@ -434,8 +416,7 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '', $ju /** * Displays a link to the phpMyAdmin documentation * - * @param string anchor in documentation - * + * @param string $anchor anchor in documentation * @return string the html link * * @access public @@ -451,9 +432,8 @@ function PMA_showDocu($anchor) { /** * Displays a link to the PHP documentation * - * @param string anchor in documentation - * - * @return string the html link + * @param string $target anchor in documentation + * @return string the html link * * @access public */ @@ -471,7 +451,9 @@ function PMA_showPHPDocu($target) { * returns HTML for a footnote marker and add the messsage to the footnotes * * @uses $GLOBALS['footnotes'] - * @param string the error message + * @param string $message the error message + * @param bool $bbcode + * @param string $type * @return string html code for a footnote marker * @access public */ @@ -532,25 +514,11 @@ function PMA_showHint($message, $bbcode = false, $type = 'notice') * @uses PMA_SQP_isError() * @uses PMA_SQP_parse() * @uses PMA_SQP_getErrorString() - * @uses strtolower() - * @uses urlencode() - * @uses str_replace() - * @uses nl2br() - * @uses substr() - * @uses preg_replace() - * @uses preg_match() - * @uses explode() - * @uses implode() - * @uses is_array() - * @uses function_exists() - * @uses htmlspecialchars() - * @uses trim() - * @uses strstr() - * @param string the error message - * @param string the sql query that failed - * @param boolean whether to show a "modify" link or not - * @param string the "back" link url (full path is not required) - * @param boolean EXIT the page? + * @param string $error_message the error message + * @param string $the_query the sql query that failed + * @param bool $is_modify_link whether to show a "modify" link or not + * @param string $back_url the "back" link url (full path is not required) + * @param bool $exit EXIT the page? * * @global string the curent table * @global string the current db @@ -1377,15 +1345,13 @@ function PMA_profilingResults($profiling_results, $show_chart = false) /** * Formats $value to byte view * - * @param double the value to format - * @param integer the sensitiveness - * @param integer the number of decimals to retain + * @param double $value the value to format + * @param int $limes the sensitiveness + * @param int $comma the number of decimals to retain * * @return array the formatted value and its unit * * @access public - * - * @version 1.2 - 18 July 2002 */ function PMA_formatByteDown($value, $limes = 6, $comma = 0) { @@ -1420,6 +1386,9 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0) /** * Changes thousands and decimal separators to locale specific values. + * + * @param $value + * @return string */ function PMA_localizeNumber($value) { @@ -1534,7 +1503,7 @@ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) /** * Returns the number of bytes when a formatted size is given * - * @param string $size the size expression (for example 8MB) + * @param string $formatted_size the size expression (for example 8MB) * @uses PMA_pow() * @return integer The numerical part of the expression (for example 8) */ @@ -1555,8 +1524,8 @@ function PMA_extractValueFromFormattedSize($formatted_size) /** * Writes localised date * - * @param string the current timestamp - * + * @param string $timestamp the current timestamp + * @param string $format format * @return string the formatted date * * @access public @@ -1766,12 +1735,14 @@ function PMA_generate_html_tabs($tabs, $url_params) * Displays a link, or a button if the link's URL is too large, to * accommodate some browsers' limitations * - * @param string the URL - * @param string the link message + * @param string $url the URL + * @param string $message the link message * @param mixed $tag_params string: js confirmation * array: additional tag params (f.e. style="") * @param boolean $new_form we set this to false when we are already in * a form, to avoid generating nested forms + * @param boolean $strip_img + * @param string $target * * @return string the results to be echoed or saved in an array */ @@ -1901,13 +1872,12 @@ function PMA_linkOrButton($url, $message, $tag_params = array(), * * @uses sprintf() * @uses floor() - * @param int the timespan + * @param int $seconds the timespan * * @return string the formatted value */ function PMA_timespanFormat($seconds) { - $return_string = ''; $days = floor($seconds / 86400); if ($days > 0) { $seconds -= $days * 86400; @@ -1932,8 +1902,8 @@ function PMA_timespanFormat($seconds) * * @todo add a multibyte safe function PMA_STR_split() * @uses strlen - * @param string The string - * @param string The Separator (defaults to "
\n") + * @param string $string The string + * @param string $Separator The Separator (defaults to "
\n") * * @access public * @return string The flipped string @@ -1984,13 +1954,11 @@ function PMA_flipstring($string, $Separator = "
\n") * @uses PMA_getenv() * @uses header_meta_style.inc.php * @uses $GLOBALS['PMA_PHP_SELF'] - * basename - * @param array The names of the parameters needed by the calling - * script. - * @param boolean Stop the execution? + * @param array $params The names of the parameters needed by the calling script. + * @param bool $die Stop the execution? * (Set this manually to false in the calling script * until you know all needed parameters to check). - * @param boolean Whether to include this list in checking for special params. + * @param bool $request Whether to include this list in checking for special params. * @global string path to current script * @global boolean flag whether any special variable was required * @@ -2170,11 +2138,12 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force * @uses PMA_USR_BROWSER_AGENT * @uses $GLOBALS['pmaThemeImage'] * @uses $GLOBALS['cfg']['PropertiesIconic'] - * @param string name of button element - * @param string class of button element - * @param string name of image element - * @param string text to display - * @param string image to display + * @param string $button_name name of button element + * @param string $button_class class of button element + * @param string $image_name name of image element + * @param string $text text to display + * @param string $image image to display + * @param string $value * * @access public */ @@ -2210,24 +2179,19 @@ function PMA_buttonOrImage($button_name, $button_class, $image_name, $text, /** * Generate a pagination selector for browsing resultsets * - * @uses range() - * @param string Number of rows in the pagination set - * @param string current page number - * @param string number of total pages - * @param string If the number of pages is lower than this - * variable, no pages will be omitted in - * pagination - * @param string How many rows at the beginning should always - * be shown? - * @param string How many rows at the end should always - * be shown? - * @param string Percentage of calculation page offsets to - * hop to a next page - * @param string Near the current page, how many pages should - * be considered "nearby" and displayed as - * well? - * @param string The prompt to display (sometimes empty) + * @param int $rows Number of rows in the pagination set + * @param int $pageNow current page number + * @param int $nbTotalPage number of total pages + * @param int $showAll If the number of pages is lower than this + * variable, no pages will be omitted in pagination + * @param int $sliceStart How many rows at the beginning should always be shown? + * @param int $sliceEnd How many rows at the end should always be shown? + * @param int $percent Percentage of calculation page offsets to hop to a next page + * @param int $range Near the current page, how many pages should + * be considered "nearby" and displayed as well? + * @param string $prompt The prompt to display (sometimes empty) * + * @return string * @access public */ function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, @@ -2794,14 +2758,13 @@ function PMA_replace_binary_contents($content) { } /** - * * If the string starts with a \r\n pair (0x0d0a) add an extra \n * - * @uses strpos() + * @param string $string * @return string with the chars replaced */ -function PMA_duplicateFirstNewline($string){ +function PMA_duplicateFirstNewline($string) { $first_occurence = strpos($string, "\r\n"); if ($first_occurence === 0){ $string = "\n".$string; @@ -2810,41 +2773,40 @@ function PMA_duplicateFirstNewline($string){ } /** - * get the action word corresponding to a script name + * Get the action word corresponding to a script name * in order to display it as a title in navigation panel * - * @uses $GLOBALS - * @param string a valid value for $cfg['LeftDefaultTabTable'] - * or $cfg['DefaultTabTable'] - * or $cfg['DefaultTabDatabase'] + * @param string $target a valid value for $cfg['LeftDefaultTabTable'], $cfg['DefaultTabTable'] + * or $cfg['DefaultTabDatabase'] + * @return array */ function PMA_getTitleForTarget($target) { + $mapping = array( + // Values for $cfg['DefaultTabTable'] + 'tbl_structure.php' => __('Structure'), + 'tbl_sql.php' => __('SQL'), + 'tbl_select.php' =>__('Search'), + 'tbl_change.php' =>__('Insert'), + 'sql.php' => __('Browse'), -$mapping = array( - // Values for $cfg['DefaultTabTable'] - 'tbl_structure.php' => __('Structure'), - 'tbl_sql.php' => __('SQL'), - 'tbl_select.php' =>__('Search'), - 'tbl_change.php' =>__('Insert'), - 'sql.php' => __('Browse'), - - // Values for $cfg['DefaultTabDatabase'] - 'db_structure.php' => __('Structure'), - 'db_sql.php' => __('SQL'), - 'db_search.php' => __('Search'), - 'db_operations.php' => __('Operations'), -); + // Values for $cfg['DefaultTabDatabase'] + 'db_structure.php' => __('Structure'), + 'db_sql.php' => __('SQL'), + 'db_search.php' => __('Search'), + 'db_operations.php' => __('Operations'), + ); return $mapping[$target]; } /** * Formats user string, expading @VARIABLES@, accepting strftime format string. * - * @param string Text where to do expansion. - * @param function Function to call for escaping variable values. - * @param array Array with overrides for default parameters (obtained from GLOBALS). + * @param string $string Text where to do expansion. + * @param function $escape Function to call for escaping variable values. + * @param array $updates Array with overrides for default parameters (obtained from GLOBALS). + * @return string */ -function PMA_expandUserString($string, $escape = NULL, $updates = array()) { +function PMA_expandUserString($string, $escape = null, $updates = array()) { /* Content */ $vars['http_host'] = PMA_getenv('HTTP_HOST') ? PMA_getenv('HTTP_HOST') : ''; $vars['server_name'] = $GLOBALS['cfg']['Server']['host']; @@ -2910,12 +2872,10 @@ function PMA_expandUserString($string, $escape = NULL, $updates = array()) { * function that generates a json output for an ajax request and ends script * execution * - * @param boolean success whether the ajax request was successfull - * @param string message string containing the html of the message - * @param array extra_data optional - any other data as part of the json request + * @param bool $message message string containing the html of the message + * @param bool $success success whether the ajax request was successfull + * @param array $extra_data extra_data optional - any other data as part of the json request * - * @uses header() - * @uses json_encode() */ function PMA_ajaxResponse($message, $success = true, $extra_data = array()) { @@ -2959,9 +2919,10 @@ function PMA_ajaxResponse($message, $success = true, $extra_data = array()) /** * Display the form used to browse anywhere on the local server for the file to import + * + * @param $max_upload_size */ function PMA_browseUploadFile($max_upload_size) { - $uid = uniqid(""); echo ''; echo ''; echo ''; @@ -2973,6 +2934,9 @@ function PMA_browseUploadFile($max_upload_size) { /** * Display the form used to select a file to import from the server upload directory + * + * @param $import_list + * @param $uploaddir */ function PMA_selectUploadFile($import_list, $uploaddir) { echo ''; From 1835d93534d7e82b10c4e08805204b5d10459e63 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 24 May 2011 15:03:17 +0200 Subject: [PATCH 1652/1652] Indentation fixes --- server_databases.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/server_databases.php b/server_databases.php index a4fbf89405..365055aa49 100644 --- a/server_databases.php +++ b/server_databases.php @@ -263,13 +263,13 @@ if ($databases_count > 0) { } if (empty($dbstats)) { - echo '
' . "\n"; + echo '
  • ' . "\n"; + echo ' ' . "\n" + .' ' . __('Enable Statistics'); + echo '
    ' . "\n"; + PMA_Message::notice(__('Note: Enabling the database statistics here might cause heavy traffic between the web server and the MySQL server.'))->display(); + echo '
  • ' . "\n" . '
' . "\n"; } echo ''; echo '
';