Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 11 participants
- 38616 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-654-gb2b1953
by Marc Delisle 04 May '11
by Marc Delisle 04 May '11
04 May '11
The branch, master has been updated
via b2b1953db11219b5ac801ab58c3ecff2cfbb7f29 (commit)
from 90845aa8cbec8788c92e48090a214ff89a2309b3 (commit)
- Log -----------------------------------------------------------------
commit b2b1953db11219b5ac801ab58c3ecff2cfbb7f29
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue May 3 18:52:37 2011 -0400
Start to replace warning level with error level
-----------------------------------------------------------------------
Summary of changes:
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 29b32f4..2319b82 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 96f3e01..c7c25bc 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 '<noscript>';
$message = PMA_Message::notice(__('Javascript support is missing or disabled in your browser, some phpMyAdmin functionality will be missing. For example navigation frame will not refresh automatically.'));
diff --git a/prefs_forms.php b/prefs_forms.php
index 40ea171..22ffb4c 100644
--- a/prefs_forms.php
+++ b/prefs_forms.php
@@ -74,7 +74,7 @@ if ($error) {
if ($form_display->hasErrors()) {
// form has errors
?>
- <div class="warning config-form">
+ <div class="error config-form">
<b><?php echo __('Cannot save settings, submitted form contains errors') ?></b>
<?php $form_display->displayErrors(); ?>
</div>
@@ -86,4 +86,4 @@ $form_display->display(true, true);
* Displays the footer
*/
require './libraries/footer.inc.php';
-?>
\ No newline at end of file
+?>
diff --git a/prefs_manage.php b/prefs_manage.php
index 76ead89..e5dbe3f 100644
--- a/prefs_manage.php
+++ b/prefs_manage.php
@@ -109,7 +109,7 @@ if (isset($_POST['submit_export']) && filter_input(INPUT_POST, 'export_type') ==
// mimic original form and post json in a hidden field
require './libraries/header.inc.php';
require './libraries/user_preferences.inc.php';
- $msg = PMA_Message::warning(__('Configuration contains incorrect data for some fields.'));
+ $msg = PMA_Message::error(__('Configuration contains incorrect data for some fields.'));
$msg->display();
echo '<div class="config-form">';
$form_display->displayErrors();
diff --git a/server_privileges.php b/server_privileges.php
index a9ebcd9..19f9dcb 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1790,7 +1790,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
$user_does_not_exists = (bool) ! PMA_DBI_fetch_value($sql);
unset($sql);
if ($user_does_not_exists) {
- PMA_Message::warning(__('The selected user was not found in the privilege table.'))->display();
+ PMA_Message::error(__('The selected user was not found in the privilege table.'))->display();
PMA_displayLoginInformationFields();
//require './libraries/footer.inc.php';
}
diff --git a/server_replication.php b/server_replication.php
index a25fe1d..9b7724d 100644
--- a/server_replication.php
+++ b/server_replication.php
@@ -288,10 +288,10 @@ if (! isset($GLOBALS['repl_clear_scr'])) {
$slave_skip_error_link = PMA_generate_common_url($_url_params);
if ($server_slave_replication[0]['Slave_SQL_Running'] == 'No') {
- PMA_Message::warning(__('Slave SQL Thread not running!'))->display();
+ PMA_Message::error(__('Slave SQL Thread not running!'))->display();
}
if ($server_slave_replication[0]['Slave_IO_Running'] == 'No') {
- PMA_Message::warning(__('Slave IO Thread not running!'))->display();
+ PMA_Message::error(__('Slave IO Thread not running!'))->display();
}
$_url_params = $GLOBALS['url_params'];
@@ -337,7 +337,7 @@ if (! isset($GLOBALS['repl_clear_scr'])) {
echo ' </li>';
echo ' <li><a href="#" id="slave_errormanagement_href">' . __('Error management:') . '</a>';
echo ' <div id="slave_errormanagement_gui" style="display: none">';
- PMA_Message::warning(__('Skipping errors might lead into unsynchronized master and slave!'))->display();
+ PMA_Message::error(__('Skipping errors might lead into unsynchronized master and slave!'))->display();
echo ' <ul>';
echo ' <li><a href="' . $slave_skip_error_link . '">' . __('Skip current error') . '</a></li>';
echo ' <li>' . __('Skip next');
diff --git a/sql.php b/sql.php
index 9587d32..9b19174 100644
--- a/sql.php
+++ b/sql.php
@@ -275,7 +275,7 @@ if ($do_confirm) {
$stripped_sql_query = $sql_query;
require_once './libraries/header.inc.php';
if ($is_drop_database) {
- echo '<h1 class="warning">' . __('You are about to DESTROY a complete database!') . '</h1>';
+ echo '<h1 class="error">' . __('You are about to DESTROY a complete database!') . '</h1>';
}
echo '<form action="sql.php" method="post">' . "\n"
.PMA_generate_common_hidden_inputs($db, $table);
diff --git a/tbl_indexes.php b/tbl_indexes.php
index 166c6aa..46e5e1c 100644
--- a/tbl_indexes.php
+++ b/tbl_indexes.php
@@ -179,7 +179,7 @@ if (isset($_REQUEST['create_index'])) {
<br class="clearfloat" />
<?php
-PMA_Message::warning(__('("PRIMARY" <b>must</b> be the name of and <b>only of</b> a primary key!)'))->display();
+PMA_Message::error(__('("PRIMARY" <b>must</b> be the name of and <b>only of</b> a primary key!)'))->display();
?>
<table>
diff --git a/tbl_relation.php b/tbl_relation.php
index 68288e1..400fc63 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -273,7 +273,7 @@ if (isset($_REQUEST['destination_foreign'])) {
echo PMA_showMySQLDocu('manual_Table_types', 'InnoDB_foreign_key_constraints') . "\n";
}
if (substr($tmp_error, 1, 4) == '1005') {
- $message = PMA_Message::warning( __('Error creating foreign key on %1$s (check data types)'));
+ $message = PMA_Message::error( __('Error creating foreign key on %1$s (check data types)'));
$message->addParam($master_field);
$message->display();
echo PMA_showMySQLDocu('manual_Table_types', 'InnoDB_foreign_key_constraints') . "\n";
diff --git a/tbl_replace.php b/tbl_replace.php
index ab8cd10..0abe124 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -410,7 +410,7 @@ $message->addMessages($last_messages, '<br />');
if (! empty($warning_messages)) {
/**
- * @todo use a <div class="warning"> in PMA_showMessage() for this part of
+ * @todo use a <div class="error"> in PMA_showMessage() for this part of
* the message
*/
$message->addMessages($warning_messages, '<br />');
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-653-g90845aa
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via 90845aa8cbec8788c92e48090a214ff89a2309b3 (commit)
via 41e70cdf33374f130e0402e91b28c048679fb01d (commit)
via deb7ffd5c11842a9a841abbf3b333f45283dc911 (commit)
via c15d9a0fd644317bf1b066fc11c7de19cccce904 (commit)
via 60ecf708564824ba079d3a5152aacfe40504fdc5 (commit)
via 105fb55adf22622b9049fc0a2151385946c43db4 (commit)
via d14b0315f6d8f6c138892c3662c0f804f68d1f4f (commit)
via 5a70742a1e47956fa789e706b54299617a22a289 (commit)
via 78e20baa1618cbe4308da27f7bf070095c53a619 (commit)
via 932807ab7f47bb518f9a346059974de9fd1f7e35 (commit)
via d9366dfcf80f6c1a3476bb6639441d1bda91fe07 (commit)
via 18e48ad071e7f57ec82e826ec187638db1625984 (commit)
via 79b0ff4507791a5f593f35bb50be3be7a206889b (commit)
via aeb845d73e88680c94457546e6f3f8855e98ad5b (commit)
via f4f5e4e988bc1ae48b525b18deea69102d6534a3 (commit)
via e5c21e58a6b676c3c41a29bbb5e037dcc7b8ce94 (commit)
via 0c9b4ab6d071c3058a89f42aacdd72047dd6e1d7 (commit)
via 98931f969ff8082902235d60d9fa05f53df59333 (commit)
via a5f3b60398ec7c033d093b1d24ca1daaaaea3bb4 (commit)
via 5d9d5f8e54d0b8b4273d06edbee820dbba278cfe (commit)
via f037ba24edf6a2ccb0972c67730ec59a4d5dc770 (commit)
via 3e386e94a9a29e81040748e578f38bc3552589d0 (commit)
via 83594849e3e9c2161d177359458fd524f5784ccd (commit)
from 33706c6e8f282f3dce0e38f979bd653ba8b9c902 (commit)
- Log -----------------------------------------------------------------
commit 90845aa8cbec8788c92e48090a214ff89a2309b3
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:37:29 2011 +0200
Translation update done using Pootle.
commit 41e70cdf33374f130e0402e91b28c048679fb01d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:37:25 2011 +0200
Translation update done using Pootle.
commit deb7ffd5c11842a9a841abbf3b333f45283dc911
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:37:14 2011 +0200
Translation update done using Pootle.
commit c15d9a0fd644317bf1b066fc11c7de19cccce904
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:37:09 2011 +0200
Translation update done using Pootle.
commit 60ecf708564824ba079d3a5152aacfe40504fdc5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:37:05 2011 +0200
Translation update done using Pootle.
commit 105fb55adf22622b9049fc0a2151385946c43db4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:37:00 2011 +0200
Translation update done using Pootle.
commit d14b0315f6d8f6c138892c3662c0f804f68d1f4f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:36:50 2011 +0200
Translation update done using Pootle.
commit 5a70742a1e47956fa789e706b54299617a22a289
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:35:51 2011 +0200
Translation update done using Pootle.
commit 78e20baa1618cbe4308da27f7bf070095c53a619
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:34:58 2011 +0200
Translation update done using Pootle.
commit 932807ab7f47bb518f9a346059974de9fd1f7e35
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:34:41 2011 +0200
Translation update done using Pootle.
commit d9366dfcf80f6c1a3476bb6639441d1bda91fe07
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:34:28 2011 +0200
Translation update done using Pootle.
commit 18e48ad071e7f57ec82e826ec187638db1625984
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:34:10 2011 +0200
Translation update done using Pootle.
commit 79b0ff4507791a5f593f35bb50be3be7a206889b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:33:44 2011 +0200
Translation update done using Pootle.
commit aeb845d73e88680c94457546e6f3f8855e98ad5b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:33:11 2011 +0200
Translation update done using Pootle.
commit f4f5e4e988bc1ae48b525b18deea69102d6534a3
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:32:38 2011 +0200
Translation update done using Pootle.
commit e5c21e58a6b676c3c41a29bbb5e037dcc7b8ce94
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:32:11 2011 +0200
Translation update done using Pootle.
commit 0c9b4ab6d071c3058a89f42aacdd72047dd6e1d7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:31:34 2011 +0200
Translation update done using Pootle.
commit 98931f969ff8082902235d60d9fa05f53df59333
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:31:15 2011 +0200
Translation update done using Pootle.
commit a5f3b60398ec7c033d093b1d24ca1daaaaea3bb4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:30:55 2011 +0200
Translation update done using Pootle.
commit 5d9d5f8e54d0b8b4273d06edbee820dbba278cfe
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:30:41 2011 +0200
Translation update done using Pootle.
commit f037ba24edf6a2ccb0972c67730ec59a4d5dc770
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:30:35 2011 +0200
Translation update done using Pootle.
commit 3e386e94a9a29e81040748e578f38bc3552589d0
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:30:29 2011 +0200
Translation update done using Pootle.
commit 83594849e3e9c2161d177359458fd524f5784ccd
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:29:53 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/si.po | 44 +++++++++++++++++++++++---------------------
1 files changed, 23 insertions(+), 21 deletions(-)
diff --git a/po/si.po b/po/si.po
index eb15615..788d67f 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(a)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:37+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\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!"
@@ -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"
@@ -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"
@@ -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 <b>%s</b>"
-msgstr "සේවාදායකයේ %s ඩිරෙක්ටරියේ සුරකින්න"
+msgstr "සේවාදායකයේ <b>%s</b> ඩිරෙක්ටරියේ සුරකින්න"
#: libraries/display_export.lib.php:206
msgid "Save output to a file"
@@ -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"
@@ -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:"
@@ -4683,9 +4683,9 @@ msgid ""
"to the PHP timeout limit. <i>(This might be good way to import large files, "
"however it can break transactions.)</i>"
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. <i>(This might be good way to import large files, "
+"however it can break transactions.)</i>"
#: libraries/display_import.lib.php:228
msgid "Number of rows to skip, starting from the first row:"
@@ -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
@@ -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"
@@ -6850,7 +6850,7 @@ msgid ""
msgstr ""
"ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) "
"පෙරනිමි MySQL වරප්රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම "
-"අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ root භාවිතා කරන්නා සඳහා වෙනත් "
+"අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ 'root' භාවිතා කරන්නා සඳහා වෙනත් "
"මුරපදයක් ලබා දිය යුතුය."
#: main.php:265
@@ -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"
@@ -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"
@@ -7859,7 +7860,7 @@ msgid ""
"master"
msgstr ""
"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම "
-"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත"
+"සේවාදායකය master ලෙස සකසා <b>ඇති</b> බවට පණිවිඩයක් දර්ශනයවනු ඇත"
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
@@ -9210,7 +9211,7 @@ msgstr "ශ්රිතය"
#: tbl_change.php:755
#| msgid " Because of its length,<br /> this field might not be editable "
msgid " Because of its length,<br /> this column might not be editable "
-msgstr "මෙහි දිග නිසා,<br /> මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය"
+msgstr " මෙහි දිග නිසා,<br /> මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය "
#: tbl_change.php:872
msgid "Remove BLOB Repository Reference"
@@ -9368,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
@@ -9410,7 +9411,8 @@ msgstr "සූචි වර්ගය:"
#: tbl_indexes.php:182
msgid ""
"(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)"
-msgstr "(\"PRIMARY\" නාමය ප්රාථමික මූලය සඳහා <i>පමණක්</i> භාවිතා කල යුතුය!)"
+msgstr ""
+"(\"PRIMARY\" නාමය ප්රාථමික මූලය සඳහා <b>පමණක්</b> භාවිතා කල <b>යුතුය</b>!)"
#: tbl_indexes.php:249
#, php-format
@@ -9577,7 +9579,7 @@ msgstr "පේළියේ දිග"
#: tbl_printview.php:411 tbl_structure.php:886
msgid " Row size "
-msgstr "පේළියේ ප්රමාණය"
+msgstr " පේළියේ ප්රමාණය "
#: tbl_relation.php:276
#, php-format
@@ -9704,7 +9706,7 @@ msgstr "කොටස් කරන ලද"
#: tbl_tracking.php:109
#, php-format
msgid "Tracking report for table `%s`"
-msgstr " `%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව"
+msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව"
#: tbl_tracking.php:182
#, php-format
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-630-g33706c6
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via 33706c6e8f282f3dce0e38f979bd653ba8b9c902 (commit)
via 5bcd9dea7af547ee4275bed76ea9057209888981 (commit)
via 211e6f98e5bd8de035f3a395828f140138ab2e96 (commit)
via a1a33f4085f3696373b0ba667ab8067f43381331 (commit)
via fe2322a2d419ab1288789b140ff09bc893a80f14 (commit)
via 62cbcde9389f951adf7ee3e28be01e68609d9c31 (commit)
via b96bf77456a64118255fd87d64c1b12ba2f1d43a (commit)
via 4e7f8535b17c01c3439f5c343a0974a93761fa6a (commit)
via 9e6d6df5c6c7500dafdd44672bece523d6b1c2ea (commit)
from effbae03b0c5c55cb6770fe2e2341f7f058d2b3f (commit)
- Log -----------------------------------------------------------------
commit 33706c6e8f282f3dce0e38f979bd653ba8b9c902
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:29:35 2011 +0200
Translation update done using Pootle.
commit 5bcd9dea7af547ee4275bed76ea9057209888981
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:28:28 2011 +0200
Translation update done using Pootle.
commit 211e6f98e5bd8de035f3a395828f140138ab2e96
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:26:01 2011 +0200
Translation update done using Pootle.
commit a1a33f4085f3696373b0ba667ab8067f43381331
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:25:38 2011 +0200
Translation update done using Pootle.
commit fe2322a2d419ab1288789b140ff09bc893a80f14
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:22:31 2011 +0200
Translation update done using Pootle.
commit 62cbcde9389f951adf7ee3e28be01e68609d9c31
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:21:07 2011 +0200
Translation update done using Pootle.
commit b96bf77456a64118255fd87d64c1b12ba2f1d43a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:20:37 2011 +0200
Translation update done using Pootle.
commit 4e7f8535b17c01c3439f5c343a0974a93761fa6a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:19:06 2011 +0200
Translation update done using Pootle.
commit 9e6d6df5c6c7500dafdd44672bece523d6b1c2ea
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:18:18 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/si.po | 29 +++++++++++++++--------------
1 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/po/si.po b/po/si.po
index 78ee2c8..eb15615 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(a)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:29+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\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:"
@@ -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"
@@ -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 <b>%s</b>:"
-msgstr "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය"
+msgstr "වෙබ් සේවාදායකයේ <b>%s</b> උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
#: tbl_change.php:959
@@ -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"
@@ -4654,7 +4654,8 @@ msgid ""
"A compressed file's name must end in <b>.[format].[compression]</b>. "
"Example: <b>.sql.zip</b>"
msgstr ""
-"හැකිළූ ගොනුවක නම <b>.[ආකෘතිය ].[හැකිළීම]</b> ලෙස අවසන් විය යුතුයි. උදා: <b>.sql.zip</b>"
+"හැකිළූ ගොනුවක නම <b>.[ආකෘතිය].[හැකිළීම]</b> ලෙස අවසන් විය යුතුයි. උදා: "
+"<b>.sql.zip</b>"
#: libraries/display_import.lib.php:178
msgid "File uploads are not allowed on this server."
@@ -5424,10 +5425,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:"
@@ -6567,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."
@@ -9114,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. "
@@ -9124,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
@@ -9209,7 +9210,7 @@ msgstr "ශ්රිතය"
#: tbl_change.php:755
#| msgid " Because of its length,<br /> this field might not be editable "
msgid " Because of its length,<br /> this column might not be editable "
-msgstr "මෙහි දිග නිසා, <br /> මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය"
+msgstr "මෙහි දිග නිසා,<br /> මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය"
#: tbl_change.php:872
msgid "Remove BLOB Repository Reference"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-621-geffbae0
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via effbae03b0c5c55cb6770fe2e2341f7f058d2b3f (commit)
via 5a51c1089dc7ac5213d6a894032206c7955e7bf2 (commit)
via f1c7fa16448f2f5794be8dc829da1f859f25a01e (commit)
via 6a7d55f4968cf9de252209b617f88f8cf9fab45c (commit)
via f4314b7448a79d1a5c3a39d183a2cae1b54922ab (commit)
via 81bc88c7b48f88e86f6c676f0c503b86593e1665 (commit)
via 2c57892113f43d04fd895d329c1a325372c8588c (commit)
via ce10209a89774c7da3e238153af48f5c468d8bcc (commit)
via 23ccbbb9c4eed19de64c456ebfec1c41805e2db0 (commit)
via 8458215a99637b064e0ec832ded8226dd23dba3a (commit)
via 23ed411201158f4cdf7e556385f131b60acb11ee (commit)
via 3c64f1814897e1c293401ba3c3d46f4ee3206620 (commit)
via 109090ef4f6aa0b73ad7b3447fe5649734a8dc56 (commit)
via 54ec2768c470ffdf940c0e4c48ef44ea7b48b078 (commit)
via 2c0ef97134acf1f7602bd609c94accb106611315 (commit)
via 48df9ef94759616b60367852611624ce5473b571 (commit)
via fa91c354ca4457b9bae754f346f0463f2491adca (commit)
via cd8cf8f726473afd28cfb7dc6d3f06d6667adfc9 (commit)
via 2ea06970c50ea64861c023cddf308928f3da61c1 (commit)
via 95612d0d5ffd10daf7e7ec164cd6fad974aaba1b (commit)
via 8a87295b48b333506ce0952f3e3d2fd0ee09cb67 (commit)
via 788206fab35d74d7530f2d215e9e48930086ef0d (commit)
via f52247dfc3e1561f05e601af890a5bdd3a6dc015 (commit)
via dd90e21f43b1a0d6757cf5c2e0f4dfaa3a97fca8 (commit)
via bb9b6a19bc85256f14026c404ba3b1dcfcd48375 (commit)
via d17f5ba652d0bf6a82c4aa91a283137b62c0b857 (commit)
via 7253ee425cb59c40d6742759b5bc701c963b568b (commit)
via beb3ffff75da065d6df6bbfae91fbd6e2c94962e (commit)
via 3b82b6eab1926a90f10d8850148d93a66b921544 (commit)
via 59b25c48988032cadee94c649bda057a4848e45a (commit)
via 63c2ab48e1e68f3e161f9ef062a92abae27f95a6 (commit)
via 878c83849543226e436b2d4e11030797d5494384 (commit)
via 549db75b6a3cee907405871e3513957dfadd8921 (commit)
via e9152c053dfa24ead6cf7b727d6d4d514059c0d4 (commit)
via d419de47d82ec32993f5956afddba3f45fe3f865 (commit)
via 1750d1cd1ac9686179c7ac1257c86eb1b3f7baf0 (commit)
via 697c1a81d504476b86abc8b5974e0d7a4e1219a3 (commit)
via 235b823c4889af7f1802ada886bd6ee336c88dd2 (commit)
via 2534962364007d662db4c92a40687bbbe65b4089 (commit)
via b9076e03f372a3a650d2d57139bebde52e17d63d (commit)
via 3985047e54c3a8bcdf130a22e2ebf6aee1ec45f5 (commit)
via 504293b42ff6557c982fc25409af17333972fbf4 (commit)
via 6a00960bab36cec826ab86057af13c5157d7128f (commit)
via 7289138afbc2a4cd183656ad9d9d955323654d37 (commit)
via fa555ab93632c9f967d7b62004ea92e2b4165189 (commit)
via 000fd7903021e7d4c08b8c4f4944f17f2073a23f (commit)
via d652fee16518c8e9221da72363a6422ba30508dc (commit)
via 00e1aa8f9f154a51dac28878f8d6301677b01979 (commit)
via e012ea528adc0ac46b4c1e26494a3dbf09379f71 (commit)
via 3b730bdad20e2fd8ebd1334e2f29c586ca677ccf (commit)
via 53cfc08a939f92cda54f8c62e83bafa656bab80e (commit)
via 40cbe56c0a4a23ffa62ef2f7c94ac1bf819e6eae (commit)
via 03c75a5c7dd35e66adcc7415e7463dd3c23dde53 (commit)
via 60f5cbc985de87214f047f3d337bf288ace3b0f1 (commit)
via e636d183d5a5a1b7af4b4384046a5c88644e92e5 (commit)
via 4cd13d275bc2c146b7e2693c10f7921c2ec26561 (commit)
via cae57a0288894ff92dedce67cf23b371bd1eb164 (commit)
via f510a4f05fa1cbc09f6bdeb8fde92bc355706fb1 (commit)
via c1c01d899988ecc3b5d92695a7a28eafb3d3dda7 (commit)
via 8e6d0f0ecc420290244eb02788b786ac3d2b3a87 (commit)
via 19d7ccdc05bb0e852ce8c93d23688d3ac7e6f8db (commit)
via 5374bf179301ce7aec896b491da13c91d176aac5 (commit)
via 99ebd7ff4c5fbe415c135e091e97f2306c289a05 (commit)
from dc4d717df9e18b37707cd2f790c459b81b027ee9 (commit)
- Log -----------------------------------------------------------------
commit effbae03b0c5c55cb6770fe2e2341f7f058d2b3f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:14:26 2011 +0200
Translation update done using Pootle.
commit 5a51c1089dc7ac5213d6a894032206c7955e7bf2
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:12:18 2011 +0200
Translation update done using Pootle.
commit f1c7fa16448f2f5794be8dc829da1f859f25a01e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:11:06 2011 +0200
Translation update done using Pootle.
commit 6a7d55f4968cf9de252209b617f88f8cf9fab45c
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:10:19 2011 +0200
Translation update done using Pootle.
commit f4314b7448a79d1a5c3a39d183a2cae1b54922ab
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:10:07 2011 +0200
Translation update done using Pootle.
commit 81bc88c7b48f88e86f6c676f0c503b86593e1665
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:09:04 2011 +0200
Translation update done using Pootle.
commit 2c57892113f43d04fd895d329c1a325372c8588c
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:08:16 2011 +0200
Translation update done using Pootle.
commit ce10209a89774c7da3e238153af48f5c468d8bcc
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:07:37 2011 +0200
Translation update done using Pootle.
commit 23ccbbb9c4eed19de64c456ebfec1c41805e2db0
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:07:11 2011 +0200
Translation update done using Pootle.
commit 8458215a99637b064e0ec832ded8226dd23dba3a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:06:39 2011 +0200
Translation update done using Pootle.
commit 23ed411201158f4cdf7e556385f131b60acb11ee
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:06:28 2011 +0200
Translation update done using Pootle.
commit 3c64f1814897e1c293401ba3c3d46f4ee3206620
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:06:14 2011 +0200
Translation update done using Pootle.
commit 109090ef4f6aa0b73ad7b3447fe5649734a8dc56
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:58 2011 +0200
Translation update done using Pootle.
commit 54ec2768c470ffdf940c0e4c48ef44ea7b48b078
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:53 2011 +0200
Translation update done using Pootle.
commit 2c0ef97134acf1f7602bd609c94accb106611315
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:48 2011 +0200
Translation update done using Pootle.
commit 48df9ef94759616b60367852611624ce5473b571
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:43 2011 +0200
Translation update done using Pootle.
commit fa91c354ca4457b9bae754f346f0463f2491adca
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:38 2011 +0200
Translation update done using Pootle.
commit cd8cf8f726473afd28cfb7dc6d3f06d6667adfc9
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:33 2011 +0200
Translation update done using Pootle.
commit 2ea06970c50ea64861c023cddf308928f3da61c1
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:30 2011 +0200
Translation update done using Pootle.
commit 95612d0d5ffd10daf7e7ec164cd6fad974aaba1b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:25 2011 +0200
Translation update done using Pootle.
commit 8a87295b48b333506ce0952f3e3d2fd0ee09cb67
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:20 2011 +0200
Translation update done using Pootle.
commit 788206fab35d74d7530f2d215e9e48930086ef0d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:15 2011 +0200
Translation update done using Pootle.
commit f52247dfc3e1561f05e601af890a5bdd3a6dc015
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:11 2011 +0200
Translation update done using Pootle.
commit dd90e21f43b1a0d6757cf5c2e0f4dfaa3a97fca8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:05:04 2011 +0200
Translation update done using Pootle.
commit bb9b6a19bc85256f14026c404ba3b1dcfcd48375
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:04:56 2011 +0200
Translation update done using Pootle.
commit d17f5ba652d0bf6a82c4aa91a283137b62c0b857
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:04:42 2011 +0200
Translation update done using Pootle.
commit 7253ee425cb59c40d6742759b5bc701c963b568b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:04:31 2011 +0200
Translation update done using Pootle.
commit beb3ffff75da065d6df6bbfae91fbd6e2c94962e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:04:26 2011 +0200
Translation update done using Pootle.
commit 3b82b6eab1926a90f10d8850148d93a66b921544
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:04:20 2011 +0200
Translation update done using Pootle.
commit 59b25c48988032cadee94c649bda057a4848e45a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:04:06 2011 +0200
Translation update done using Pootle.
commit 63c2ab48e1e68f3e161f9ef062a92abae27f95a6
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:50 2011 +0200
Translation update done using Pootle.
commit 878c83849543226e436b2d4e11030797d5494384
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:42 2011 +0200
Translation update done using Pootle.
commit 549db75b6a3cee907405871e3513957dfadd8921
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:38 2011 +0200
Translation update done using Pootle.
commit e9152c053dfa24ead6cf7b727d6d4d514059c0d4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:34 2011 +0200
Translation update done using Pootle.
commit d419de47d82ec32993f5956afddba3f45fe3f865
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:29 2011 +0200
Translation update done using Pootle.
commit 1750d1cd1ac9686179c7ac1257c86eb1b3f7baf0
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:25 2011 +0200
Translation update done using Pootle.
commit 697c1a81d504476b86abc8b5974e0d7a4e1219a3
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:21 2011 +0200
Translation update done using Pootle.
commit 235b823c4889af7f1802ada886bd6ee336c88dd2
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:17 2011 +0200
Translation update done using Pootle.
commit 2534962364007d662db4c92a40687bbbe65b4089
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:13 2011 +0200
Translation update done using Pootle.
commit b9076e03f372a3a650d2d57139bebde52e17d63d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:09 2011 +0200
Translation update done using Pootle.
commit 3985047e54c3a8bcdf130a22e2ebf6aee1ec45f5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:03:03 2011 +0200
Translation update done using Pootle.
commit 504293b42ff6557c982fc25409af17333972fbf4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:58 2011 +0200
Translation update done using Pootle.
commit 6a00960bab36cec826ab86057af13c5157d7128f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:54 2011 +0200
Translation update done using Pootle.
commit 7289138afbc2a4cd183656ad9d9d955323654d37
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:50 2011 +0200
Translation update done using Pootle.
commit fa555ab93632c9f967d7b62004ea92e2b4165189
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:45 2011 +0200
Translation update done using Pootle.
commit 000fd7903021e7d4c08b8c4f4944f17f2073a23f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:39 2011 +0200
Translation update done using Pootle.
commit d652fee16518c8e9221da72363a6422ba30508dc
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:35 2011 +0200
Translation update done using Pootle.
commit 00e1aa8f9f154a51dac28878f8d6301677b01979
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:19 2011 +0200
Translation update done using Pootle.
commit e012ea528adc0ac46b4c1e26494a3dbf09379f71
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:02:00 2011 +0200
Translation update done using Pootle.
commit 3b730bdad20e2fd8ebd1334e2f29c586ca677ccf
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:01:54 2011 +0200
Translation update done using Pootle.
commit 53cfc08a939f92cda54f8c62e83bafa656bab80e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:01:25 2011 +0200
Translation update done using Pootle.
commit 40cbe56c0a4a23ffa62ef2f7c94ac1bf819e6eae
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:01:20 2011 +0200
Translation update done using Pootle.
commit 03c75a5c7dd35e66adcc7415e7463dd3c23dde53
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:01:12 2011 +0200
Translation update done using Pootle.
commit 60f5cbc985de87214f047f3d337bf288ace3b0f1
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:01:04 2011 +0200
Translation update done using Pootle.
commit e636d183d5a5a1b7af4b4384046a5c88644e92e5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:00:56 2011 +0200
Translation update done using Pootle.
commit 4cd13d275bc2c146b7e2693c10f7921c2ec26561
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:00:51 2011 +0200
Translation update done using Pootle.
commit cae57a0288894ff92dedce67cf23b371bd1eb164
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:00:46 2011 +0200
Translation update done using Pootle.
commit f510a4f05fa1cbc09f6bdeb8fde92bc355706fb1
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:00:41 2011 +0200
Translation update done using Pootle.
commit c1c01d899988ecc3b5d92695a7a28eafb3d3dda7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:00:24 2011 +0200
Translation update done using Pootle.
commit 8e6d0f0ecc420290244eb02788b786ac3d2b3a87
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 16:00:07 2011 +0200
Translation update done using Pootle.
commit 19d7ccdc05bb0e852ce8c93d23688d3ac7e6f8db
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:59:56 2011 +0200
Translation update done using Pootle.
commit 5374bf179301ce7aec896b491da13c91d176aac5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:59:41 2011 +0200
Translation update done using Pootle.
commit 99ebd7ff4c5fbe415c135e091e97f2306c289a05
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:59:29 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/si.po | 126 +++++++++++++++++++++++++++++++------------------------------
1 files changed, 64 insertions(+), 62 deletions(-)
diff --git a/po/si.po b/po/si.po
index 15f5baa..78ee2c8 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(a)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 16:14+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
"Language: si\n"
@@ -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
@@ -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
@@ -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
@@ -1146,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"
@@ -1807,7 +1808,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"
@@ -1957,7 +1958,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"
@@ -2229,7 +2230,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
@@ -2243,7 +2244,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"
@@ -2298,7 +2299,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 ""
@@ -2313,7 +2314,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 ""
@@ -2657,7 +2658,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"
@@ -2707,7 +2708,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"
@@ -2741,7 +2742,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
@@ -2892,7 +2893,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"
@@ -3033,7 +3034,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"
@@ -3045,7 +3046,7 @@ msgid ""
"and export operations"
msgstr ""
"ආනයන හා අපනයන සඳහා [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] හැකිළුම "
-"සක්රීය කරන්න "
+"සක්රීය කරන්න"
#: libraries/config/messages.inc.php:230
msgid "GZip"
@@ -3053,7 +3054,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 ""
@@ -3108,7 +3109,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"
@@ -3145,11 +3146,11 @@ 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"
-msgstr "'ක්ෂණික ප්රවේශය' අයිකනය සඳහා ඉලක්කය "
+msgstr "'ක්ෂණික ප්රවේශය' අයිකනය සඳහා ඉලක්කය"
#: libraries/config/messages.inc.php:265
msgid "Show logo in left frame"
@@ -4274,7 +4275,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
@@ -6207,7 +6208,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"
@@ -6511,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'...<br />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'...<br />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')."
@@ -6849,7 +6850,7 @@ msgstr ""
"ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) "
"පෙරනිමි MySQL වරප්රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම "
"අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ root භාවිතා කරන්නා සඳහා වෙනත් "
-"මුරපදයක් ලබා දිය යුතුය. "
+"මුරපදයක් ලබා දිය යුතුය."
#: main.php:265
msgid ""
@@ -7121,7 +7122,7 @@ msgstr "පිටුවක් සාදා අපනයනය කරන්න"
#: pmd_pdf.php:111
#| msgid "User name"
msgid "New page name: "
-msgstr "නව පිටු නාමය"
+msgstr "නව පිටු නාමය:"
#: pmd_pdf.php:114
msgid "Export/Import to scale"
@@ -7695,7 +7696,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."
@@ -7733,7 +7734,7 @@ msgstr "එකම නමින් දත්තගබඩාවක සාදා
#: server_privileges.php:2146
msgid "Grant all privileges on wildcard name (username\\_%)"
-msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්රසාද දෙන්න (භාවිත නාමය_%)"
+msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්රසාද දෙන්න (භාවිත නාමය\\_%)"
#: server_privileges.php:2149
#, php-format
@@ -7780,7 +7781,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 ""
@@ -7794,7 +7795,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."
@@ -7815,7 +7816,7 @@ msgid ""
"like to <a href=\"%s\">configure</a> it?"
msgstr ""
"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක master ලෙස සකසා නැත. එසේ <a href=\"%"
-"s\">සකස් කිරීමට</a> ඔබ කැමතිද? "
+"s\">සකස් කිරීමට</a> ඔබ කැමතිද?"
#: server_replication.php:215
msgid "Master configuration"
@@ -7857,7 +7858,7 @@ msgid ""
"master"
msgstr ""
"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම "
-"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත."
+"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත"
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
@@ -7870,15 +7871,15 @@ 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"
-msgstr "slave තත්ව වගුව බලන්න."
+msgstr "slave තත්ව වගුව බලන්න"
#: server_replication.php:309
msgid "Synchronize databases with master"
-msgstr "දත්තගබඩාව master සමඟ සමමුහුර්තනය කරන්න."
+msgstr "දත්තගබඩාව master සමඟ සමමුහුර්තනය කරන්න"
#: server_replication.php:320
msgid "Control slave:"
@@ -7886,7 +7887,7 @@ msgstr ""
#: server_replication.php:323
msgid "Full start"
-msgstr "පූර්ණ ඇරඹුම "
+msgstr "පූර්ණ ඇරඹුම"
#: server_replication.php:323
msgid "Full stop"
@@ -7908,7 +7909,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"
@@ -7941,7 +7942,7 @@ msgid ""
"like to <a href=\"%s\">configure</a> it?"
msgstr ""
"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක slave ලෙස සකසා නැත. එසේ <a href=\"%"
-"s\">සකස් කිරීමට</a> ඔබ කැමතිද? "
+"s\">සකස් කිරීමට</a> ඔබ කැමතිද?"
#: server_status.php:46
msgid ""
@@ -8246,7 +8247,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."
@@ -8682,7 +8683,7 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර <a "
-"href=#replication>අනුරූකරණ අංශය</a> වෙත යන්න "
+"href=#replication>අනුරූකරණ අංශය</a> වෙත යන්න"
#: server_status.php:509
msgid ""
@@ -8822,11 +8823,11 @@ 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)"
-msgstr "පේළි(ය) ඇතුල් කරන්න "
+msgstr "පේළි(ය) ඇතුල් කරන්න"
#: server_synchronize.php:445 server_synchronize.php:889
msgid "Would you like to delete all the previous rows from target tables?"
@@ -8846,7 +8847,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:"
@@ -8868,7 +8869,7 @@ msgstr "සැකසුම : %s"
#: server_synchronize.php:1182
msgid "Socket"
-msgstr "සොකට් "
+msgstr "සොකට්"
#: server_synchronize.php:1228
msgid ""
@@ -8924,7 +8925,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"
@@ -8936,11 +8937,11 @@ 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"
-msgstr "නව සේවාදායකය "
+msgstr "නව සේවාදායකය"
#: setup/frames/index.inc.php:173
msgid "Default language"
@@ -8948,7 +8949,7 @@ msgstr "පෙරනිමි භාෂාව"
#: setup/frames/index.inc.php:183
msgid "let the user choose"
-msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න "
+msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න"
#: setup/frames/index.inc.php:194
msgid "- none -"
@@ -8968,11 +8969,11 @@ msgstr "පෙන්වන්න"
#: setup/frames/index.inc.php:216
msgid "Load"
-msgstr "පූරණය කරන්න "
+msgstr "පූරණය කරන්න"
#: setup/frames/index.inc.php:227
msgid "phpMyAdmin homepage"
-msgstr "phpMyAdmin මුල් පිටුව "
+msgstr "phpMyAdmin මුල් පිටුව"
#: setup/frames/index.inc.php:228
msgid "Donate"
@@ -9000,7 +9001,7 @@ msgstr "දෝෂ සහිත ක්ෂේත්ර ඒවායේ පෙ
#: setup/lib/form_processing.lib.php:47
msgid "Ignore errors"
-msgstr "දෝෂ නොසලකන්න "
+msgstr "දෝෂ නොසලකන්න"
#: setup/lib/form_processing.lib.php:49
msgid "Show form"
@@ -9131,14 +9132,14 @@ 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
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."
@@ -9150,7 +9151,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."
@@ -9168,7 +9169,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
@@ -9208,7 +9209,7 @@ msgstr "ශ්රිතය"
#: tbl_change.php:755
#| msgid " Because of its length,<br /> this field might not be editable "
msgid " Because of its length,<br /> this column might not be editable "
-msgstr "මෙහි දිග නිසා, <br /> මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය."
+msgstr "මෙහි දිග නිසා, <br /> මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය"
#: tbl_change.php:872
msgid "Remove BLOB Repository Reference"
@@ -9274,8 +9275,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"
@@ -9355,8 +9356,9 @@ msgid ""
"Note that not every result table can be put to the chart. See <a href=\"./"
"Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a>"
msgstr ""
-"සෑම ප්රතිඑලයක්ම ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. <a href=\"./Documentation."
-"html#faq6_29\" target=\"Documentation\">FAQ 6.29</a> බලන්න."
+"සෑම ප්රතිඑලයක්ම ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. <a "
+"href=\"./Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a> "
+"බලන්න"
#: tbl_chart.php:181
msgid "Redraw"
@@ -9748,7 +9750,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"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-558-gdc4d717
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via dc4d717df9e18b37707cd2f790c459b81b027ee9 (commit)
via ec5f8e5da5f4e6f2d1be8d49d6fd87f74ddb8418 (commit)
via 7cae49add96e21dbd29a22b3704566a8a87561de (commit)
via 3b1784b71a015094be533307634d628bdb06feb4 (commit)
via c12beba375479ecd8476c8d32ae401115ad7ee75 (commit)
via 7905e7b7b520ad30eb66658e25a41864fd5f524b (commit)
via 242a08f40a43ed48b667fe49d1138fc50b8f7350 (commit)
via 0e10168067bd433788879b0d375d1844a574d5cd (commit)
via 790770bf89cdfff4e1ae2f8f544c8fa9c94b106f (commit)
via 91d056f04c9e8d1d397ce74ee57deaea9e6624e3 (commit)
via ca58f8b316adeeb2ebdd173a3765523bc66c6a88 (commit)
via 3632f1ae3dd7a8856bd600e9e50786defc2e8892 (commit)
via b50107a2131da9b4e564816a552d6e15187b2523 (commit)
via 5640399abf3a548c8f7487a9f64af0336e0a8bd6 (commit)
via 51b849af2781840207b1b989b45d89ffd74068d4 (commit)
via a211ef88042d915ab20548e06992d4354dc6e17b (commit)
via 6fdb69272640bf8343c517f39b6eac15ad85b108 (commit)
via d7f8163f682d8568186e9e5c886bb6342924ee4d (commit)
via ddb1e81f721106e06cc067111eda863756897246 (commit)
via ad630dadb3b2c4425c4aa8773a7b7a28ada1bb5f (commit)
via 08689e7f70ffa1f54c6f9bfbd85a50711141e80b (commit)
via 57b9b37f5fee2bff9dc5c6323cb5c8de428d2db2 (commit)
via 96c1e660dd93ae19baea5db45dd685ad5b1be54e (commit)
via 469bf80b50f8d91042a5ed1422bf89cd1211ba5c (commit)
via 87b0938ff3505d961dda547d95cb76fc5f70f8de (commit)
via e4e571f5ee19f067e0b3add81333957e55f69a6a (commit)
via d13bc69ef0d4e039f38a3e150c8643166a36c008 (commit)
via 702a4332772c60785e8e242390605baf79562936 (commit)
via 6511cb1b478faf77a58ac2124b1e2703ee82de29 (commit)
via f4b483d62f21b0fd9bfd3225b8575ca18b917c29 (commit)
via d137b9380553bb0061e82cbe55ad25fd6c4b5e72 (commit)
via 6f4e60fed333bc1f99e8b9cab50ab2eec1d9da0a (commit)
via b6ec5dcf6f7da496f03037f31851e2f7319bf5aa (commit)
via 044113ff87adae3c72557349eda22357472e18a4 (commit)
via e82c1835b3a180becec42ca7254d34e22076742e (commit)
via 9a4481dbc2a01d4f52068895766cc03ca37a6e4e (commit)
via dc3ab6f272179ef1c3a780628885d679e1a62da8 (commit)
via 01f0705c2c91b00b6b1796010b6dd1b355989bf4 (commit)
via 8ecfd8548591194c5338c21166a0d6f174a6f9d7 (commit)
via ec30437a6454f57a3694e9368035747db4829cd6 (commit)
via 4303c338f3f57ce9ff831eeb4dfa70920724b9ef (commit)
via ffc3bd3265fb205e4719ab4cd739ced24100fc52 (commit)
via b2216cf9271cb7f6b25f514dc06cc69cf02ff5ee (commit)
via 5d13fe16262d02875a11c91cc2c2a2778c1a13d7 (commit)
via 1ab81cfecc2ba9b69990039a87c3179a07efe25e (commit)
via bc5376f5a60c7abfe11c027114ca8969fcab8f06 (commit)
via b145aef6d95e4f6af7f560039e3ca2709a8a3960 (commit)
via 272f039f8d6ae243f48a1d4c649402c2d0a8044d (commit)
via 9763f13f7907da5a6157fe532c0984cd71125c80 (commit)
via 54223d018d2bdda301d93f53095c6b7e51782820 (commit)
via 584641f375faf77a86728ce5a23e837db36c14c7 (commit)
via 6bd802b4b5e0ade5a1ce027505f4d3348f184361 (commit)
via f4cf9bf9f75842ee1e9a591e5b582508ca1a2001 (commit)
via 8fb0f78815876c72e9f5afcfd94bedc8f54f3fd8 (commit)
via f30f848348d18c586737478476d58286e404edae (commit)
via 24a4968fae8a64af2967ffaa7ab1fd101a8283d7 (commit)
via 75b3ffae90c153f26792564cad20a86784658adf (commit)
via b4893f884c6bdd9844920319c426626ae61bdf55 (commit)
via d091db9fa7df2957e920e927578fede89f1e52e6 (commit)
via 9a83fc577943402003c694a730568e13a2998215 (commit)
via b6a3f950bcabf6cf3a4757799ba24f537a111499 (commit)
via 6cb9a5f11cbed10fe8c945acbdda5655cb94252d (commit)
via fdf2c3b30b50aed6b58cfc4e0b5a099e4fb73a79 (commit)
via adccb9fa9269258285f30e9082f074f0f4d0dce5 (commit)
via 4b9a82ed4d6ec27e8bf73693cf2d576f465faa75 (commit)
via 587617edd8a33a4796d84cb965a5048f472d92d5 (commit)
via 70f4a12c46e00c4c07d0ecadb78a5fe52f57a126 (commit)
via 2e89bfc47e548b98b0189e18be0e4cbd513d4853 (commit)
via d68facbcc8a87ce7926c25562ba528a633502a05 (commit)
via fc47f8b12ca36f867c27c4e33fd3e13a5fea8853 (commit)
via 2f27af47d8de321a77a389c8b2ecac4b10f77272 (commit)
via 4f689473ad32d7c4e8f0875f538d591bb044063a (commit)
via 966bb28f1ec5139e36a44366f08388c7605944cf (commit)
via ccb79f0f3d0780869249fc6dc9988adb826bbfce (commit)
via e0baa757c57f8a7369b37fee15de6744e47e2304 (commit)
via 337e9f20854622c2d5fe3f67b982f388afd9ccb4 (commit)
via 30dd04bdfc241c50cba7fb634d9e21e03624d08b (commit)
via 4c15d977d85cf9a2bd145ff887e9f63af55b4a5f (commit)
via f4ddd891a7235d296bf0022ac01748d50c247c32 (commit)
via 4cf923ff58768ec4be3e30a4756586df3c7be86a (commit)
via 4d26f288d3ace6463e81f00fa2921c4dc368c4bf (commit)
via feb2efbd212438a0b30cd9ea45aa20665fe37eb7 (commit)
from 56476bc74df455405bd331ad82d0a88404c9b155 (commit)
- Log -----------------------------------------------------------------
commit dc4d717df9e18b37707cd2f790c459b81b027ee9
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:58:18 2011 +0200
Translation update done using Pootle.
commit ec5f8e5da5f4e6f2d1be8d49d6fd87f74ddb8418
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:58:04 2011 +0200
Translation update done using Pootle.
commit 7cae49add96e21dbd29a22b3704566a8a87561de
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:57:45 2011 +0200
Translation update done using Pootle.
commit 3b1784b71a015094be533307634d628bdb06feb4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:57:22 2011 +0200
Translation update done using Pootle.
commit c12beba375479ecd8476c8d32ae401115ad7ee75
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:57:13 2011 +0200
Translation update done using Pootle.
commit 7905e7b7b520ad30eb66658e25a41864fd5f524b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:57:09 2011 +0200
Translation update done using Pootle.
commit 242a08f40a43ed48b667fe49d1138fc50b8f7350
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:57:05 2011 +0200
Translation update done using Pootle.
commit 0e10168067bd433788879b0d375d1844a574d5cd
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:56:59 2011 +0200
Translation update done using Pootle.
commit 790770bf89cdfff4e1ae2f8f544c8fa9c94b106f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:56:52 2011 +0200
Translation update done using Pootle.
commit 91d056f04c9e8d1d397ce74ee57deaea9e6624e3
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:56:36 2011 +0200
Translation update done using Pootle.
commit ca58f8b316adeeb2ebdd173a3765523bc66c6a88
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:56:12 2011 +0200
Translation update done using Pootle.
commit 3632f1ae3dd7a8856bd600e9e50786defc2e8892
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:55:46 2011 +0200
Translation update done using Pootle.
commit b50107a2131da9b4e564816a552d6e15187b2523
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:55:40 2011 +0200
Translation update done using Pootle.
commit 5640399abf3a548c8f7487a9f64af0336e0a8bd6
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:55:30 2011 +0200
Translation update done using Pootle.
commit 51b849af2781840207b1b989b45d89ffd74068d4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:55:25 2011 +0200
Translation update done using Pootle.
commit a211ef88042d915ab20548e06992d4354dc6e17b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:55:17 2011 +0200
Translation update done using Pootle.
commit 6fdb69272640bf8343c517f39b6eac15ad85b108
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:54:55 2011 +0200
Translation update done using Pootle.
commit d7f8163f682d8568186e9e5c886bb6342924ee4d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:54:39 2011 +0200
Translation update done using Pootle.
commit ddb1e81f721106e06cc067111eda863756897246
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:54:25 2011 +0200
Translation update done using Pootle.
commit ad630dadb3b2c4425c4aa8773a7b7a28ada1bb5f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:54:21 2011 +0200
Translation update done using Pootle.
commit 08689e7f70ffa1f54c6f9bfbd85a50711141e80b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:54:16 2011 +0200
Translation update done using Pootle.
commit 57b9b37f5fee2bff9dc5c6323cb5c8de428d2db2
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:54:06 2011 +0200
Translation update done using Pootle.
commit 96c1e660dd93ae19baea5db45dd685ad5b1be54e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:55 2011 +0200
Translation update done using Pootle.
commit 469bf80b50f8d91042a5ed1422bf89cd1211ba5c
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:51 2011 +0200
Translation update done using Pootle.
commit 87b0938ff3505d961dda547d95cb76fc5f70f8de
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:47 2011 +0200
Translation update done using Pootle.
commit e4e571f5ee19f067e0b3add81333957e55f69a6a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:39 2011 +0200
Translation update done using Pootle.
commit d13bc69ef0d4e039f38a3e150c8643166a36c008
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:35 2011 +0200
Translation update done using Pootle.
commit 702a4332772c60785e8e242390605baf79562936
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:32 2011 +0200
Translation update done using Pootle.
commit 6511cb1b478faf77a58ac2124b1e2703ee82de29
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:28 2011 +0200
Translation update done using Pootle.
commit f4b483d62f21b0fd9bfd3225b8575ca18b917c29
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:16 2011 +0200
Translation update done using Pootle.
commit d137b9380553bb0061e82cbe55ad25fd6c4b5e72
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:12 2011 +0200
Translation update done using Pootle.
commit 6f4e60fed333bc1f99e8b9cab50ab2eec1d9da0a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:53:05 2011 +0200
Translation update done using Pootle.
commit b6ec5dcf6f7da496f03037f31851e2f7319bf5aa
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:52:59 2011 +0200
Translation update done using Pootle.
commit 044113ff87adae3c72557349eda22357472e18a4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:52:50 2011 +0200
Translation update done using Pootle.
commit e82c1835b3a180becec42ca7254d34e22076742e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:52:16 2011 +0200
Translation update done using Pootle.
commit 9a4481dbc2a01d4f52068895766cc03ca37a6e4e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:51:24 2011 +0200
Translation update done using Pootle.
commit dc3ab6f272179ef1c3a780628885d679e1a62da8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:51:13 2011 +0200
Translation update done using Pootle.
commit 01f0705c2c91b00b6b1796010b6dd1b355989bf4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:50:04 2011 +0200
Translation update done using Pootle.
commit 8ecfd8548591194c5338c21166a0d6f174a6f9d7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:49:56 2011 +0200
Translation update done using Pootle.
commit ec30437a6454f57a3694e9368035747db4829cd6
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:49:36 2011 +0200
Translation update done using Pootle.
commit 4303c338f3f57ce9ff831eeb4dfa70920724b9ef
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:49:22 2011 +0200
Translation update done using Pootle.
commit ffc3bd3265fb205e4719ab4cd739ced24100fc52
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:49:12 2011 +0200
Translation update done using Pootle.
commit b2216cf9271cb7f6b25f514dc06cc69cf02ff5ee
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:49:06 2011 +0200
Translation update done using Pootle.
commit 5d13fe16262d02875a11c91cc2c2a2778c1a13d7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:48:39 2011 +0200
Translation update done using Pootle.
commit 1ab81cfecc2ba9b69990039a87c3179a07efe25e
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:47:35 2011 +0200
Translation update done using Pootle.
commit bc5376f5a60c7abfe11c027114ca8969fcab8f06
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:47:19 2011 +0200
Translation update done using Pootle.
commit b145aef6d95e4f6af7f560039e3ca2709a8a3960
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:46:54 2011 +0200
Translation update done using Pootle.
commit 272f039f8d6ae243f48a1d4c649402c2d0a8044d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:46:45 2011 +0200
Translation update done using Pootle.
commit 9763f13f7907da5a6157fe532c0984cd71125c80
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:46:31 2011 +0200
Translation update done using Pootle.
commit 54223d018d2bdda301d93f53095c6b7e51782820
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:44:31 2011 +0200
Translation update done using Pootle.
commit 584641f375faf77a86728ce5a23e837db36c14c7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:36:32 2011 +0200
Translation update done using Pootle.
commit 6bd802b4b5e0ade5a1ce027505f4d3348f184361
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:35:50 2011 +0200
Translation update done using Pootle.
commit f4cf9bf9f75842ee1e9a591e5b582508ca1a2001
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:35:06 2011 +0200
Translation update done using Pootle.
commit 8fb0f78815876c72e9f5afcfd94bedc8f54f3fd8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:34:25 2011 +0200
Translation update done using Pootle.
commit f30f848348d18c586737478476d58286e404edae
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:34:15 2011 +0200
Translation update done using Pootle.
commit 24a4968fae8a64af2967ffaa7ab1fd101a8283d7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:33:19 2011 +0200
Translation update done using Pootle.
commit 75b3ffae90c153f26792564cad20a86784658adf
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:33:08 2011 +0200
Translation update done using Pootle.
commit b4893f884c6bdd9844920319c426626ae61bdf55
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:32:36 2011 +0200
Translation update done using Pootle.
commit d091db9fa7df2957e920e927578fede89f1e52e6
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:32:12 2011 +0200
Translation update done using Pootle.
commit 9a83fc577943402003c694a730568e13a2998215
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:31:53 2011 +0200
Translation update done using Pootle.
commit b6a3f950bcabf6cf3a4757799ba24f537a111499
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:30:03 2011 +0200
Translation update done using Pootle.
commit 6cb9a5f11cbed10fe8c945acbdda5655cb94252d
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:29:16 2011 +0200
Translation update done using Pootle.
commit fdf2c3b30b50aed6b58cfc4e0b5a099e4fb73a79
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:28:08 2011 +0200
Translation update done using Pootle.
commit adccb9fa9269258285f30e9082f074f0f4d0dce5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:27:16 2011 +0200
Translation update done using Pootle.
commit 4b9a82ed4d6ec27e8bf73693cf2d576f465faa75
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 15:26:08 2011 +0200
Translation update done using Pootle.
commit 587617edd8a33a4796d84cb965a5048f472d92d5
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:25:28 2011 +0200
Translation update done using Pootle.
commit 70f4a12c46e00c4c07d0ecadb78a5fe52f57a126
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 15:25:12 2011 +0200
Translation update done using Pootle.
commit 2e89bfc47e548b98b0189e18be0e4cbd513d4853
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:23:14 2011 +0200
Translation update done using Pootle.
commit d68facbcc8a87ce7926c25562ba528a633502a05
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:22:18 2011 +0200
Translation update done using Pootle.
commit fc47f8b12ca36f867c27c4e33fd3e13a5fea8853
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:21:49 2011 +0200
Translation update done using Pootle.
commit 2f27af47d8de321a77a389c8b2ecac4b10f77272
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:21:29 2011 +0200
Translation update done using Pootle.
commit 4f689473ad32d7c4e8f0875f538d591bb044063a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:20:51 2011 +0200
Translation update done using Pootle.
commit 966bb28f1ec5139e36a44366f08388c7605944cf
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:19:37 2011 +0200
Translation update done using Pootle.
commit ccb79f0f3d0780869249fc6dc9988adb826bbfce
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:18:14 2011 +0200
Translation update done using Pootle.
commit e0baa757c57f8a7369b37fee15de6744e47e2304
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:16:50 2011 +0200
Translation update done using Pootle.
commit 337e9f20854622c2d5fe3f67b982f388afd9ccb4
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:16:38 2011 +0200
Translation update done using Pootle.
commit 30dd04bdfc241c50cba7fb634d9e21e03624d08b
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:16:03 2011 +0200
Translation update done using Pootle.
commit 4c15d977d85cf9a2bd145ff887e9f63af55b4a5f
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:15:30 2011 +0200
Translation update done using Pootle.
commit f4ddd891a7235d296bf0022ac01748d50c247c32
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:15:20 2011 +0200
Translation update done using Pootle.
commit 4cf923ff58768ec4be3e30a4756586df3c7be86a
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:15:09 2011 +0200
Translation update done using Pootle.
commit 4d26f288d3ace6463e81f00fa2921c4dc368c4bf
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:14:02 2011 +0200
Translation update done using Pootle.
commit feb2efbd212438a0b30cd9ea45aa20665fe37eb7
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 15:13:47 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ja.po | 6 +-
po/si.po | 187 ++++++++++++++++++++++++++++++--------------------------------
2 files changed, 93 insertions(+), 100 deletions(-)
diff --git a/po/ja.po b/po/ja.po
index 71aa796..c0c1c04 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(a)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:26+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
"Language: ja\n"
@@ -7871,11 +7871,11 @@ msgstr "現在のエラーをスキップする"
# I think better of "Skip next %s errors."
#: server_replication.php:343
msgid "Skip next"
-msgstr ""
+msgstr "エラースキップする"
#: server_replication.php:346
msgid "errors."
-msgstr "エラースキップする"
+msgstr "個"
#: server_replication.php:361
#, php-format
diff --git a/po/si.po b/po/si.po
index 26d4a41..15f5baa 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(a)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:58+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
"Language: si\n"
@@ -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
@@ -95,15 +96,15 @@ 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"
-msgstr "ශීර්ෂකය ලබා ගැනීමට නොහැකි විය."
+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
@@ -276,7 +277,7 @@ msgstr "විධානය"
#: db_operations.php:433
msgid "Remove database"
-msgstr "දත්තගබඩාව ඉවත් කරන්න."
+msgstr "දත්තගබඩාව ඉවත් කරන්න"
#: db_operations.php:445
#, php-format
@@ -348,7 +349,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
@@ -410,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"
@@ -476,7 +477,7 @@ msgstr "වෙනස් කිරීම"
#: db_qbe.php:603
msgid "Add/Delete criteria rows"
-msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න."
+msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න"
#: db_qbe.php:615
msgid "Add/Delete columns"
@@ -488,12 +489,12 @@ msgstr "විමසුම යාවත්කාලීන කරන්න"
#: db_qbe.php:636
msgid "Use Tables"
-msgstr "වගු භාවිතා කරන්න."
+msgstr "වගු භාවිතා කරන්න"
#: db_qbe.php:659
#, php-format
msgid "SQL query on database <b>%s</b>:"
-msgstr "<b>%s</b> දත්තගබඩාව මත විමසුම්:"
+msgstr "<b>%s</b> දත්තගබඩාව මත SQL විමසුම:"
#: db_qbe.php:953 libraries/common.lib.php:1188
msgid "Submit Query"
@@ -531,8 +532,8 @@ msgstr "\"<i>%s</i>\" %s සඳහා සෙවීම් ප්රතිළ
#, php-format
msgid "%s match inside table <i>%s</i>"
msgid_plural "%s matches inside table <i>%s</i>"
-msgstr[0] "<i>%s</i> වගුව තුල ගැලපීම් %s කි."
-msgstr[1] "<i>%s</i> වගුව තුල ගැලපීම් %s කි."
+msgstr[0] "<i>%s</i> වගුව තුල ගැලපීම් %s කි"
+msgstr[1] "<i>%s</i> වගුව තුල ගැලපීම් %s කි"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
@@ -561,8 +562,8 @@ msgstr "ඉවත් කරන්න"
#, php-format
msgid "<b>Total:</b> <i>%s</i> match"
msgid_plural "<b>Total:</b> <i>%s</i> matches"
-msgstr[0] "<b>එකතුව:</b> <i>%s</i> ගැලපුමයි."
-msgstr[1] "<b>එකතුව:</b> ගැලපුම් <i>%s</i> යි."
+msgstr[0] "<b>එකතුව:</b> <i>%s</i> ගැලපුමයි"
+msgstr[1] "<b>එකතුව:</b> ගැලපුම් <i>%s</i> යි"
#: db_search.php:295
msgid "Search in database"
@@ -590,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
@@ -805,7 +806,7 @@ msgstr "එක් එක් අගයන් වෙන වෙනම ක්ෂේ
#: enum_editor.php:57
msgid "+ Restart insertion and add a new value"
-msgstr "+ ඇතුලත් කිරීම නැවත අරඹා අලුත් අගයක් එකතු කරන්න."
+msgstr "+ ඇතුලත් කිරීම නැවත අරඹා අලුත් අගයක් එකතු කරන්න"
#: enum_editor.php:67
msgid "Output"
@@ -822,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
@@ -874,7 +875,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!"
@@ -1074,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"
@@ -1132,11 +1133,11 @@ 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"
-msgstr "කරුණාකර ප්රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න."
+msgstr "කරුණාකර ප්රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න"
#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
@@ -1170,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
@@ -1463,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!"
@@ -1515,7 +1516,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
@@ -1534,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
@@ -1606,7 +1607,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
@@ -1723,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"
@@ -1739,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:"
@@ -1763,12 +1764,12 @@ msgstr "වීඩියෝ නරඹන්න"
#: libraries/blobstreaming.lib.php:360
msgid "Download file"
-msgstr "ගොනුව බාගත කරන්න."
+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"
@@ -1885,7 +1886,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
@@ -2246,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
@@ -2320,7 +2321,7 @@ msgid ""
"authentication"
msgstr ""
"[kbd]කුකී [/kbd] සත්යාපනය භවිතා කිරීමේදී කුකිය encrypt කිරීමට යොදාගන්නා "
-"රහස් වාක්ය ඛණ්ඩය "
+"රහස් වාක්ය ඛණ්ඩය"
#: libraries/config/messages.inc.php:25
msgid "Blowfish secret"
@@ -2347,7 +2348,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
@@ -2523,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
@@ -2554,13 +2554,13 @@ 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
#: 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
@@ -2578,12 +2578,12 @@ 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
msgid "Lines terminated by"
-msgstr "පේළි අවසන් කිරීමේ සළකුණ:"
+msgstr "පේළි අවසන් කිරීමේ සළකුණ"
#: libraries/config/messages.inc.php:80
#| msgid "Excel edition"
@@ -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"
@@ -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 ""
@@ -3010,11 +3010,11 @@ 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"
-msgstr "පටිති (tabs) ක්රියා කල යුතු ආකාරය තෝරන්න"
+msgstr "ටැබ් ක්රියා කල යුතු ආකාරය තෝරන්න"
#: libraries/config/messages.inc.php:223
#, fuzzy
@@ -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
@@ -3994,9 +3993,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)"
@@ -4075,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 ""
@@ -4367,7 +4364,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"
@@ -4377,7 +4374,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."
@@ -4458,12 +4457,12 @@ 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
msgid "Exporting rows from \"%s\" table"
-msgstr "%s වගුවෙන් තීරු අපනයනය කිරීම"
+msgstr "\"%s\" වගුවෙන් තීරු අපනයනය කිරීම"
#: libraries/display_export.lib.php:97
msgid "Export Method:"
@@ -4491,7 +4490,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:"
@@ -4569,22 +4568,19 @@ msgid "None"
msgstr "කිසිවක් නැත"
#: libraries/display_export.lib.php:313
-#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
-msgstr "\"සිප්ගත කරන ලද\""
+msgstr "zip කරන ලද"
#: libraries/display_export.lib.php:315
-#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
-msgstr "\"gzipp ගත කරන ලදි\""
+msgstr "gzipp කරන ලද"
#: libraries/display_export.lib.php:317
-#, fuzzy
#| msgid "\"bzipped\""
msgid "bzipped"
-msgstr "\"bzipp ගතකරන ලදි\""
+msgstr "bzipp කරන ලද"
#: libraries/display_export.lib.php:326
#, fuzzy
@@ -4816,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
@@ -4933,7 +4929,7 @@ msgstr "Read requests"
#: libraries/engines/innodb.lib.php:234
msgid "Write requests"
-msgstr "ලිවීම සඳහා වූ ඉල්ලීම්"
+msgstr "ලිවීම සඳහා වූ ඉල්ලීම්"
#: libraries/engines/innodb.lib.php:240
msgid "Read misses"
@@ -5289,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
@@ -5395,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"
@@ -5533,7 +5527,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
@@ -5623,7 +5617,9 @@ msgstr ""
msgid ""
"The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>"
-msgstr "ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය."
+msgstr ""
+"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.<i>(මෙය තෝරා නොගතහොත් පළමු පේලිය "
+"දත්ත සේ ගැනේ)</i>"
#: libraries/import/csv.php:39
msgid ""
@@ -6100,10 +6096,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
@@ -6121,7 +6117,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!"
@@ -6755,10 +6751,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 ""
@@ -6773,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
@@ -6851,7 +6846,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 භාවිතා කරන්නා සඳහා වෙනත් "
"මුරපදයක් ලබා දිය යුතුය. "
@@ -6921,8 +6916,8 @@ msgid ""
"automatically."
msgstr ""
"ඔබගේ බවුසරයේ Javascript සහය නැත/අක්රිය කර ඇත. එබැවින් යම් phpMyAdmin "
-"විශේෂාංග අක්රිය වී ඇත. උදාහරණයක් ලෙස යාත්රණ රාමුව (navigation frame) "
-"ස්වයංක්රියව යාවත්කාලීන නොවේ."
+"විශේෂාංග අක්රිය වී ඇත. උදාහරණයක් ලෙස යාත්රණ රාමුව ස්වයංක්රියව යාවත්කාලීන "
+"නොවේ."
#: main.php:343
#, php-format
@@ -7170,10 +7165,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."
@@ -7250,10 +7244,9 @@ msgid "<b>%s</b> table not found or not set in %s"
msgstr "<b>%s</b> 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"
@@ -7778,7 +7771,7 @@ msgstr ""
#: server_processlist.php:65
msgid "ID"
-msgstr "හැඳුනුම් අංකය (ID)"
+msgstr "හැඳුනුම් අංකය"
#: server_replication.php:49
msgid "Unknown error"
@@ -7854,7 +7847,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
@@ -7863,7 +7856,7 @@ msgid ""
"should see a message informing you, that this server <b>is</b> configured as "
"master"
msgstr ""
-"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න(Go) බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම "
+"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම "
"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත."
#: server_replication.php:291
@@ -8253,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 fsyncs() writes done to the log file."
#: server_status.php:94
msgid "The number of pending log file fsyncs."
@@ -8882,8 +8875,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"
@@ -8927,7 +8920,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"
@@ -8939,7 +8932,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"
@@ -9492,7 +9485,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"
@@ -9508,7 +9501,7 @@ msgstr "වගුව ඉවත් කරන්න (DROP)"
#: tbl_operations.php:729
msgid "Partition maintenance"
-msgstr "කොටස් (partition) නඩත්තුව"
+msgstr "කොටස් නඩත්තුව"
#: tbl_operations.php:737
#, php-format
@@ -9755,7 +9748,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"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 2cc74d228db1c42481b01df58ddbc4be61d84105
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via 2cc74d228db1c42481b01df58ddbc4be61d84105 (commit)
via f02643e3ca4c2a54941d2dc319e73f3d0ad8ef04 (commit)
via 6b1bbbf70e791fe9e2c19eeac665694bcc84c109 (commit)
via 8d1566399cee2514f3b46b18c9a023b6f8e0233a (commit)
via 538e10dcf8ee460d1472dd0336ac0d1a65290207 (commit)
via 519505bf83eb64a9839dad607a584c543b81aaa2 (commit)
via a5b757228672c425f63264980d7f9718aad589f5 (commit)
via 0e133c3e6108727199a24046a70092bb72e79a23 (commit)
via 6d8fadd9d32ac4b59493b49d80fba11faab407ca (commit)
via 58ed468ef119f380d4e748c3b6e59df650554c80 (commit)
via a1ab13449d165974c86dc2298ce96d138947823e (commit)
via bca7c7c2cc4b283ffc10d6c5809eac02cd02d12c (commit)
via d819413715475564d49a2018ac8e52a335cd3729 (commit)
via 530cc8b544df2eedb1b6b7f535ea9a106da541f9 (commit)
via 2cdd4065648958fb7b8a76879233ac0651c02875 (commit)
via 732a2e8b8db606af958a16e2986cdd3bafbca621 (commit)
via 0f5ec00a109ad9d304776c50e42fabb6a1c52e01 (commit)
via 0db72432a687598fa6ee1e176ad9416d0fedcc5b (commit)
via 7a17b82c38691c52d4a7a6e9f8ad95c28a108474 (commit)
via 271fbb175aef2f7e56521c264644ee3734bf5a66 (commit)
via 40abef48c1e9ff82b588e59aebf0860efd2b7f5a (commit)
via 0c7e21a42e8802b6615d498e20c570ece78b0f9f (commit)
via f60a6c6a95d15696fed07d7833c5979e380128b9 (commit)
via b110bb46b85ff799e2226fbe53d9b6dff2fbb363 (commit)
via 06caa9017d78159794f34776e830562c379c6866 (commit)
via 4cb04d7d0c3089a7d126d4802642dd98329cad3e (commit)
via 14f1da66919f700dee6360d9df7131caa79b982e (commit)
from 7f9860a07611d6f10bf9acd1e06bf9ff168419d9 (commit)
- Log -----------------------------------------------------------------
commit 2cc74d228db1c42481b01df58ddbc4be61d84105
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue May 3 14:40:04 2011 +0200
Generate
commit f02643e3ca4c2a54941d2dc319e73f3d0ad8ef04
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:09:13 2011 +0200
Translation update done using Pootle.
commit 6b1bbbf70e791fe9e2c19eeac665694bcc84c109
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:08:44 2011 +0200
Translation update done using Pootle.
commit 8d1566399cee2514f3b46b18c9a023b6f8e0233a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:08:29 2011 +0200
Translation update done using Pootle.
commit 538e10dcf8ee460d1472dd0336ac0d1a65290207
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:08:22 2011 +0200
Translation update done using Pootle.
commit 519505bf83eb64a9839dad607a584c543b81aaa2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:08:16 2011 +0200
Translation update done using Pootle.
commit a5b757228672c425f63264980d7f9718aad589f5
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:08:11 2011 +0200
Translation update done using Pootle.
commit 0e133c3e6108727199a24046a70092bb72e79a23
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:08:01 2011 +0200
Translation update done using Pootle.
commit 6d8fadd9d32ac4b59493b49d80fba11faab407ca
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:54 2011 +0200
Translation update done using Pootle.
commit 58ed468ef119f380d4e748c3b6e59df650554c80
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:47 2011 +0200
Translation update done using Pootle.
commit a1ab13449d165974c86dc2298ce96d138947823e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:39 2011 +0200
Translation update done using Pootle.
commit bca7c7c2cc4b283ffc10d6c5809eac02cd02d12c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:31 2011 +0200
Translation update done using Pootle.
commit d819413715475564d49a2018ac8e52a335cd3729
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:23 2011 +0200
Translation update done using Pootle.
commit 530cc8b544df2eedb1b6b7f535ea9a106da541f9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:13 2011 +0200
Translation update done using Pootle.
commit 2cdd4065648958fb7b8a76879233ac0651c02875
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:07:01 2011 +0200
Translation update done using Pootle.
commit 732a2e8b8db606af958a16e2986cdd3bafbca621
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:53 2011 +0200
Translation update done using Pootle.
commit 0f5ec00a109ad9d304776c50e42fabb6a1c52e01
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:47 2011 +0200
Translation update done using Pootle.
commit 0db72432a687598fa6ee1e176ad9416d0fedcc5b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:40 2011 +0200
Translation update done using Pootle.
commit 7a17b82c38691c52d4a7a6e9f8ad95c28a108474
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:29 2011 +0200
Translation update done using Pootle.
commit 271fbb175aef2f7e56521c264644ee3734bf5a66
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:22 2011 +0200
Translation update done using Pootle.
commit 40abef48c1e9ff82b588e59aebf0860efd2b7f5a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:16 2011 +0200
Translation update done using Pootle.
commit 0c7e21a42e8802b6615d498e20c570ece78b0f9f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:08 2011 +0200
Translation update done using Pootle.
commit f60a6c6a95d15696fed07d7833c5979e380128b9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:06:02 2011 +0200
Translation update done using Pootle.
commit b110bb46b85ff799e2226fbe53d9b6dff2fbb363
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:05:51 2011 +0200
Translation update done using Pootle.
commit 06caa9017d78159794f34776e830562c379c6866
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:05:38 2011 +0200
Translation update done using Pootle.
commit 4cb04d7d0c3089a7d126d4802642dd98329cad3e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:05:05 2011 +0200
Translation update done using Pootle.
commit 14f1da66919f700dee6360d9df7131caa79b982e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue May 3 14:04:52 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/es/Documentation.html | 70 ++++++++++----------
po/es.po | 148 +++++++++++++++++++++---------------------
2 files changed, 108 insertions(+), 110 deletions(-)
diff --git a/output/es/Documentation.html b/output/es/Documentation.html
index 5867d1a..e78d343 100644
--- a/output/es/Documentation.html
+++ b/output/es/Documentation.html
@@ -85,12 +85,11 @@ mbstring y ctype.
</li>
<li>Necesita el módulo GD2 de PHP para mostrar las miniaturas de JPEGs
("image/jpeg: inline") conservando su relación de aspecto.</li>
- <li>Cuando se use el <a href="#authentication_modes">método de
-autentificación</a> por "cookies", se sugiere encarecidamente la
-extensión<a href="http://www.php.net/mcrypt"><tt>mcrypt</tt></a> para la
-mayoría de los usuarios; es <b>obligatoria</b> para máquinas de
-64–bit. No usar mcrypt hará que phpMyAdmin cargue las páginas
-sensiblemente más lento.
+ <li>Cuando se use el <a href="#authentication_modes">método de autenticación</a>
+por "cookies", se sugiere encarecidamente la extensión<a
+href="http://www.php.net/mcrypt"><tt>mcrypt</tt></a> para la mayoría de los
+usuarios; es <b>obligatoria</b> para máquinas de 64–bit. No usar
+mcrypt hará que phpMyAdmin cargue las páginas sensiblemente más lento.
</li>
<li>Para obtener barras de progreso en las subidas, vea <a href="#faq2_9"> <abbr
title="Frequently Asked Questions">FAQ</abbr> 2.9</a>.</li>
@@ -316,15 +315,15 @@ configuración no provee.</li></ul></li>
preferible que proteja el directorio de instalación de phpMyAdmin porque el
uso de config no requiere que el usuario escriba su contraseña para acceder
a la instalación de phpMyAdmin. Se recomienda el uso de métodos de
-autentificación alternativos, como por ejemplo un HTTP–AUTH en un
+autenticación alternativos, como por ejemplo un HTTP–AUTH en un
fichero <a href="#glossary"><i>.htaccess</i></a> o bien usar una cookie
-<tt>auth_type</tt> o http. Vea la <a href="#faqmultiuser"> subsección
+<tt>auth_type</tt> o http. Vea la <a href="#faqmultiuser">subsección
multiusuario</a> de este <abbr title="Frequently Asked Questions">FAQ</abbr>
-para obtener información adicional, especialmente <a href="#faq4_4"> <abbr
+para obtener información adicional, especialmente <a href="#faq4_4"><abbr
title="Frequently Asked Questions">FAQ</abbr> 4.4</a>.</li>
<li>Abra el <a href="index.php">directorio principal de phpMyAdmin</a> em su
navegador. phpMyAdmin debería mostrar una pantall de bienvenida y sus bases
-de datos o, si está usando un método de autentificación por <abbr
+de datos o, si está usando un método de autenticación por <abbr
title="HyperText Transfer Protocol">HTTP</abbr> o por cookies, un diálogo de
registro de usuario.</li>
<li>Debería rechazar el acceso a los subdirectorios <tt>./libraries</tt> y
@@ -374,7 +373,7 @@ especificar los nombres de las tablas en su fichero
<a href="#config">Sección de configuración</a>. También necesitará tener un
usuario controlador con los permisos necesarios para acceder a dichas tablas
(vea la sección <a href="#authentication_modes">Uso de los modos de
-autentificación</a> más abajo).</p>
+autenticación</a> más abajo).</p>
<h3 id="upgrading">Actualizando desde una versión más antigua</h3>
@@ -397,10 +396,10 @@ una versión anterior a la 4.1.2 y está utilizando almacenamiento de
configuración phpMyAdmin, debería ejecutar el script SQL en
<tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt>.</p>
-<h3 id="authentication_modes">Uso de los métodos de autentificación</h3>
+<h3 id="authentication_modes">Uso de los métodos de autenticación</h3>
<ul><li>Se recomiendan los métodos <abbr title="HyperText Transfer
-Protocol">HTTP</abbr> y autentificación por cookies en <b>entornos
+Protocol">HTTP</abbr> y autenticación por cookies en <b>entornos
multiusuario</b>, donde se desea dar a cada usuario acceso a su propia base
de datos pero no a las de los demás.<br />
De todas maneras, tenga en cuenta que MS Internet Explorer tiene muchos
@@ -410,7 +409,7 @@ title="HyperText Transfer Protocol">HTTP</abbr> o por cookies, para que su
usuario y contraseña no estén expuestos en el fichero de configuración.
</li>
- <li>Los métodos de autentificación <abbr title="HyperText Transfer
+ <li>Los métodos de autenticación <abbr title="HyperText Transfer
Protocol">HTTP</abbr> y por cookies so n más seguros, dado que la
información de registro de MySQL no está expuesta en el fichero de
configuración de phpMyAdmin (a excepción del <a href="#controluser">usuario
@@ -423,7 +422,7 @@ cifrada con el algoritmo blowfish.</li>
<li id="pmausr">Nota: esta sección sólo aplica si el servidor MySQL está ejecutando con la
opción <tt>--skip-show-database</tt>.<br /><br />
- Para los modos de autentificación '<abbr title="HyperText Transfer
+ Para los modos de autenticación '<abbr title="HyperText Transfer
Protocol">HTTP</abbr>' y 'cookie', phpMyAdmin necesita un usuario
controlador que tenga <b>únicamente</b> el privilegio <tt>SELECT</tt> en las
tablas <i>`mysql`.`user` (todas las columnas salvo `Password`)</i>,
@@ -481,16 +480,16 @@ GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real
Las acciones permitidas en este momento para el usuario están completamente
bajo el control del sistema de administración de MySQL.<br />
- Con los métodos de autentificación <abbr title="HyperText Transfer
+ Con los métodos de autenticación <abbr title="HyperText Transfer
Protocol">HTTP</abbr> o por cookies, no es necesario rellenar los campos
usuario/contraseña en el array <a href="#cfg_Servers"
class="configrule">$cfg['Servers']</a>.</li>
</ul>
-<h4>Método de autentificación '<abbr title="HyperText Transfer
+<h4>Método de autenticación '<abbr title="HyperText Transfer
Protocol">HTTP</abbr>'</h4>
-<ul><li>Emplea el método básico de autentificación <abbr title="HyperText Transfer
+<ul><li>Emplea el método básico de autenticación <abbr title="HyperText Transfer
Protocol">HTTP</abbr> y le permite ingresar como cualquier usuario válido de
MySQL.</li>
<li>Admite la mayoría de las configuraciones PHP. Para el soporte de <abbr
@@ -503,17 +502,17 @@ de Apache, vea <a href="#faq1_35"><abbr title="Frequently Asked
Questions">FAQ</abbr> 1.35</a>.</li>
<li>Vea también <a href="#faq4_4"> <abbr title="Frequently Asked
Questions">FAQ</abbr> 4.4</a> acerca de cómo no usar el mecanismo
-<i>.htaccess</i> conjuntamente con el modo de autentificación '<abbr
+<i>.htaccess</i> conjuntamente con el modo de autenticación '<abbr
title="HyperText Transfer Protocol">HTTP</abbr>'.</li>
</ul>
-<h4>método de autentificación por 'cookie'</h4>
+<h4>Método de autenticación por 'cookie'</h4>
-<ul><li>Se puede usar este método como reemplazo de la autentificación <abbr
+<ul><li>Se puede usar este método como reemplazo de la autenticación <abbr
title="HyperText Transfer Protocol">HTTP</abbr> (si por ejemplo, está
ejecutando <abbr title="Internet Information Services">IIS</abbr>).</li>
<li>Obviamente, el usuario debe de activar las cookies, aunque ya es un
-requisito para todos los métodos de autentificación.</li>
+requisito para todos los métodos de autenticación.</li>
<li>Mediante este modo, el usuario puede salir completamente de phpMyAdmin y
después volver a entrar con el mismo nombre de usuario.</li>
<li>Si quiere entrar en cualquier servidor, vea la directiva <a
@@ -524,7 +523,7 @@ emplear la extensión <tt>mcrypt</tt> acelerará el acceso considerablemente,
aunque no es obligatoria.</li>
</ul>
-<h4>método de autentificación 'signon'</h4>
+<h4>Método de autenticación 'signon'</h4>
<ul><li>Este modo es una manera útil de usar las credenciales de otra aplicación
para entrar en phpMyAdmin.</li>
@@ -532,7 +531,7 @@ para entrar en phpMyAdmin.</li>
datos de la sesión.</li>
<li>Más detalles en la sección <a href="#cfg_Servers_auth_type">auth_type</a>.</li>
</ul>
-<h4>modo de autentificación 'config'</h4>
+<h4>Modo de autenticación 'config'</h4>
<ul><li>Este modo es el más inseguro dado que necesita que se rellenen los campos <a
href="#servers_user" class="configrule"> $cfg['Servers'][$i]['user']</a> y
@@ -548,13 +547,12 @@ provider">ISP</abbr> <abbr title="Frequently Asked
Questions">FAQ</abbr></a>, hay una reseña que explica cómo proteger su
fichero de configuración.</li>
<li>Para incrementar la seguridad en este modo, debería considerar el uso de las
-directivas de autentificación del servidor <a
-href="#servers_allowdeny_order" class="configrule">
-$cfg['Servers'][$i]['AllowDeny']['order']</a> y <a
+directivas de autenticación del servidor <a href="#servers_allowdeny_order"
+class="configrule"> $cfg['Servers'][$i]['AllowDeny']['order']</a> y <a
href="#servers_allowdeny_rules" class="configrule">
$cfg['Servers'][$i]['AllowDeny']['rules']</a>.</li>
<li>Al contrario que los modos de cookie o http, no pide al usuario que se
-autentifique al cargar la página phpMyAdmin por primera vez. Es así por
+autentique al cargar la página phpMyAdmin por primera vez. Es así por
diseño, pero podría permitir a cualquiera entrar en su instalación. Debería
emplear un método de restricción, como un fichero <a
href="#glossary">.htaccess</a> con la directiva HTTP-AUTH, o impedir las
@@ -562,14 +560,14 @@ consultas HTTP entrantes a su router o firewall (ambos métodos están más
allá de la temática de este manual, pero son fácilmente localizables con
Google).</li>
</ul>
-<h4 id="swekey">autentificación Swekey</h4>
+<h4 id="swekey">Autenticación Swekey</h4>
<p>
-Swekey es un sistema de autentificación barato mediante una llave USB que se
+Swekey es un sistema de autenticación barato mediante una llave USB que se
puede emplear en aplicaciones web.<br /><br />
-Cuando se activa la autentificación Swekey, phpMyAdmin pide insertar la
-Swekey del usuario antes de entrar a la página de registro (actualmente sólo
-habilitada para el modo de autentificación po cookies). La autentificación
-Swekey está desactivada por defecto.<br /><br />
+Cuando se activa la autenticación Swekey, phpMyAdmin pide insertar la Swekey
+del usuario antes de entrar a la página de registro (actualmente sólo
+habilitada para el modo de autenticación por cookies). La autenticación
+Swekey está desactivada de forma predeterminada.<br /><br />
Para habilitarla, añada la línea siguiente a <i>config.inc.php</i>:
</p>
<pre>
@@ -647,7 +645,7 @@ este parámetro a <tt>TRUE</tt> para eliminar este mensaje.</dd>
<dt id="cfg_McryptDisableWarning">$cfg['McryptDisableWarning'] boolean</dt>
<dd>Desactica el aviso por defecto que se muestra si no se encuentra mcrypt para
-la autentificación por cookies. Se puede poner este parámetro como
+la autenticación por cookies. Se puede poner este parámetro como
<tt>TRUE</tt> para desactivar el mensaje.</dd>
<dt id="cfg_TranslationWarningThreshold">entero $cfg['TranslationWarningThreshold']</dt>
@@ -3399,7 +3397,7 @@ una línea</p>
<p> Reinicia Apache y funcionará.</p>
-<p> Este es una corrección sugerida por Brad Ummer:</p>
+<p> Esta es una corrección sugerida por Brad Ummer:</p>
<ul><li>Primero necesitas determinar qué zócalo está siendo utilizado por MySQL.<br />
Para hacer esto, conéctate a tu servidor y ubícate en el directorio bin de
diff --git a/po/es.po b/po/es.po
index 67978f1..0298f18 100644
--- a/po/es.po
+++ b/po/es.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-04-21 14:31+0300\n"
-"PO-Revision-Date: 2011-04-22 18:16+0200\n"
+"PO-Revision-Date: 2011-05-03 14:09+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -193,12 +193,11 @@ msgid ""
"<b>required</b> for 64–bit machines. Not using mcrypt will cause "
"phpMyAdmin to load pages significantly slower."
msgstr ""
-"Cuando se use el <a href=\"#authentication_modes\">método de "
-"autentificación</a> por "cookies", se sugiere encarecidamente la "
-"extensión<a href=\"http://www.php.net/mcrypt\"><tt>mcrypt</tt></a> para la "
-"mayoría de los usuarios; es <b>obligatoria</b> para máquinas de 64–"
-"bit. No usar mcrypt hará que phpMyAdmin cargue las páginas sensiblemente más "
-"lento."
+"Cuando se use el <a href=\"#authentication_modes\">método de autenticación</a> "
+"por "cookies", se sugiere encarecidamente la extensión<a "
+"href=\"http://www.php.net/mcrypt\"><tt>mcrypt</tt></a> para la mayoría de los "
+"usuarios; es <b>obligatoria</b> para máquinas de 64–bit. No usar "
+"mcrypt hará que phpMyAdmin cargue las páginas sensiblemente más lento."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:80
@@ -808,12 +807,12 @@ msgstr ""
"preferible que proteja el directorio de instalación de phpMyAdmin porque el "
"uso de config no requiere que el usuario escriba su contraseña para acceder "
"a la instalación de phpMyAdmin. Se recomienda el uso de métodos de "
-"autentificación alternativos, como por ejemplo un HTTP–AUTH en un "
+"autenticación alternativos, como por ejemplo un HTTP–AUTH en un "
"fichero <a href=\"#glossary\"><i>.htaccess</i></a> o bien usar una cookie "
-"<tt>auth_type</tt> o http. Vea la <a href=\"#faqmultiuser\"> subsección "
-"multiusuario</a> de este <abbr title=\"Frequently Asked Questions\">FAQ</"
-"abbr> para obtener información adicional, especialmente <a href=\"#faq4_4\"> "
-"<abbr title=\"Frequently Asked Questions\">FAQ</abbr> 4.4</a>."
+"<tt>auth_type</tt> o http. Vea la <a href=\"#faqmultiuser\">subsección "
+"multiusuario</a> de este <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
+"para obtener información adicional, especialmente <a href=\"#faq4_4\"><abbr "
+"title=\"Frequently Asked Questions\">FAQ</abbr> 4.4</a>."
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:303
@@ -825,8 +824,8 @@ msgid ""
msgstr ""
"Abra el <a href=\"index.php\">directorio principal de phpMyAdmin</a> em su "
"navegador. phpMyAdmin debería mostrar una pantall de bienvenida y sus bases "
-"de datos o, si está usando un método de autentificación por <abbr title="
-"\"HyperText Transfer Protocol\">HTTP</abbr> o por cookies, un diálogo de "
+"de datos o, si está usando un método de autenticación por <abbr "
+"title=\"HyperText Transfer Protocol\">HTTP</abbr> o por cookies, un diálogo de "
"registro de usuario."
#. type: Content of: <html><body><div><ol><li>
@@ -937,11 +936,11 @@ msgid ""
msgstr ""
"Después de importar el fichero <i>./scripts/create_tables.sql</i>, debería "
"especificar los nombres de las tablas en su fichero <i>./config.inc.php</i>. "
-"Las directivas necesarias están disponibles en la <a href=\"#config"
-"\">Sección de configuración</a>. También necesitará tener un usuario "
-"controlador con los permisos necesarios para acceder a dichas tablas (vea la "
-"sección <a href=\"#authentication_modes\">Uso de los modos de "
-"autentificación</a> más abajo)."
+"Las directivas necesarias están disponibles en la <a href=\"#config\">Sección "
+"de configuración</a>. También necesitará tener un usuario controlador con "
+"los permisos necesarios para acceder a dichas tablas (vea la sección <a "
+"href=\"#authentication_modes\">Uso de los modos de autenticación</a> más "
+"abajo)."
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:356
@@ -996,7 +995,7 @@ msgstr ""
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:375
msgid "Using authentication modes"
-msgstr "Uso de los métodos de autentificación"
+msgstr "Uso de los métodos de autenticación"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:377
@@ -1006,10 +1005,10 @@ msgid ""
"where you want to give users access to their own database and don't want "
"them to play around with others."
msgstr ""
-"Se recomiendan los métodos <abbr title=\"HyperText Transfer Protocol\">HTTP</"
-"abbr> y autentificación por cookies en <b>entornos multiusuario</b>, donde "
-"se desea dar a cada usuario acceso a su propia base de datos pero no a las "
-"de los demás."
+"Se recomiendan los métodos <abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr> y autenticación por cookies en <b>entornos "
+"multiusuario</b>, donde se desea dar a cada usuario acceso a su propia base "
+"de datos pero no a las de los demás."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:381
@@ -1039,11 +1038,11 @@ msgid ""
"need to be set in the phpMyAdmin configuration file (except possibly for the "
"<a href=\"#controluser\">controluser</a>)."
msgstr ""
-"Los métodos de autentificación <abbr title=\"HyperText Transfer Protocol"
-"\">HTTP</abbr> y por cookies so n más seguros, dado que la información de "
-"registro de MySQL no está expuesta en el fichero de configuración de "
-"phpMyAdmin (a excepción del <a href=\"#controluser\">usuario controlador</"
-"a>)."
+"Los métodos de autenticación <abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr> y por cookies so n más seguros, dado que la "
+"información de registro de MySQL no está expuesta en el fichero de "
+"configuración de phpMyAdmin (a excepción del <a href=\"#controluser\">usuario "
+"controlador</a>)."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:392
@@ -1082,13 +1081,13 @@ msgid ""
"<i>`mysql`.`tables_priv` (all columns except `Grantor` and `Timestamp`)</i> "
"tables."
msgstr ""
-"Para los modos de autentificación '<abbr title=\"HyperText Transfer Protocol"
-"\">HTTP</abbr>' y 'cookie', phpMyAdmin necesita un usuario controlador que "
-"tenga <b>únicamente</b> el privilegio <tt>SELECT</tt> en las tablas "
-"<i>`mysql`.`user` (todas las columnas salvo `Password`)</i>, <i>`mysql`.`db` "
-"(todas las columnas)</i>, <i>`mysql`.`host` (todas las columnas)</i> y "
-"<i>`mysql`.`tables_priv` (todas las columnas salvo `Grantor` y `Timestamp`)</"
-"i>."
+"Para los modos de autenticación '<abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr>' y 'cookie', phpMyAdmin necesita un usuario "
+"controlador que tenga <b>únicamente</b> el privilegio <tt>SELECT</tt> en las "
+"tablas <i>`mysql`.`user` (todas las columnas salvo `Password`)</i>, "
+"<i>`mysql`.`db` (todas las columnas)</i>, <i>`mysql`.`host` (todas las "
+"columnas)</i> y <i>`mysql`.`tables_priv` (todas las columnas salvo `Grantor` "
+"y `Timestamp`)</i>."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:405
@@ -1225,18 +1224,18 @@ msgid ""
"authentication mode, you don't need to fill the user/password fields inside "
"the <a href=\"#cfg_Servers\" class=\"configrule\">$cfg['Servers']</a> array."
msgstr ""
-"Con los métodos de autentificación <abbr title=\"HyperText Transfer Protocol"
-"\">HTTP</abbr> o por cookies, no es necesario rellenar los campos usuario/"
-"contraseña en el array <a href=\"#cfg_Servers\" class=\"configrule\">$cfg"
-"['Servers']</a>."
+"Con los métodos de autenticación <abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr> o por cookies, no es necesario rellenar los campos "
+"usuario/contraseña en el array <a href=\"#cfg_Servers\" "
+"class=\"configrule\">$cfg['Servers']</a>."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:463
msgid ""
"'<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' authentication mode"
msgstr ""
-"Método de autentificación '<abbr title=\"HyperText Transfer Protocol\">HTTP</"
-"abbr>'"
+"Método de autenticación '<abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr>'"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:465
@@ -1244,9 +1243,9 @@ msgid ""
"Uses <abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> Basic "
"authentication method and allows you to log in as any valid MySQL user."
msgstr ""
-"Emplea el método básico de autentificación <abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> y le permite ingresar como cualquier usuario válido "
-"de MySQL."
+"Emplea el método básico de autenticación <abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr> y le permite ingresar como cualquier usuario válido de "
+"MySQL."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:467
@@ -1275,15 +1274,15 @@ msgid ""
"with '<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' "
"authentication mode."
msgstr ""
-"Vea también <a href=\"#faq4_4\"> <abbr title=\"Frequently Asked Questions"
-"\">FAQ</abbr> 4.4</a> acerca de cómo no usar el mecanismo <i>.htaccess</i> "
-"conjuntamente con el modo de autentificación '<abbr title=\"HyperText "
-"Transfer Protocol\">HTTP</abbr>'."
+"Vea también <a href=\"#faq4_4\"> <abbr title=\"Frequently Asked "
+"Questions\">FAQ</abbr> 4.4</a> acerca de cómo no usar el mecanismo "
+"<i>.htaccess</i> conjuntamente con el modo de autenticación '<abbr "
+"title=\"HyperText Transfer Protocol\">HTTP</abbr>'."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:483
msgid "'cookie' authentication mode"
-msgstr "método de autentificación por 'cookie'"
+msgstr "Método de autenticación por 'cookie'"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:485
@@ -1292,9 +1291,9 @@ msgid ""
"Transfer Protocol\">HTTP</abbr> authentication (for example, if you're "
"running <abbr title=\"Internet Information Services\">IIS</abbr>)."
msgstr ""
-"Se puede usar este método como reemplazo de la autentificación <abbr title="
-"\"HyperText Transfer Protocol\">HTTP</abbr> (si por ejemplo, está ejecutando "
-"<abbr title=\"Internet Information Services\">IIS</abbr>)."
+"Se puede usar este método como reemplazo de la autenticación <abbr "
+"title=\"HyperText Transfer Protocol\">HTTP</abbr> (si por ejemplo, está "
+"ejecutando <abbr title=\"Internet Information Services\">IIS</abbr>)."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:489
@@ -1303,7 +1302,7 @@ msgid ""
"requirement for all authentication modes."
msgstr ""
"Obviamente, el usuario debe de activar las cookies, aunque ya es un "
-"requisito para todos los métodos de autentificación."
+"requisito para todos los métodos de autenticación."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:491
@@ -1338,7 +1337,7 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:501
msgid "'signon' authentication mode"
-msgstr "método de autentificación 'signon'"
+msgstr "Método de autenticación 'signon'"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:503
@@ -1366,7 +1365,7 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:510
msgid "'config' authentication mode"
-msgstr "modo de autentificación 'config'"
+msgstr "Modo de autenticación 'config'"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:512
@@ -1415,10 +1414,10 @@ msgid ""
"['AllowDeny']['rules']</a> configuration directives."
msgstr ""
"Para incrementar la seguridad en este modo, debería considerar el uso de las "
-"directivas de autentificación del servidor <a href=\"#servers_allowdeny_order"
-"\" class=\"configrule\"> $cfg['Servers'][$i]['AllowDeny']['order']</a> y <a "
-"href=\"#servers_allowdeny_rules\" class=\"configrule\"> $cfg['Servers'][$i]"
-"['AllowDeny']['rules']</a>."
+"directivas de autenticación del servidor <a href=\"#servers_allowdeny_order\" "
+"class=\"configrule\"> $cfg['Servers'][$i]['AllowDeny']['order']</a> y <a "
+"href=\"#servers_allowdeny_rules\" class=\"configrule\"> "
+"$cfg['Servers'][$i]['AllowDeny']['rules']</a>."
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:533
@@ -1432,17 +1431,18 @@ msgid ""
"searchable with Google)."
msgstr ""
"Al contrario que los modos de cookie o http, no pide al usuario que se "
-"autentifique al cargar la página phpMyAdmin por primera vez. Es así por "
+"autentique al cargar la página phpMyAdmin por primera vez. Es así por "
"diseño, pero podría permitir a cualquiera entrar en su instalación. Debería "
-"emplear un método de restricción, como un fichero <a href=\"#glossary\">."
-"htaccess</a> con la directiva HTTP-AUTH, o impedir las consultas HTTP "
-"entrantes a su router o firewall (ambos métodos están más allá de la "
-"temática de este manual, pero son fácilmente localizables con Google)."
+"emplear un método de restricción, como un fichero <a "
+"href=\"#glossary\">.htaccess</a> con la directiva HTTP-AUTH, o impedir las "
+"consultas HTTP entrantes a su router o firewall (ambos métodos están más "
+"allá de la temática de este manual, pero son fácilmente localizables con "
+"Google)."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:541
msgid "Swekey authentication"
-msgstr "autentificación Swekey"
+msgstr "Autenticación Swekey"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:543
@@ -1450,7 +1450,7 @@ msgid ""
"The Swekey is a low cost authentication USB key that can be used in web "
"applications."
msgstr ""
-"Swekey es un sistema de autentificación barato mediante una llave USB que se "
+"Swekey es un sistema de autenticación barato mediante una llave USB que se "
"puede emplear en aplicaciones web."
#. type: Content of: <html><body><div><p>
@@ -1461,10 +1461,10 @@ msgid ""
"cookie authentication mode only). Swekey Authentication is disabled by "
"default."
msgstr ""
-"Cuando se activa la autentificación Swekey, phpMyAdmin pide insertar la "
-"Swekey del usuario antes de entrar a la página de registro (actualmente sólo "
-"habilitada para el modo de autentificación po cookies). La autentificación "
-"Swekey está desactivada por defecto."
+"Cuando se activa la autenticación Swekey, phpMyAdmin pide insertar la Swekey "
+"del usuario antes de entrar a la página de registro (actualmente sólo "
+"habilitada para el modo de autenticación por cookies). La autenticación "
+"Swekey está desactivada de forma predeterminada."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:549
@@ -1668,8 +1668,8 @@ msgid ""
"this message from appearing."
msgstr ""
"Desactica el aviso por defecto que se muestra si no se encuentra mcrypt para "
-"la autentificación por cookies. Se puede poner este parámetro como <tt>TRUE</"
-"tt> para desactivar el mensaje."
+"la autenticación por cookies. Se puede poner este parámetro como "
+"<tt>TRUE</tt> para desactivar el mensaje."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:627
@@ -8860,7 +8860,7 @@ msgstr "Reinicia Apache y funcionará."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3131
msgid "Here is a fix suggested by Brad Ummer:"
-msgstr "Este es una corrección sugerida por Brad Ummer:"
+msgstr "Esta es una corrección sugerida por Brad Ummer:"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3133
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-476-g56476bc
by Piotr Przybylski 03 May '11
by Piotr Przybylski 03 May '11
03 May '11
The branch, master has been updated
via 56476bc74df455405bd331ad82d0a88404c9b155 (commit)
from 2c3fa8aa7cbc11d353b58922aa86e23f1ad06899 (commit)
- Log -----------------------------------------------------------------
commit 56476bc74df455405bd331ad82d0a88404c9b155
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Tue May 3 14:26:55 2011 +0200
Make sure $limit is initialized
-----------------------------------------------------------------------
Summary of changes:
libraries/database_interface.lib.php | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index 842b891..22d9671 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;
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-475-g2c3fa8a
by Piotr Przybylski 03 May '11
by Piotr Przybylski 03 May '11
03 May '11
The branch, master has been updated
via 2c3fa8aa7cbc11d353b58922aa86e23f1ad06899 (commit)
from 65d869023e2aa27f2289807550f7cbacacb5285c (commit)
- Log -----------------------------------------------------------------
commit 2c3fa8aa7cbc11d353b58922aa86e23f1ad06899
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Tue May 3 14:14:57 2011 +0200
Don't display More for views and information_schema tables
-----------------------------------------------------------------------
Summary of changes:
tbl_structure.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/tbl_structure.php b/tbl_structure.php
index 73374d7..fce4f39 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -466,8 +466,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
<?php
} // end if... else...
echo "\n";
- } // end if (! $tbl_is_view && ! $db_is_information_schema)
- ?>
+ ?>
<td class="more_opts" id="more_opts<?php echo $rownum; ?>">
<?php echo __('More'); ?> <img src="<?php echo $pmaThemeImage . 'more.png'; ?>" alt="<?php echo __('Show more actions'); ?>" />
<div class="structure_actions_dropdown" id="row_<?php echo $rownum; ?>">
@@ -531,6 +530,9 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
</div>
</div>
</td>
+ <?php
+ } // end if (! $tbl_is_view && ! $db_is_information_schema)
+ ?>
</tr>
<?php
unset($field_charset);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0RC2-474-g65d8690
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via 65d869023e2aa27f2289807550f7cbacacb5285c (commit)
via 4b9aa973ea12b46810546f3350796b82ed79ec9c (commit)
via 4d71a45de43c469b287c216121e330d51a995dc7 (commit)
via 0b78b24e5f14a4c7c5396efc2b44a63e5d904c91 (commit)
via 7f45ba6471d45984ee378748b8773be9514b0245 (commit)
via da86a5baceb01d3de9f0c69dec45b2e14264248c (commit)
via 186dac6555cada0cda1faa1f95d9fa265792af29 (commit)
via d6eac7336f04265fc67b08dd9cb5997c51b1fb56 (commit)
via eb2c82afe36002737dd5a32fc1998a6375c7f31f (commit)
via 7881fdfc1ac7ba225ce74277e195c78196a6a258 (commit)
via 629791d54a70483052ee3632920443044cc7f601 (commit)
via 82aeb4a62a733a0003ef8ab0074ddc5f0e7043b6 (commit)
via a9122ee67d1bc63d0e82c7d18ab10e6e99579409 (commit)
via 87ac66be3c5baff0ec2a7abe83e3c2363cf5978d (commit)
via 69da73ba9beac511a7351814b9170d04eb5a49c2 (commit)
via 0b583d77dcf066e4df4bdaff2816d8f234f70d09 (commit)
via 1f274e5ad7ebe5f86422a28ec4f0e9a02170faa1 (commit)
via bf751a6c9315578658192bfc5a3652bac4eb0d66 (commit)
from da84c8730986f60fafaf89729a4fe8b1e862ec64 (commit)
- Log -----------------------------------------------------------------
commit 65d869023e2aa27f2289807550f7cbacacb5285c
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 12:06:41 2011 +0200
Translation update done using Pootle.
commit 4b9aa973ea12b46810546f3350796b82ed79ec9c
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 12:06:13 2011 +0200
Translation update done using Pootle.
commit 4d71a45de43c469b287c216121e330d51a995dc7
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:54:18 2011 +0200
Translation update done using Pootle.
commit 0b78b24e5f14a4c7c5396efc2b44a63e5d904c91
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:53:52 2011 +0200
Translation update done using Pootle.
commit 7f45ba6471d45984ee378748b8773be9514b0245
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:46:24 2011 +0200
Translation update done using Pootle.
commit da86a5baceb01d3de9f0c69dec45b2e14264248c
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 11:46:05 2011 +0200
Translation update done using Pootle.
commit 186dac6555cada0cda1faa1f95d9fa265792af29
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:45:54 2011 +0200
Translation update done using Pootle.
commit d6eac7336f04265fc67b08dd9cb5997c51b1fb56
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Tue May 3 11:45:52 2011 +0200
Translation update done using Pootle.
commit eb2c82afe36002737dd5a32fc1998a6375c7f31f
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:45:43 2011 +0200
Translation update done using Pootle.
commit 7881fdfc1ac7ba225ce74277e195c78196a6a258
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:44:05 2011 +0200
Translation update done using Pootle.
commit 629791d54a70483052ee3632920443044cc7f601
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:43:28 2011 +0200
Translation update done using Pootle.
commit 82aeb4a62a733a0003ef8ab0074ddc5f0e7043b6
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:40:05 2011 +0200
Translation update done using Pootle.
commit a9122ee67d1bc63d0e82c7d18ab10e6e99579409
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:39:20 2011 +0200
Translation update done using Pootle.
commit 87ac66be3c5baff0ec2a7abe83e3c2363cf5978d
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:33:11 2011 +0200
Translation update done using Pootle.
commit 69da73ba9beac511a7351814b9170d04eb5a49c2
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:28:11 2011 +0200
Translation update done using Pootle.
commit 0b583d77dcf066e4df4bdaff2816d8f234f70d09
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:23:18 2011 +0200
Translation update done using Pootle.
commit 1f274e5ad7ebe5f86422a28ec4f0e9a02170faa1
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:22:51 2011 +0200
Translation update done using Pootle.
commit bf751a6c9315578658192bfc5a3652bac4eb0d66
Author: Yuichiro <yuichiro(a)pop07.odn.ne.jp>
Date: Tue May 3 11:16:10 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ja.po | 33 ++++++++++++++++++---------------
po/si.po | 7 +++----
2 files changed, 21 insertions(+), 19 deletions(-)
diff --git a/po/ja.po b/po/ja.po
index e9bd88b..71aa796 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(a)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 12:06+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\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."
@@ -3638,10 +3638,12 @@ 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"
-msgstr ""
+msgstr "INFORMATION_SCHEMA の使用を無効にする"
#: libraries/config/messages.inc.php:382
msgid "What PHP extension to use; you should use mysqli if supported"
@@ -5437,7 +5439,7 @@ msgstr "<code>CREATE TABLE</code> オプション:"
msgid ""
"Enclose table and field names with backquotes <i>(Protects field and table "
"names formed with special characters or keywords)</i>"
-msgstr "逆クオートでテーブルやフィールドの名前を囲む <i>(特殊な文字やキーワードを含むフィールド名やテーブル名を保護します)</i>"
+msgstr "逆クォートでテーブルやフィールドの名前を囲む <i>(特殊な文字やキーワードを含むフィールド名やテーブル名を保護します)</i>"
#: libraries/export/sql.php:136
msgid "Instead of <code>INSERT</code> statements, use:"
@@ -6416,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"
@@ -7730,12 +7732,12 @@ msgstr "マスタのログの位置が読み込めません。マスター上の
#: server_replication.php:69
msgid "Unable to change master"
-msgstr "マスタを変更することはできません"
+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."
@@ -7810,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"
@@ -7822,19 +7824,19 @@ msgstr "データベースをマスタと同期させる"
#: server_replication.php:320
msgid "Control slave:"
-msgstr ""
+msgstr "スレーブの操作:"
#: server_replication.php:323
msgid "Full start"
-msgstr ""
+msgstr "全開始"
#: server_replication.php:323
msgid "Full stop"
-msgstr ""
+msgstr "全停止"
#: server_replication.php:324
msgid "Reset slave"
-msgstr ""
+msgstr "スレーブのリセット"
#: server_replication.php:326
#| msgid "Structure only"
@@ -7860,19 +7862,20 @@ 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"
-msgstr ""
+msgstr "現在のエラーをスキップする"
+# I think better of "Skip next %s errors."
#: server_replication.php:343
msgid "Skip next"
msgstr ""
#: server_replication.php:346
msgid "errors."
-msgstr ""
+msgstr "エラースキップする"
#: server_replication.php:361
#, php-format
diff --git a/po/si.po b/po/si.po
index edf8338..26d4a41 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(a)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:46+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj(a)gmail.com>\n"
"Language-Team: sinhala <si(a)li.org>\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
@@ -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
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 7f9860a07611d6f10bf9acd1e06bf9ff168419d9
by Michal Čihař 03 May '11
by Michal Čihař 03 May '11
03 May '11
The branch, master has been updated
via 7f9860a07611d6f10bf9acd1e06bf9ff168419d9 (commit)
from 281acd718e03961d8623b77ebefd76d9c85c7dc2 (commit)
- Log -----------------------------------------------------------------
commit 7f9860a07611d6f10bf9acd1e06bf9ff168419d9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue May 3 11:47:57 2011 +0200
Fix typo in HTML tag
-----------------------------------------------------------------------
Summary of changes:
output/es/Documentation.html | 2 +-
po/es.po | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/output/es/Documentation.html b/output/es/Documentation.html
index 64b3194..5867d1a 100644
--- a/output/es/Documentation.html
+++ b/output/es/Documentation.html
@@ -3388,7 +3388,7 @@ Connection Failed: Can't connect to local MySQL server through socket
<p> Para usuarios de RedHat, Harald Legner sugiere esto en la lista de correo:</p>
<p> En una máquina RedHat, el zócalo de MySQL es
-<i>/var/lib/mysql/mysql.sock</i>. En el archivo <i>php.ini</a> encontrarás
+<i>/var/lib/mysql/mysql.sock</i>. En el archivo <i>php.ini</i> encontrarás
una línea</p>
<pre>mysql.default_socket = /tmp/mysql.sock</pre>
diff --git a/po/es.po b/po/es.po
index 3a82793..67978f1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -8833,7 +8833,7 @@ msgid ""
"In your <i>php.ini</i> you will find a line"
msgstr ""
"En una máquina RedHat, el zócalo de MySQL es <i>/var/lib/mysql/mysql.sock</"
-"i>. En el archivo <i>php.ini</a> encontrarás una línea"
+"i>. En el archivo <i>php.ini</i> encontrarás una línea"
#. type: Content of: <html><body><div><pre>
#: orig-docs/Documentation.html:3123
hooks/post-receive
--
phpMyAdmin localized documentation
1
0