From 7645bc93d1aa43ad4092e332f914b9362ace1f01 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Sat, 30 Apr 2011 13:36:55 +0200 Subject: [PATCH 001/536] Adjusted chart code to use colors as defined in each theme's layout.inc.php --- libraries/chart/pma_pchart_chart.php | 64 +++++++++++---------- libraries/chart/pma_pchart_multi_radar.php | 20 +++++-- libraries/chart/pma_pchart_pie.php | 21 +++++-- libraries/chart/pma_pchart_single_radar.php | 21 +++++-- themes/original/layout.inc.php | 25 ++++++++ themes/pmahomme/layout.inc.php | 26 +++++++++ 6 files changed, 129 insertions(+), 48 deletions(-) diff --git a/libraries/chart/pma_pchart_chart.php b/libraries/chart/pma_pchart_chart.php index 1dac4cfb2e..54936aab83 100644 --- a/libraries/chart/pma_pchart_chart.php +++ b/libraries/chart/pma_pchart_chart.php @@ -69,21 +69,9 @@ abstract class PMA_pChart_chart extends PMA_chart // as in CSS (top, right, bottom, left) $this->setAreaMargins(array(20, 20, 40, 60)); - - // when graph area gradient is used, this is the color of the graph - // area border - $this->settings['graphAreaColor'] = '#D5D9DD'; - - // the background color of the graph area - $this->settings['graphAreaGradientColor'] = '#A3CBA7'; - - // the color of the grid lines in the graph area - $this->settings['gridColor'] = '#E6E6E6'; - - // the color of the scale and the labels - $this->settings['scaleColor'] = '#D5D9DD'; - - $this->settings['titleBgColor'] = '#000000'; + + // Get color settings from theme + $this->settings = array_merge($this->settings,$GLOBALS['cfg']['chartColor']); } protected function init() @@ -145,12 +133,15 @@ abstract class PMA_pChart_chart extends PMA_chart */ protected function drawCommon() { - $this->chart->drawGraphAreaGradient( - $this->getBgColor(RED), - $this->getBgColor(GREEN), - $this->getBgColor(BLUE), - 50,TARGET_BACKGROUND); - $this->chart->addBorder(2); + $this->chart->drawGraphAreaGradient( + $this->getBgColor(RED), + $this->getBgColor(GREEN), + $this->getBgColor(BLUE), + // With a gradientIntensity of 0 the background does't draw, oddly + ($this->settings['gradientIntensity']==0)?1:$this->settings['gradientIntensity'],TARGET_BACKGROUND); + + if(is_string($this->settings['border'])) + $this->chart->addBorder(1,$this->getBorderColor(RED),$this->getBorderColor(GREEN),$this->getBorderColor(BLUE)); } /** @@ -170,11 +161,10 @@ abstract class PMA_pChart_chart extends PMA_chart $this->getTitleColor(GREEN), $this->getTitleColor(BLUE), ALIGN_CENTER, - True, + false, $this->getTitleBgColor(RED), $this->getTitleBgColor(GREEN), - $this->getTitleBgColor(BLUE), - 30 + $this->getTitleBgColor(BLUE) ); } @@ -211,12 +201,21 @@ abstract class PMA_pChart_chart extends PMA_chart $this->getScaleColor(BLUE), TRUE,0,2,TRUE ); - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - 50 - ); + + if($this->settings['gradientIntensity']>0) + $this->chart->drawGraphAreaGradient( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE), + $this->settings['gradientIntensity'] + ); + else + $this->chart->drawGraphArea( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE) + ); + $this->chart->drawGrid( 4, TRUE, @@ -393,6 +392,11 @@ abstract class PMA_pChart_chart extends PMA_chart { return $this->hexStrToDecComp($this->settings['titleBgColor'], $component); } + + protected function getBorderColor($component) + { + return $this->hexStrToDecComp($this->settings['border'], $component); + } } ?> diff --git a/libraries/chart/pma_pchart_multi_radar.php b/libraries/chart/pma_pchart_multi_radar.php index e4acae2f7b..8e6128375a 100644 --- a/libraries/chart/pma_pchart_multi_radar.php +++ b/libraries/chart/pma_pchart_multi_radar.php @@ -57,12 +57,20 @@ class PMA_pChart_multi_radar extends PMA_pChart_multi $this->getGraphAreaColor(BLUE), FALSE ); - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - 50 - ); + + if($this->settings['gradientIntensity']>0) + $this->chart->drawGraphAreaGradient( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE), + $this->settings['gradientIntensity'] + ); + else + $this->chart->drawGraphArea( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE) + ); } /** diff --git a/libraries/chart/pma_pchart_pie.php b/libraries/chart/pma_pchart_pie.php index cc82df5c57..f6489181f7 100644 --- a/libraries/chart/pma_pchart_pie.php +++ b/libraries/chart/pma_pchart_pie.php @@ -47,12 +47,21 @@ class PMA_pChart_Pie extends PMA_pChart_multi $this->getGraphAreaColor(BLUE), FALSE ); - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - 50 - ); + + if($this->settings['gradientIntensity']>0) + $this->chart->drawGraphAreaGradient( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE), + $this->settings['gradientIntensity'] + ); + else + $this->chart->drawGraphArea( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE) + ); + } /** diff --git a/libraries/chart/pma_pchart_single_radar.php b/libraries/chart/pma_pchart_single_radar.php index dbe2b2e18f..7bcc8579da 100644 --- a/libraries/chart/pma_pchart_single_radar.php +++ b/libraries/chart/pma_pchart_single_radar.php @@ -48,12 +48,21 @@ class PMA_pChart_single_radar extends PMA_pChart_single $this->getGraphAreaColor(BLUE), FALSE ); - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - 50 - ); + + if($this->settings['gradientIntensity']>0) + $this->chart->drawGraphAreaGradient( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE), + $this->settings['gradientIntensity'] + ); + else + $this->chart->drawGraphArea( + $this->getGraphAreaGradientColor(RED), + $this->getGraphAreaGradientColor(GREEN), + $this->getGraphAreaGradientColor(BLUE) + ); + } /** diff --git a/themes/original/layout.inc.php b/themes/original/layout.inc.php index 73bd7b74bd..21bc1df675 100644 --- a/themes/original/layout.inc.php +++ b/themes/original/layout.inc.php @@ -110,4 +110,29 @@ $GLOBALS['cfg']['SQP']['fmtColor'] = array( 'quote_single' => '', 'quote_backtick' => '' ); + +/** + * Chart colors + */ + + $GLOBALS['cfg']['chartColor'] = array( + 'gradientIntensity' => 0, + // The style of the chart title. + 'titleColor' => '#000000', + 'titleBgColor' => $GLOBALS['cfg']['ThBackground'], + // Chart border (0 for no border) + 'border' => '#CCCCCC', + // Chart background color. + 'bgColor' => $GLOBALS['cfg']['BgTwo'], + // when graph area gradient is used, this is the color of the graph + // area border + 'graphAreaColor' => '#D5D9DD', + // the background color of the inner graph area + 'graphAreaGradientColor'=> $GLOBALS['cfg']['BgOne'], + // the color of the grid lines in the graph area + 'gridColor' => '#E6E6E6', + // the color of the scale and the labels + 'scaleColor' => '#D5D9DD', + ); + ?> diff --git a/themes/pmahomme/layout.inc.php b/themes/pmahomme/layout.inc.php index 3338256488..2f7a0c9033 100644 --- a/themes/pmahomme/layout.inc.php +++ b/themes/pmahomme/layout.inc.php @@ -112,4 +112,30 @@ $GLOBALS['cfg']['SQP']['fmtColor'] = array( 'quote_single' => '', 'quote_backtick' => '' ); + +/** + * Chart colors + */ + + $GLOBALS['cfg']['chartColor'] = array( + 'gradientIntensity' => 50, + // The style of the chart title. + 'titleColor' => '#000000', + 'titleBgColor' => '#E5E5E5', + // Chart border (0 for no border) + 'border' => '#CCCCCC', + // Chart background color. + 'bgColor' => '#FBFBFB', + // when graph area gradient is used, this is the color of the graph + // area border + 'graphAreaColor' => '#D5D9DD', + // the background color of the graph area + 'graphAreaGradientColor'=> $GLOBALS['cfg']['BgTwo'], + // the color of the grid lines in the graph area + 'gridColor' => '#E6E6E6', + // the color of the scale and the labels + 'scaleColor' => '#D5D9DD', + + ); + ?> From f25945b8bee7b5025abe4e4e054cf6732dcca6ec Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 2 May 2011 01:21:46 +0530 Subject: [PATCH 002/536] DB Operations tab adjusted for low resolution browsers --- db_operations.php | 10 +++++----- themes/original/css/theme_right.css.php | 2 +- themes/pmahomme/css/theme_right.css.php | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/db_operations.php b/db_operations.php index 558766407e..f48ba27678 100644 --- a/db_operations.php +++ b/db_operations.php @@ -349,11 +349,6 @@ if ($db == 'information_schema') { } if (!$is_information_schema) { - ?> -
- -
- +
+ +
+ ; } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 25692d27ff..9654cd9445 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1547,7 +1547,7 @@ li#li_user_preferences { } .operations_half_width { - min-width: 48%; + width: 48%; float: ; } From 5c39c5511f20662878a75da8e1db07f354dcdfc8 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Mon, 2 May 2011 20:50:16 +0200 Subject: [PATCH 003/536] Comments formatting and PHPDoc fixes --- libraries/Message.class.php | 11 +++++------ libraries/common.inc.php | 2 +- libraries/common.lib.php | 10 +++++----- libraries/database_interface.lib.php | 19 +++++++++---------- 4 files changed, 20 insertions(+), 22 deletions(-) diff --git a/libraries/Message.class.php b/libraries/Message.class.php index 908a1d714d..5c46e86693 100644 --- a/libraries/Message.class.php +++ b/libraries/Message.class.php @@ -151,8 +151,8 @@ class PMA_Message * @uses PMA_Message::SANITIZE_PARAMS * @param string $string * @param integer $number - * @param array $$params - * @param boolean $sanitize + * @param array $params + * @param integer $sanitize */ public function __construct($string = '', $number = PMA_Message::NOTICE, $params = array(), $sanitize = PMA_Message::SANITIZE_NONE) @@ -624,9 +624,9 @@ class PMA_Message * @static * @uses is_array() * @uses htmlspecialchars() - * @uses PMA_Message::sanitize() recursiv - * @param mixed the message(s) - * @return mixed the sanitized message(s) + * @uses PMA_Message::sanitize() recursive + * @param mixed $message the message(s) + * @return mixed the sanitized message(s) * @access public */ static public function sanitize($message) @@ -686,7 +686,6 @@ class PMA_Message * @uses PMA_Message::$_string * @uses PMA_Message::$_message * @uses md5() - * @param string $file * @return string PMA_Message::$_hash */ public function getHash() diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 906b6f6e17..49937c8ed6 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -838,7 +838,7 @@ if (! defined('PMA_MINIMUM_COMMON')) { // http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/aaa/mod_access.c?rev=1.37&content-type=text/vnd.viewcvs-markup // Look at: "static int check_dir_access(request_rec *r)" if (isset($cfg['Server']['AllowDeny']) - && isset($cfg['Server']['AllowDeny']['order'])) { + && isset($cfg['Server']['AllowDeny']['order'])) { /** * ip based access library diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 8be5c0e7e4..316113250e 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -706,11 +706,11 @@ function PMA_mysqlDie($error_message = '', $the_query = '', * @uses uksort() * @uses strstr() * @uses explode() - * @param string $db name of db - * @param string $tables name of tables - * @param integer $limit_offset list offset - * @param integer $limit_count max tables to return - * return array (recursive) grouped table list + * @param string $db name of db + * @param string $tables name of tables + * @param integer $limit_offset list offset + * @param int|bool $limit_count max tables to return + * @return array (recursive) grouped table list */ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count = false) { diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index c1b34e0730..842b891a84 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -254,7 +254,7 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals $tables = array(); if (! $GLOBALS['cfg']['Server']['DisableIS']) { - // get table information from information_schema + // get table information from information_schema if ($table) { if (true === $tbl_is_group) { $sql_where_table = 'AND `TABLE_NAME` LIKE \'' @@ -269,13 +269,13 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals $sql_where_table = ''; } - // for PMA bc: - // `SCHEMA_FIELD_NAME` AS `SHOW_TABLE_STATUS_FIELD_NAME` - // - // on non-Windows servers, - // added BINARY in the WHERE clause to force a case sensitive - // comparison (if we are looking for the db Aa we don't want - // to find the db aa) + // for PMA bc: + // `SCHEMA_FIELD_NAME` AS `SHOW_TABLE_STATUS_FIELD_NAME` + // + // on non-Windows servers, + // added BINARY in the WHERE clause to force a case sensitive + // comparison (if we are looking for the db Aa we don't want + // to find the db aa) $this_databases = array_map('PMA_sqlAddslashes', $databases); $sql = ' @@ -945,7 +945,6 @@ function PMA_DBI_get_variable($var, $type = PMA_DBI_GETVAR_SESSION, $link = null * @uses $GLOBALS['mysql_charset_map'] * @uses $GLOBALS['charset'] * @uses $GLOBALS['lang'] - * @uses $GLOBALS['server'] * @uses $GLOBALS['cfg']['Lang'] * @uses defined() * @uses explode() @@ -989,7 +988,7 @@ function PMA_DBI_postConnect($link, $is_controluser = false) define('PMA_DRIZZLE', PMA_MYSQL_MAJOR_VERSION >= 2009); } - /* Skip charsets for Drizzle */ + // Skip charsets for Drizzle if (!PMA_DRIZZLE) { if (! empty($GLOBALS['collation_connection'])) { PMA_DBI_query("SET CHARACTER SET 'utf8';", $link, PMA_DBI_QUERY_STORE); From c8a42882fb5f6286cc0a17476ea91157d01cb4fc Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:06:03 +0200 Subject: [PATCH 004/536] 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 fa51c2bc39..965e9fe922 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-01 10:48+0200\n" +"PO-Revision-Date: 2011-05-03 11:06+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -803,7 +803,7 @@ msgstr "" #: enum_editor.php:67 msgid "Output" -msgstr "出力する" +msgstr "成形結果" #: enum_editor.php:68 msgid "Copy and paste the joined values into the \"Length/Values\" field" From 4f2a6b8711e164cabc229a4cb9df88976749c051 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:06:39 +0200 Subject: [PATCH 005/536] 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 965e9fe922..b3e47d954b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -799,7 +799,7 @@ msgstr "個々の入力欄にそれぞれ値を入力してください。" #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" -msgstr "" +msgstr "+ 書き込みをやり直して、新しい値を追加する。" #: enum_editor.php:67 msgid "Output" From 23f9b74243c4943867c3b940a31aca6abca8478c Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:07:01 +0200 Subject: [PATCH 006/536] 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 b3e47d954b..89065d0520 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:06+0200\n" +"PO-Revision-Date: 2011-05-03 11:07+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -807,7 +807,7 @@ msgstr "成形結果" #: enum_editor.php:68 msgid "Copy and paste the joined values into the \"Length/Values\" field" -msgstr "" +msgstr "結合された値(成形結果)を「長さ/値」フィールドにコピー&ペーストしてください。" #: export.php:73 msgid "Selected export type has to be saved in file!" From 1ec73fc8a8e94eae1915010531bd7512780187b7 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:07:59 +0200 Subject: [PATCH 007/536] Translation update done using Pootle. --- po/ja.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index 89065d0520..aecc57a03d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6723,7 +6723,8 @@ msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" msgstr "" -"お使いのブラウザは、このドメインに対しての phpMyAdmin の設定を保存しています。現在のセッションにその設定を読み込んでもよろしいですか?" +"お使いのブラウザは、このドメインに対しての phpMyAdmin の設定を (Web Storage に) " +"保存しています。現在のセッションにその設定を読み込んでもよろしいですか?" #: libraries/zip_extension.lib.php:25 msgid "No files found inside ZIP archive!" From 7bae7a4e7f28977eef2e2f36be79624fd128612e Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:09:05 +0200 Subject: [PATCH 008/536] 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 aecc57a03d..c7a5e7793e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:07+0200\n" +"PO-Revision-Date: 2011-05-03 11:09+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -965,7 +965,7 @@ msgstr "BLOB 格納を無効にしようとしています!" #: js/messages.php:41 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" -msgstr "" +msgstr "データベース %s に対する全ての BLOB 参照を無効にしようとしていますが、よろしいですか?" #: js/messages.php:44 msgid "Missing value in the form!" From 16e46f0c32f79e1274f80a6894a6cb40d87559ac Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:09:36 +0200 Subject: [PATCH 009/536] 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 c7a5e7793e..f265a0a359 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3111,7 +3111,7 @@ msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" #: libraries/config/messages.inc.php:261 msgid "Initial state for sliders" -msgstr "" +msgstr "折り畳みに対しての初期値" #: libraries/config/messages.inc.php:262 msgid "How many rows can be inserted at one time" From a3179bfb9e6133469c4a86e47cc411878ebda2c6 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:10:05 +0200 Subject: [PATCH 010/536] 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 f265a0a359..f5aa4d7ae4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:09+0200\n" +"PO-Revision-Date: 2011-05-03 11:10+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -2116,7 +2116,7 @@ msgstr "両方" #: libraries/config.values.php:74 msgid "Open" -msgstr "" +msgstr "開いておく" #: libraries/config.values.php:74 #, fuzzy From da84c8730986f60fafaf89729a4fe8b1e862ec64 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:10:19 +0200 Subject: [PATCH 011/536] 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 f5aa4d7ae4..e9bd88b02f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -2119,10 +2119,9 @@ msgid "Open" msgstr "開いておく" #: libraries/config.values.php:74 -#, fuzzy #| msgid "Unclosed quote" msgid "Closed" -msgstr "引用符が閉じていません" +msgstr "閉じておく" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From bf751a6c9315578658192bfc5a3652bac4eb0d66 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:16:10 +0200 Subject: [PATCH 012/536] 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 e9bd88b02f..4d4cb58135 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:10+0200\n" +"PO-Revision-Date: 2011-05-03 11:16+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -96,7 +96,7 @@ msgstr "この値を利用する" #: 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 "BLOB ストリーミングサーバが設定されていません!" #: bs_disp_as_mime_type.php:35 #| msgid "Failed to write file to disk." From 1f274e5ad7ebe5f86422a28ec4f0e9a02170faa1 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:22:51 +0200 Subject: [PATCH 013/536] 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 4d4cb58135..256a3b1f96 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:16+0200\n" +"PO-Revision-Date: 2011-05-03 11:22+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -3638,6 +3638,8 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" +"詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] と " +"[a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。" #: libraries/config/messages.inc.php:381 msgid "Disable use of INFORMATION_SCHEMA" From 0b583d77dcf066e4df4bdaff2816d8f234f70d09 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:23:18 +0200 Subject: [PATCH 014/536] 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 256a3b1f96..d8f294cf5e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:22+0200\n" +"PO-Revision-Date: 2011-05-03 11:23+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -3643,7 +3643,7 @@ msgstr "" #: libraries/config/messages.inc.php:381 msgid "Disable use of INFORMATION_SCHEMA" -msgstr "" +msgstr "INFORMATION_SCHEMA の使用を無効にする" #: libraries/config/messages.inc.php:382 msgid "What PHP extension to use; you should use mysqli if supported" From 69da73ba9beac511a7351814b9170d04eb5a49c2 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:28:11 +0200 Subject: [PATCH 015/536] 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 d8f294cf5e..2a0c679af8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:23+0200\n" +"PO-Revision-Date: 2011-05-03 11:28+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -5439,7 +5439,7 @@ msgstr "CREATE TABLE オプション:" msgid "" "Enclose table and field names with backquotes (Protects field and table " "names formed with special characters or keywords)" -msgstr "逆クオートでテーブルやフィールドの名前を囲む (特殊な文字やキーワードを含むフィールド名やテーブル名を保護します)" +msgstr "逆クォートでテーブルやフィールドの名前を囲む (特殊な文字やキーワードを含むフィールド名やテーブル名を保護します)" #: libraries/export/sql.php:136 msgid "Instead of INSERT statements, use:" From 87ac66be3c5baff0ec2a7abe83e3c2363cf5978d Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:33:11 +0200 Subject: [PATCH 016/536] 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 2a0c679af8..60918336e6 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:28+0200\n" +"PO-Revision-Date: 2011-05-03 11:33+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -6418,7 +6418,7 @@ msgstr "END RAW" #: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" -msgstr "" +msgstr "クエリの最後に逆クォートが自動的に追加されました!" #: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" From a9122ee67d1bc63d0e82c7d18ab10e6e99579409 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:39:20 +0200 Subject: [PATCH 017/536] 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 60918336e6..2138fed6df 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:33+0200\n" +"PO-Revision-Date: 2011-05-03 11:39+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7737,7 +7737,7 @@ msgstr "マスタを変更することはできません" #: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" -msgstr "" +msgstr "マスタサーバを %s へ切り替えるのに成功しました。" #: server_replication.php:180 msgid "This server is configured as master in a replication process." From 82aeb4a62a733a0003ef8ab0074ddc5f0e7043b6 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:40:05 +0200 Subject: [PATCH 018/536] 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 2138fed6df..09dfd87ff0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:39+0200\n" +"PO-Revision-Date: 2011-05-03 11:40+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7732,7 +7732,7 @@ msgstr "マスタのログの位置が読み込めません。マスター上の #: server_replication.php:69 msgid "Unable to change master" -msgstr "マスタを変更することはできません" +msgstr "マスタを切り替えることができません" #: server_replication.php:72 #, php-format From 629791d54a70483052ee3632920443044cc7f601 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:43:28 +0200 Subject: [PATCH 019/536] 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 09dfd87ff0..4311d9c027 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:40+0200\n" +"PO-Revision-Date: 2011-05-03 11:43+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7812,7 +7812,7 @@ msgstr "スレーブの IO スレッドが実行していません!" #: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" -msgstr "" +msgstr "サーバはレプリケーションプロセスではスレーブとして設定されています。どのようにしたいですか?" #: server_replication.php:306 msgid "See slave status table" From 7881fdfc1ac7ba225ce74277e195c78196a6a258 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:44:05 +0200 Subject: [PATCH 020/536] 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 4311d9c027..c98f614af8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:43+0200\n" +"PO-Revision-Date: 2011-05-03 11:44+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7824,7 +7824,7 @@ msgstr "データベースをマスタと同期させる" #: server_replication.php:320 msgid "Control slave:" -msgstr "" +msgstr "スレーブの操作:" #: server_replication.php:323 msgid "Full start" From eb2c82afe36002737dd5a32fc1998a6375c7f31f Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:45:43 +0200 Subject: [PATCH 021/536] 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 c98f614af8..f2e060f510 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:44+0200\n" +"PO-Revision-Date: 2011-05-03 11:45+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7828,7 +7828,7 @@ msgstr "スレーブの操作:" #: server_replication.php:323 msgid "Full start" -msgstr "" +msgstr "全開始" #: server_replication.php:323 msgid "Full stop" From d6eac7336f04265fc67b08dd9cb5997c51b1fb56 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 11:45:52 +0200 Subject: [PATCH 022/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index edf8338be8..02d9163df0 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-01 09:50+0200\n" +"PO-Revision-Date: 2011-05-03 11:45+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -626,7 +626,7 @@ msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 msgid "View" -msgstr "දර්ශනය කරන්න" +msgstr "දසුන" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 From 186dac6555cada0cda1faa1f95d9fa265792af29 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:45:54 +0200 Subject: [PATCH 023/536] 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 f2e060f510..7c51eb8cd0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7832,7 +7832,7 @@ msgstr "全開始" #: server_replication.php:323 msgid "Full stop" -msgstr "" +msgstr "全停止" #: server_replication.php:324 msgid "Reset slave" From da86a5baceb01d3de9f0c69dec45b2e14264248c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 11:46:05 +0200 Subject: [PATCH 024/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 02d9163df0..26d4a41b6e 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:45+0200\n" +"PO-Revision-Date: 2011-05-03 11:46+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -5554,10 +5554,9 @@ msgid "Object creation options (all are recommended)" msgstr "" #: libraries/export/xml.php:40 -#, fuzzy #| msgid "View" msgid "Views" -msgstr "දර්ශනය කරන්න" +msgstr "දසුන්" #: libraries/export/xml.php:47 #, fuzzy From 7f45ba6471d45984ee378748b8773be9514b0245 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:46:24 +0200 Subject: [PATCH 025/536] 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 7c51eb8cd0..3e49c7fa63 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:45+0200\n" +"PO-Revision-Date: 2011-05-03 11:46+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7836,7 +7836,7 @@ msgstr "全停止" #: server_replication.php:324 msgid "Reset slave" -msgstr "" +msgstr "スレーブのリセット" #: server_replication.php:326 #| msgid "Structure only" From 0b78b24e5f14a4c7c5396efc2b44a63e5d904c91 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:53:52 +0200 Subject: [PATCH 026/536] 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 3e49c7fa63..959dc9c0d7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:46+0200\n" +"PO-Revision-Date: 2011-05-03 11:53+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7862,7 +7862,7 @@ msgstr "管理エラー:" #: server_replication.php:340 msgid "Skipping errors might lead into unsynchronized master and slave!" -msgstr "" +msgstr "エラーのスキップは、マスタとスレーブの同期を切ることになるかもしれません!" #: server_replication.php:342 msgid "Skip current error" From 4d71a45de43c469b287c216121e330d51a995dc7 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 11:54:18 +0200 Subject: [PATCH 027/536] 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 959dc9c0d7..d0a57975c3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:53+0200\n" +"PO-Revision-Date: 2011-05-03 11:54+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7866,7 +7866,7 @@ msgstr "エラーのスキップは、マスタとスレーブの同期を切る #: server_replication.php:342 msgid "Skip current error" -msgstr "" +msgstr "現在のエラーをスキップする" #: server_replication.php:343 msgid "Skip next" From 4b9aa973ea12b46810546f3350796b82ed79ec9c Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 12:06:13 +0200 Subject: [PATCH 028/536] Translation update done using Pootle. --- po/ja.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index d0a57975c3..04d202c8b8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:54+0200\n" +"PO-Revision-Date: 2011-05-03 12:06+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7868,6 +7868,7 @@ msgstr "エラーのスキップは、マスタとスレーブの同期を切る msgid "Skip current error" msgstr "現在のエラーをスキップする" +# I think better of "Skip next %s errors." #: server_replication.php:343 msgid "Skip next" msgstr "" From 65d869023e2aa27f2289807550f7cbacacb5285c Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 12:06:41 +0200 Subject: [PATCH 029/536] 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 04d202c8b8..71aa79639d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7875,7 +7875,7 @@ msgstr "" #: server_replication.php:346 msgid "errors." -msgstr "" +msgstr "エラースキップする" #: server_replication.php:361 #, php-format From 2c3fa8aa7cbc11d353b58922aa86e23f1ad06899 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 3 May 2011 14:14:57 +0200 Subject: [PATCH 030/536] Don't display More for views and information_schema tables --- tbl_structure.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tbl_structure.php b/tbl_structure.php index 73374d7a5e..fce4f390bf 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -466,8 +466,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) { + ?> <?php echo __('Show more actions'); ?>
@@ -531,6 +530,9 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
+ Date: Tue, 3 May 2011 14:26:55 +0200 Subject: [PATCH 031/536] Make sure $limit is initialized --- libraries/database_interface.lib.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 842b891a84..22d9671e97 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -282,7 +282,7 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals SELECT *, `TABLE_SCHEMA` AS `Db`, `TABLE_NAME` AS `Name`, - `TABLE_TYPE` ÀS `TABLE_TYPE`, + `TABLE_TYPE` AS `TABLE_TYPE`, `ENGINE` AS `Engine`, `ENGINE` AS `Type`, `VERSION` AS `Version`, @@ -479,7 +479,7 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals * returns array with databases containing extended infos about them * * @todo move into PMA_List_Database? - * @param string $databases database + * @param string $database database * @param boolean $force_stats retrieve stats also for MySQL < 5 * @param resource $link mysql link * @param string $sort_by column to order by @@ -508,9 +508,8 @@ function PMA_DBI_get_databases_full($database = null, $force_stats = false, * if $GLOBALS['cfg']['NaturalOrder'] is enabled, we cannot use LIMIT * cause MySQL does not support natural ordering, we have to do it afterward */ - if ($GLOBALS['cfg']['NaturalOrder']) { - $limit = ''; - } else { + $limit = ''; + if (!$GLOBALS['cfg']['NaturalOrder']) { if ($limit_count) { $limit = ' LIMIT ' . $limit_count . ' OFFSET ' . $limit_offset; } From feb2efbd212438a0b30cd9ea45aa20665fe37eb7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:13:47 +0200 Subject: [PATCH 032/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 26d4a41b6e..8ef89f656a 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 11:46+0200\n" +"PO-Revision-Date: 2011-05-03 15:13+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -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 4d26f288d3ace6463e81f00fa2921c4dc368c4bf Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:14:02 +0200 Subject: [PATCH 033/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 8ef89f656a..f4e928bb0e 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:13+0200\n" +"PO-Revision-Date: 2011-05-03 15:14+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From 4cf923ff58768ec4be3e30a4756586df3c7be86a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:15:09 +0200 Subject: [PATCH 034/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index f4e928bb0e..cbae6d76ba 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:14+0200\n" +"PO-Revision-Date: 2011-05-03 15:15+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1885,7 +1885,7 @@ msgstr "" #, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" -msgstr "අවලංගු සේවාදායක සුචිය: \"%s\"" +msgstr "අවලංගු සේවාදායක සුචිය: %s" #: libraries/common.inc.php:629 #, php-format From f4ddd891a7235d296bf0022ac01748d50c247c32 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:15:20 +0200 Subject: [PATCH 035/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index cbae6d76ba..1957089a26 100644 --- a/po/si.po +++ b/po/si.po @@ -4458,7 +4458,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 4c15d977d85cf9a2bd145ff887e9f63af55b4a5f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:15:30 +0200 Subject: [PATCH 036/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 1957089a26..d0d3fb9b2e 100644 --- a/po/si.po +++ b/po/si.po @@ -4463,7 +4463,7 @@ msgstr "\"%s\" දත්තගබඩාවෙන් වගු අපනයනය #: libraries/display_export.lib.php:91 #, php-format msgid "Exporting rows from \"%s\" table" -msgstr "%s වගුවෙන් තීරු අපනයනය කිරීම" +msgstr "\"%s\" වගුවෙන් තීරු අපනයනය කිරීම" #: libraries/display_export.lib.php:97 msgid "Export Method:" From 30dd04bdfc241c50cba7fb634d9e21e03624d08b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:16:03 +0200 Subject: [PATCH 037/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index d0d3fb9b2e..bec4e4b64d 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:15+0200\n" +"PO-Revision-Date: 2011-05-03 15:16+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -4569,10 +4569,9 @@ msgid "None" msgstr "කිසිවක් නැත" #: libraries/display_export.lib.php:313 -#, fuzzy #| msgid "\"zipped\"" msgid "zipped" -msgstr "\"සිප්ගත කරන ලද\"" +msgstr "zip කරන ලද" #: libraries/display_export.lib.php:315 #, fuzzy From 337e9f20854622c2d5fe3f67b982f388afd9ccb4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:16:38 +0200 Subject: [PATCH 038/536] Translation update done using Pootle. --- po/si.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index bec4e4b64d..c24c15b94b 100644 --- a/po/si.po +++ b/po/si.po @@ -4574,10 +4574,9 @@ msgid "zipped" msgstr "zip කරන ලද" #: libraries/display_export.lib.php:315 -#, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" -msgstr "\"gzipp ගත කරන ලදි\"" +msgstr "gzipp කරන ලද" #: libraries/display_export.lib.php:317 #, fuzzy From e0baa757c57f8a7369b37fee15de6744e47e2304 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:16:50 +0200 Subject: [PATCH 039/536] Translation update done using Pootle. --- po/si.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index c24c15b94b..c4dd31f348 100644 --- a/po/si.po +++ b/po/si.po @@ -4579,10 +4579,9 @@ msgid "gzipped" msgstr "gzipp කරන ලද" #: libraries/display_export.lib.php:317 -#, fuzzy #| msgid "\"bzipped\"" msgid "bzipped" -msgstr "\"bzipp ගතකරන ලදි\"" +msgstr "bzipp කරන ලද" #: libraries/display_export.lib.php:326 #, fuzzy From ccb79f0f3d0780869249fc6dc9988adb826bbfce Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:18:14 +0200 Subject: [PATCH 040/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index c4dd31f348..9313fd520f 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:16+0200\n" +"PO-Revision-Date: 2011-05-03 15:18+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6097,10 +6097,10 @@ msgstr "මුරපදය උත්පාදනය කරන්න" #: 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 "The \"%s\" table doesn't exist!" +msgstr "%s නමින් වගුවක් නොපවතියි!" #: libraries/schema/Dia_Relation_Schema.class.php:253 #: libraries/schema/Eps_Relation_Schema.class.php:441 From 966bb28f1ec5139e36a44366f08388c7605944cf Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:19:37 +0200 Subject: [PATCH 041/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 9313fd520f..7a8ca151f2 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:18+0200\n" +"PO-Revision-Date: 2011-05-03 15:19+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6752,10 +6752,9 @@ msgid "" msgstr "" #: libraries/user_preferences.lib.php:142 -#, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save configuration" -msgstr "Could not load default configuration from: \"%1$s\"" +msgstr "වින්‍යාස සුරැකීම අසමත් විය" #: libraries/user_preferences.lib.php:309 msgid "" From 4f689473ad32d7c4e8f0875f538d591bb044063a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:20:51 +0200 Subject: [PATCH 042/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 7a8ca151f2..321fbbac4d 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:19+0200\n" +"PO-Revision-Date: 2011-05-03 15:20+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -7166,10 +7166,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 "Could not load default configuration from: \"%1$s\"" +msgstr "වින්‍යාස ආනයනය අසමත් විය" #: prefs_manage.php:112 msgid "Configuration contains incorrect data for some fields." From 2f27af47d8de321a77a389c8b2ecac4b10f77272 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:21:29 +0200 Subject: [PATCH 043/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 321fbbac4d..57b7bce4a6 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:20+0200\n" +"PO-Revision-Date: 2011-05-03 15:21+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -7245,10 +7245,9 @@ msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" #: schema_export.php:45 -#, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" -msgstr "The \"%s\" table doesn't exist!" +msgstr "ගොනුව නොපවතියි" #: server_binlog.php:106 msgid "Select binary log to view" From fc47f8b12ca36f867c27c4e33fd3e13a5fea8853 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:21:49 +0200 Subject: [PATCH 044/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 57b7bce4a6..64b73ba991 100644 --- a/po/si.po +++ b/po/si.po @@ -9486,7 +9486,7 @@ msgstr "Table %s has been flushed" #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" -msgstr "Flush the table (\"FLUSH\")" +msgstr "Flush the table (FLUSH)" #: tbl_operations.php:673 msgid "Delete data or table" From d68facbcc8a87ce7926c25562ba528a633502a05 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:22:18 +0200 Subject: [PATCH 045/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 64b73ba991..3732c5f075 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:21+0200\n" +"PO-Revision-Date: 2011-05-03 15:22+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6118,7 +6118,7 @@ msgstr "Please configure the coordinates for table %s" #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" -msgstr "Schema of the \"%s\" database - Page %s" +msgstr "Schema of the %s database - Page %s" #: libraries/schema/Export_Relation_Schema.class.php:174 msgid "This page does not contain any tables!" From 2e89bfc47e548b98b0189e18be0e4cbd513d4853 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:23:14 +0200 Subject: [PATCH 046/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3732c5f075..10e766aed7 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:22+0200\n" +"PO-Revision-Date: 2011-05-03 15:23+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From 70f4a12c46e00c4c07d0ecadb78a5fe52f57a126 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 15:25:12 +0200 Subject: [PATCH 047/536] 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 71aa79639d..46c3788879 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 12:06+0200\n" +"PO-Revision-Date: 2011-05-03 15:25+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7871,7 +7871,7 @@ msgstr "現在のエラーをスキップする" # I think better of "Skip next %s errors." #: server_replication.php:343 msgid "Skip next" -msgstr "" +msgstr "エラースキップする" #: server_replication.php:346 msgid "errors." From 587617edd8a33a4796d84cb965a5048f472d92d5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:25:28 +0200 Subject: [PATCH 048/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 10e766aed7..b1fc3b7abe 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:23+0200\n" +"PO-Revision-Date: 2011-05-03 15:25+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9749,7 +9749,7 @@ msgstr "" #: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" -msgstr "පෙන්වන්න, %s %s දින සිට %s දින දක්වා %s %s භාවිතා කරන්නා විසින් " +msgstr "%s පෙන්වන්න, %s දින සිට %s දින දක්වා %s %s භාවිතා කරන්නා විසින් " #: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" From 4b9a82ed4d6ec27e8bf73693cf2d576f465faa75 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 3 May 2011 15:26:08 +0200 Subject: [PATCH 049/536] 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 46c3788879..c0c1c048fb 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:25+0200\n" +"PO-Revision-Date: 2011-05-03 15:26+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -7875,7 +7875,7 @@ msgstr "エラースキップする" #: server_replication.php:346 msgid "errors." -msgstr "エラースキップする" +msgstr "個" #: server_replication.php:361 #, php-format From adccb9fa9269258285f30e9082f074f0f4d0dce5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:27:16 +0200 Subject: [PATCH 050/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index b1fc3b7abe..2f956a7784 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:25+0200\n" +"PO-Revision-Date: 2011-05-03 15:27+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -493,7 +493,7 @@ msgstr "වගු භාවිතා කරන්න." #: db_qbe.php:659 #, php-format msgid "SQL query on database %s:" -msgstr "%s දත්තගබඩාව මත විමසුම්:" +msgstr "%s දත්තගබඩාව මත SQL විමසුම:" #: db_qbe.php:953 libraries/common.lib.php:1188 msgid "Submit Query" From fdf2c3b30b50aed6b58cfc4e0b5a099e4fb73a79 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:28:08 +0200 Subject: [PATCH 051/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 2f956a7784..fc2683cbb3 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:27+0200\n" +"PO-Revision-Date: 2011-05-03 15:28+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -3994,9 +3994,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 "සම්පූර්ණ විමසුම් පෙන්වන්න" +msgstr "SQL විමසුම් පෙන්වන්න" #: libraries/config/messages.inc.php:452 msgid "Allow to display database and table statistics (eg. space usage)" From 6cb9a5f11cbed10fe8c945acbdda5655cb94252d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:29:16 +0200 Subject: [PATCH 052/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index fc2683cbb3..c583f849e3 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:28+0200\n" +"PO-Revision-Date: 2011-05-03 15:29+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6768,7 +6768,7 @@ msgstr "No files found inside ZIP archive!" #: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 #: libraries/zip_extension.lib.php:65 msgid "Error in ZIP archive:" -msgstr "සිප් ආරක්ෂණයේ දෝෂයක් ඇත:" +msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:" #: main.php:68 #, fuzzy From b6a3f950bcabf6cf3a4757799ba24f537a111499 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:30:03 +0200 Subject: [PATCH 053/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index c583f849e3..7df1716f0f 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:29+0200\n" +"PO-Revision-Date: 2011-05-03 15:30+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -348,7 +348,7 @@ msgstr "" #: db_operations.php:589 msgid "Edit or export relational schema" -msgstr "ක්‍රමානුරූපය (schema) සංස්කරණය හෝ අපනයනය කරන්න." +msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න." #: 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 9a83fc577943402003c694a730568e13a2998215 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:31:53 +0200 Subject: [PATCH 054/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 7df1716f0f..eae5cf7819 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:30+0200\n" +"PO-Revision-Date: 2011-05-03 15:31+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1606,7 +1606,7 @@ msgstr "take it" #: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" -msgstr "‍%s පෙරනිමි (default) තේමාව සොයාගැනීමට නොමැත!" +msgstr "‍%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!" #: libraries/Theme_Manager.class.php:147 #, php-format From d091db9fa7df2957e920e927578fede89f1e52e6 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:32:12 +0200 Subject: [PATCH 055/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index eae5cf7819..5a70f6ac25 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:31+0200\n" +"PO-Revision-Date: 2011-05-03 15:32+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -2610,7 +2610,7 @@ msgstr "ගොනු නාම ටෙම්ප්ලේටය" #, fuzzy #| msgid "%s table(s)" msgid "Dump table" -msgstr "%s table(s)" +msgstr "Dump table" #: libraries/config/messages.inc.php:90 libraries/export/latex.php:31 msgid "Include table caption" From b4893f884c6bdd9844920319c426626ae61bdf55 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:32:36 +0200 Subject: [PATCH 056/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 5a70f6ac25..d4fd8c42c6 100644 --- a/po/si.po +++ b/po/si.po @@ -2935,7 +2935,7 @@ msgstr "සේවාදායකයට සම්බන්ධ වීමේ පර #: libraries/config/messages.inc.php:201 msgid "Configuration storage" -msgstr "වින්‍යාස ගබඩාව (Configuration storage)" +msgstr "වින්‍යාස ගබඩාව" #: libraries/config/messages.inc.php:202 msgid "" From 75b3ffae90c153f26792564cad20a86784658adf Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:33:08 +0200 Subject: [PATCH 057/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index d4fd8c42c6..f59332b22b 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:32+0200\n" +"PO-Revision-Date: 2011-05-03 15:33+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -3010,7 +3010,7 @@ msgstr "ඇරඹුම් පිටුව රිසි සේ සකසන් #: libraries/config/messages.inc.php:221 msgid "Tabs" -msgstr "පටිති (tabs)" +msgstr "ටැබ්" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" From 24a4968fae8a64af2967ffaa7ab1fd101a8283d7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:33:19 +0200 Subject: [PATCH 058/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index f59332b22b..e56da9003c 100644 --- a/po/si.po +++ b/po/si.po @@ -3014,7 +3014,7 @@ msgstr "ටැබ්" #: libraries/config/messages.inc.php:222 msgid "Choose how you want tabs to work" -msgstr "පටිති (tabs) ක්‍රියා කල යුතු ආකාරය තෝරන්න" +msgstr "ටැබ් ක්‍රියා කල යුතු ආකාරය තෝරන්න" #: libraries/config/messages.inc.php:223 #, fuzzy From f30f848348d18c586737478476d58286e404edae Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:34:15 +0200 Subject: [PATCH 059/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index e56da9003c..1c9edb0fa2 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:33+0200\n" +"PO-Revision-Date: 2011-05-03 15:34+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -3488,10 +3488,9 @@ msgid "Query window height" msgstr "Query window" #: libraries/config/messages.inc.php:342 -#, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" -msgstr "Query window" +msgstr "විමසුම් කවුළුවේ පළල (pixel වලින්)" #: libraries/config/messages.inc.php:343 #, fuzzy From 8fb0f78815876c72e9f5afcfd94bedc8f54f3fd8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:34:25 +0200 Subject: [PATCH 060/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 1c9edb0fa2..f3440d1358 100644 --- a/po/si.po +++ b/po/si.po @@ -4365,7 +4365,7 @@ msgstr "වරප්‍රසාද" #: libraries/db_routines.inc.php:24 libraries/db_routines.inc.php:26 msgid "Routines" -msgstr "නෛත්‍යක (Routines)" +msgstr "නෛත්‍යක" #: libraries/db_routines.inc.php:37 msgid "Return type" From f4cf9bf9f75842ee1e9a591e5b582508ca1a2001 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:35:06 +0200 Subject: [PATCH 061/536] Translation update done using Pootle. --- po/si.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index f3440d1358..2088ed01e6 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:34+0200\n" +"PO-Revision-Date: 2011-05-03 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -4375,7 +4375,9 @@ msgstr "" msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බලන්න" +msgstr "" +"සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a] බලන්න" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." From 6bd802b4b5e0ade5a1ce027505f4d3348f184361 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:35:50 +0200 Subject: [PATCH 062/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 2088ed01e6..b48fc2e1b1 100644 --- a/po/si.po +++ b/po/si.po @@ -4491,7 +4491,7 @@ msgstr "පේළි:" #: libraries/display_export.lib.php:157 msgid "Dump some row(s)" -msgstr "සමහර පේළි පමණක් ප්‍රතිදානය කරන්න" +msgstr "සමහර පේළි(ය) පමණක් ප්‍රතිදානය කරන්න" #: libraries/display_export.lib.php:159 msgid "Number of rows:" From 584641f375faf77a86728ce5a23e837db36c14c7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:36:32 +0200 Subject: [PATCH 063/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index b48fc2e1b1..da65450532 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:35+0200\n" +"PO-Revision-Date: 2011-05-03 15:36+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -5530,7 +5530,7 @@ msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:873 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" -msgstr "ප්‍රේරක (Triggers)" +msgstr "ප්‍රේරක" #: libraries/export/sql.php:885 #, fuzzy From 54223d018d2bdda301d93f53095c6b7e51782820 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:44:31 +0200 Subject: [PATCH 064/536] Translation update done using Pootle. --- po/si.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index da65450532..a1e4010de1 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:36+0200\n" +"PO-Revision-Date: 2011-05-03 15:44+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -5620,7 +5620,9 @@ msgstr "" msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" -msgstr "ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය." +msgstr "" +"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය " +"දත්ත සේ ගැනේ)" #: libraries/import/csv.php:39 msgid "" From 9763f13f7907da5a6157fe532c0984cd71125c80 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:46:31 +0200 Subject: [PATCH 065/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index a1e4010de1..ccb90780c5 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:44+0200\n" +"PO-Revision-Date: 2011-05-03 15:46+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6849,7 +6849,7 @@ 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 වන, මුරපදයක් නොමැති සිටුවම " +"ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) " "පෙරනිමි MySQL වරප්‍රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම " "අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ root භාවිතා කරන්නා සඳහා වෙනත් " "මුරපදයක් ලබා දිය යුතුය. " From 272f039f8d6ae243f48a1d4c649402c2d0a8044d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:46:45 +0200 Subject: [PATCH 066/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index ccb90780c5..439e8450ed 100644 --- a/po/si.po +++ b/po/si.po @@ -6919,8 +6919,8 @@ msgid "" "automatically." msgstr "" "ඔබගේ බවුසරයේ Javascript සහය නැත/අක්‍රිය කර ඇත. එබැවින් යම් phpMyAdmin " -"විශේෂාංග අක්‍රිය වී ඇත. උදාහරණයක් ලෙස යාත්‍රණ රාමුව (navigation frame) " -"ස්වයංක්‍රියව යාවත්කාලීන නොවේ." +"විශේෂාංග අක්‍රිය වී ඇත. උදාහරණයක් ලෙස යාත්‍රණ රාමුව ස්වයංක්‍රියව යාවත්කාලීන " +"නොවේ." #: main.php:343 #, php-format From b145aef6d95e4f6af7f560039e3ca2709a8a3960 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:46:54 +0200 Subject: [PATCH 067/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 439e8450ed..80350dac72 100644 --- a/po/si.po +++ b/po/si.po @@ -7774,7 +7774,7 @@ msgstr "" #: server_processlist.php:65 msgid "ID" -msgstr "හැඳුනුම් අංකය (ID)" +msgstr "හැඳුනුම් අංකය" #: server_replication.php:49 msgid "Unknown error" From bc5376f5a60c7abfe11c027114ca8969fcab8f06 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:47:19 +0200 Subject: [PATCH 068/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 80350dac72..d78f1b169f 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:46+0200\n" +"PO-Revision-Date: 2011-05-03 15:47+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -7859,7 +7859,7 @@ msgid "" "should see a message informing you, that this server is configured as " "master" msgstr "" -"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න(Go) බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම " +"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම " "සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත." #: server_replication.php:291 From 1ab81cfecc2ba9b69990039a87c3179a07efe25e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:47:35 +0200 Subject: [PATCH 069/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index d78f1b169f..3033127d45 100644 --- a/po/si.po +++ b/po/si.po @@ -8249,7 +8249,7 @@ msgstr "The number of physical writes to the log file." #: server_status.php:93 msgid "The number of fsync() writes done to the log file." -msgstr "The number of fsyncs writes done to the log file." +msgstr "The number of fsyncs() writes done to the log file." #: server_status.php:94 msgid "The number of pending log file fsyncs." From 5d13fe16262d02875a11c91cc2c2a2778c1a13d7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:48:39 +0200 Subject: [PATCH 070/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 3033127d45..55870f8da5 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:47+0200\n" +"PO-Revision-Date: 2011-05-03 15:48+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9504,7 +9504,7 @@ msgstr "වගුව ඉවත් කරන්න (DROP)" #: tbl_operations.php:729 msgid "Partition maintenance" -msgstr "කොටස් (partition) නඩත්තුව" +msgstr "කොටස් නඩත්තුව" #: tbl_operations.php:737 #, php-format From b2216cf9271cb7f6b25f514dc06cc69cf02ff5ee Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:49:06 +0200 Subject: [PATCH 071/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 55870f8da5..bfaaaa1169 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:48+0200\n" +"PO-Revision-Date: 2011-05-03 15:49+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1515,7 +1515,7 @@ msgstr "%s සූචිය හලන ලදි" 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 සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක. " +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 ffc3bd3265fb205e4719ab4cd739ced24100fc52 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:49:12 +0200 Subject: [PATCH 072/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index bfaaaa1169..6c50e1099a 100644 --- a/po/si.po +++ b/po/si.po @@ -2320,7 +2320,7 @@ msgid "" "authentication" msgstr "" "[kbd]කුකී [/kbd] සත්‍යාපනය භවිතා කිරීමේදී කුකිය encrypt කිරීමට යොදාගන්නා " -"රහස් වාක්‍ය ඛණ්ඩය " +"රහස් වාක්‍ය ඛණ්ඩය" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" From 4303c338f3f57ce9ff831eeb4dfa70920724b9ef Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:49:22 +0200 Subject: [PATCH 073/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 6c50e1099a..d6f621c4a7 100644 --- a/po/si.po +++ b/po/si.po @@ -2347,7 +2347,7 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"ආනයන, අපනයාන සඳහා [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] හැකිළීම " +"ආනයන, අපනයාන සඳහා [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] හැකිළීම " "සක්‍රීය කරන්න" #: libraries/config/messages.inc.php:31 From ec30437a6454f57a3694e9368035747db4829cd6 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:49:36 +0200 Subject: [PATCH 074/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index d6f621c4a7..cb96167ecb 100644 --- a/po/si.po +++ b/po/si.po @@ -4930,7 +4930,7 @@ msgstr "Read requests" #: libraries/engines/innodb.lib.php:234 msgid "Write requests" -msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" +msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" #: libraries/engines/innodb.lib.php:240 msgid "Read misses" From 8ecfd8548591194c5338c21166a0d6f174a6f9d7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:49:56 +0200 Subject: [PATCH 075/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index cb96167ecb..1de3b1de44 100644 --- a/po/si.po +++ b/po/si.po @@ -7850,7 +7850,7 @@ msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -"දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව " +"දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව " "සේවාදායකය නැවත පණගන්වන්න." #: server_replication.php:228 From 01f0705c2c91b00b6b1796010b6dd1b355989bf4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:50:04 +0200 Subject: [PATCH 076/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 1de3b1de44..f5c504c1bf 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:49+0200\n" +"PO-Revision-Date: 2011-05-03 15:50+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -8878,8 +8878,8 @@ msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -"ඉලක්ක දත්තගබඩාව මූලාශ්‍ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. " -"මූලාශ්‍ර දත්තගබඩාව නොවෙනස්ව පවතියි." +"ඉලක්ක දත්තගබඩාව මූලාශ්‍ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. මූලාශ්‍ර " +"දත්තගබඩාව නොවෙනස්ව පවතියි." #: server_variables.php:39 msgid "Server variables and settings" From dc3ab6f272179ef1c3a780628885d679e1a62da8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:51:13 +0200 Subject: [PATCH 077/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index f5c504c1bf..7ecf171a67 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:50+0200\n" +"PO-Revision-Date: 2011-05-03 15:51+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -8923,7 +8923,7 @@ msgid "" "link[/a] to use a secure connection." msgstr "" "ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්‍ෂිත " -"සම්බන්දතාවන් භාවිත කිරීමට [a@%s]මෙම[/a] සබැඳුම වෙත යන්න." +"සම්බන්දතාවන් භාවිත කිරීමට [a@%s]මෙම[/a] සබැඳුම වෙත යන්න." #: setup/frames/index.inc.php:64 msgid "Insecure connection" From 9a4481dbc2a01d4f52068895766cc03ca37a6e4e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:51:24 +0200 Subject: [PATCH 078/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 7ecf171a67..0bcbccfb4d 100644 --- a/po/si.po +++ b/po/si.po @@ -8935,7 +8935,7 @@ msgstr "දළ විශ්ලේෂණය" #: setup/frames/index.inc.php:96 msgid "Show hidden messages (#MSG_COUNT)" -msgstr "සැඟවුණු පණිවිඩ පෙන්වන්න (#MSG_COUNT)" +msgstr "සැඟවුණු පණිවිඩ පෙන්වන්න (#MSG_COUNT)" #: setup/frames/index.inc.php:136 msgid "There are no configured servers" From e82c1835b3a180becec42ca7254d34e22076742e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:52:16 +0200 Subject: [PATCH 079/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 0bcbccfb4d..b69f52496c 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:51+0200\n" +"PO-Revision-Date: 2011-05-03 15:52+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -874,7 +874,7 @@ msgid "" msgstr "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " -"FAQ 1.16." +"[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 044113ff87adae3c72557349eda22357472e18a4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:52:50 +0200 Subject: [PATCH 080/536] Translation update done using Pootle. --- po/si.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index b69f52496c..20dfe22eb5 100644 --- a/po/si.po +++ b/po/si.po @@ -34,8 +34,9 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -"ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්‍රව්සරයේ " -"ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක" +"ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ " +"ඔබගේ බ්‍රව්සරයේ ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස " +"සකසා තිබීම මීට හේතු විය හැක." #: browse_foreigners.php:151 libraries/common.lib.php:2828 #: libraries/common.lib.php:2835 libraries/common.lib.php:3014 From b6ec5dcf6f7da496f03037f31851e2f7319bf5aa Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:52:59 +0200 Subject: [PATCH 081/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 20dfe22eb5..de9f2d52e1 100644 --- a/po/si.po +++ b/po/si.po @@ -96,7 +96,7 @@ msgstr "මෙම අගය භාවිතා කරන්න" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "Blog streaming සේවාදායකයක් සකස් කර නැත." +msgstr "Blog streaming සේවාදායකයක් සකස් කර නැත!" #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" From 6f4e60fed333bc1f99e8b9cab50ab2eec1d9da0a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:05 +0200 Subject: [PATCH 082/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index de9f2d52e1..2d68b4f444 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:52+0200\n" +"PO-Revision-Date: 2011-05-03 15:53+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -100,7 +100,7 @@ msgstr "Blog streaming සේවාදායකයක් සකස් කර න #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" -msgstr "ශීර්ෂකය ලබා ගැනීමට නොහැකි විය." +msgstr "ශීර්ෂකය ලබා ගැනීමට නොහැකි විය" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From d137b9380553bb0061e82cbe55ad25fd6c4b5e72 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:12 +0200 Subject: [PATCH 083/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 2d68b4f444..5d8958654f 100644 --- a/po/si.po +++ b/po/si.po @@ -104,7 +104,7 @@ msgstr "ශීර්ෂකය ලබා ගැනීමට නොහැකි #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "දුරස්ථ URL විවෘත කිරීම අසමත් විය." +msgstr "දුරස්ථ URL විවෘත කිරීම අසමත් විය" #: changelog.php:32 license.php:28 #, php-format From f4b483d62f21b0fd9bfd3225b8575ca18b917c29 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:16 +0200 Subject: [PATCH 084/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 5d8958654f..a7e3ecc9b7 100644 --- a/po/si.po +++ b/po/si.po @@ -277,7 +277,7 @@ msgstr "විධානය" #: db_operations.php:433 msgid "Remove database" -msgstr "දත්තගබඩාව ඉවත් කරන්න." +msgstr "දත්තගබඩාව ඉවත් කරන්න" #: db_operations.php:445 #, php-format From 6511cb1b478faf77a58ac2124b1e2703ee82de29 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:28 +0200 Subject: [PATCH 085/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index a7e3ecc9b7..b87d49299b 100644 --- a/po/si.po +++ b/po/si.po @@ -349,7 +349,7 @@ msgstr "" #: db_operations.php:589 msgid "Edit or export relational schema" -msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න." +msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" #: 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 702a4332772c60785e8e242390605baf79562936 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:32 +0200 Subject: [PATCH 086/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index b87d49299b..a9ef320935 100644 --- a/po/si.po +++ b/po/si.po @@ -411,7 +411,7 @@ msgstr[1] "%s වගු" #: tbl_operations.php:224 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 විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි" #: db_qbe.php:38 msgid "You have to choose at least one column to display" From d13bc69ef0d4e039f38a3e150c8643166a36c008 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:35 +0200 Subject: [PATCH 087/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index a9ef320935..4c0a101eb5 100644 --- a/po/si.po +++ b/po/si.po @@ -477,7 +477,7 @@ msgstr "වෙනස් කිරීම" #: db_qbe.php:603 msgid "Add/Delete criteria rows" -msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න." +msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" #: db_qbe.php:615 msgid "Add/Delete columns" From e4e571f5ee19f067e0b3add81333957e55f69a6a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:39 +0200 Subject: [PATCH 088/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 4c0a101eb5..d7ff196853 100644 --- a/po/si.po +++ b/po/si.po @@ -489,7 +489,7 @@ msgstr "විමසුම යාවත්කාලීන කරන්න" #: db_qbe.php:636 msgid "Use Tables" -msgstr "වගු භාවිතා කරන්න." +msgstr "වගු භාවිතා කරන්න" #: db_qbe.php:659 #, php-format From 87b0938ff3505d961dda547d95cb76fc5f70f8de Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:47 +0200 Subject: [PATCH 089/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index d7ff196853..989a6fc327 100644 --- a/po/si.po +++ b/po/si.po @@ -532,8 +532,8 @@ msgstr "\"%s\" %s සඳහා සෙවීම් ප්‍රතිළ #, php-format msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "%s වගුව තුල ගැලපීම් %s කි." -msgstr[1] "%s වගුව තුල ගැලපීම් %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 469bf80b50f8d91042a5ed1422bf89cd1211ba5c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:51 +0200 Subject: [PATCH 090/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 989a6fc327..75643b14f6 100644 --- a/po/si.po +++ b/po/si.po @@ -562,8 +562,8 @@ msgstr "ඉවත් කරන්න" #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "එකතුව: %s ගැලපුමයි." -msgstr[1] "එකතුව: ගැලපුම් %s යි." +msgstr[0] "එකතුව: %s ගැලපුමයි" +msgstr[1] "එකතුව: ගැලපුම් %s යි" #: db_search.php:295 msgid "Search in database" From 96c1e660dd93ae19baea5db45dd685ad5b1be54e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:53:55 +0200 Subject: [PATCH 091/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 75643b14f6..98f560629c 100644 --- a/po/si.po +++ b/po/si.po @@ -591,7 +591,7 @@ msgstr "තීරය තුල:" #: db_structure.php:59 msgid "No tables found in database" -msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." +msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත" #: db_structure.php:277 tbl_operations.php:684 #, php-format From 57b9b37f5fee2bff9dc5c6323cb5c8de428d2db2 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:54:06 +0200 Subject: [PATCH 092/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 98f560629c..30b0501064 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:53+0200\n" +"PO-Revision-Date: 2011-05-03 15:54+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -806,7 +806,7 @@ msgstr "එක් එක් අගයන් වෙන වෙනම ක්ෂේ #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" -msgstr "+ ඇතුලත් කිරීම නැවත අරඹා අලුත් අගයක් එකතු කරන්න." +msgstr "+ ඇතුලත් කිරීම නැවත අරඹා අලුත් අගයක් එකතු කරන්න" #: enum_editor.php:67 msgid "Output" From 08689e7f70ffa1f54c6f9bfbd85a50711141e80b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:54:16 +0200 Subject: [PATCH 093/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 30b0501064..43f03968d3 100644 --- a/po/si.po +++ b/po/si.po @@ -823,7 +823,7 @@ msgstr "Selected export type has to be saved in file!" #: export.php:164 export.php:189 export.php:671 #, php-format msgid "Insufficient space to save the file %s." -msgstr "Insufficient space to save the file %s ගොනුව සේව් කිරීමට ප්‍රමාණවත් ." +msgstr "Insufficient space to save the file %s ගොනුව සේව් කිරීමට ප්‍රමාණවත්." #: export.php:307 #, php-format From ad630dadb3b2c4425c4aa8773a7b7a28ada1bb5f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:54:21 +0200 Subject: [PATCH 094/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 43f03968d3..5e318b664b 100644 --- a/po/si.po +++ b/po/si.po @@ -1075,7 +1075,7 @@ msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින #: js/messages.php:75 msgid "Table must have at least one column" -msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි." +msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි" #: js/messages.php:76 msgid "Create Table" From ddb1e81f721106e06cc067111eda863756897246 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:54:25 +0200 Subject: [PATCH 095/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 5e318b664b..8c3c8a1e92 100644 --- a/po/si.po +++ b/po/si.po @@ -1133,7 +1133,7 @@ msgstr "" # Terms - ICTA #: js/messages.php:101 msgid "Select Foreign Key" -msgstr "අන්‍ය මූලය තෝරන්න." +msgstr "අන්‍ය මූලය තෝරන්න" #: js/messages.php:102 msgid "Please select the primary key or a unique key" From d7f8163f682d8568186e9e5c886bb6342924ee4d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:54:39 +0200 Subject: [PATCH 096/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 8c3c8a1e92..b8da2fde94 100644 --- a/po/si.po +++ b/po/si.po @@ -1137,7 +1137,7 @@ msgstr "අන්‍ය මූලය තෝරන්න" #: js/messages.php:102 msgid "Please select the primary key or a unique key" -msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න." +msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න" #: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" From 6fdb69272640bf8343c517f39b6eac15ad85b108 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:54:55 +0200 Subject: [PATCH 097/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index b8da2fde94..cf59f0c9b7 100644 --- a/po/si.po +++ b/po/si.po @@ -1171,7 +1171,7 @@ msgid "" "upgrading. The newest version is %s, released on %s." msgstr "" "නව phpMyAdmin අනුවාදයක් නිකුත් වී ඇති බැවින් එය ලබා ගැනීම සලකා බලන්න. නවතම " -"phpMyAdmin අනුවාදය %s අනුවාදයයි. (%s දින නිකුත් කරන ලද)" +"phpMyAdmin අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version #: js/messages.php:119 From a211ef88042d915ab20548e06992d4354dc6e17b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:55:17 +0200 Subject: [PATCH 098/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index cf59f0c9b7..181bf47594 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:54+0200\n" +"PO-Revision-Date: 2011-05-03 15:55+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1464,8 +1464,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය. " -"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න." +"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" From 51b849af2781840207b1b989b45d89ffd74068d4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:55:25 +0200 Subject: [PATCH 099/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 181bf47594..3e075e7b6a 100644 --- a/po/si.po +++ b/po/si.po @@ -1535,8 +1535,8 @@ msgstr "දෝෂය" #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "පේළියකට බලපෑවේය" -msgstr[1] "පේළි %1$dකට බලපෑවේය" +msgstr[0] "පේළියකට බලපෑවේය." +msgstr[1] "පේළි %1$dකට බලපෑවේය." #: libraries/Message.class.php:300 #, php-format From 5640399abf3a548c8f7487a9f64af0336e0a8bd6 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:55:30 +0200 Subject: [PATCH 100/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3e075e7b6a..36d9803ba9 100644 --- a/po/si.po +++ b/po/si.po @@ -1724,7 +1724,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 b50107a2131da9b4e564816a552d6e15187b2523 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:55:40 +0200 Subject: [PATCH 101/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 36d9803ba9..c5223d0333 100644 --- a/po/si.po +++ b/po/si.po @@ -1740,7 +1740,7 @@ msgstr "PBMS දෝෂය" #: libraries/blobstreaming.lib.php:267 msgid "PBMS connection failed:" -msgstr "PBMS සම්බන්ධතාවය අසමත් විය." +msgstr "PBMS සම්බන්ධතාවය අසමත් විය:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" From 3632f1ae3dd7a8856bd600e9e50786defc2e8892 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:55:46 +0200 Subject: [PATCH 102/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index c5223d0333..e6fa404afc 100644 --- a/po/si.po +++ b/po/si.po @@ -1764,7 +1764,7 @@ msgstr "වීඩියෝ නරඹන්න" #: libraries/blobstreaming.lib.php:360 msgid "Download file" -msgstr "ගොනුව බාගත කරන්න." +msgstr "ගොනුව බාගත කරන්න" #: libraries/blobstreaming.lib.php:421 #, php-format From ca58f8b316adeeb2ebdd173a3765523bc66c6a88 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:56:12 +0200 Subject: [PATCH 103/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index e6fa404afc..6f78139b65 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:55+0200\n" +"PO-Revision-Date: 2011-05-03 15:56+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1769,7 +1769,7 @@ msgstr "ගොනුව බාගත කරන්න" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "%s ගොනුව විවෘත කිරීමට නොහැකි විය." +msgstr "ගොනුව විවෘත කිරීමට නොහැකි විය: %s" #: libraries/bookmark.lib.php:83 msgid "shared" From 91d056f04c9e8d1d397ce74ee57deaea9e6624e3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:56:36 +0200 Subject: [PATCH 104/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 6f78139b65..3affdd7121 100644 --- a/po/si.po +++ b/po/si.po @@ -2247,7 +2247,7 @@ msgstr "SQL වලංගු කරණය අක්‍රීය කර ඇත. " #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" -msgstr "SOAP දිගුව හමු නොවිණි." +msgstr "SOAP දිගුව හමු නොවිණි" #: libraries/config/FormDisplay.class.php:781 #, php-format From 790770bf89cdfff4e1ae2f8f544c8fa9c94b106f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:56:52 +0200 Subject: [PATCH 105/536] Translation update done using Pootle. --- po/si.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 3affdd7121..1f3890fb10 100644 --- a/po/si.po +++ b/po/si.po @@ -2524,9 +2524,8 @@ msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" #: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:236 -#, fuzzy msgid "Character set of the file" -msgstr "ගොනුවේ අක්ෂර කට්ටලය:" +msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_printview.php:373 tbl_structure.php:830 From 0e10168067bd433788879b0d375d1844a574d5cd Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:56:59 +0200 Subject: [PATCH 106/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 1f3890fb10..cae72ee853 100644 --- a/po/si.po +++ b/po/si.po @@ -2554,7 +2554,7 @@ msgstr "Put fields names in the first row" #: libraries/config/messages.inc.php:245 libraries/import/csv.php:75 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" -msgstr "තීර ඇවුරුම් සළකුණ:" +msgstr "තීර ඇවුරුම් සළකුණ" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:239 #: libraries/config/messages.inc.php:246 libraries/import/csv.php:80 From 242a08f40a43ed48b667fe49d1138fc50b8f7350 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:57:05 +0200 Subject: [PATCH 107/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index cae72ee853..c7fdc83674 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:56+0200\n" +"PO-Revision-Date: 2011-05-03 15:57+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -2560,7 +2560,7 @@ msgstr "තීර ඇවුරුම් සළකුණ" #: libraries/config/messages.inc.php:246 libraries/import/csv.php:80 #: libraries/import/ldi.php:42 msgid "Columns escaped by" -msgstr "තීර මගහැරීමේ සළකුණ:" +msgstr "තීර මගහැරීමේ සළකුණ" #: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 #: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 From 7905e7b7b520ad30eb66658e25a41864fd5f524b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:57:09 +0200 Subject: [PATCH 108/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index c7fdc83674..7ccb7bbabc 100644 --- a/po/si.po +++ b/po/si.po @@ -2578,7 +2578,7 @@ msgstr "" #: libraries/config/messages.inc.php:250 libraries/import/csv.php:62 #: libraries/import/ldi.php:40 msgid "Columns terminated by" -msgstr "තීර වෙන් කිරීමේ සළකුණ:" +msgstr "තීර වෙන් කිරීමේ සළකුණ" #: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:237 #: libraries/import/csv.php:85 libraries/import/ldi.php:43 From c12beba375479ecd8476c8d32ae401115ad7ee75 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:57:13 +0200 Subject: [PATCH 109/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 7ccb7bbabc..93a4efdc17 100644 --- a/po/si.po +++ b/po/si.po @@ -2583,7 +2583,7 @@ msgstr "තීර වෙන් කිරීමේ සළකුණ" #: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:237 #: libraries/import/csv.php:85 libraries/import/ldi.php:43 msgid "Lines terminated by" -msgstr "පේළි අවසන් කිරීමේ සළකුණ:" +msgstr "පේළි අවසන් කිරීමේ සළකුණ" #: libraries/config/messages.inc.php:80 #| msgid "Excel edition" From 3b1784b71a015094be533307634d628bdb06feb4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:57:22 +0200 Subject: [PATCH 110/536] Translation update done using Pootle. --- po/si.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 93a4efdc17..65e25c73ef 100644 --- a/po/si.po +++ b/po/si.po @@ -4073,9 +4073,8 @@ msgstr "" #: libraries/config/messages.inc.php:471 tbl_tracking.php:405 #: tbl_tracking.php:456 -#, fuzzy msgid "Username" -msgstr "භාවිත නාමය:" +msgstr "භාවිත නාමය" #: libraries/config/messages.inc.php:472 msgid "" From 7cae49add96e21dbd29a22b3704566a8a87561de Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:57:45 +0200 Subject: [PATCH 111/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 65e25c73ef..17215de468 100644 --- a/po/si.po +++ b/po/si.po @@ -4812,7 +4812,7 @@ msgstr "මුළු එකතුව" #: libraries/display_tbl.lib.php:2025 sql.php:628 #, php-format msgid "Query took %01.4f sec" -msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි." +msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" #: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561 From ec5f8e5da5f4e6f2d1be8d49d6fd87f74ddb8418 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:58:04 +0200 Subject: [PATCH 112/536] Translation update done using Pootle. --- po/si.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 17215de468..50fe22c72e 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:57+0200\n" +"PO-Revision-Date: 2011-05-03 15:58+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -5285,10 +5285,9 @@ msgid "Remove carriage return/line feed characters within columns" msgstr "" #: libraries/export/excel.php:32 -#, fuzzy #| msgid "Excel edition" msgid "Excel edition:" -msgstr "එක්සෙල් සංස්කරණය" +msgstr "එක්සෙල් සංස්කරණය:" #: libraries/export/htmlword.php:27 libraries/export/latex.php:69 #: libraries/export/odt.php:55 libraries/export/sql.php:132 From dc4d717df9e18b37707cd2f790c459b81b027ee9 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:58:18 +0200 Subject: [PATCH 113/536] Translation update done using Pootle. --- po/si.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 50fe22c72e..15f5baab24 100644 --- a/po/si.po +++ b/po/si.po @@ -5390,10 +5390,9 @@ msgid "(Generates a report containing the data of a single table)" msgstr "(Generates a report containing the data of a single table)" #: libraries/export/pdf.php:24 -#, fuzzy #| msgid "Report title" msgid "Report title:" -msgstr "වාර්තා මාතෘකාව" +msgstr "වාර්තා මාතෘකාව:" #: libraries/export/php_array.php:16 msgid "PHP array" From 99ebd7ff4c5fbe415c135e091e97f2306c289a05 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:59:29 +0200 Subject: [PATCH 114/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 15f5baab24..8d116346b7 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:58+0200\n" +"PO-Revision-Date: 2011-05-03 15:59+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6207,7 +6207,7 @@ msgstr "වගු වල මාන පෙන්වන්න" #: libraries/schema/User_Schema.class.php:384 msgid "Display all tables with the same width" -msgstr "එකම ප්‍රමාණයේ සියලු වගු පෙන්වන්න?" +msgstr "සියලු වගු එකම ප්‍රමාණයෙන් පෙන්වන්න" #: libraries/schema/User_Schema.class.php:389 msgid "Only show keys" From 5374bf179301ce7aec896b491da13c91d176aac5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:59:41 +0200 Subject: [PATCH 115/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 8d116346b7..1593d59959 100644 --- a/po/si.po +++ b/po/si.po @@ -7695,7 +7695,7 @@ msgstr "ලොගින් තොරතුරු වෙනස් කරන්න #: server_privileges.php:2112 msgid "Create a new user with the same privileges and ..." -msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න..." +msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..." #: server_privileges.php:2114 msgid "... keep the old one." From 19d7ccdc05bb0e852ce8c93d23688d3ac7e6f8db Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 15:59:56 +0200 Subject: [PATCH 116/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 1593d59959..948a5c0cce 100644 --- a/po/si.po +++ b/po/si.po @@ -7780,7 +7780,7 @@ msgstr "හඳුනා නොගත් දෝෂය" #: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." -msgstr "master %s වෙත සම්බන්ධ විය නොහැක" +msgstr "master %s වෙත සම්බන්ධ විය නොහැක." #: server_replication.php:63 msgid "" From 8e6d0f0ecc420290244eb02788b786ac3d2b3a87 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:00:07 +0200 Subject: [PATCH 117/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 948a5c0cce..91dcb8dc40 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 15:59+0200\n" +"PO-Revision-Date: 2011-05-03 16:00+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -7794,7 +7794,7 @@ msgstr "Master වෙනස් කල නොහැක" #: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" -msgstr "Master සේවාදායකය %s වෙත සාර්ථකව වෙනස් කරන ලදි." +msgstr "Master සේවාදායකය %s වෙත සාර්ථකව වෙනස් කරන ලදි" #: server_replication.php:180 msgid "This server is configured as master in a replication process." From c1c01d899988ecc3b5d92695a7a28eafb3d3dda7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:00:24 +0200 Subject: [PATCH 118/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 91dcb8dc40..3c4469f0d1 100644 --- a/po/si.po +++ b/po/si.po @@ -7857,7 +7857,7 @@ msgid "" "master" msgstr "" "සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම " -"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත." +"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත" #: server_replication.php:291 msgid "Slave SQL Thread not running!" From f510a4f05fa1cbc09f6bdeb8fde92bc355706fb1 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:00:41 +0200 Subject: [PATCH 119/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3c4469f0d1..0f277b36ed 100644 --- a/po/si.po +++ b/po/si.po @@ -7874,7 +7874,7 @@ msgstr "සේවාදායකය අනුරූ ක්‍රියාවල #: server_replication.php:306 msgid "See slave status table" -msgstr "slave තත්ව වගුව බලන්න." +msgstr "slave තත්ව වගුව බලන්න" #: server_replication.php:309 msgid "Synchronize databases with master" From cae57a0288894ff92dedce67cf23b371bd1eb164 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:00:46 +0200 Subject: [PATCH 120/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 0f277b36ed..a0de85ef67 100644 --- a/po/si.po +++ b/po/si.po @@ -7878,7 +7878,7 @@ msgstr "slave තත්ව වගුව බලන්න" #: server_replication.php:309 msgid "Synchronize databases with master" -msgstr "දත්තගබඩාව master සමඟ සමමුහුර්තනය කරන්න." +msgstr "දත්තගබඩාව master සමඟ සමමුහුර්තනය කරන්න" #: server_replication.php:320 msgid "Control slave:" From 4cd13d275bc2c146b7e2693c10f7921c2ec26561 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:00:51 +0200 Subject: [PATCH 121/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index a0de85ef67..234d874421 100644 --- a/po/si.po +++ b/po/si.po @@ -8846,7 +8846,7 @@ msgstr "ඉලක්ක ලෙස තෝරාගත් වගු මූලා #: server_synchronize.php:941 msgid "Target database has been synchronized with source database" -msgstr "ඉලක්ක දත්තගබඩා මූලාශ්‍ර දත්තගබඩා සමඟ සමමුහුර්ත කර ඇත." +msgstr "ඉලක්ක දත්තගබඩා මූලාශ්‍ර දත්තගබඩා සමඟ සමමුහුර්ත කර ඇත" #: server_synchronize.php:1002 msgid "The following queries have been executed:" From e636d183d5a5a1b7af4b4384046a5c88644e92e5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:00:56 +0200 Subject: [PATCH 122/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 234d874421..5a736df58b 100644 --- a/po/si.po +++ b/po/si.po @@ -8936,7 +8936,7 @@ msgstr "සැඟවුණු පණිවිඩ පෙන්වන්න (#MSG_ #: setup/frames/index.inc.php:136 msgid "There are no configured servers" -msgstr "සකස් කෙරුණු සේවාදායක කිසිවක් නොමැත." +msgstr "සකස් කෙරුණු සේවාදායක කිසිවක් නොමැත" #: setup/frames/index.inc.php:144 msgid "New server" From 60f5cbc985de87214f047f3d337bf288ace3b0f1 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:01:04 +0200 Subject: [PATCH 123/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 5a736df58b..40872f30a5 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:00+0200\n" +"PO-Revision-Date: 2011-05-03 16:01+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9150,7 +9150,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 03c75a5c7dd35e66adcc7415e7463dd3c23dde53 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:01:12 +0200 Subject: [PATCH 124/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 40872f30a5..4ffe8ded82 100644 --- a/po/si.po +++ b/po/si.po @@ -9168,7 +9168,7 @@ msgstr "අන්‍ය අගයන් පිරික්සන්න" #: sql.php:163 #, php-format msgid "Using bookmark \"%s\" as default browse query." -msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්" +msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." #: sql.php:600 tbl_replace.php:387 #, php-format From 40cbe56c0a4a23ffa62ef2f7c94ac1bf819e6eae Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:01:20 +0200 Subject: [PATCH 125/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 4ffe8ded82..61a03bee88 100644 --- a/po/si.po +++ b/po/si.po @@ -9274,8 +9274,8 @@ 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 "" -"මෙම විමසුම් ප්‍රතිඑලය ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න." +"මෙම විමසුම් ප්‍රතිඑලය ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. " +"[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න" #: tbl_chart.php:90 msgid "Width" From 53cfc08a939f92cda54f8c62e83bafa656bab80e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:01:25 +0200 Subject: [PATCH 126/536] Translation update done using Pootle. --- po/si.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 61a03bee88..5327d53f1b 100644 --- a/po/si.po +++ b/po/si.po @@ -9355,8 +9355,9 @@ msgid "" "Note that not every result table can be put to the chart. See FAQ 6.29" msgstr "" -"සෑම ප්‍රතිඑලයක්ම ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. FAQ 6.29 බලන්න." +"සෑම ප්‍රතිඑලයක්ම ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. FAQ 6.29 " +"බලන්න" #: tbl_chart.php:181 msgid "Redraw" From 3b730bdad20e2fd8ebd1334e2f29c586ca677ccf Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:01:54 +0200 Subject: [PATCH 127/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 5327d53f1b..808aa97201 100644 --- a/po/si.po +++ b/po/si.po @@ -112,7 +112,7 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"%s ගොනුව මෙම පද්ධතියේ නොමැත. වැඩි විස්තර සඳහා www.phpmyadmin.net වෙත යන්න. " +"%s ගොනුව මෙම පද්ධතියේ නොමැත. වැඩි විස්තර සඳහා www.phpmyadmin.net වෙත යන්න." #: db_create.php:58 #, php-format From e012ea528adc0ac46b4c1e26494a3dbf09379f71 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:00 +0200 Subject: [PATCH 128/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 808aa97201..e756079fa7 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:01+0200\n" +"PO-Revision-Date: 2011-05-03 16:02+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -175,7 +175,7 @@ msgstr "Null" #: libraries/tbl_properties.inc.php:105 tbl_printview.php:143 #: tbl_structure.php:203 tbl_tracking.php:271 msgid "Default" -msgstr "පෙරනිමි " +msgstr "පෙරනිමි" #: db_datadict.php:175 libraries/export/htmlword.php:252 #: libraries/export/latex.php:376 libraries/export/odt.php:314 From 00e1aa8f9f154a51dac28878f8d6301677b01979 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:19 +0200 Subject: [PATCH 129/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index e756079fa7..e53cb761fa 100644 --- a/po/si.po +++ b/po/si.po @@ -1146,7 +1146,7 @@ msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන් # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA #: js/messages.php:106 msgid "Add an option for column " -msgstr " ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න" +msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න" #: js/messages.php:109 msgid "Generate password" From d652fee16518c8e9221da72363a6422ba30508dc Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:35 +0200 Subject: [PATCH 130/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index e53cb761fa..08c3804abc 100644 --- a/po/si.po +++ b/po/si.po @@ -1807,7 +1807,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 000fd7903021e7d4c08b8c4f4944f17f2073a23f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:39 +0200 Subject: [PATCH 131/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 08c3804abc..98650dd931 100644 --- a/po/si.po +++ b/po/si.po @@ -1957,7 +1957,7 @@ msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අ #: libraries/common.lib.php:1139 libraries/config/messages.inc.php:462 msgid "Explain SQL" -msgstr "SQL ය පහදන්න " +msgstr "SQL ය පහදන්න" #: libraries/common.lib.php:1143 msgid "Skip Explain SQL" From fa555ab93632c9f967d7b62004ea92e2b4165189 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:45 +0200 Subject: [PATCH 132/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 98650dd931..05ab23810c 100644 --- a/po/si.po +++ b/po/si.po @@ -2229,7 +2229,7 @@ msgstr "නොතිබෙන" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "\"%s\" සඳහා %s දිගුව අවශ්‍යය " +msgstr "\"%s\" සඳහා %s දිගුව අවශ්‍යය" #: libraries/config/FormDisplay.class.php:755 #, php-format From 7289138afbc2a4cd183656ad9d9d955323654d37 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:50 +0200 Subject: [PATCH 133/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 05ab23810c..75599dc73f 100644 --- a/po/si.po +++ b/po/si.po @@ -2243,7 +2243,7 @@ msgstr "" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "SQL වලංගු කරණය අක්‍රීය කර ඇත. " +msgstr "SQL වලංගු කරණය අක්‍රීය කර ඇත" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" From 6a00960bab36cec826ab86057af13c5157d7128f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:54 +0200 Subject: [PATCH 134/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 75599dc73f..c5b404d207 100644 --- a/po/si.po +++ b/po/si.po @@ -2298,7 +2298,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 504293b42ff6557c982fc25409af17333972fbf4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:02:58 +0200 Subject: [PATCH 135/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index c5b404d207..32f4ff089a 100644 --- a/po/si.po +++ b/po/si.po @@ -2313,7 +2313,7 @@ msgstr "" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr ""Drop database" සබැඳිය සාමාන්‍ය භවිතා කරන්නන්ට පෙන්වන්න " +msgstr ""Drop database" සබැඳිය සාමාන්‍ය භවිතා කරන්නන්ට පෙන්වන්න" #: libraries/config/messages.inc.php:24 msgid "" From 3985047e54c3a8bcdf130a22e2ebf6aee1ec45f5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:03 +0200 Subject: [PATCH 136/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 32f4ff089a..835bdd93a4 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:02+0200\n" +"PO-Revision-Date: 2011-05-03 16:03+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -2657,7 +2657,7 @@ msgstr "Overwrite existing file(s)" #: libraries/config/messages.inc.php:116 msgid "Remember file name template" -msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න " +msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න" #: libraries/config/messages.inc.php:118 #| msgid "Enclose table and field names with backquotes" From b9076e03f372a3a650d2d57139bebde52e17d63d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:09 +0200 Subject: [PATCH 137/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 835bdd93a4..aff7e02518 100644 --- a/po/si.po +++ b/po/si.po @@ -2707,7 +2707,7 @@ msgstr "Enclose export in a transaction" #: libraries/config/messages.inc.php:137 msgid "Export time in UTC" -msgstr "වේලාව UTC ලෙස අපනයනය කරන්න " +msgstr "වේලාව UTC ලෙස අපනයනය කරන්න" #: libraries/config/messages.inc.php:145 msgid "Force secured connection while using phpMyAdmin" From 2534962364007d662db4c92a40687bbbe65b4089 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:13 +0200 Subject: [PATCH 138/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index aff7e02518..3583c243c1 100644 --- a/po/si.po +++ b/po/si.po @@ -2741,7 +2741,7 @@ msgstr "පිරික්සුම් ප්‍රකාරය" #: libraries/config/messages.inc.php:152 msgid "Customize browse mode" -msgstr "පිරික්සුම් ප්‍රකාරය රිසි සේ සකසන්න " +msgstr "පිරික්සුම් ප්‍රකාරය රිසි සේ සකසන්න" #: 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 235b823c4889af7f1802ada886bd6ee336c88dd2 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:17 +0200 Subject: [PATCH 139/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3583c243c1..cf2da1161a 100644 --- a/po/si.po +++ b/po/si.po @@ -2892,7 +2892,7 @@ msgstr "Query window" #: libraries/config/messages.inc.php:192 msgid "Customize query window options" -msgstr "විමසුම් කවුළුව සඳහා වූ විකල්ප රිසි සේ සකසන්න " +msgstr "විමසුම් කවුළුව සඳහා වූ විකල්ප රිසි සේ සකසන්න" #: libraries/config/messages.inc.php:193 msgid "Security" From 697c1a81d504476b86abc8b5974e0d7a4e1219a3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:21 +0200 Subject: [PATCH 140/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index cf2da1161a..177d866f87 100644 --- a/po/si.po +++ b/po/si.po @@ -3033,7 +3033,7 @@ msgstr "" #: 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 1750d1cd1ac9686179c7ac1257c86eb1b3f7baf0 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:25 +0200 Subject: [PATCH 141/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 177d866f87..ece97685fa 100644 --- a/po/si.po +++ b/po/si.po @@ -3045,7 +3045,7 @@ msgid "" "and export operations" msgstr "" "ආනයන හා අපනයන සඳහා [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] හැකිළුම " -"සක්‍රීය කරන්න " +"සක්‍රීය කරන්න" #: libraries/config/messages.inc.php:230 msgid "GZip" From d419de47d82ec32993f5956afddba3f45fe3f865 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:29 +0200 Subject: [PATCH 142/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index ece97685fa..9baf38083f 100644 --- a/po/si.po +++ b/po/si.po @@ -3053,7 +3053,7 @@ msgstr "GZip" #: libraries/config/messages.inc.php:231 msgid "Extra parameters for iconv" -msgstr "iconv සඳහා අමතර පරාමිතියන් " +msgstr "iconv සඳහා අමතර පරාමිතියන්" #: libraries/config/messages.inc.php:232 msgid "" From e9152c053dfa24ead6cf7b727d6d4d514059c0d4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:34 +0200 Subject: [PATCH 143/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 9baf38083f..38627bf6ad 100644 --- a/po/si.po +++ b/po/si.po @@ -3108,7 +3108,7 @@ msgstr "LOCAL මූල පදය භාවිතා කරන්න" #: libraries/config/messages.inc.php:260 #| msgid "Put fields names in the first row" msgid "Column names in first row" -msgstr "පළමු පේලියේ තීරු නම් " +msgstr "පළමු පේලියේ තීරු නම්" #: libraries/config/messages.inc.php:252 libraries/import/ods.php:27 msgid "Do not import empty rows" From 549db75b6a3cee907405871e3513957dfadd8921 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:38 +0200 Subject: [PATCH 144/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 38627bf6ad..c060ee3bb6 100644 --- a/po/si.po +++ b/po/si.po @@ -3145,7 +3145,7 @@ msgstr "වරකට ඇතුල් කල හැකි පේළි ගණන" #: libraries/config/messages.inc.php:263 msgid "Number of inserted rows" -msgstr "ඇතුල් කල පේළි ගණන " +msgstr "ඇතුල් කල පේළි ගණන" #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" From 878c83849543226e436b2d4e11030797d5494384 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:42 +0200 Subject: [PATCH 145/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index c060ee3bb6..1826a77985 100644 --- a/po/si.po +++ b/po/si.po @@ -3149,7 +3149,7 @@ msgstr "ඇතුල් කල පේළි ගණන" #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" -msgstr "'ක්ෂණික ප්‍රවේශය' අයිකනය සඳහා ඉලක්කය " +msgstr "'ක්ෂණික ප්‍රවේශය' අයිකනය සඳහා ඉලක්කය" #: libraries/config/messages.inc.php:265 msgid "Show logo in left frame" From 63c2ab48e1e68f3e161f9ef062a92abae27f95a6 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:03:50 +0200 Subject: [PATCH 146/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 1826a77985..0659135b51 100644 --- a/po/si.po +++ b/po/si.po @@ -4274,7 +4274,7 @@ msgstr "දත්තගබඩා අපනයන විකල්ප" #: libraries/config/user_preferences.forms.php:222 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" -msgstr "MS එක්සෙල් සඳහා CSV " +msgstr "MS එක්සෙල් සඳහා CSV" #: libraries/config/setup.forms.php:351 #: libraries/config/user_preferences.forms.php:253 From 59b25c48988032cadee94c649bda057a4848e45a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:04:06 +0200 Subject: [PATCH 147/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 0659135b51..ba52b9038d 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:03+0200\n" +"PO-Revision-Date: 2011-05-03 16:04+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6849,7 +6849,7 @@ msgstr "" "ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) " "පෙරනිමි MySQL වරප්‍රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම " "අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ root භාවිතා කරන්නා සඳහා වෙනත් " -"මුරපදයක් ලබා දිය යුතුය. " +"මුරපදයක් ලබා දිය යුතුය." #: main.php:265 msgid "" From 3b82b6eab1926a90f10d8850148d93a66b921544 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:04:20 +0200 Subject: [PATCH 148/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index ba52b9038d..3e709cc55a 100644 --- a/po/si.po +++ b/po/si.po @@ -7121,7 +7121,7 @@ msgstr "පිටුවක් සාදා අපනයනය කරන්න" #: pmd_pdf.php:111 #| msgid "User name" msgid "New page name: " -msgstr "නව පිටු නාමය" +msgstr "නව පිටු නාමය:" #: pmd_pdf.php:114 msgid "Export/Import to scale" From beb3ffff75da065d6df6bbfae91fbd6e2c94962e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:04:26 +0200 Subject: [PATCH 149/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3e709cc55a..f11d4e2b9b 100644 --- a/po/si.po +++ b/po/si.po @@ -7815,7 +7815,7 @@ msgid "" "like to configure it?" msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක master ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද? " +"s\">සකස් කිරීමට ඔබ කැමතිද?" #: server_replication.php:215 msgid "Master configuration" From 7253ee425cb59c40d6742759b5bc701c963b568b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:04:31 +0200 Subject: [PATCH 150/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index f11d4e2b9b..a31ca2f6b6 100644 --- a/po/si.po +++ b/po/si.po @@ -7870,7 +7870,7 @@ msgstr "Slave IO ත්‍රෙඩය අක්‍රීයයි!" #: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" -msgstr "සේවාදායකය අනුරූ ක්‍රියාවලියක slave ලෙස සකසා ඇත. ඔබ කැමතිද: " +msgstr "සේවාදායකය අනුරූ ක්‍රියාවලියක slave ලෙස සකසා ඇත. ඔබ කැමතිද:" #: server_replication.php:306 msgid "See slave status table" From d17f5ba652d0bf6a82c4aa91a283137b62c0b857 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:04:42 +0200 Subject: [PATCH 151/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index a31ca2f6b6..261626502a 100644 --- a/po/si.po +++ b/po/si.po @@ -7886,7 +7886,7 @@ msgstr "" #: server_replication.php:323 msgid "Full start" -msgstr "පූර්ණ ඇරඹුම " +msgstr "පූර්ණ ඇරඹුම" #: server_replication.php:323 msgid "Full stop" From bb9b6a19bc85256f14026c404ba3b1dcfcd48375 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:04:56 +0200 Subject: [PATCH 152/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 261626502a..36ec91828c 100644 --- a/po/si.po +++ b/po/si.po @@ -7908,7 +7908,7 @@ msgstr "SQL ත්‍රෙඩය පමණක් නවත්තන්න" #: server_replication.php:331 #| msgid "Structure only" msgid "Start IO Thread only" -msgstr "IO ත්‍රෙඩය පමණක් අරඹන්න " +msgstr "IO ත්‍රෙඩය පමණක් අරඹන්න" #: server_replication.php:333 msgid "Stop IO Thread only" From dd90e21f43b1a0d6757cf5c2e0f4dfaa3a97fca8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:04 +0200 Subject: [PATCH 153/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 36ec91828c..ff7f78e877 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:04+0200\n" +"PO-Revision-Date: 2011-05-03 16:05+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -7941,7 +7941,7 @@ msgid "" "like to configure it?" msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද? " +"s\">සකස් කිරීමට ඔබ කැමතිද?" #: server_status.php:46 msgid "" From f52247dfc3e1561f05e601af890a5bdd3a6dc015 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:11 +0200 Subject: [PATCH 154/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index ff7f78e877..aa03fa3563 100644 --- a/po/si.po +++ b/po/si.po @@ -8682,7 +8682,7 @@ msgid "" "the replication section." msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න " +"href=#replication>අනුරූකරණ අංශය වෙත යන්න" #: server_status.php:509 msgid "" From 788206fab35d74d7530f2d215e9e48930086ef0d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:15 +0200 Subject: [PATCH 155/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index aa03fa3563..fde837aaec 100644 --- a/po/si.po +++ b/po/si.po @@ -8822,7 +8822,7 @@ msgstr "සුචි(ය) යොදන්න" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" -msgstr "පේළි(ය) යාවත්කාලීන කරන්න " +msgstr "පේළි(ය) යාවත්කාලීන කරන්න" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" From 8a87295b48b333506ce0952f3e3d2fd0ee09cb67 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:20 +0200 Subject: [PATCH 156/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index fde837aaec..53f049c2bc 100644 --- a/po/si.po +++ b/po/si.po @@ -8826,7 +8826,7 @@ msgstr "පේළි(ය) යාවත්කාලීන කරන්න" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" -msgstr "පේළි(ය) ඇතුල් කරන්න " +msgstr "පේළි(ය) ඇතුල් කරන්න" #: server_synchronize.php:445 server_synchronize.php:889 msgid "Would you like to delete all the previous rows from target tables?" From 95612d0d5ffd10daf7e7ec164cd6fad974aaba1b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:25 +0200 Subject: [PATCH 157/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 53f049c2bc..b0272c4c25 100644 --- a/po/si.po +++ b/po/si.po @@ -8868,7 +8868,7 @@ msgstr "සැකසුම : %s" #: server_synchronize.php:1182 msgid "Socket" -msgstr "සොකට් " +msgstr "සොකට්" #: server_synchronize.php:1228 msgid "" From 2ea06970c50ea64861c023cddf308928f3da61c1 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:30 +0200 Subject: [PATCH 158/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index b0272c4c25..14b23eddb6 100644 --- a/po/si.po +++ b/po/si.po @@ -8924,7 +8924,7 @@ msgstr "" #: setup/frames/index.inc.php:64 msgid "Insecure connection" -msgstr "අනාරක්ෂිත සම්බන්දතාවය " +msgstr "අනාරක්ෂිත සම්බන්දතාවය" #: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15 msgid "Overview" From cd8cf8f726473afd28cfb7dc6d3f06d6667adfc9 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:33 +0200 Subject: [PATCH 159/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 14b23eddb6..ed2f202096 100644 --- a/po/si.po +++ b/po/si.po @@ -8940,7 +8940,7 @@ msgstr "සකස් කෙරුණු සේවාදායක කිසිව #: setup/frames/index.inc.php:144 msgid "New server" -msgstr "නව සේවාදායකය " +msgstr "නව සේවාදායකය" #: setup/frames/index.inc.php:173 msgid "Default language" From fa91c354ca4457b9bae754f346f0463f2491adca Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:38 +0200 Subject: [PATCH 160/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index ed2f202096..f55750f00a 100644 --- a/po/si.po +++ b/po/si.po @@ -8948,7 +8948,7 @@ msgstr "පෙරනිමි භාෂාව" #: setup/frames/index.inc.php:183 msgid "let the user choose" -msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න " +msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න" #: setup/frames/index.inc.php:194 msgid "- none -" From 48df9ef94759616b60367852611624ce5473b571 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:43 +0200 Subject: [PATCH 161/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index f55750f00a..012c8b4371 100644 --- a/po/si.po +++ b/po/si.po @@ -8968,7 +8968,7 @@ msgstr "පෙන්වන්න" #: setup/frames/index.inc.php:216 msgid "Load" -msgstr "පූරණය කරන්න " +msgstr "පූරණය කරන්න" #: setup/frames/index.inc.php:227 msgid "phpMyAdmin homepage" From 2c0ef97134acf1f7602bd609c94accb106611315 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:48 +0200 Subject: [PATCH 162/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 012c8b4371..b5d69106d3 100644 --- a/po/si.po +++ b/po/si.po @@ -8972,7 +8972,7 @@ msgstr "පූරණය කරන්න" #: setup/frames/index.inc.php:227 msgid "phpMyAdmin homepage" -msgstr "phpMyAdmin මුල් පිටුව " +msgstr "phpMyAdmin මුල් පිටුව" #: setup/frames/index.inc.php:228 msgid "Donate" From 54ec2768c470ffdf940c0e4c48ef44ea7b48b078 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:53 +0200 Subject: [PATCH 163/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index b5d69106d3..0bc07cffc7 100644 --- a/po/si.po +++ b/po/si.po @@ -9000,7 +9000,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 109090ef4f6aa0b73ad7b3447fe5649734a8dc56 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:05:58 +0200 Subject: [PATCH 164/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 0bc07cffc7..0c5d5af04f 100644 --- a/po/si.po +++ b/po/si.po @@ -9131,7 +9131,7 @@ msgstr "" msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." -msgstr "%sZip හැකිළුමට%s (%s) කෘත්‍ය අවශ්‍ය අතර එය ඔබගේ පද්ධතියේ නොමැත. " +msgstr "%sZip හැකිළුමට%s (%s) කෘත්‍ය අවශ්‍ය අතර එය ඔබගේ පද්ධතියේ නොමැත." #: setup/lib/index.lib.php:272 #, php-format From 3c64f1814897e1c293401ba3c3d46f4ee3206620 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:06:14 +0200 Subject: [PATCH 165/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 0c5d5af04f..d06a75ba2b 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:05+0200\n" +"PO-Revision-Date: 2011-05-03 16:06+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9138,7 +9138,7 @@ msgstr "%sZip හැකිළුමට%s (%s) කෘත්‍ය අවශ්‍ msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "%sZip දිගහැරුමට%s (%s) කෘත්‍ය අවශ්‍ය අතර එය ඔබගේ පද්ධතියේ නොමැත. " +msgstr "%sZip දිගහැරුමට%s (%s) කෘත්‍ය අවශ්‍ය අතර එය ඔබගේ පද්ධතියේ නොමැත." #: setup/lib/index.lib.php:296 msgid "You should use SSL connections if your web server supports it." From 23ed411201158f4cdf7e556385f131b60acb11ee Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:06:28 +0200 Subject: [PATCH 166/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index d06a75ba2b..944ce2f289 100644 --- a/po/si.po +++ b/po/si.po @@ -9208,7 +9208,7 @@ msgstr "ශ්‍රිතය" #: tbl_change.php:755 #| 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:872 msgid "Remove BLOB Repository Reference" From 8458215a99637b064e0ec832ded8226dd23dba3a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:06:39 +0200 Subject: [PATCH 167/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 944ce2f289..47b662d652 100644 --- a/po/si.po +++ b/po/si.po @@ -9749,7 +9749,7 @@ msgstr "" #: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" -msgstr "%s පෙන්වන්න, %s දින සිට %s දින දක්වා %s %s භාවිතා කරන්නා විසින් " +msgstr "%s පෙන්වන්න, %s දින සිට %s දින දක්වා %s %s භාවිතා කරන්නා විසින්" #: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" From 23ccbbb9c4eed19de64c456ebfec1c41805e2db0 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:07:11 +0200 Subject: [PATCH 168/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 47b662d652..6f56181ac0 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:06+0200\n" +"PO-Revision-Date: 2011-05-03 16:07+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -7733,7 +7733,7 @@ msgstr "එකම නමින් දත්තගබඩාවක සාදා #: server_privileges.php:2146 msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය_%)" +msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" #: server_privileges.php:2149 #, php-format From ce10209a89774c7da3e238153af48f5c468d8bcc Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:07:37 +0200 Subject: [PATCH 169/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 6f56181ac0..c75dcd6d15 100644 --- a/po/si.po +++ b/po/si.po @@ -8246,7 +8246,7 @@ msgstr "The number of physical writes to the log file." #: server_status.php:93 msgid "The number of fsync() writes done to the log file." -msgstr "The number of fsyncs() writes done to the log file." +msgstr "The number of fsync() writes done to the log file." #: server_status.php:94 msgid "The number of pending log file fsyncs." From 2c57892113f43d04fd895d329c1a325372c8588c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:08:16 +0200 Subject: [PATCH 170/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index c75dcd6d15..afad990316 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:07+0200\n" +"PO-Revision-Date: 2011-05-03 16:08+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From 81bc88c7b48f88e86f6c676f0c503b86593e1665 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:09:04 +0200 Subject: [PATCH 171/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index afad990316..85e0792d72 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:08+0200\n" +"PO-Revision-Date: 2011-05-03 16:09+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From f4314b7448a79d1a5c3a39d183a2cae1b54922ab Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:10:07 +0200 Subject: [PATCH 172/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 85e0792d72..eb2b276b76 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:09+0200\n" +"PO-Revision-Date: 2011-05-03 16:10+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From 6a7d55f4968cf9de252209b617f88f8cf9fab45c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:10:19 +0200 Subject: [PATCH 173/536] Translation update done using Pootle. --- po/si.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index eb2b276b76..b73afe39ca 100644 --- a/po/si.po +++ b/po/si.po @@ -622,7 +622,8 @@ msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." +"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය " +"කරන්න." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 From f1c7fa16448f2f5794be8dc829da1f859f25a01e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:11:06 +0200 Subject: [PATCH 174/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index b73afe39ca..666cc42e88 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:10+0200\n" +"PO-Revision-Date: 2011-05-03 16:11+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From 5a51c1089dc7ac5213d6a894032206c7955e7bf2 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:12:18 +0200 Subject: [PATCH 175/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 666cc42e88..e97d62c418 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:11+0200\n" +"PO-Revision-Date: 2011-05-03 16:12+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" From effbae03b0c5c55cb6770fe2e2341f7f058d2b3f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:14:26 +0200 Subject: [PATCH 176/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index e97d62c418..78ee2c8acc 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:12+0200\n" +"PO-Revision-Date: 2011-05-03 16:14+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6512,8 +6512,8 @@ msgid "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." msgstr "" -"Please enter the values for transformation options using this format: " -"'a','b','c'...
If you ever need to put a backslash (\"\\\") or a single " +"Please enter the values for transformation options using this format: 'a', " +"100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." From 9e6d6df5c6c7500dafdd44672bece523d6b1c2ea Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:18:18 +0200 Subject: [PATCH 177/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 78ee2c8acc..45dbd55caf 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:14+0200\n" +"PO-Revision-Date: 2011-05-03 16:18+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -2116,10 +2116,10 @@ msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" #: 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 "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය" +msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" #: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501 #: tbl_change.php:959 From 4e7f8535b17c01c3439f5c343a0974a93761fa6a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:19:06 +0200 Subject: [PATCH 178/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 45dbd55caf..f06c4a4e6a 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:18+0200\n" +"PO-Revision-Date: 2011-05-03 16:19+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -5424,10 +5424,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 "ප්‍රකාශය" +msgstr "%s ප්‍රකාශය එක්කරන්න" #: libraries/export/sql.php:91 msgid "Add statements:" From b96bf77456a64118255fd87d64c1b12ba2f1d43a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:20:37 +0200 Subject: [PATCH 179/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index f06c4a4e6a..973d33c38c 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:19+0200\n" +"PO-Revision-Date: 2011-05-03 16:20+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -571,7 +571,7 @@ msgstr "දත්තගබඩාවේ සොයන්න" #: db_search.php:298 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" -msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්). (wildcard: \"%\"):" +msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්) (wildcard: \"%\"):" #: db_search.php:303 msgid "Find:" From 62cbcde9389f951adf7ee3e28be01e68609d9c31 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:21:07 +0200 Subject: [PATCH 180/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 973d33c38c..6f2308c76b 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:20+0200\n" +"PO-Revision-Date: 2011-05-03 16:21+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1821,7 +1821,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 fe2322a2d419ab1288789b140ff09bc893a80f14 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:22:31 +0200 Subject: [PATCH 181/536] Translation update done using Pootle. --- po/si.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 6f2308c76b..ee4d0cf924 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:21+0200\n" +"PO-Revision-Date: 2011-05-03 16:22+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -4654,7 +4654,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"හැකිළූ ගොනුවක නම .[ආකෘතිය ].[හැකිළීම] ලෙස අවසන් විය යුතුයි. උදා: .sql.zip" +"හැකිළූ ගොනුවක නම .[ආකෘතිය].[හැකිළීම] ලෙස අවසන් විය යුතුයි. උදා: " +".sql.zip" #: libraries/display_import.lib.php:178 msgid "File uploads are not allowed on this server." From a1a33f4085f3696373b0ba667ab8067f43381331 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:25:38 +0200 Subject: [PATCH 182/536] Translation update done using Pootle. --- po/si.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/si.po b/po/si.po index ee4d0cf924..b46f201b63 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:22+0200\n" +"PO-Revision-Date: 2011-05-03 16:25+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9115,7 +9115,7 @@ msgid "" msgstr "" #: setup/lib/index.lib.php:268 -#, fuzzy, php-format +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9125,8 +9125,8 @@ msgid "" msgstr "" "ඔබ [kbd]config[/kbd] සත්‍යාපනය තෝරා ස්වයංක්‍රීය ඇතුල්වීම සඳහා භාවිත නාමය සහ " "මුරපදය සඳහන් කර ඇත. සජීවී සත්කාරකයන් සඳහා මෙය නුසුදුසුය. ඔබගේ phpMyAdmin " -"URLය දන්නා ඕනෑම අයෙකුට ඔබගේ phpMyAdmin පැනලය භාවිත කල හැකිය. සත්‍යාපනය ලෙස " -"[kbd]config[/kbd] හෝ [kbd]http[/kbd] තෝරන්න." +"URLය දන්නා ඕනෑම අයෙකුට ඔබගේ phpMyAdmin පැනලය භාවිත කල හැකිය. %sසත්‍යාපනය%s " +"ලෙස [kbd]config[/kbd] හෝ [kbd]http[/kbd] තෝරන්න." #: setup/lib/index.lib.php:270 #, php-format From 211e6f98e5bd8de035f3a395828f140138ab2e96 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:26:01 +0200 Subject: [PATCH 183/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index b46f201b63..a568b008b5 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:25+0200\n" +"PO-Revision-Date: 2011-05-03 16:26+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9210,7 +9210,7 @@ msgstr "ශ්‍රිතය" #: tbl_change.php:755 #| 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:872 msgid "Remove BLOB Repository Reference" From 5bcd9dea7af547ee4275bed76ea9057209888981 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:28:28 +0200 Subject: [PATCH 184/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index a568b008b5..6cb37222aa 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:26+0200\n" +"PO-Revision-Date: 2011-05-03 16:28+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6568,7 +6568,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:780 tbl_structure.php:634 #, php-format msgid "Add %s column(s)" -msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" +msgstr "%s ක්ෂේත්‍ර(ය) එක් කරන්න" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:628 msgid "You have to add at least one column." From 33706c6e8f282f3dce0e38f979bd653ba8b9c902 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:29:35 +0200 Subject: [PATCH 185/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 6cb37222aa..eb1561574d 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:28+0200\n" +"PO-Revision-Date: 2011-05-03 16:29+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -3150,7 +3150,7 @@ msgstr "ඇතුල් කල පේළි ගණන" #: libraries/config/messages.inc.php:264 msgid "Target for quick access icon" -msgstr "'ක්ෂණික ප්‍රවේශය' අයිකනය සඳහා ඉලක්කය" +msgstr "ක්ෂණික ප්‍රවේශය අයිකනය සඳහා ඉලක්කය" #: libraries/config/messages.inc.php:265 msgid "Show logo in left frame" From 83594849e3e9c2161d177359458fd524f5784ccd Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:29:53 +0200 Subject: [PATCH 186/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index eb1561574d..2a883af6d0 100644 --- a/po/si.po +++ b/po/si.po @@ -6850,7 +6850,7 @@ msgid "" msgstr "" "ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) " "පෙරනිමි MySQL වරප්‍රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම " -"අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ root භාවිතා කරන්නා සඳහා වෙනත් " +"අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ 'root' භාවිතා කරන්නා සඳහා වෙනත් " "මුරපදයක් ලබා දිය යුතුය." #: main.php:265 From 3e386e94a9a29e81040748e578f38bc3552589d0 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:30:29 +0200 Subject: [PATCH 187/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 2a883af6d0..d4f9090fb0 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:29+0200\n" +"PO-Revision-Date: 2011-05-03 16:30+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -2770,7 +2770,7 @@ msgstr "phpMyAdmin හි මෘදුකාංග සංවර්ධනය ක #: libraries/config/messages.inc.php:159 msgid "Edit mode" -msgstr " සංස්කරණ ප්‍රකාරය" +msgstr "සංස්කරණ ප්‍රකාරය" #: libraries/config/messages.inc.php:160 msgid "Customize edit mode" From f037ba24edf6a2ccb0972c67730ec59a4d5dc770 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:30:35 +0200 Subject: [PATCH 188/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index d4f9090fb0..10f28ac69c 100644 --- a/po/si.po +++ b/po/si.po @@ -4638,7 +4638,7 @@ msgstr "\"%s\" දත්තගබඩාව තුළට ආනයනය කි #: libraries/display_import.lib.php:133 #, php-format msgid "Importing into the table \"%s\"" -msgstr " \"%s\" වගුව තුළට ආනයනය කිරීම" +msgstr "\"%s\" වගුව තුළට ආනයනය කිරීම" #: libraries/display_import.lib.php:139 msgid "File to Import:" From 5d9d5f8e54d0b8b4273d06edbee820dbba278cfe Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:30:41 +0200 Subject: [PATCH 189/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 10f28ac69c..6b334a2166 100644 --- a/po/si.po +++ b/po/si.po @@ -6359,7 +6359,7 @@ msgstr "පරිසීමකය" #: libraries/sql_query_form.lib.php:381 msgid " Show this query here again " -msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න " +msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" #: libraries/sql_query_form.lib.php:440 msgid "Submit" From a5f3b60398ec7c033d093b1d24ca1daaaaea3bb4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:30:55 +0200 Subject: [PATCH 190/536] Translation update done using Pootle. --- po/si.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 6b334a2166..a8d0f202b9 100644 --- a/po/si.po +++ b/po/si.po @@ -7717,7 +7717,8 @@ msgstr "" msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -msgstr ".. භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." +msgstr "" +"... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." #: server_privileges.php:2140 msgid "Database for user" From 98931f969ff8082902235d60d9fa05f53df59333 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:31:15 +0200 Subject: [PATCH 191/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index a8d0f202b9..e6b97b6c29 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:30+0200\n" +"PO-Revision-Date: 2011-05-03 16:31+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9369,7 +9369,7 @@ msgstr "නැවත අඳින්න" #: tbl_create.php:56 #, php-format msgid "Table %s already exists!" -msgstr " %s වගුව දැනටමත් පවතී!" +msgstr "%s වගුව දැනටමත් පවතී!" #: tbl_create.php:242 #, php-format From 0c9b4ab6d071c3058a89f42aacdd72047dd6e1d7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:31:34 +0200 Subject: [PATCH 192/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index e6b97b6c29..e3ad00d6e4 100644 --- a/po/si.po +++ b/po/si.po @@ -9705,7 +9705,7 @@ msgstr "කොටස් කරන ලද" #: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" -msgstr " `%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" +msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" #: tbl_tracking.php:182 #, php-format From e5c21e58a6b676c3c41a29bbb5e037dcc7b8ce94 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:32:11 +0200 Subject: [PATCH 193/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index e3ad00d6e4..a63c11fbab 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:31+0200\n" +"PO-Revision-Date: 2011-05-03 16:32+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -4512,7 +4512,7 @@ msgstr "ප්‍රතිදානය:" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 #, php-format msgid "Save on server in the directory %s" -msgstr "සේවාදායකයේ %s ඩිරෙක්ටරියේ සුරකින්න" +msgstr "සේවාදායකයේ %s ඩිරෙක්ටරියේ සුරකින්න" #: libraries/display_export.lib.php:206 msgid "Save output to a file" From f4f5e4e988bc1ae48b525b18deea69102d6534a3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:32:38 +0200 Subject: [PATCH 194/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index a63c11fbab..448f7c9106 100644 --- a/po/si.po +++ b/po/si.po @@ -7860,7 +7860,7 @@ msgid "" "master" msgstr "" "සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම " -"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත" +"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත" #: server_replication.php:291 msgid "Slave SQL Thread not running!" From aeb845d73e88680c94457546e6f3f8855e98ad5b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:33:11 +0200 Subject: [PATCH 195/536] Translation update done using Pootle. --- po/si.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 448f7c9106..14eac7ab73 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:32+0200\n" +"PO-Revision-Date: 2011-05-03 16:33+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -9411,7 +9411,8 @@ msgstr "සූචි වර්ගය:" #: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -msgstr "(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)" +msgstr "" +"(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)" #: tbl_indexes.php:249 #, php-format From 79b0ff4507791a5f593f35bb50be3be7a206889b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:33:44 +0200 Subject: [PATCH 196/536] Translation update done using Pootle. --- po/si.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/si.po b/po/si.po index 14eac7ab73..7a12ae9e4f 100644 --- a/po/si.po +++ b/po/si.po @@ -4683,9 +4683,9 @@ msgid "" "to the PHP timeout limit. (This might be good way to import large files, " "however it can break transactions.)" msgstr "" -"Allow interrupt of import in case script detects it is close to time limit. " -"This might be good way to import large files, however it can break " -"transactions." +"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.)" #: libraries/display_import.lib.php:228 msgid "Number of rows to skip, starting from the first row:" From 18e48ad071e7f57ec82e826ec187638db1625984 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:34:10 +0200 Subject: [PATCH 197/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 7a12ae9e4f..3c2e02e824 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:33+0200\n" +"PO-Revision-Date: 2011-05-03 16:34+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -6359,7 +6359,7 @@ msgstr "පරිසීමකය" #: libraries/sql_query_form.lib.php:381 msgid " Show this query here again " -msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" +msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න" #: libraries/sql_query_form.lib.php:440 msgid "Submit" From d9366dfcf80f6c1a3476bb6639441d1bda91fe07 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:34:28 +0200 Subject: [PATCH 198/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3c2e02e824..865102a76b 100644 --- a/po/si.po +++ b/po/si.po @@ -7718,7 +7718,7 @@ msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -"... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." +" ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." #: server_privileges.php:2140 msgid "Database for user" From 932807ab7f47bb518f9a346059974de9fd1f7e35 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:34:41 +0200 Subject: [PATCH 199/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 865102a76b..9c21587c0a 100644 --- a/po/si.po +++ b/po/si.po @@ -9211,7 +9211,7 @@ msgstr "ශ්‍රිතය" #: tbl_change.php:755 #| 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:872 msgid "Remove BLOB Repository Reference" From 78e20baa1618cbe4308da27f7bf070095c53a619 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:34:58 +0200 Subject: [PATCH 200/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 9c21587c0a..83a11bb0c6 100644 --- a/po/si.po +++ b/po/si.po @@ -9579,7 +9579,7 @@ msgstr "පේළියේ දිග" #: tbl_printview.php:411 tbl_structure.php:886 msgid " Row size " -msgstr "පේළියේ ප්‍රමාණය" +msgstr " පේළියේ ප්‍රමාණය" #: tbl_relation.php:276 #, php-format From 5a70742a1e47956fa789e706b54299617a22a289 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:35:51 +0200 Subject: [PATCH 201/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index 83a11bb0c6..fef10bbb47 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:34+0200\n" +"PO-Revision-Date: 2011-05-03 16:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -4547,7 +4547,7 @@ msgid "" msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " "formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" From d14b0315f6d8f6c138892c3662c0f804f68d1f4f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:36:50 +0200 Subject: [PATCH 202/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index fef10bbb47..bd8aa0b55c 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:35+0200\n" +"PO-Revision-Date: 2011-05-03 16:36+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -942,7 +942,7 @@ msgstr "\"DROP DATABASE\" statements are disabled." #: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293 msgid "Do you really want to " -msgstr "ඔබට ඇත්තෙන්ම අවශ්‍යද" +msgstr "ඔබට ඇත්තෙන්ම අවශ්‍යද " #: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278 msgid "You are about to DESTROY a complete database!" From 105fb55adf22622b9049fc0a2151385946c43db4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:37:00 +0200 Subject: [PATCH 203/536] Translation update done using Pootle. --- po/si.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/si.po b/po/si.po index bd8aa0b55c..c532517035 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-04-21 14:27+0200\n" -"PO-Revision-Date: 2011-05-03 16:36+0200\n" +"PO-Revision-Date: 2011-05-03 16:37+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" "Language: si\n" @@ -1147,7 +1147,7 @@ msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන් # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA #: js/messages.php:106 msgid "Add an option for column " -msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න" +msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " #: js/messages.php:109 msgid "Generate password" From 60ecf708564824ba079d3a5152aacfe40504fdc5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:37:05 +0200 Subject: [PATCH 204/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index c532517035..35bddf1b44 100644 --- a/po/si.po +++ b/po/si.po @@ -5632,7 +5632,7 @@ msgstr "" #: libraries/import/csv.php:41 msgid "Column names: " -msgstr "තීර නම්:" +msgstr "තීර නම්: " #: libraries/import/csv.php:61 libraries/import/csv.php:74 #: libraries/import/csv.php:79 libraries/import/csv.php:84 From c15d9a0fd644317bf1b066fc11c7de19cccce904 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:37:09 +0200 Subject: [PATCH 205/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 35bddf1b44..10662207b4 100644 --- a/po/si.po +++ b/po/si.po @@ -6359,7 +6359,7 @@ msgstr "පරිසීමකය" #: libraries/sql_query_form.lib.php:381 msgid " Show this query here again " -msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න" +msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න " #: libraries/sql_query_form.lib.php:440 msgid "Submit" From deb7ffd5c11842a9a841abbf3b333f45283dc911 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:37:14 +0200 Subject: [PATCH 206/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 10662207b4..3d4d0c9baf 100644 --- a/po/si.po +++ b/po/si.po @@ -7123,7 +7123,7 @@ msgstr "පිටුවක් සාදා අපනයනය කරන්න" #: pmd_pdf.php:111 #| msgid "User name" msgid "New page name: " -msgstr "නව පිටු නාමය:" +msgstr "නව පිටු නාමය: " #: pmd_pdf.php:114 msgid "Export/Import to scale" From 41e70cdf33374f130e0402e91b28c048679fb01d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:37:25 +0200 Subject: [PATCH 207/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 3d4d0c9baf..0a8c2fadf7 100644 --- a/po/si.po +++ b/po/si.po @@ -9211,7 +9211,7 @@ msgstr "ශ්‍රිතය" #: tbl_change.php:755 #| 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:872 msgid "Remove BLOB Repository Reference" From 90845aa8cbec8788c92e48090a214ff89a2309b3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 3 May 2011 16:37:29 +0200 Subject: [PATCH 208/536] Translation update done using Pootle. --- po/si.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/si.po b/po/si.po index 0a8c2fadf7..788d67f29d 100644 --- a/po/si.po +++ b/po/si.po @@ -9579,7 +9579,7 @@ msgstr "පේළියේ දිග" #: tbl_printview.php:411 tbl_structure.php:886 msgid " Row size " -msgstr " පේළියේ ප්‍රමාණය" +msgstr " පේළියේ ප්‍රමාණය " #: tbl_relation.php:276 #, php-format From b2b1953db11219b5ac801ab58c3ecff2cfbb7f29 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 3 May 2011 18:52:37 -0400 Subject: [PATCH 209/536] Start to replace warning level with error level --- db_qbe.php | 2 +- main.php | 2 +- prefs_forms.php | 4 ++-- prefs_manage.php | 2 +- server_privileges.php | 2 +- server_replication.php | 6 +++--- sql.php | 2 +- tbl_indexes.php | 2 +- tbl_relation.php | 2 +- tbl_replace.php | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/db_qbe.php b/db_qbe.php index 29b32f467c..2319b829ab 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -35,7 +35,7 @@ if (isset($_REQUEST['submit_sql']) && ! empty($sql_query)) { if (isset($_REQUEST['submit_sql']) && ! preg_match('@^SELECT@i', $sql_query)) { - PMA_Message::warning(__('You have to choose at least one column to display'))->display(); + PMA_Message::error(__('You have to choose at least one column to display'))->display(); } diff --git a/main.php b/main.php index 96f3e01eef..c7c25bc41e 100644 --- a/main.php +++ b/main.php @@ -305,7 +305,7 @@ if ($server > 0) { } /** - * Show warning when javascript support is missing. + * Show notice when javascript support is missing. */ echo '