Git
Threads by month
- ----- 2025 -----
- December
- November
- October
- 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
- 9 participants
- 38706 discussions
[Phpmyadmin-git] [SCM] Planet phpMyAdmin branch, master, updated. 5a7d80a5093cf79e6623daaeea4a54a17a85f152
by Michal Čihař 20 May '10
by Michal Čihař 20 May '10
20 May '10
The branch, master has been updated
via 5a7d80a5093cf79e6623daaeea4a54a17a85f152 (commit)
from d94f442042579084f9546544816fad6290336a30 (commit)
- Log -----------------------------------------------------------------
commit 5a7d80a5093cf79e6623daaeea4a54a17a85f152
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu May 20 16:46:02 2010 +0200
Mention template.
-----------------------------------------------------------------------
Summary of changes:
README | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/README b/README
index 342791c..37d42bc 100644
--- a/README
+++ b/README
@@ -10,6 +10,8 @@ with configuration file placed in this directory:
planet --verbose planet.ini
+If you want to change look, you need to change template theme/index.html.tmpl.
+
[1]: http://www.intertwingly.net/code/venus/
-- Michal Čihař <michal(a)cihar.com> Mon, 01 Jun 2009 11:25:01 +0200
hooks/post-receive
--
Planet phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3642-gc78ee96
by Marc Delisle 20 May '10
by Marc Delisle 20 May '10
20 May '10
The branch, master has been updated
via c78ee96697b8f5119c06e0689395dbd24f9cd69e (commit)
from 5636db6db96c4cd5ae0e302783634e2b0608e2d9 (commit)
- Log -----------------------------------------------------------------
commit c78ee96697b8f5119c06e0689395dbd24f9cd69e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu May 20 07:49:15 2010 -0400
gettext conversion
-----------------------------------------------------------------------
Summary of changes:
libraries/common.lib.php | 17 ++++++++++++++++-
libraries/config.default.php | 23 -----------------------
2 files changed, 16 insertions(+), 24 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 4d36eef..ec2f8eb 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -2814,7 +2814,22 @@ function PMA_duplicateFirstNewline($string){
* or $cfg['DefaultTabDatabase']
*/
function PMA_getTitleForTarget($target) {
- return $GLOBALS[$GLOBALS['cfg']['DefaultTabTranslationMapping'][$target]];
+
+$mapping = array(
+ // Values for $cfg['DefaultTabTable']
+ 'tbl_structure.php' => __('Structure'),
+ 'tbl_sql.php' => __('SQL'),
+ 'tbl_select.php' =>__('Search'),
+ 'tbl_change.php' =>__('Insert'),
+ 'sql.php' => __('Browse'),
+
+ // Values for $cfg['DefaultTabDatabase']
+ 'db_structure.php' => __('Structure'),
+ 'db_sql.php' => __('SQL'),
+ 'db_search.php' => __('Search'),
+ 'db_operations.php' => __('Operations'),
+);
+ return $mapping[$target];
}
function PMA_js($code, $print=true)
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 64628bb..dc08274 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -1055,29 +1055,6 @@ $cfg['DefaultTabDatabase'] = 'db_structure.php';
*/
$cfg['DefaultTabTable'] = 'sql.php';
-/**
- * Mapping between script filenames and translation keys
- *
- * Lookup can be performed by PMA_getTitleForTarget()
- *
- * @global string $cfg['DefaultTabTranslationMapping']
- */
-$cfg['DefaultTabTranslationMapping'] = array(
-
- // Values for $cfg['DefaultTabTable']
- 'tbl_structure.php' => 'strStructure',
- 'tbl_sql.php' => 'strSQL',
- 'tbl_select.php' => 'strSearch',
- 'tbl_change.php' => 'strInsert',
- 'sql.php' => 'strBrowse',
-
- // Values for $cfg['DefaultTabDatabase']
- 'db_structure.php' => 'strStructure',
- 'db_sql.php' => 'strSQL',
- 'db_search.php' => 'strSearch',
- 'db_operations.php' => 'strOperations',
-);
-
/*******************************************************************************
* Export defaults
*/
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3641-g5636db6
by Michal Čihař 20 May '10
by Michal Čihař 20 May '10
20 May '10
The branch, master has been updated
via 5636db6db96c4cd5ae0e302783634e2b0608e2d9 (commit)
via 13b1613c22cdfcf796fa75e682096243b1ff5a21 (commit)
via 806884724736081715613e4f62da4057a305620b (commit)
via d5762bda67ed233761210f7e1c040db76e1ffa9f (commit)
via 1daef452df9c2ea4b8e5d27afa5dc6b6feecf2e9 (commit)
via f611454c7c0895415004f4b1b5bae3801be500ef (commit)
via 2a7e4c7602ea99c7190d0b29b2a2b50d38a73a88 (commit)
via 98ab6fb761c726e0bbd4fa48ad23f1ea839c7b7d (commit)
via d24b1a8158c28ddaeda7faf2b982f1893af4aa2f (commit)
via b5d3cbf123df23d087c6e8c0e72abb3de1e9e089 (commit)
via 4ebeaf0b784d94ac14e9f7151a5eb5255ab4d793 (commit)
via 8201aeb586f5e3ff95c8f8c970969349d48c96ac (commit)
via 5c7d9b1c441c14a6652d077a0348e3edfca0b86d (commit)
via ffa02e99214dd4fe1960d005d7be0fd2e6392606 (commit)
via 481b146edca223d03b27024d24c20d348739170f (commit)
via 57105054ca8d791473a5a4de02e460e005d5f9cf (commit)
via d040002b45898f2087b71d1146fa2f35a1feef1e (commit)
via 05bbec3abf8d435e6e3a06509605e08e39e8a6e3 (commit)
via a7e6e39114bbcf7bde85c7754fd4d66b4be135de (commit)
via def33db86f9ef4f1b8074e5518adcb15e506b6be (commit)
via bf0560ffc528c0b2c0cdbaef4599ae021a2fb494 (commit)
via 2a3b6abe9a1ffb0c4f1f5a4fdf057da938430502 (commit)
via eaaffbd20ce0de2ccf9ba12c1ad4c2e53e08034d (commit)
via 786c8eb24d76c03f882e77bd3f0b9b67971381ab (commit)
via dce86979b936fcf7219a3320346c6aed7d3d783b (commit)
via ee9f4e90ae306b93c7dab1d962a573d7534254ca (commit)
via 6a7ccb8fc76f0cb331faf12c13bc2eabc037f2d2 (commit)
via 1cb202b4a09f105d0e57f3121d4b9720f78064f9 (commit)
via c4242afca1da291e6af854a90208fba4c6d0cb1d (commit)
via 8c622d2316e6af03014ae5a5bd34873163415a12 (commit)
via 7df2b7b7560dbbb45ff14b1a55c0cfb167c035e0 (commit)
via 87f67640c5555075afe76f2840e3e7f78090d1b6 (commit)
via df3bc590496244082d610fb7a5d22d33d27ebd51 (commit)
via cc996a42b78025d142689d49a3a865541f40f3ba (commit)
via 55822c9270e7b5c3b0fab43bb39a40691870662c (commit)
via b6c27d3874c01a0c91ee48684c72cabf9bf23c1f (commit)
via 322ab54196a24a93c3b4de71fedfb4de622715a4 (commit)
via da79f52466aa1b1c2c8eadc01cb43830d3aab435 (commit)
via 8f13e3e4127bf249b09ef6d7b4277e3dcfe7aff9 (commit)
via d52a11f46c4a7ca2f0b44a1805864f64456ac2e9 (commit)
via 83506024627f6aab02284ff3fc8f5d059319dc4f (commit)
via 3ae074a82bcad92dc2076a5d08402d6eebf3a925 (commit)
from 162d51a2b3fe9ee626d777c59eafdc4d02ff0ff2 (commit)
- Log -----------------------------------------------------------------
commit 5636db6db96c4cd5ae0e302783634e2b0608e2d9
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:58 2010 +0200
Translation update done using Pootle.
commit 13b1613c22cdfcf796fa75e682096243b1ff5a21
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:53 2010 +0200
Translation update done using Pootle.
commit 806884724736081715613e4f62da4057a305620b
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:48 2010 +0200
Translation update done using Pootle.
commit d5762bda67ed233761210f7e1c040db76e1ffa9f
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:44 2010 +0200
Translation update done using Pootle.
commit 1daef452df9c2ea4b8e5d27afa5dc6b6feecf2e9
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:39 2010 +0200
Translation update done using Pootle.
commit f611454c7c0895415004f4b1b5bae3801be500ef
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:34 2010 +0200
Translation update done using Pootle.
commit 2a7e4c7602ea99c7190d0b29b2a2b50d38a73a88
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:28 2010 +0200
Translation update done using Pootle.
commit 98ab6fb761c726e0bbd4fa48ad23f1ea839c7b7d
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:23 2010 +0200
Translation update done using Pootle.
commit d24b1a8158c28ddaeda7faf2b982f1893af4aa2f
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:16 2010 +0200
Translation update done using Pootle.
commit b5d3cbf123df23d087c6e8c0e72abb3de1e9e089
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:09 2010 +0200
Translation update done using Pootle.
commit 4ebeaf0b784d94ac14e9f7151a5eb5255ab4d793
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:39:04 2010 +0200
Translation update done using Pootle.
commit 8201aeb586f5e3ff95c8f8c970969349d48c96ac
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:38:50 2010 +0200
Translation update done using Pootle.
commit 5c7d9b1c441c14a6652d077a0348e3edfca0b86d
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:38:41 2010 +0200
Translation update done using Pootle.
commit ffa02e99214dd4fe1960d005d7be0fd2e6392606
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:38:37 2010 +0200
Translation update done using Pootle.
commit 481b146edca223d03b27024d24c20d348739170f
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:38:13 2010 +0200
Translation update done using Pootle.
commit 57105054ca8d791473a5a4de02e460e005d5f9cf
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:38:09 2010 +0200
Translation update done using Pootle.
commit d040002b45898f2087b71d1146fa2f35a1feef1e
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:38:04 2010 +0200
Translation update done using Pootle.
commit 05bbec3abf8d435e6e3a06509605e08e39e8a6e3
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:57 2010 +0200
Translation update done using Pootle.
commit a7e6e39114bbcf7bde85c7754fd4d66b4be135de
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:45 2010 +0200
Translation update done using Pootle.
commit def33db86f9ef4f1b8074e5518adcb15e506b6be
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:40 2010 +0200
Translation update done using Pootle.
commit bf0560ffc528c0b2c0cdbaef4599ae021a2fb494
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:35 2010 +0200
Translation update done using Pootle.
commit 2a3b6abe9a1ffb0c4f1f5a4fdf057da938430502
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:27 2010 +0200
Translation update done using Pootle.
commit eaaffbd20ce0de2ccf9ba12c1ad4c2e53e08034d
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:20 2010 +0200
Translation update done using Pootle.
commit 786c8eb24d76c03f882e77bd3f0b9b67971381ab
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:37:13 2010 +0200
Translation update done using Pootle.
commit dce86979b936fcf7219a3320346c6aed7d3d783b
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:36:54 2010 +0200
Translation update done using Pootle.
commit ee9f4e90ae306b93c7dab1d962a573d7534254ca
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:36:41 2010 +0200
Translation update done using Pootle.
commit 6a7ccb8fc76f0cb331faf12c13bc2eabc037f2d2
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:36:32 2010 +0200
Translation update done using Pootle.
commit 1cb202b4a09f105d0e57f3121d4b9720f78064f9
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:35:57 2010 +0200
Translation update done using Pootle.
commit c4242afca1da291e6af854a90208fba4c6d0cb1d
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:35:37 2010 +0200
Translation update done using Pootle.
commit 8c622d2316e6af03014ae5a5bd34873163415a12
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:35:30 2010 +0200
Translation update done using Pootle.
commit 7df2b7b7560dbbb45ff14b1a55c0cfb167c035e0
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:35:25 2010 +0200
Translation update done using Pootle.
commit 87f67640c5555075afe76f2840e3e7f78090d1b6
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:35:18 2010 +0200
Translation update done using Pootle.
commit df3bc590496244082d610fb7a5d22d33d27ebd51
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:35:12 2010 +0200
Translation update done using Pootle.
commit cc996a42b78025d142689d49a3a865541f40f3ba
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:34:56 2010 +0200
Translation update done using Pootle.
commit 55822c9270e7b5c3b0fab43bb39a40691870662c
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:34:37 2010 +0200
Translation update done using Pootle.
commit b6c27d3874c01a0c91ee48684c72cabf9bf23c1f
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:34:17 2010 +0200
Translation update done using Pootle.
commit 322ab54196a24a93c3b4de71fedfb4de622715a4
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:34:02 2010 +0200
Translation update done using Pootle.
commit da79f52466aa1b1c2c8eadc01cb43830d3aab435
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:33:38 2010 +0200
Translation update done using Pootle.
commit 8f13e3e4127bf249b09ef6d7b4277e3dcfe7aff9
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:33:27 2010 +0200
Translation update done using Pootle.
commit d52a11f46c4a7ca2f0b44a1805864f64456ac2e9
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Thu May 20 08:32:55 2010 +0200
Translation update done using Pootle.
commit 83506024627f6aab02284ff3fc8f5d059319dc4f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Thu May 20 07:50:34 2010 +0200
Translation update done using Pootle.
commit 3ae074a82bcad92dc2076a5d08402d6eebf3a925
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Thu May 20 07:49:55 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/hi.po | 6 +-
po/it.po | 248 +++++++++-----------------------------------------------------
2 files changed, 39 insertions(+), 215 deletions(-)
diff --git a/po/hi.po b/po/hi.po
index 5d374b8..d75002b 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-05-19 05:36+0200\n"
+"PO-Revision-Date: 2010-05-20 07:50+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
"Language: hi\n"
@@ -1673,11 +1673,11 @@ msgstr "ऑडियो चलायें"
#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228
msgid "View video"
-msgstr ""
+msgstr "वीडियो देखें"
#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265
msgid "Download file"
-msgstr ""
+msgstr "फाइल डाउनलोड करें"
#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124
msgid ""
diff --git a/po/it.po b/po/it.po
index 44f13ec..02f12b0 100644
--- a/po/it.po
+++ b/po/it.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-04-11 11:19+0200\n"
+"PO-Revision-Date: 2010-05-20 08:39+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -302,11 +302,10 @@ msgid "Status"
msgstr "Stato"
#: db_operations.php:544
-#, fuzzy
#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
-msgstr "Abilitata"
+msgstr "Attivato"
#: db_operations.php:548 libraries/messages.inc.php:89
msgid "Disable"
@@ -317,18 +316,16 @@ msgid "Damaged"
msgstr "Danneggiato"
#: db_operations.php:562
-#, fuzzy
#| msgid "Repair"
msgctxt "BLOB repository"
msgid "Repair"
-msgstr "Ripara"
+msgstr "Riparazione"
#: db_operations.php:570
-#, fuzzy
#| msgid "Disabled"
msgctxt "BLOB repository"
msgid "Disabled"
-msgstr "Disabilitata"
+msgstr "Disabilitato"
#: db_operations.php:574 libraries/messages.inc.php:92
msgid "Enable"
@@ -677,11 +674,11 @@ msgstr "La tabella %s è stata eliminata"
#: db_structure.php:333 libraries/messages.inc.php:1124
msgid "Tracking is active."
-msgstr ""
+msgstr "Il tracking è attivo."
#: db_structure.php:335 libraries/messages.inc.php:1125
msgid "Tracking is not active."
-msgstr ""
+msgstr "Il tracking non è attivo."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1224
@@ -779,9 +776,8 @@ msgid "Export"
msgstr "Esporta"
#: db_tracking.php:66 libraries/messages.inc.php:1147
-#, fuzzy
msgid "Tracked tables"
-msgstr "Controlla tabella"
+msgstr "Controlla tabelle"
#: db_tracking.php:71 libraries/export/htmlword.php:86
#: libraries/export/latex.php:148 libraries/export/odt.php:113
@@ -796,18 +792,16 @@ msgid "Database"
msgstr "Database"
#: db_tracking.php:73 libraries/messages.inc.php:1142
-#, fuzzy
msgid "Last version"
-msgstr "Crea relazioni"
+msgstr "Ultima versione"
#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594
-#, fuzzy
msgid "Created"
-msgstr "Crea"
+msgstr "Creato"
#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595
msgid "Updated"
-msgstr ""
+msgstr "Aggiornato"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23
@@ -823,22 +817,21 @@ msgstr "Cancella dati di tracciamento per questa tabella"
#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548
#: tbl_tracking.php:606 tbl_tracking.php:613
msgid "active"
-msgstr ""
+msgstr "attivo"
#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550
#: tbl_tracking.php:608 tbl_tracking.php:610
msgid "not active"
-msgstr ""
+msgstr "non attivo"
#: db_tracking.php:121 libraries/messages.inc.php:1156
-#, fuzzy
msgid "Versions"
-msgstr "Persiano"
+msgstr "Versioni"
#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379
#: tbl_tracking.php:624
msgid "Tracking report"
-msgstr ""
+msgstr "Rapporto tracking"
#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251
#: tbl_tracking.php:624
@@ -853,14 +846,12 @@ msgstr "Controlla tabella"
#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149
#: tbl_structure.php:529 tbl_structure.php:531
-#, fuzzy
msgid "Track table"
msgstr "Controlla tabella"
#: db_tracking.php:200 libraries/messages.inc.php:1117
-#, fuzzy
msgid "Database Log"
-msgstr "Database"
+msgstr "Log database"
#: export.php:62 libraries/messages.inc.php:308
msgid "Selected export type has to be saved in file!"
@@ -1100,14 +1091,12 @@ msgstr "Scegli il campo da mostrare"
#. l10n: Display text for calendar close link
#: js/messages.php:73
-#, fuzzy
#| msgid "Donate"
msgid "Done"
-msgstr "Dona"
+msgstr "Fatto"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:75
-#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Precedente"
@@ -1122,105 +1111,96 @@ msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
#: js/messages.php:79
-#, fuzzy
#| msgid "Total"
msgid "Today"
-msgstr "Totale"
+msgstr "Oggi"
#: js/messages.php:82
-#, fuzzy
#| msgid "Binary"
msgid "January"
-msgstr "Binario"
+msgstr "Gennaio"
#: js/messages.php:83
msgid "February"
-msgstr ""
+msgstr "Febbraio"
#: js/messages.php:84
-#, fuzzy
#| msgid "Mar"
msgid "March"
-msgstr "mar"
+msgstr "Marzo"
#: js/messages.php:85
-#, fuzzy
#| msgid "Apr"
msgid "April"
-msgstr "apr"
+msgstr "Aprile"
#: js/messages.php:86
msgid "May"
-msgstr "mag"
+msgstr "Maggio"
#: js/messages.php:87
-#, fuzzy
#| msgid "Jun"
msgid "June"
-msgstr "giu"
+msgstr "Giugno"
#: js/messages.php:88
-#, fuzzy
#| msgid "Jul"
msgid "July"
-msgstr "lug"
+msgstr "Luglio"
#: js/messages.php:89
-#, fuzzy
#| msgid "Aug"
msgid "August"
-msgstr "ago"
+msgstr "Agosto"
#: js/messages.php:90
msgid "September"
-msgstr ""
+msgstr "Setttembre"
#: js/messages.php:91
-#, fuzzy
#| msgid "Oct"
msgid "October"
-msgstr "ott"
+msgstr "Ottobre"
#: js/messages.php:92
msgid "November"
-msgstr ""
+msgstr "Novembre"
#: js/messages.php:93
msgid "December"
-msgstr ""
+msgstr "Dicembre"
#. l10n: Short month name
#: js/messages.php:97 libraries/common.lib.php:1555
msgid "Jan"
-msgstr "gen"
+msgstr "Gen"
#. l10n: Short month name
#: js/messages.php:99 libraries/common.lib.php:1557
msgid "Feb"
-msgstr "feb"
+msgstr "Feb"
#. l10n: Short month name
#: js/messages.php:101 libraries/common.lib.php:1559
msgid "Mar"
-msgstr "mar"
+msgstr "Mar"
#. l10n: Short month name
#: js/messages.php:103 libraries/common.lib.php:1561
msgid "Apr"
-msgstr "apr"
+msgstr "Apr"
#. l10n: Short month name
#: js/messages.php:105 libraries/common.lib.php:1563
-#, fuzzy
#| msgid "May"
msgctxt "Short month name"
msgid "May"
-msgstr "mag"
+msgstr "Mag"
#. l10n: Short month name
#: js/messages.php:107 libraries/common.lib.php:1565
msgid "Jun"
-msgstr "giu"
+msgstr "Giu"
#. l10n: Short month name
#: js/messages.php:109 libraries/common.lib.php:1567
@@ -8700,159 +8680,3 @@ msgstr "Crea un indice su %s columns"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Descrizione"
-
-#, fuzzy
-#~| msgid ""
-#~| "However on last run no data has been parsed, this usually means "
-#~| "phpMyAdmin won't be able to finish this import unless you increase php "
-#~| "time limits."
-#~ msgid ""
-#~ "However on last run no data has been parsed, this usually means "
-#~ "phpMyAdmin won"
-#~ msgstr ""
-#~ "Nell'ultima esecuzione nessun dato è stato processato, questo, "
-#~ "solitamente, vuole dire che che phpMyAdmin non è in grado di ultimare "
-#~ "l'operazione fino a che non verrà aumentato il parametro php time limits."
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "Nessuno"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Nessuno"
-
-#, fuzzy
-#~| msgid "Grant all privileges on wildcard name (username\\_%)"
-#~ msgid "Grant all privileges on wildcard name (username_%)"
-#~ msgstr ""
-#~ "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)"
-
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
-#~ msgid "The %s table doesn"
-#~ msgstr "La tabella \"%s\" non esiste!"
-
-#, fuzzy
-#~| msgid "Could not load default configuration from: \"%1$s\""
-#~ msgid "Could not load default configuration from: %1"
-#~ msgstr "Non posso leggere la configurazione da: \"%1$s\""
-
-#, fuzzy
-#~| msgid "Invalid hostname for server %1$s. Please review your configuration."
-#~ msgid "Invalid hostname for server %1. Please review your configuration."
-#~ msgstr ""
-#~ "Nome host per il server %1$s non valido. Controlla la tua configurazione."
-
-#, fuzzy
-#~| msgid "Error renaming table %1$s to %2$s"
-#~ msgid "Error renaming table %1 to %2"
-#~ msgstr "Errore nel rinominare la tabella %1$s in %2$s"
-
-#, fuzzy
-#~| msgid ""
-#~| "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~| "extension. Please check your PHP configuration."
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
-#~ "Please check your PHP configuration."
-#~ msgstr ""
-#~ "Impossibile caricare l'estensione %s,<br />prego controllare la "
-#~ "configurazione di PHP"
-
-#, fuzzy
-#~ msgid "(or the local MySQL server"
-#~ msgstr "Impossibile eseguire il login nel server MySQL"
-
-#, fuzzy
-#~| msgid ""
-#~| "There is a chance that you may have found a bug in the SQL parser. "
-#~| "Please examine your query closely, and check that the quotes are correct "
-#~| "and not mis-matched. Other possible failure causes may be that you are "
-#~| "uploading a file with binary outside of a quoted text area. You can also "
-#~| "try your query on the MySQL command line interface. The MySQL server "
-#~| "error output below, if there is any, may also help you in diagnosing the "
-#~| "problem. If you still have problems or if the parser fails where the "
-#~| "command line interface succeeds, please reduce your SQL query input to "
-#~| "the single query that causes problems, and submit a bug report with the "
-#~| "data chunk in the CUT section below:"
-#~ msgid ""
-#~ "There is a chance that you may have found a bug in the SQL parser. Please "
-#~ "examine your query closely, and check that the quotes are correct and not "
-#~ "mis-matched. Other possible failure causes may be that you are uploading "
-#~ "a file with binary outside of a quoted text area. You can also try your "
-#~ "query on the MySQL command line interface. The MySQL server error output "
-#~ "be . "
-#~ msgstr ""
-#~ "C'è la possibilità che ci sia un bug nel parser SQL. Per favore, "
-#~ "esaminate la query accuratamente, e controllate che le virgolette siano "
-#~ "corrette e non sbagliate. Altre possibili cause d'errori possono essere "
-#~ "che si stia cercando di uploadare un file binario al di fuori di un'area "
-#~ "di testo virgolettata. Si può anche provare la query MySQL dalla riga di "
-#~ "comando di MySQL. L'errore qui sotto restituito dal server MySQL, se ce "
-#~ "n'è uno, può anche aiutare nella diagnostica del problema. Se ci sono "
-#~ "ancora problemi, o se il parser SQL di phpMyAdmin sbaglia quando invece "
-#~ "l'interfaccia a riga di comando non mostra problemi, si può ridurre la "
-#~ "query SQL in ingresso alla singola query che causa problemi, e inviare un "
-#~ "bug report con i dati riportati nella sezione CUT qui sotto:"
-
-#~ msgctxt "$strStrucCSV"
-#~ msgid "CSV"
-#~ msgstr "dati CSV"
-
-#~ msgid "Copy"
-#~ msgstr "Copia"
-
-#~ msgid "Delete the users and reload the privileges afterwards."
-#~ msgstr "Cancella gli utenti e dopo ricarica i privilegi."
-
-#~ msgid ""
-#~ "This is the cleanest way, but reloading the privileges may take a while."
-#~ msgstr ""
-#~ "Questa è la vita più giusta, ma il caricamento dei privilegi può durare "
-#~ "qualche secondo."
-
-#~ msgid "has been altered."
-#~ msgstr "è stato modificato."
-
-#~ msgid "Microsoft Excel 2000"
-#~ msgstr "Microsoft Excel 2000"
-
-#~ msgid "Internet Explorer does not support this function."
-#~ msgstr "Internet explorer non supporta questa funzione."
-
-#~ msgid ""
-#~ "The "deleted" users will still be able to access the server as "
-#~ "usual until the privileges are reloaded."
-#~ msgstr ""
-#~ "Gli utenti \"cancellati\" saranno ancora in grado di accedere al server "
-#~ "come al solito, finché i privilegi non verranno ricaricati."
-
-#~ msgid "Just delete the users from the privilege tables."
-#~ msgstr "Cancella soltanto gli utenti dalle tabelle dei privilegi."
-
-#~ msgid ""
-#~ "Allows running stored procedures; has no effect in this MySQL version."
-#~ msgstr ""
-#~ "Permette di eseguire procedure memorizzate; Non ha effetto in questa "
-#~ "versione di MySQL."
-
-#~ msgid "Process list"
-#~ msgstr "Lista Processi"
-
-#~ msgid "Reload privileges"
-#~ msgstr "Ricarica i privilegi"
-
-#~ msgid ""
-#~ "The users will still have the USAGE privilege until the privileges are "
-#~ "reloaded."
-#~ msgstr ""
-#~ "Gli utenti UTILIZZERANNO comunque il privilegio finché i privilegi non "
-#~ "saranno ricaricati."
-
-#~ msgid "Native MS Excel format"
-#~ msgstr "Dati nativi di MS Excel"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3599-g162d51a
by Michal Čihař 19 May '10
by Michal Čihař 19 May '10
19 May '10
The branch, master has been updated
via 162d51a2b3fe9ee626d777c59eafdc4d02ff0ff2 (commit)
via 6e7e48eb5c138e591ef451753942fbe37d431011 (commit)
via 9b0d96ae8731bac662c602679bb79214317a3279 (commit)
via 70f5a9d17f6df0ffbbda997f37c02c23db5aee4c (commit)
via 07c7a61b7b5c3a216e633e8cba4b4036441639e6 (commit)
via 899b2216e62f680a4b60061e51f8b551c947a989 (commit)
via b6a4699a6c44b7b00141cec9c7437a34e7d6f551 (commit)
via edf345ef133c78889a328ef4be64e29cf042d1f3 (commit)
via c61ee0d79aa86b03c75053de52c3d07f0f2464c0 (commit)
via 765e33508823f4eec659905f43c7155461064eaf (commit)
via a1424d3cbd40707d3a6a33e2111e9d236853e83f (commit)
via d1e2c6180b9ce66346c2dd07d21850fa1bb50d6a (commit)
via a93b8861b79419bdc52b0b7fad06de1a42f153f7 (commit)
via 3ffca2af724a9dbd10e3e00ab5f835fc8734a278 (commit)
via f93145cc36f49f79d986f2c7d39f76013521dfee (commit)
via a9d194d9d3869612386c638c33e3e50d8ad80695 (commit)
via fcec78b697e6052d4210ddf86cd65f8b5287eb79 (commit)
via 0d448e3e5a7be97bfe720b916a7d4e73f1eef872 (commit)
via 3f6239adb3f99f6dfdfe0a69270bb29ea10c8aeb (commit)
via f66c3ea9949955b1e8b61ef3c036d1b9a556eedf (commit)
via 93e94876e82f0cc93d7a73741906b7ed16f2b84f (commit)
via 894dc773d71f2ea60e7f26fb6c6c85b21a86f928 (commit)
via b3e1a043b5d72de0b8666c84008b2feef5d9251e (commit)
via bf105e407403861f2e9d1f4ce4ad5227760fd2a8 (commit)
via ad36b5c5dbed2b5690123d4da9796ca08eae246f (commit)
via a08a26d4f13623cfcbed70ff83161bdd446e9ca1 (commit)
via 36f6fa7275e6384657921da2610ca01280291221 (commit)
via bd8da642bc72a23a68ebd932247d89a3b759ef61 (commit)
via dafd265e873b9bb5fa0f69a053fa077708e0fad0 (commit)
via 580eb31de1957a30bfcf681fed904a677f1eac00 (commit)
via 2bf3a848d94f66046bbc9e76b54c90a4090a274f (commit)
via e3376761a92c78957a8c6926f379f5a3995d4b7b (commit)
via 7fc8d2a7a845d3266b7de9118281712be4a006cc (commit)
via 291c5303180e8864be93f46a2caa2c5684a1e537 (commit)
via eacd32b5355a8086acc3397daac97c828eddc01c (commit)
via 8ab447a2518f36392fd820fc68441197ec90f49f (commit)
via 10251d8c05aed46327ff1e53a7d751f347c49e2c (commit)
via 4a6a5856da4a2f5f24691d5fb921847dbf3c61b8 (commit)
via d44e60fed95d968fccea09c3bb8257025311e295 (commit)
via 0eb7c4bb435e0b77775b5f4e5bc8ee592c0f1d53 (commit)
via 34bb15727eed232dd909d28f7733d15386878c13 (commit)
via 0a55aacb5610d9fc20d71523b20b44352a7c3946 (commit)
via 21b6c004b85ccc475aa6da5be0d22e74370e906a (commit)
via 4cec7617067808642779b757a94999090260b4e5 (commit)
via f1ca391ebd5ac6db61e6e65edbf557619ae00312 (commit)
via 51e22a60f186162ad0b5eea9aa49f387fe097f05 (commit)
via 60cfbd4e2ca8fc3eb171e1589ec978e6025ed263 (commit)
via df5d3fafe500e608a36f77a917a5307573c8693a (commit)
via 2b0f1de2d0952f9e9506dadfbb34af6de28ff02b (commit)
via 7d4b7ed49d26e0ca3f25af6eea5a6086b9bd35e4 (commit)
via b1b0ee8ac42923e1806655ca930243dc565a8d4c (commit)
via 673aec6574e10787b6fdc2b39d11bfe374e7e948 (commit)
via 7fa99923e443bcba385b38ff3f16a1006392db3d (commit)
from 185607ed6106e479f9716d987ef9c1d4211322ab (commit)
- Log -----------------------------------------------------------------
commit 162d51a2b3fe9ee626d777c59eafdc4d02ff0ff2
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:02:46 2010 +0200
Translation update done using Pootle.
commit 6e7e48eb5c138e591ef451753942fbe37d431011
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:02:35 2010 +0200
Translation update done using Pootle.
commit 9b0d96ae8731bac662c602679bb79214317a3279
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:02:16 2010 +0200
Translation update done using Pootle.
commit 70f5a9d17f6df0ffbbda997f37c02c23db5aee4c
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:01:43 2010 +0200
Translation update done using Pootle.
commit 07c7a61b7b5c3a216e633e8cba4b4036441639e6
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:01:29 2010 +0200
Translation update done using Pootle.
commit 899b2216e62f680a4b60061e51f8b551c947a989
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:01:11 2010 +0200
Translation update done using Pootle.
commit b6a4699a6c44b7b00141cec9c7437a34e7d6f551
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:00:56 2010 +0200
Translation update done using Pootle.
commit edf345ef133c78889a328ef4be64e29cf042d1f3
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:00:35 2010 +0200
Translation update done using Pootle.
commit c61ee0d79aa86b03c75053de52c3d07f0f2464c0
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 13:00:12 2010 +0200
Translation update done using Pootle.
commit 765e33508823f4eec659905f43c7155461064eaf
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:59:46 2010 +0200
Translation update done using Pootle.
commit a1424d3cbd40707d3a6a33e2111e9d236853e83f
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:58:30 2010 +0200
Translation update done using Pootle.
commit d1e2c6180b9ce66346c2dd07d21850fa1bb50d6a
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:58:00 2010 +0200
Translation update done using Pootle.
commit a93b8861b79419bdc52b0b7fad06de1a42f153f7
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:57:23 2010 +0200
Translation update done using Pootle.
commit 3ffca2af724a9dbd10e3e00ab5f835fc8734a278
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:56:59 2010 +0200
Translation update done using Pootle.
commit f93145cc36f49f79d986f2c7d39f76013521dfee
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:56:37 2010 +0200
Translation update done using Pootle.
commit a9d194d9d3869612386c638c33e3e50d8ad80695
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:56:21 2010 +0200
Translation update done using Pootle.
commit fcec78b697e6052d4210ddf86cd65f8b5287eb79
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:55:46 2010 +0200
Translation update done using Pootle.
commit 0d448e3e5a7be97bfe720b916a7d4e73f1eef872
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:55:24 2010 +0200
Translation update done using Pootle.
commit 3f6239adb3f99f6dfdfe0a69270bb29ea10c8aeb
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:55:04 2010 +0200
Translation update done using Pootle.
commit f66c3ea9949955b1e8b61ef3c036d1b9a556eedf
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:54:00 2010 +0200
Translation update done using Pootle.
commit 93e94876e82f0cc93d7a73741906b7ed16f2b84f
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:53:49 2010 +0200
Translation update done using Pootle.
commit 894dc773d71f2ea60e7f26fb6c6c85b21a86f928
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:53:41 2010 +0200
Translation update done using Pootle.
commit b3e1a043b5d72de0b8666c84008b2feef5d9251e
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:53:31 2010 +0200
Translation update done using Pootle.
commit bf105e407403861f2e9d1f4ce4ad5227760fd2a8
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:53:10 2010 +0200
Translation update done using Pootle.
commit ad36b5c5dbed2b5690123d4da9796ca08eae246f
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:52:22 2010 +0200
Translation update done using Pootle.
commit a08a26d4f13623cfcbed70ff83161bdd446e9ca1
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:52:12 2010 +0200
Translation update done using Pootle.
commit 36f6fa7275e6384657921da2610ca01280291221
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:51:58 2010 +0200
Translation update done using Pootle.
commit bd8da642bc72a23a68ebd932247d89a3b759ef61
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:51:43 2010 +0200
Translation update done using Pootle.
commit dafd265e873b9bb5fa0f69a053fa077708e0fad0
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:51:30 2010 +0200
Translation update done using Pootle.
commit 580eb31de1957a30bfcf681fed904a677f1eac00
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:51:13 2010 +0200
Translation update done using Pootle.
commit 2bf3a848d94f66046bbc9e76b54c90a4090a274f
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:50:44 2010 +0200
Translation update done using Pootle.
commit e3376761a92c78957a8c6926f379f5a3995d4b7b
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:50:23 2010 +0200
Translation update done using Pootle.
commit 7fc8d2a7a845d3266b7de9118281712be4a006cc
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:50:05 2010 +0200
Translation update done using Pootle.
commit 291c5303180e8864be93f46a2caa2c5684a1e537
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:49:21 2010 +0200
Translation update done using Pootle.
commit eacd32b5355a8086acc3397daac97c828eddc01c
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:49:13 2010 +0200
Translation update done using Pootle.
commit 8ab447a2518f36392fd820fc68441197ec90f49f
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:49:00 2010 +0200
Translation update done using Pootle.
commit 10251d8c05aed46327ff1e53a7d751f347c49e2c
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:48:52 2010 +0200
Translation update done using Pootle.
commit 4a6a5856da4a2f5f24691d5fb921847dbf3c61b8
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:48:34 2010 +0200
Translation update done using Pootle.
commit d44e60fed95d968fccea09c3bb8257025311e295
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:48:16 2010 +0200
Translation update done using Pootle.
commit 0eb7c4bb435e0b77775b5f4e5bc8ee592c0f1d53
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:47:52 2010 +0200
Translation update done using Pootle.
commit 34bb15727eed232dd909d28f7733d15386878c13
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:46:53 2010 +0200
Translation update done using Pootle.
commit 0a55aacb5610d9fc20d71523b20b44352a7c3946
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:44:50 2010 +0200
Translation update done using Pootle.
commit 21b6c004b85ccc475aa6da5be0d22e74370e906a
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:44:36 2010 +0200
Translation update done using Pootle.
commit 4cec7617067808642779b757a94999090260b4e5
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:44:18 2010 +0200
Translation update done using Pootle.
commit f1ca391ebd5ac6db61e6e65edbf557619ae00312
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:44:13 2010 +0200
Translation update done using Pootle.
commit 51e22a60f186162ad0b5eea9aa49f387fe097f05
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:43:55 2010 +0200
Translation update done using Pootle.
commit 60cfbd4e2ca8fc3eb171e1589ec978e6025ed263
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:43:31 2010 +0200
Translation update done using Pootle.
commit df5d3fafe500e608a36f77a917a5307573c8693a
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:42:57 2010 +0200
Translation update done using Pootle.
commit 2b0f1de2d0952f9e9506dadfbb34af6de28ff02b
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:42:36 2010 +0200
Translation update done using Pootle.
commit 7d4b7ed49d26e0ca3f25af6eea5a6086b9bd35e4
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:41:41 2010 +0200
Translation update done using Pootle.
commit b1b0ee8ac42923e1806655ca930243dc565a8d4c
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:41:22 2010 +0200
Translation update done using Pootle.
commit 673aec6574e10787b6fdc2b39d11bfe374e7e948
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:41:11 2010 +0200
Translation update done using Pootle.
commit 7fa99923e443bcba385b38ff3f16a1006392db3d
Author: Laurent Dhima <laurenti(a)alblinux.net>
Date: Wed May 19 12:40:20 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/sq.po | 291 ++++++++++++++------------------------------------------------
1 files changed, 63 insertions(+), 228 deletions(-)
diff --git a/po/sq.po b/po/sq.po
index f41b2b4..9dbdaa2 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-03-30 23:08+0200\n"
-"Last-Translator: Michal <michal(a)cihar.com>\n"
+"PO-Revision-Date: 2010-05-19 13:02+0200\n"
+"Last-Translator: Laurent <laurenti(a)alblinux.net>\n"
"Language-Team: albanian <sq(a)li.org>\n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -33,9 +33,9 @@ msgid ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-"Dritarja e destinimit të browser nuk mund të rifreskohet. Ka mundësi të keni "
-"mbyllur dritaren nënë apo që browser-i juaj është duke bllokuar rifreskimet "
-"ndërmjet browser-ve për shkak të ndonjë mase sigurie"
+"Dritarja e destinuar e shfletuesit nuk mund të rifreskohet. Ka mundësi të "
+"keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të "
+"ndalojnë përditësimet nëpërmjet dritareve."
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
@@ -92,19 +92,19 @@ msgid "Use this value"
msgstr "Përdor këtë vlerë"
#: db_create.php:46 libraries/messages.inc.php:211
-#, fuzzy, php-format
+#, php-format
msgid "Database %1$s has been created."
-msgstr "Databaza %s u eleminua."
+msgstr "U krijua baza e të dhënave %1$s."
#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228
msgid "Database comment: "
-msgstr "Komenti për Databazën: "
+msgstr "Komenti për databazën: "
#: db_datadict.php:165 libraries/messages.inc.php:1066
#: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236
#: tbl_operations.php:345 tbl_printview.php:130
msgid "Table comments"
-msgstr "Komente mbi tabelën"
+msgstr "Komentet e tabelës"
#: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446
#: libraries/export/htmlword.php:244 libraries/export/latex.php:360
@@ -217,11 +217,11 @@ msgstr "Zgjidh gjithçka"
#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184
#: server_export.php:29
msgid "Unselect All"
-msgstr "Ç'zgjidh gjithçka"
+msgstr "Asnjë zgjedhje"
#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54
msgid "The database name is empty!"
-msgstr "Emri i databazës mungon!"
+msgstr "Mungon emri i databazës!"
#: db_operations.php:236 libraries/messages.inc.php:749
#, php-format
@@ -229,9 +229,9 @@ msgid "Database %s has been renamed to %s"
msgstr "Databazës %s i është ndryshuar emri në %s"
#: db_operations.php:240 libraries/messages.inc.php:174
-#, fuzzy, php-format
+#, php-format
msgid "Database %s has been copied to %s"
-msgstr "Databazës %s i është ndryshuar emri në %s"
+msgstr "Databaza %s është kopjuar tek %s"
#: db_operations.php:410 libraries/messages.inc.php:232
msgid "Rename database to"
@@ -247,9 +247,8 @@ msgid "and then"
msgstr ""
#: db_operations.php:451 libraries/messages.inc.php:229
-#, fuzzy
msgid "Copy database to"
-msgstr "Ndysho emrin e databazës në"
+msgstr "Kopjo databazën në"
#: db_operations.php:458 libraries/messages.inc.php:1039
#: tbl_operations.php:526 tbl_tracking.php:388
@@ -259,16 +258,16 @@ msgstr "Vetëm struktura"
#: db_operations.php:459 libraries/messages.inc.php:1037
#: tbl_operations.php:527 tbl_tracking.php:390
msgid "Structure and data"
-msgstr "Struktura dhe të dhëna"
+msgstr "Struktura dhe të dhënat"
#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528
#: tbl_tracking.php:389
msgid "Data only"
-msgstr "Vetëm të dhëna"
+msgstr "Vetëm të dhënat"
#: db_operations.php:468 libraries/messages.inc.php:182
msgid "CREATE DATABASE before copying"
-msgstr ""
+msgstr "CREATE DATABASE para se të kopjohet"
#: db_operations.php:471 libraries/export/sql.php:53
#: libraries/export/sql.php:75 libraries/export/sql.php:77
@@ -276,7 +275,7 @@ msgstr ""
#: tbl_operations.php:534
#, php-format
msgid "Add %s"
-msgstr ""
+msgstr "Shto %s"
#: db_operations.php:475 libraries/export/sql.php:79
#: libraries/messages.inc.php:25 tbl_operations.php:297 tbl_operations.php:536
@@ -288,13 +287,12 @@ msgid "Add constraints"
msgstr "Shto kushte"
#: db_operations.php:492 libraries/messages.inc.php:1055
-#, fuzzy
msgid "Switch to copied database"
-msgstr "Kalo tek tabela e kopjuar"
+msgstr "Kalo tek databaza e kopjuar"
#: db_operations.php:533 libraries/messages.inc.php:85
msgid "BLOB Repository"
-msgstr ""
+msgstr "Repository BLOB"
#: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350
#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49
@@ -303,38 +301,33 @@ msgid "Status"
msgstr "Gjendja"
#: db_operations.php:544
-#, fuzzy
#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
-msgstr "Aktiv"
+msgstr "Aktivizuar"
#: db_operations.php:548 libraries/messages.inc.php:89
-#, fuzzy
msgid "Disable"
-msgstr "Jo aktiv"
+msgstr "Çaktivizo"
#: db_operations.php:558 libraries/messages.inc.php:86
msgid "Damaged"
-msgstr ""
+msgstr "Me dëme"
#: db_operations.php:562
-#, fuzzy
msgctxt "BLOB repository"
msgid "Repair"
-msgstr "Riparo tabelën"
+msgstr "Riparo"
#: db_operations.php:570
-#, fuzzy
#| msgid "Disabled"
msgctxt "BLOB repository"
msgid "Disabled"
-msgstr "Jo aktiv"
+msgstr "Çaktivizuar"
#: db_operations.php:574 libraries/messages.inc.php:92
-#, fuzzy
msgid "Enable"
-msgstr "Aktiv"
+msgstr "Aktivizo"
#: db_operations.php:598 libraries/Index.class.php:448
#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154
@@ -353,12 +346,12 @@ msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
msgstr ""
-"Karakteristikat shtesë janë ç'aktivuar për sa i takon funksionimit me "
-"tabelat e lidhura. Për të zbuluar përse, klikoni %skëtu%s."
+"Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me "
+"tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s."
#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528
msgid "Display PDF schema"
-msgstr "Shfaq skemën e PDF"
+msgstr "Shfaq skemën PDF"
#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529
msgid "Show grid"
@@ -370,20 +363,21 @@ msgstr "Shfaq ngjyrën"
#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531
msgid "Show dimension of tables"
-msgstr "Trego madhësinë e tabelave"
+msgstr "Shfaq madhësinë e tabelave"
#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532
msgid "Display all tables with the same width"
-msgstr "vizualizon të gjitha tabelat me të njëjtën gjërësi?"
+msgstr "Shfaq të gjitha tabelat me të njëjtën gjerësi"
#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223
#: pdf_pages.php:533
+#, fuzzy
msgid "Data Dictionary"
msgstr "Data Dictionary"
#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534
msgid "Only show keys"
-msgstr ""
+msgstr "Shfaq vetëm kyçet"
#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535
msgid "Data Dictionary Format"
@@ -395,15 +389,15 @@ msgstr "Horizontale"
#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538
msgid "Portrait"
-msgstr "Vertikal"
+msgstr "Vertikale"
#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541
msgid "Paper size"
-msgstr "Përmasat e letrës"
+msgstr "Përmasat e fletës"
#: db_operations.php:706 libraries/messages.inc.php:277
msgid "Edit PDF Pages"
-msgstr "Ndrysho faqen PDF"
+msgstr "Ndrysho faqet PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
@@ -457,30 +451,30 @@ msgstr "%s tabela(at)"
#: libraries/sql_query_form.lib.php:140 tbl_operations.php:213
#: tbl_relation.php:292 tbl_row_action.php:131 view_operations.php:62
msgid "Your SQL query has been executed successfully"
-msgstr "Query u zbatua me sukses"
+msgstr "Query SQL u zbatua me sukses"
#: db_qbe.php:42 libraries/messages.inc.php:367
msgid "You have to choose at least one column to display"
-msgstr "Zgjidh të paktën një kolonë për të parë"
+msgstr "Zgjidh të paktën një kollonë për të shfaqur"
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010
msgid "Sort"
-msgstr "rreshtimi"
+msgstr "Renditja"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:65 server_databases.php:170
#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
-msgstr "Ngjitje"
+msgstr "Në ngjitje"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:247 server_databases.php:170
#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
-msgstr "Zbritës"
+msgstr "Në zbritje"
#: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308
#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597
@@ -519,15 +513,15 @@ msgstr "Ndrysho"
#: db_qbe.php:584 libraries/messages.inc.php:29
msgid "Add/Delete Criteria Row"
-msgstr "Shto/Fshi kriterin"
+msgstr "Shto/Fshi rreshtin e kriterit"
#: db_qbe.php:596 libraries/messages.inc.php:28
msgid "Add/Delete Field Columns"
-msgstr "Shto/Fshi fushën"
+msgstr "Shto/Fshi kollonat e fushës"
#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188
msgid "Update Query"
-msgstr "Rifresko Query"
+msgstr "Përditëso kërkesën"
#: db_qbe.php:617 libraries/messages.inc.php:1212
msgid "Use Tables"
@@ -536,7 +530,7 @@ msgstr "Përdor tabelat"
#: db_qbe.php:640 libraries/messages.inc.php:719
#, php-format
msgid "SQL query on database <b>%s</b>:"
-msgstr "SQL-query tek databaza <b>%s</b>:"
+msgstr "Kërkesë SQL tek databaza <b>%s</b>:"
#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819
msgid "Submit Query"
@@ -547,11 +541,11 @@ msgstr "Dërgo Query"
#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22
msgid "Access denied"
-msgstr "Hyrja nuk u pranua"
+msgstr "Ndalohet hyrja"
#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832
msgid "at least one of the words"
-msgstr "të paktën njërën nga fjalët"
+msgstr "të paktën një prej fjalëve"
#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833
msgid "all words"
@@ -559,7 +553,7 @@ msgstr "të gjitha fjalët"
#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834
msgid "the exact phrase"
-msgstr "fraza precize"
+msgstr "frazën e saktë"
#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835
msgid "as regular expression"
@@ -568,7 +562,7 @@ msgstr "si shprehje e rregullt"
#: db_search.php:242 libraries/messages.inc.php:836
#, php-format
msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Kërko rezultatet për \"<i>%s</i>\" %s:"
+msgstr "Rezultatet e kërkimit për \"<i>%s</i>\" %s:"
#: db_search.php:260 libraries/messages.inc.php:575
#, php-format
@@ -581,7 +575,7 @@ msgstr "%s korrispondon(jnë) tek tabela <i>%s</i>"
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
-msgstr "Shfaq"
+msgstr "Shfleto"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239
@@ -611,7 +605,7 @@ msgstr "Gjej:"
#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013
msgid "Words are separated by a space character (\" \")."
-msgstr "Fjalët janë të ndara me një hapsirë (\" \")."
+msgstr "Fjalët veçohen me anë të një hapësirë bosh (\" \")."
#: db_search.php:325 libraries/messages.inc.php:830
msgid "Inside table(s):"
@@ -619,7 +613,7 @@ msgstr "Tek tabela(at):"
#: db_search.php:355 libraries/messages.inc.php:829
msgid "Inside field:"
-msgstr ""
+msgstr "Tek fusha:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
@@ -667,9 +661,9 @@ msgstr "Tabela %s u zbraz"
#: db_structure.php:326 libraries/messages.inc.php:1225
#: libraries/tbl_links.inc.php:133
-#, fuzzy, php-format
+#, php-format
msgid "View %s has been dropped"
-msgstr "Fusha %s u eleminua"
+msgstr "Paraqitja %s u eleminua"
#: db_structure.php:326 libraries/messages.inc.php:1070
#: libraries/tbl_links.inc.php:133
@@ -679,11 +673,11 @@ msgstr "Tabela %s u eleminua"
#: db_structure.php:333 libraries/messages.inc.php:1124
msgid "Tracking is active."
-msgstr ""
+msgstr "Gjurmimi është aktiv."
#: db_structure.php:335 libraries/messages.inc.php:1125
msgid "Tracking is not active."
-msgstr ""
+msgstr "Gjurmimi nuk është aktiv."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1224
@@ -697,18 +691,18 @@ msgstr ""
#: libraries/messages.inc.php:1229 libraries/tbl_info.inc.php:66
#: tbl_structure.php:185 test/theme.php:74
msgid "View"
-msgstr ""
+msgstr "Paraqitje"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70
#: server_replication.php:33 server_replication.php:164 server_status.php:258
-#, fuzzy
msgid "Replication"
-msgstr "Relacione"
+msgstr "Replikimi"
#: db_structure.php:489 libraries/messages.inc.php:1049
+#, fuzzy
msgid "Sum"
-msgstr "Gjithsej"
+msgstr "Sum"
#: db_structure.php:496 libraries/StorageEngine.class.php:356
#: libraries/messages.inc.php:235
@@ -728,14 +722,14 @@ msgstr "N.q.s. të zgjedhur:"
#: libraries/messages.inc.php:144 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
-msgstr "Zgjidhi të gjithë"
+msgstr "Zgjidh gjithçka"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
msgid "Uncheck All"
-msgstr "Ç'zgjidhi të gjithë"
+msgstr "Asnjë zgjedhje"
#: db_structure.php:536 libraries/messages.inc.php:146
msgid "Check tables having overhead"
@@ -8413,162 +8407,3 @@ msgstr "Krijo një tregues tek %s columns"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Përshkrimi"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "Asnjë lloj"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Asnjë lloj"
-
-#, fuzzy
-#~ msgid "Grant all privileges on wildcard name (username_%)"
-#~ msgstr "Kontrollo të drejtat për databazën "%s"."
-
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
-#~ msgid "The %s table doesn"
-#~ msgstr "Tabela \"%s\" nuk ekziston!"
-
-#, fuzzy
-#~| msgid ""
-#~| "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~| "extension. Please check your PHP configuration."
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
-#~ "Please check your PHP configuration."
-#~ msgstr ""
-#~ "I pamundur ngarkimi i prapashtesës %s,<br />kontrollo konfigurimin e PHP"
-
-#, fuzzy
-#~ msgid "(or the local MySQL server"
-#~ msgstr "E pamundur kryerja e login tek server-i MySQL"
-
-#, fuzzy
-#~| msgid ""
-#~| "There is a chance that you may have found a bug in the SQL parser. "
-#~| "Please examine your query closely, and check that the quotes are correct "
-#~| "and not mis-matched. Other possible failure causes may be that you are "
-#~| "uploading a file with binary outside of a quoted text area. You can also "
-#~| "try your query on the MySQL command line interface. The MySQL server "
-#~| "error output below, if there is any, may also help you in diagnosing the "
-#~| "problem. If you still have problems or if the parser fails where the "
-#~| "command line interface succeeds, please reduce your SQL query input to "
-#~| "the single query that causes problems, and submit a bug report with the "
-#~| "data chunk in the CUT section below:"
-#~ msgid ""
-#~ "There is a chance that you may have found a bug in the SQL parser. Please "
-#~ "examine your query closely, and check that the quotes are correct and not "
-#~ "mis-matched. Other possible failure causes may be that you are uploading "
-#~ "a file with binary outside of a quoted text area. You can also try your "
-#~ "query on the MySQL command line interface. The MySQL server error output "
-#~ "be . "
-#~ msgstr ""
-#~ "Ka mundësi që ka një bug tek parser-i SQL. Ju lutem, kontrolloni query "
-#~ "tuaj me kujdes, dhe kontrolloni që presjet të jenë ku duhet dhe jo të "
-#~ "gabuara. Një shkak tjetër i mundshëm i gabimit mund të jetë që po "
-#~ "mundoheni të uploadoni një file binar jashtë një zone teksti të kufizuar "
-#~ "me presje. Mund edhe të provoni query tuaj MySQL nga interfaqja e shkruar "
-#~ "e komandave. Gabimi i mëposhtëm i kthyer nga server-i MySQL, nëse "
-#~ "ekziston një i tillë, mund tju ndihmojë në diagnostikimin e problemit. "
-#~ "Nëse ka akoma probleme, apo n.q.s. parser-i SQL i phpMyAdmin gabon kur "
-#~ "përkundrazi nga interfaqja e komandave të thjeshta nuk rezultojnë "
-#~ "probleme, ju lutem zvogëloni query tuaj SQL në hyrje në query e vetme që "
-#~ "shkakton probleme, dhe dërgoni një bug raportim me të dhënat rezultuese "
-#~ "nga seksioni CUT i mëposhtëm:"
-
-#~ msgctxt "$strStrucCSV"
-#~ msgid "CSV"
-#~ msgstr "të dhëna CSV"
-
-#~ msgid "Delete the users and reload the privileges afterwards."
-#~ msgstr "Fshi përdoruesit dhe pastaj rifresko të drejtat."
-
-#~ msgid ""
-#~ "This is the cleanest way, but reloading the privileges may take a while."
-#~ msgstr ""
-#~ "Kjo është rruga më e pastër, por ngarkimi i të drejtave mund të zgjasë "
-#~ "disa çaste më shumë."
-
-#~ msgid "has been altered."
-#~ msgstr "u ndryshua."
-
-#~ msgid ""
-#~ "The "deleted" users will still be able to access the server as "
-#~ "usual until the privileges are reloaded."
-#~ msgstr ""
-#~ "Përdoruesit e "fshirë" do të kenë akoma mundësi të futen në "
-#~ "server si zakonisht derisa të drejtat të ringarkohen përsëri."
-
-#~ msgid "Just delete the users from the privilege tables."
-#~ msgstr "Vetëm fshi përdoruesit nga tabelat e të drejtave."
-
-#~ msgid ""
-#~ "Allows running stored procedures; has no effect in this MySQL version."
-#~ msgstr ""
-#~ "Lejon ekzekutimin e procedurave të regjistruara; Nuk ka efekt në këtë "
-#~ "version të MySQL."
-
-#~ msgid "Process list"
-#~ msgstr "Lista e Proçeseve"
-
-#, fuzzy
-#~ msgid "Reload privileges"
-#~ msgstr "Të drejtat e përgjithshme"
-
-#~ msgid ""
-#~ "The users will still have the USAGE privilege until the privileges are "
-#~ "reloaded."
-#~ msgstr ""
-#~ "Përdoruesit DO TË MUND TË PËRDORIN sidoqoftë të drejtën deri atëhere kur "
-#~ "të drejtat të ringarkohen."
-
-#~ msgid "Native MS Excel format"
-#~ msgstr "Të dhëna orgjinale MS Excel"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "Zgjidh gjithçka"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "Zgjidh gjithçka"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "Shto"
-
-#, fuzzy
-#~| msgid "Update Query"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "Rifresko Query"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "Fshi"
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "Jan0"
-
-#~ msgid "Jan1"
-#~ msgstr "Jan1"
-
-#~ msgid "Jan2"
-#~ msgstr "Jan2"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3546-g185607e
by Michal Čihař 19 May '10
by Michal Čihař 19 May '10
19 May '10
The branch, master has been updated
via 185607ed6106e479f9716d987ef9c1d4211322ab (commit)
via 2b926989fc2a8c66875d396b77d57f097b132381 (commit)
via 1777f72ac85d34264d63effe5bb902fa3850a8ac (commit)
via e848397817eff9eac057a7988bc73be7bab12603 (commit)
via 218690c2bb74c93e83773706703ac954fad2051b (commit)
via 897e9269ba9e0352d1b7f73c2ed422e43ef03a0c (commit)
via 4a8b394f479de0885025080b114cef0a85397c74 (commit)
via 638d292bfe11633596388152de7671220a73feb1 (commit)
via 0702a7fc28aa001eec94a70aa048207297dde80d (commit)
via b1f39446c5aafa2d1632890777677c6fa460a474 (commit)
via d17b7cd4f4da6e7954c7e7329340b80a7f741f87 (commit)
via 9217f6a995b9ac7d42a9ae01d25ab94018d7eb36 (commit)
via 688d4fd5240f24875659cbe0f2f8d460a420cf24 (commit)
via 0ea7aad6d40c9484af642bed8a60a9388098af20 (commit)
via 699013afb030974e3e2b033b06eedcfbdb69c4c6 (commit)
from 40ee06f0b68419e9504a959b1a8d497aad3a1411 (commit)
- Log -----------------------------------------------------------------
commit 185607ed6106e479f9716d987ef9c1d4211322ab
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed May 19 10:58:19 2010 +0200
Reinclude format string.
commit 2b926989fc2a8c66875d396b77d57f097b132381
Merge: 1777f72ac85d34264d63effe5bb902fa3850a8ac e848397817eff9eac057a7988bc73be7bab12603
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed May 19 10:56:52 2010 +0200
Merge remote branch 'pootle/master'
commit 1777f72ac85d34264d63effe5bb902fa3850a8ac
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed May 19 10:56:18 2010 +0200
Update Greek based on update from QA_3_3.
commit e848397817eff9eac057a7988bc73be7bab12603
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Wed May 19 05:36:30 2010 +0200
Translation update done using Pootle.
commit 218690c2bb74c93e83773706703ac954fad2051b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Wed May 19 05:35:57 2010 +0200
Translation update done using Pootle.
commit 897e9269ba9e0352d1b7f73c2ed422e43ef03a0c
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:54:20 2010 +0200
Translation update done using Pootle.
commit 4a8b394f479de0885025080b114cef0a85397c74
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:54:13 2010 +0200
Translation update done using Pootle.
commit 638d292bfe11633596388152de7671220a73feb1
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:53:49 2010 +0200
Translation update done using Pootle.
commit 0702a7fc28aa001eec94a70aa048207297dde80d
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:53:29 2010 +0200
Translation update done using Pootle.
commit b1f39446c5aafa2d1632890777677c6fa460a474
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:52:52 2010 +0200
Translation update done using Pootle.
commit d17b7cd4f4da6e7954c7e7329340b80a7f741f87
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:52:04 2010 +0200
Translation update done using Pootle.
commit 9217f6a995b9ac7d42a9ae01d25ab94018d7eb36
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:39:47 2010 +0200
Translation update done using Pootle.
commit 688d4fd5240f24875659cbe0f2f8d460a420cf24
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:32:38 2010 +0200
Translation update done using Pootle.
commit 0ea7aad6d40c9484af642bed8a60a9388098af20
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:30:07 2010 +0200
Translation update done using Pootle.
commit 699013afb030974e3e2b033b06eedcfbdb69c4c6
Author: ahmad_usa2007 <ahmad_usa2007(a)yahoo.com>
Date: Wed May 19 03:24:34 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/el.po | 164 ++++++-------------------------------------------------------
po/fa.po | 100 ++++++--------------------------------
po/hi.po | 6 +-
3 files changed, 35 insertions(+), 235 deletions(-)
diff --git a/po/el.po b/po/el.po
index ba4e73e..2c87cd8 100644
--- a/po/el.po
+++ b/po/el.po
@@ -302,7 +302,6 @@ msgstr "Κατάσταση"
#: db_operations.php:544
#, fuzzy
-#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
msgstr "Ενεργοποιημένο"
@@ -317,14 +316,12 @@ msgstr "Καταστράφηκε"
#: db_operations.php:562
#, fuzzy
-#| msgid "Repair"
msgctxt "BLOB repository"
msgid "Repair"
msgstr "Επιδιόρθωση"
#: db_operations.php:570
#, fuzzy
-#| msgid "Disabled"
msgctxt "BLOB repository"
msgid "Disabled"
msgstr "Απενεργοποιημένο"
@@ -376,7 +373,7 @@ msgstr "εμφάνιση όλων των πινάκων με το ίδιο πλ
#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223
#: pdf_pages.php:533
msgid "Data Dictionary"
-msgstr "Λεξικό δεδομένων"
+msgstr "Περιληπτικός πίνακας δεδομένων"
#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534
msgid "Only show keys"
@@ -738,7 +735,7 @@ msgstr "Απεπιλογή όλων"
#: db_structure.php:536 libraries/messages.inc.php:146
msgid "Check tables having overhead"
-msgstr "Έλεγχος πινάκων με υπερκεφαλίδα"
+msgstr "Επιλογή πινάκων με περίσσεια"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668
@@ -1069,7 +1066,7 @@ msgstr "Γενικές λειτουργίες συσχέτισης"
#: js/messages.php:59 libraries/messages.inc.php:256
#: libraries/relation.lib.php:101 libraries/relation.lib.php:108
msgid "Disabled"
-msgstr "Απενεργοποιημένο"
+msgstr "Απενεργοποιημένη"
#: js/messages.php:60 libraries/messages.inc.php:846
msgid "Select referenced key"
@@ -1091,14 +1088,12 @@ msgstr "Επιλέξτε πεδίο για εμφάνιση"
#. l10n: Display text for calendar close link
#: js/messages.php:73
#, fuzzy
-#| msgid "Donate"
msgid "Done"
msgstr "Δωρεά"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:75
#, fuzzy
-#| msgid "Previous"
msgid "Prev"
msgstr "Προηγούμενο"
@@ -1113,13 +1108,11 @@ msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
#: js/messages.php:79
#, fuzzy
-#| msgid "Total"
msgid "Today"
msgstr "Σύνολο"
#: js/messages.php:82
#, fuzzy
-#| msgid "Binary"
msgid "January"
msgstr "Δυαδικό"
@@ -1129,13 +1122,11 @@ msgstr ""
#: js/messages.php:84
#, fuzzy
-#| msgid "Mar"
msgid "March"
msgstr "Μαρτίου"
#: js/messages.php:85
#, fuzzy
-#| msgid "Apr"
msgid "April"
msgstr "Απριλίου"
@@ -1145,19 +1136,16 @@ msgstr "Μαΐου"
#: js/messages.php:87
#, fuzzy
-#| msgid "Jun"
msgid "June"
msgstr "Ιουνίου"
#: js/messages.php:88
#, fuzzy
-#| msgid "Jul"
msgid "July"
msgstr "Ιουλίου"
#: js/messages.php:89
#, fuzzy
-#| msgid "Aug"
msgid "August"
msgstr "Αυγούστου"
@@ -1167,7 +1155,6 @@ msgstr ""
#: js/messages.php:91
#, fuzzy
-#| msgid "Oct"
msgid "October"
msgstr "Οκτωβρίου"
@@ -1202,7 +1189,6 @@ msgstr "Απριλίου"
#. l10n: Short month name
#: js/messages.php:105 libraries/common.lib.php:1563
#, fuzzy
-#| msgid "May"
msgctxt "Short month name"
msgid "May"
msgstr "Μαΐου"
@@ -1244,19 +1230,16 @@ msgstr "Δεκεμβρίου"
#: js/messages.php:122
#, fuzzy
-#| msgid "Sun"
msgid "Sunday"
msgstr "Κυριακή"
#: js/messages.php:123
#, fuzzy
-#| msgid "Mon"
msgid "Monday"
msgstr "Δευτέρα"
#: js/messages.php:124
#, fuzzy
-#| msgid "Tue"
msgid "Tuesday"
msgstr "Τρίτη"
@@ -1270,7 +1253,6 @@ msgstr ""
#: js/messages.php:127
#, fuzzy
-#| msgid "Fri"
msgid "Friday"
msgstr "Παρασκευή"
@@ -1316,56 +1298,48 @@ msgstr "Σάββατο"
#. l10n: Minimal week day name
#: js/messages.php:148
#, fuzzy
-#| msgid "Sun"
msgid "Su"
msgstr "Κυριακή"
#. l10n: Minimal week day name
#: js/messages.php:150
#, fuzzy
-#| msgid "Mon"
msgid "Mo"
msgstr "Δευτέρα"
#. l10n: Minimal week day name
#: js/messages.php:152
#, fuzzy
-#| msgid "Tue"
msgid "Tu"
msgstr "Τρίτη"
#. l10n: Minimal week day name
#: js/messages.php:154
#, fuzzy
-#| msgid "Wed"
msgid "We"
msgstr "Τετάρτη"
#. l10n: Minimal week day name
#: js/messages.php:156
#, fuzzy
-#| msgid "Thu"
msgid "Th"
msgstr "Πέμπτη"
#. l10n: Minimal week day name
#: js/messages.php:158
#, fuzzy
-#| msgid "Fri"
msgid "Fr"
msgstr "Παρασκευή"
#. l10n: Minimal week day name
#: js/messages.php:160
#, fuzzy
-#| msgid "Sat"
msgid "Sa"
msgstr "Σάββατο"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:162
#, fuzzy
-#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
@@ -1375,13 +1349,11 @@ msgstr ""
#: js/messages.php:165
#, fuzzy
-#| msgid "in use"
msgid "Minute"
msgstr "σε χρήση"
#: js/messages.php:166
#, fuzzy
-#| msgid "per second"
msgid "Second"
msgstr "ανά δευτερόλεπτο"
@@ -1506,7 +1478,6 @@ msgstr "λάθος"
#: libraries/Message.class.php:282
#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "Επηρεάστηκε(αν) %1$d γραμμή(ές)."
@@ -1514,7 +1485,6 @@ msgstr[1] "Επηρεάστηκε(αν) %1$d γραμμή(ές)."
#: libraries/Message.class.php:301
#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "Διαγράφτηκε(αν) %1$d γραμμή(ές)."
@@ -1522,7 +1492,6 @@ msgstr[1] "Διαγράφτηκε(αν) %1$d γραμμή(ές)."
#: libraries/Message.class.php:320
#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "Εισήχθηκε(αν) %1$d γραμμή(ές)."
@@ -1778,7 +1747,6 @@ msgstr ""
#: libraries/common.inc.php:594
#, fuzzy, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»"
@@ -1792,7 +1760,6 @@ msgstr ""
#: libraries/common.inc.php:629
#, fuzzy, php-format
-#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Μη έγκυρο ευρετήριο διακομιστή: «%s»"
@@ -1899,7 +1866,6 @@ msgstr ""
#: libraries/common.lib.php:1278
#, fuzzy
-#| msgid "Engines"
msgid "Inline"
msgstr "Μηχανές"
@@ -1961,7 +1927,7 @@ msgstr "%d %B %Y στις %H:%M:%S"
#: libraries/common.lib.php:1898
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
-msgstr "%s μέρες, %s ώρες, %s λεπτά και %s δευτερόλεπτα"
+msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660
@@ -2026,7 +1992,7 @@ msgstr "Η βάση δεδομένων φαίνεται να είναι άδει
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
#: querywindow.php:99 test/theme.php:97
msgid "SQL"
-msgstr "SQL"
+msgstr "Κώδικας SQL"
#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148
#: libraries/relation.lib.php:155 libraries/tbl_links.inc.php:69
@@ -2079,7 +2045,7 @@ msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις Σ
#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589
#: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683
msgid "Overhead"
-msgstr "Επιβάρυνση"
+msgstr "Περίσσεια"
#: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124
#: libraries/messages.inc.php:172
@@ -2132,7 +2098,6 @@ msgstr "Μείγμα κωδικού πρόσβασης"
#: libraries/display_change_password.lib.php:66
#, fuzzy
-#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
msgstr "Συμβατό με MySQL 4.0"
@@ -2227,8 +2192,7 @@ msgid ""
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
-"και οι ακόλουθες μετατροπές: %3$s. Το υπόλοιπο κείμενο θα παραμείνει όπως "
-"είναι."
+"και οι ακόλουθες μετατροπές: %3$s. Το υπόλοιπο κείμενο θα παραμείνει όπως είναι."
#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327
msgid "remember template"
@@ -2255,19 +2219,16 @@ msgstr "Καμία"
#: libraries/display_export.lib.php:247
#, fuzzy
-#| msgid "\"zipped\""
msgid "zipped"
msgstr "συμπίεση «zip»"
#: libraries/display_export.lib.php:253
#, fuzzy
-#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "συμπίεση «gzip»"
#: libraries/display_export.lib.php:259
#, fuzzy
-#| msgid "\"bzipped\""
msgid "bzipped"
msgstr "συμπίεση «bzip»"
@@ -2925,7 +2886,7 @@ msgstr "Έκδοση Excel"
#: libraries/export/htmlword.php:18 libraries/messages.inc.php:379
msgid "Microsoft Word 2000"
-msgstr "Microsoft Word 2000"
+msgstr "Έγγραφο Microsoft Word 2000"
#: libraries/export/htmlword.php:24 libraries/export/latex.php:55
#: libraries/export/latex.php:201 libraries/export/odt.php:48
@@ -2950,7 +2911,7 @@ msgstr "Δομή Πίνακα για τον Πίνακα"
#: libraries/export/latex.php:22 libraries/messages.inc.php:470
msgid "LaTeX"
-msgstr "LaTeX"
+msgstr "Έγγραφο LaTeX"
#: libraries/export/latex.php:26 libraries/messages.inc.php:468
msgid "Include table caption"
@@ -3026,7 +2987,7 @@ msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα (ODΤ)"
#: libraries/export/pdf.php:18 libraries/messages.inc.php:636
msgid "PDF"
-msgstr "PDF"
+msgstr "Έγγραφο PDF"
#: libraries/export/pdf.php:23 libraries/messages.inc.php:637
msgid "(Generates a report containing the data of a single table)"
@@ -3038,11 +2999,10 @@ msgstr "Τίτλος αναφοράς"
#: libraries/export/php_array.php:16 libraries/messages.inc.php:644
msgid "PHP array"
-msgstr "σειρά PHP"
+msgstr "Σειρά PHP"
#: libraries/export/sql.php:29
#, fuzzy
-#| msgid "Add custom comment into header (\\n splits lines)"
msgid ""
"Add custom comment into header (\n"
" splits lines)"
@@ -3158,7 +3118,7 @@ msgstr "Βιβλίο εργασίας Excel 2007 XLSX"
#: libraries/export/xml.php:18 libraries/import/xml.php:21
#: libraries/messages.inc.php:1251
msgid "XML"
-msgstr "XML"
+msgstr "Κώδικας XML"
#: libraries/export/xml.php:29 libraries/messages.inc.php:1247
msgid "Export Structure Schemas (recommended)"
@@ -3334,7 +3294,6 @@ msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά
#: libraries/import/ods.php:28
#, fuzzy
-#| msgid "Import currencies ($5.00 to 5.00)"
msgid "Import currencies (.00 to 5.00)"
msgstr "Εισαγωγή νομισμάτων (€5,00 αντί 5,00)"
@@ -3354,14 +3313,12 @@ msgstr ""
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
-#| msgid "Recoding engine"
msgid "Encoding conversion"
msgstr "Μηχανή επανακωδικοποίησης"
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:145
#, fuzzy
-#| msgid "None"
msgctxt "None encoding conversion"
msgid "None"
msgstr "Καμία"
@@ -3989,7 +3946,7 @@ msgstr ""
#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247
msgid "dictionary"
-msgstr "λεξικό"
+msgstr "περιληπτικός πίνακας"
#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348
msgid "Difference"
@@ -4031,7 +3988,7 @@ msgstr "Αποτελεσματικός"
#: libraries/messages.inc.php:282 libraries/relation.lib.php:100
msgid "Enabled"
-msgstr "Ενεργοποιημένο"
+msgstr "Ενεργοποιημένη"
#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177
msgid "END CUT"
@@ -5073,7 +5030,7 @@ msgstr "Μετονομασία πίνακα σε"
#: libraries/messages.inc.php:753 tbl_operations.php:664
msgid "Repair"
-msgstr "Επιδιόρθωση"
+msgstr "Επισκευή"
#: libraries/messages.inc.php:757 server_replication.php:228
msgid ""
@@ -5311,7 +5268,7 @@ msgstr "Όρια πόρων"
#: libraries/messages.inc.php:801 tbl_change.php:1209
#, php-format
msgid "Restart insertion with %s rows"
-msgstr "Επανεκκίνηση εισαγωγής με %s γραμμές"
+msgstr "Επανεκκίνηση εισαγωγής με %s εγγραφές"
#: libraries/messages.inc.php:803 server_privileges.php:1578
msgid "Revoke all active privileges from the users and delete them afterwards."
@@ -6200,7 +6157,7 @@ msgstr "Εμφάνιση πινάκων"
#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396
msgid " Show this query here again "
-msgstr " Εμφάνιση εδώ ξανά αυτού του ερώτηματος"
+msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ"
#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217
#: libraries/mysql_charsets.lib.php:342
@@ -6978,7 +6935,6 @@ msgstr "συμπίεση «zip»"
#: libraries/tbl_properties.inc.php:393
#, fuzzy
-#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Καμία"
@@ -6994,32 +6950,27 @@ msgstr "Καθάρισμα"
#: navigation.php:350 navigation.php:351
#, fuzzy
-#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Δημιουργία πίνακα"
#: pdf_schema.php:636
#, fuzzy, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "Ο πίνακας «%s» δεν υπάρχει!"
#: pdf_schema.php:995
#, fuzzy, php-format
-#| msgid "Schema of the \"%s\" database - Page %s"
msgid "Schema of the %s database - Page %s"
msgstr "Σχήμα της βάσης «%s» - Σελίδα %s"
#: server_databases.php:230
#, fuzzy
-#| msgid "Go to database"
msgid "Jump to database"
msgstr "Μετάβαση στη βάση δεδομένων"
#: server_privileges.php:263 server_privileges.php:264
#, fuzzy
-#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Καμία"
@@ -7032,21 +6983,18 @@ msgstr ""
#: server_privileges.php:1998
#, fuzzy
-#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Καμία"
#: server_status.php:344
#, fuzzy
-#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Επαναφορά"
#: server_status.php:360
#, fuzzy
-#| msgid "This server is configured as master in a replication process."
msgid ""
"This MySQL server works as <b>master</b> and <b>slave</b> in <b>replication</"
"b> process."
@@ -7056,7 +7004,6 @@ msgstr ""
#: server_status.php:362
#, fuzzy
-#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as <b>master</b> in <b>replication</b> process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
@@ -7064,7 +7011,6 @@ msgstr ""
#: server_status.php:364
#, fuzzy
-#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as <b>slave</b> in <b>replication</b> process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
@@ -7072,10 +7018,6 @@ msgstr ""
#: server_status.php:366
#, fuzzy
-#| msgid ""
-#| "This MySQL server works as %s in <b>replication</b> process. For further "
-#| "information about replication status on the server, please visit the <a "
-#| "href=\"#replication\">replication section</a>."
msgid ""
"For further information about replication status on the server, please visit "
"the <a href=#replication>replication section</a>."
@@ -7090,13 +7032,11 @@ msgstr ""
#: server_synchronize.php:1123
#, fuzzy
-#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Μη ασφαλής σύνδεση"
#: server_synchronize.php:1152
#, fuzzy, php-format
-#| msgid "Configuration file"
msgid "Configuration: %s"
msgstr "Αρχείο ρυθμίσεων"
@@ -8384,9 +8324,6 @@ msgstr "Πίνακας ιστορικού ερωτημάτων SQL"
#: setup/lib/messages.inc.php:279
#, fuzzy
-#| msgid ""
-#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
-#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -8396,7 +8333,6 @@ msgstr ""
#: setup/lib/messages.inc.php:280
#, fuzzy
-#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "Πίνακας ιστορικού ερωτημάτων SQL"
@@ -8516,7 +8452,6 @@ msgstr ""
#: setup/lib/messages.inc.php:304
#, fuzzy
-#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Αυτόματη κατάσταση επαναφοράς"
@@ -8526,7 +8461,6 @@ msgstr ""
#: setup/lib/messages.inc.php:306
#, fuzzy
-#| msgid "Statements"
msgid "Statements to track"
msgstr "Δηλώσεις"
@@ -8840,9 +8774,6 @@ msgstr ""
#: setup/lib/messages.inc.php:372
#, fuzzy, php-format
-#| msgid ""
-#| "You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The "
-#| "latest stable version is %s, released on %s."
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
@@ -8901,47 +8832,36 @@ msgstr "ZIP"
#: tbl_operations.php:634
#, fuzzy
-#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Εκκαθάριση («FLUSH») πίνακα"
#: tbl_relation.php:405
#, fuzzy
-#| msgid "Internal relations"
msgid "Internal relation"
msgstr "Εσωτερικές συσχετίσεις"
#: tbl_relation.php:413
#, fuzzy
-#| msgid "Foreign key limit"
msgid "Foreign key constraint"
msgstr "Όριο μη διακριτού κλειδιού"
#: tbl_structure.php:362
#, fuzzy
-#| msgid "None"
msgctxt "None for default"
msgid "None"
msgstr "Καμία"
#: tbl_structure.php:595
#, fuzzy, php-format
-#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Δημιουργία ευρετηρίου σε «%s» πεδία"
#: transformation_overview.php:48
#, fuzzy
-#| msgid "Description"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Περιγραφή"
-#, fuzzy
-#~| msgid ""
-#~| "However on last run no data has been parsed, this usually means "
-#~| "phpMyAdmin won't be able to finish this import unless you increase php "
-#~| "time limits."
#~ msgid ""
#~ "However on last run no data has been parsed, this usually means "
#~ "phpMyAdmin won"
@@ -8950,49 +8870,31 @@ msgstr "Περιγραφή"
#~ "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή "
#~ "εκτός και αν αυξήσετε τα χρονικά όρια της php."
-#, fuzzy
-#~| msgid "None"
#~ msgctxt "None action"
#~ msgid "None"
#~ msgstr "Καμία"
-#, fuzzy
-#~| msgid "None"
#~ msgctxt ""
#~ msgid "None"
#~ msgstr "Καμία"
-#, fuzzy
-#~| msgid "Grant all privileges on wildcard name (username\\_%)"
#~ msgid "Grant all privileges on wildcard name (username_%)"
#~ msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)"
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
#~ msgid "The %s table doesn"
#~ msgstr "Ο πίνακας «%s» δεν υπάρχει!"
-#, fuzzy
-#~| msgid "Could not load default configuration from: \"%1$s\""
#~ msgid "Could not load default configuration from: %1"
#~ msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»"
-#, fuzzy
-#~| msgid "Invalid hostname for server %1$s. Please review your configuration."
#~ msgid "Invalid hostname for server %1. Please review your configuration."
#~ msgstr ""
#~ "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις "
#~ "ρυθμίσεις σας."
-#, fuzzy
-#~| msgid "Error renaming table %1$s to %2$s"
#~ msgid "Error renaming table %1 to %2"
#~ msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
-#, fuzzy
-#~| msgid ""
-#~| "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~| "extension. Please check your PHP configuration."
#~ msgid ""
#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
#~ "Please check your PHP configuration."
@@ -9000,10 +8902,6 @@ msgstr "Περιγραφή"
#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/%1"
#~ "$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της PHP"
-#, fuzzy
-#~| msgid ""
-#~| "This server is not configured as master in a replication process. Would "
-#~| "you like to <a href=\"%s\">configure</a> it?"
#~ msgid ""
#~ "This server is not configured as master in a replication process. Would "
#~ "you like to <a href=%s>configure</a> it?"
@@ -9011,10 +8909,6 @@ msgstr "Περιγραφή"
#~ "Αυτός ο διακομιστής δεν έχει ρυθμιστεί ως πρωτεύων σε μια διαδικασία "
#~ "αναπαραγωγής. Θέλετε να τον <a href=\"%s\">ρυθμίσετε</a>;"
-#, fuzzy
-#~| msgid ""
-#~| "This server is not configured as slave in a replication process. Would "
-#~| "you like to <a href=\"%s\">configure</a> it?"
#~ msgid ""
#~ "This server is not configured as slave in a replication process. Would "
#~ "you like to <a href=%s>configure</a> it?"
@@ -9022,23 +8916,9 @@ msgstr "Περιγραφή"
#~ "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία "
#~ "αναπαραγωγής. Θέλετε να τον <a href=\"%s\">ρυθμίσετε</a>;"
-#, fuzzy
-#~| msgid "Could not connect to MySQL server"
#~ msgid "(or the local MySQL server"
#~ msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL"
-#, fuzzy
-#~| msgid ""
-#~| "There is a chance that you may have found a bug in the SQL parser. "
-#~| "Please examine your query closely, and check that the quotes are correct "
-#~| "and not mis-matched. Other possible failure causes may be that you are "
-#~| "uploading a file with binary outside of a quoted text area. You can also "
-#~| "try your query on the MySQL command line interface. The MySQL server "
-#~| "error output below, if there is any, may also help you in diagnosing the "
-#~| "problem. If you still have problems or if the parser fails where the "
-#~| "command line interface succeeds, please reduce your SQL query input to "
-#~| "the single query that causes problems, and submit a bug report with the "
-#~| "data chunk in the CUT section below:"
#~ msgid ""
#~ "There is a chance that you may have found a bug in the SQL parser. Please "
#~ "examine your query closely, and check that the quotes are correct and not "
@@ -9120,32 +9000,22 @@ msgstr "Περιγραφή"
#~ msgid "Tracking Mechanism"
#~ msgstr "Μηχανισμός παρακολούθησης"
-#, fuzzy
-#~| msgid "Select All"
#~ msgctxt "Create SELECT * query"
#~ msgid "Select all"
#~ msgstr "Επιλογή όλων"
-#, fuzzy
-#~| msgid "Select All"
#~ msgctxt "Create SELECT ... query"
#~ msgid "Select"
#~ msgstr "Επιλογή όλων"
-#, fuzzy
-#~| msgid "Insert"
#~ msgctxt "Create INSERT query"
#~ msgid "Insert"
#~ msgstr "Προσθήκη"
-#, fuzzy
-#~| msgid "Updated"
#~ msgctxt "Create UPDATE query"
#~ msgid "Update"
#~ msgstr "Ενημερώθηκε"
-#, fuzzy
-#~| msgid "Delete"
#~ msgctxt "Create DELETE query"
#~ msgid "Delete"
#~ msgstr "Διαγραφή"
diff --git a/po/fa.po b/po/fa.po
index 561a3b1..88592cb 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -4,13 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-03-12 09:17+0100\n"
-"Last-Translator: Automatically generated\n"
+"PO-Revision-Date: 2010-05-19 03:54+0200\n"
+"Last-Translator: <ahmad_usa2007(a)yahoo.com>\n"
"Language-Team: persian <fa(a)li.org>\n"
+"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866
@@ -84,7 +86,7 @@ msgstr "توضیحات"
#: browse_foreigners.php:268 browse_foreigners.php:276
#: libraries/messages.inc.php:1214
msgid "Use this value"
-msgstr ""
+msgstr "این مقدار را استفاده کنید"
#: db_create.php:46 libraries/messages.inc.php:211
#, fuzzy, php-format
@@ -300,11 +302,10 @@ msgid "Status"
msgstr ""
#: db_operations.php:544
-#, fuzzy
#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
-msgstr "فعال"
+msgstr "فعال شده"
#: db_operations.php:548 libraries/messages.inc.php:89
#, fuzzy
@@ -341,7 +342,7 @@ msgstr "فعال"
#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
-msgstr ""
+msgstr "مقایسه"
#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316
#: pdf_schema.php:34
@@ -795,7 +796,7 @@ msgstr "پايگاه داده"
#: db_tracking.php:73 libraries/messages.inc.php:1142
msgid "Last version"
-msgstr ""
+msgstr "نسخه قبلی"
#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594
#, fuzzy
@@ -1249,7 +1250,7 @@ msgstr "سهشنبه"
#: js/messages.php:125
msgid "Wednesday"
-msgstr ""
+msgstr "چهارشنبه"
#: js/messages.php:126
msgid "Thursday"
@@ -1263,7 +1264,7 @@ msgstr "جمعه"
#: js/messages.php:128
msgid "Saturday"
-msgstr ""
+msgstr "شنبه"
#. l10n: Short week day name
#: js/messages.php:132 libraries/common.lib.php:1580
@@ -1352,23 +1353,21 @@ msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:162
msgid "Wk"
-msgstr ""
+msgstr "هفته"
#: js/messages.php:164
msgid "Hour"
-msgstr ""
+msgstr "ساعت"
#: js/messages.php:165
-#, fuzzy
#| msgid "in use"
msgid "Minute"
-msgstr "in use"
+msgstr "دقیقه"
#: js/messages.php:166
-#, fuzzy
#| msgid "per second"
msgid "Second"
-msgstr "در ثانیه"
+msgstr " ثانیه"
#: libraries/Config.class.php:1015 libraries/messages.inc.php:334
msgid "Font size"
@@ -8297,72 +8296,3 @@ msgstr "ساخت يك فهرست در %s ستون"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "توضیحات"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "خير"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "خير"
-
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
-#~ msgid "The %s table doesn"
-#~ msgstr "جدول \"%s\" وجود ندارد!"
-
-#~ msgctxt "$strStrucCSV"
-#~ msgid "CSV"
-#~ msgstr "دادههاي CSV"
-
-#~ msgid "Copy"
-#~ msgstr "نسخه برداری"
-
-#~ msgid "has been altered."
-#~ msgstr "تغيير دادهشد."
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "انتخاب همه"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "انتخاب همه"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "درج"
-
-#, fuzzy
-#~| msgid "Update Query"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "بههنگام سازي پرس و جو"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "حذف"
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "ژانويه0"
-
-#~ msgid "Jan1"
-#~ msgstr "ژانويه1"
-
-#~ msgid "Jan2"
-#~ msgstr "ژانويه2"
diff --git a/po/hi.po b/po/hi.po
index b5a7c70..5d374b8 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-05-18 08:19+0200\n"
+"PO-Revision-Date: 2010-05-19 05:36+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
"Language: hi\n"
@@ -1665,11 +1665,11 @@ msgstr "सत्यापन."
#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226
msgid "View image"
-msgstr ""
+msgstr "छवि देखें"
#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648
msgid "Play audio"
-msgstr ""
+msgstr "ऑडियो चलायें"
#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228
msgid "View video"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3531-g40ee06f
by Marc Delisle 18 May '10
by Marc Delisle 18 May '10
18 May '10
The branch, master has been updated
via 40ee06f0b68419e9504a959b1a8d497aad3a1411 (commit)
via 3c33759072c0da83e2bd20023af6eee2dc3c9e8e (commit)
via b52c1b578a83979d2161b612b96a912413348a4f (commit)
via 33fba5543640003e8eb681443f8bb36648a0611b (commit)
from 3c39f13afc4362e22436d3320db3db47e75f8d19 (commit)
- Log -----------------------------------------------------------------
commit 40ee06f0b68419e9504a959b1a8d497aad3a1411
Merge: 3c39f13afc4362e22436d3320db3db47e75f8d19 3c33759072c0da83e2bd20023af6eee2dc3c9e8e
Author: Panagiotis Papazoglou <panos78(a)users.sourceforge.net>
Date: Tue May 18 12:38:01 2010 -0400
Greek update
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index dc4e39a..9351e07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -86,6 +86,7 @@ $Id$
- bug #2996161 [import] properly escape import value
- bug #2998889 [import] Import button does not work in Catalan
- [browse] Fix handling of sort order if only column is specified.
++ [lang] Greek update, thanks to Panagiotis Papazoglou - panos78
3.3.3.0 (2010-05-10)
- patch #2982480 [navi] Do not group if there would be one table in group,
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_3-11-g3c33759
by Marc Delisle 18 May '10
by Marc Delisle 18 May '10
18 May '10
The branch, QA_3_3 has been updated
via 3c33759072c0da83e2bd20023af6eee2dc3c9e8e (commit)
from b52c1b578a83979d2161b612b96a912413348a4f (commit)
- Log -----------------------------------------------------------------
commit 3c33759072c0da83e2bd20023af6eee2dc3c9e8e
Author: Panagiotis Papazoglou <panos78(a)users.sourceforge.net>
Date: Tue May 18 12:35:33 2010 -0400
Greek update
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
lang/greek-utf-8.inc.php | 28 ++++++++++++++--------------
2 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5ce0871..d4226fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2996161 [import] properly escape import value
- bug #2998889 [import] Import button does not work in Catalan
- [browse] Fix handling of sort order if only column is specified.
++ [lang] Greek update, thanks to Panagiotis Papazoglou - panos78
3.3.3.0 (2010-05-10)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php
index 112abf6..ea3bcc2 100644
--- a/lang/greek-utf-8.inc.php
+++ b/lang/greek-utf-8.inc.php
@@ -19,7 +19,7 @@ $datefmt = '%d %B %Y στις %H:%M:%S';
// To Arrange
-$timespanfmt = '%s μέρες, %s ώρες, %s λεπτά και %s δευτερόλεπτα';
+$timespanfmt = '%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα';
$strAbortedClients = 'Ακυρωμένες συνδέσεις';
$strAccessDeniedExplanation = 'Το phpMyAdmin προσπάθησε να συνδεθεί με τον διακομιστή MySQL αλλά ο διακομιστής απέρριψε τη σύνδεση. Θα πρέπει να ελέγξετε την διεύθυνση, το όνομα χρήστη και τον κωδικό πρόσβασης στο αρχείο ρυθμίσεων config.inc.php και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο διαχειρηστής του διακομιστή MySQL.';
@@ -134,7 +134,7 @@ $strDatabasesStatsHeavyTraffic = 'Σημείωση: Η ενεργοποίηση
$strDatabasesStats = 'Στατιστικά βάσης';
$strDatabases = 'Βάσεις Δεδομένων';
$strDatabase = 'Βάση';
-$strDataDict = 'Λεξικό δεδομένων';
+$strDataDict = 'Περιληπτικός πίνακας δεδομένων';
$strDataOnly = 'Μόνο τα δεδομένα';
$strData = 'Δεδομένα';
$strDBComment = 'Σχόλιο βάσης: ';
@@ -150,7 +150,7 @@ $strDeleting = 'Διαγραφή %s';
$strDelOld = 'Η τρέχουσα σελίδα έχει αναφορές σε πίνακες που δεν υπάρχουν πια. Θέλετε να διαγραφές αυτές οι αναφορές;';
$strDescending = 'Φθίνουσα';
$strDescription = 'Περιγραφή';
-$strDictionary = 'λεξικό';
+$strDictionary = 'περιληπτικός πίνακας';
$strDisabled = 'Απενεργοποιημένο';
$strDisplayFeat = 'Λειτουργίες εμφάνισης';
$strDisplayOrder = 'Σειρά εμφάνισης:';
@@ -250,7 +250,7 @@ $strKill = 'Τερματισμός';
$strKorean = 'Κορεατικά';
$strLandscape = 'Οριζόντια διάταξη';
-$strLaTeX = 'LaTeX';
+$strLaTeX = 'Έγγραφο LaTeX';
$strLengthSet = 'Μήκος/Τιμές*';
$strLimitNumRows = 'Εγγραφές ανά σελίδα';
$strLinesTerminatedBy = 'Γραμμές που τελειώνουν σε';
@@ -321,7 +321,7 @@ $strOK = 'Εντάξει';
$strOperations = 'Λειτουργίες';
$strOptimizeTable = 'Βελτιστοποίηση Πίνακα';
$strOr = 'Ή';
-$strOverhead = 'Επιβάρυνση';
+$strOverhead = 'Περίσσεια';
$strOverwriteExisting = 'Αντικατάσταση υπαρχόντων αρχείων';
$strPageNumber = 'Σελίδα:';
@@ -470,7 +470,7 @@ $strShowingRecords = 'Εμφάνιση εγγραφής ';
$strShowPHPInfo = 'Εμφάνιση πληροφοριών της PHP';
$strShowTableDimension = 'Εμφάνιση διαστάσεων πινάκων';
$strShowTables = 'Εμφάνιση πινάκων';
-$strShowThisQuery = ' Εμφάνιση εδώ ξανά αυτού του ερώτηματος';
+$strShowThisQuery = ' Επανεμφάνιση αυτού του ερώτηματος εδώ';
$strShow = 'Εμφάνιση';
$strSimplifiedChinese = 'Απλοποιημένα Κινεζικά';
$strSingly = '(μοναδικά)';
@@ -482,7 +482,7 @@ $strSQLParserBugMessage = 'Υπάρχει περίπτωση να εντοπίσ
$strSQLParserUserError = 'Φαίνεται να υπάρχει ένα λάθος στο ερώτημά σας. Το παρακάτω λάθος διακομιστή MySQL, εάν υπάρχει κάποιο, μπορεί επίσης να σας βοηθήσει να διαγνώσετε το πρόβλημα.';
$strSQLQuery = 'Εντολή SQL';
$strSQLResult = 'αποτέλεσμα SQL';
-$strSQL = 'SQL';
+$strSQL = 'Κώδικας SQL';
$strSQPBugInvalidIdentifer = 'Άγνωστο Αναγνωριστικό';
$strSQPBugUnclosedQuote = 'Ανοιχτά εισαγωγικά';
$strSQPBugUnknownPunctuation = 'Άγνωστο σημείο στίξης';
@@ -579,7 +579,7 @@ $strWindowNotFound = 'Δεν ήταν δυνατό να ανανεωθεί το
$strWithChecked = 'Με τους επιλεγμένους:';
$strWrongUser = 'Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. Άρνηση πρόσβασης.';
-$strXML = 'XML';
+$strXML = 'Κώδικας XML';
$strYes = 'Ναι';
@@ -644,7 +644,7 @@ $strCaseInsensitive = 'χωρίς ταίριασμα πεζών-κεφαλαίω
$strCaseSensitive = 'ταίριασμα πεζών-κεφαλαίων';
$strCharsetsAndCollations = 'Σύνολα και Συνθέσεις Χαρακτήρων';
$strCheck = 'Έλεγχος';
-$strCheckOverhead = 'Έλεγχος πινάκων με υπερκεφαλίδα';
+$strCheckOverhead = 'Επιλογή πινάκων με περίσσεια';
$strClickToSelect = 'Πατήστε για επιλογή';
$strClickToUnselect = 'Πατήστε για απεπιλογή';
$strCollation = 'Σύνθεση';
@@ -756,8 +756,8 @@ $strHide = 'Απόκρυψη';
$strHideShowAll = 'Απόκρυψη/Προβολή όλων';
$strHideShowNoRelation = 'Απόκρυψη/Εμφάνιση Πινάκων χωρίς συσχέτιση';
$strHostTableExplanation = 'Όταν χρησιμοποιείται ο Οικείος πίνακας, παραβλέπεται αυτό το πεδίο και χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα.';
-$strHTMLExcel = 'Microsoft Excel 2000';
-$strHTMLWord = 'Microsoft Word 2000';
+$strHTMLExcel = 'Λογιστικό βιβλίο Microsoft Excel 2000';
+$strHTMLWord = 'Έγγραφο Microsoft Word 2000';
$strIcelandic = 'Ισλανδικά';
$strIEUnsupported = 'Ο Internet Explorer δεν υποστηρίζει αυτή τη λειτουργία.';
@@ -909,11 +909,11 @@ $strPBXTRowFileGrowSizeDesc = 'Το αναπτυγμένο μεγεθος των
$strPBXTRowFileGrowSize = 'Αναπτυγμένο μέγεθος αρχείου γραμμής';
$strPBXTTransactionBufferSizeDesc = 'Το μέγεθος του καθολικού buffer καταγραφής (η μηχανή δεσμεύει 2 buffers αυτού του μεγέθους). Η προεπιλογή είναι 1MB.';
$strPBXTTransactionBufferSize = 'Μέγεθος buffer δραστηριοτήτων';
-$strPDF = 'PDF';
+$strPDF = 'Έγγραφο PDF';
$strPDFReportExplanation = '(Δημιουργεί μια αναφορά με τα δεδομένα ενός πίνακα)';
$strPDFReportTitle = 'Τίτλος αναφοράς';
$strPersian = 'Περσικά';
-$strPhpArray = 'σειρά PHP';
+$strPhpArray = 'Σειρά PHP';
$strPHPExtension = 'Επέκταση PHP';
$strPlayAudio = 'Αναπαραγωγή ήχου';
$strPleaseSelectPrimaryOrUniqueKey = 'Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί';
@@ -993,7 +993,7 @@ $strReplicationStatus_slave = 'Κατάσταση δευτερεύοντος';
$strReplicationSynchronize = 'Συγχρονισμός βάσεων δεδομένων με την πρωτεύουσα';
$strReplicationUnableToChange = 'Αδύνατη η αλλαγή της πρωτεύουσας';
$strReplicationUnknownError = 'Άγνωστο σφάλμα';
-$strRestartInsertion = 'Επανεκκίνηση εισαγωγής με %s γραμμές';
+$strRestartInsertion = 'Επανεκκίνηση εισαγωγής με %s εγγραφές';
$strRomanian = 'Ρουμάνικα';
$strRoutineReturnType = 'Τύπος επιστροφής';
$strRoutines = 'Εργασίες';
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3527-g3c39f13
by Michal Čihař 18 May '10
by Michal Čihař 18 May '10
18 May '10
The branch, master has been updated
via 3c39f13afc4362e22436d3320db3db47e75f8d19 (commit)
via f1afd48f97cbf5dc3b1ad60088818a53919b04ae (commit)
via a98ef3bafc92ef3e7296cb05ad0c22c08f32566f (commit)
via 1284ebc758ad80d45166a4d3ee676aa906d9e1a9 (commit)
via fb73d5b4c92065fe325e1fe2877561dcb5487bfe (commit)
via e0c9e0671aec679905b98ac44eca10f285be9a85 (commit)
via 13c066794d41563e19366171ea7fdacf0803d867 (commit)
via 250a8392ce273345537b2a975d6cbcd57fa298e4 (commit)
via 19f919d280e41c2a6d244aa8b2611bf2964861a7 (commit)
via 8a62dfe35eea9d49de340830ea271d77df7183d2 (commit)
via 55a36fd4bd0ac44a80c8e066a84338951241c6ef (commit)
via 14cbd3a3108ea60989fd1ae4aaa3f929091496df (commit)
via 4e97f757511b061a6fd73d8241f15499e610dd26 (commit)
via 8eedf4dad9492a5bf13b8337a201f2c84ec2d294 (commit)
via 2ea1dd98271ac6f1f233303c3e6d4f9a9722c3d5 (commit)
via bfbb3c555eef37554ac96a28c3f2af2e2b7e16ee (commit)
via d10732c46771bda1adc47d9225dab084e3c85d6b (commit)
via 46c0f4fad364247b8a688b48f92308b9f5cfcb3b (commit)
via 4fb5414acafd42901ed8c284352a41e2f1a1f1f2 (commit)
via 7765a6317951f0239c21828c0e0a4373bf140b0c (commit)
via dffff1266a2620d0e9e14c0bf74d021296015d38 (commit)
via 9c90059fb0f1761cab09c5942d2d025a6d3188ec (commit)
via eba42aa5e0845e2908437076f4862ace398f8452 (commit)
via b0ac929d7aa70690be043e5e8e3ed4b82f559dcc (commit)
via cbd24e4c90a55254fdb9e3aa86a644caf379bed5 (commit)
via cb3bc9fa854c32fe57027164b30ede82dec35d21 (commit)
via ddba3bddd8fb7aa9a78c71c67940ace67d501a67 (commit)
via b5689a21deed27f933d6bc1be9a710952bb07b56 (commit)
via a57955ff5799886bbce3421d97c7e610116fa8a4 (commit)
via b9015766fbd468f069bb5cdcc0be6b2d6a6e2c61 (commit)
via 2d6a519107ad4abbd96feb5f68de72434ad9713b (commit)
via 07ff842bf9caf64e3eba7bb48a3719b7915629fb (commit)
via 69d404601f06c3e6a002d450f45dd8eb02f6824e (commit)
via 5d8d7643bfa5da60b1b9662ba2e37394bcac3f49 (commit)
via 5625d3195adbd2b6f8ce2a7e936d80bcfa085b3e (commit)
via 2a3a43c2a22fdebc1fd9b50708576cb14d7cbcda (commit)
via b682b2ad76ceff25b33a4c39a98ee36fbe88efc8 (commit)
via 869ac78342a073a56f2566b9d3c7cfeecb80f738 (commit)
via faed53ce8a05d7574f2979bd5b495d832669a794 (commit)
via 56a259d3c7f2dfc90f50496b632b33d36ae6d995 (commit)
via 0a631c7161a0d637f79493585d329f39b25959d6 (commit)
via 85e83a8b64f90558d9c2ad647facbeb9fccd0e96 (commit)
via 9511ea1dcee7a47f08d41bd01d03c039dfd81a76 (commit)
via 22dc9f4ad30d04ce548beebb695ba22efd33b747 (commit)
via 5e0db3a357ce765a83acb8d64f80e1900e317728 (commit)
via b431000067de90723f97a97018ed9b0e6948d0fd (commit)
via 881267485b0718fb1b8a15ed4c37143d7ab0435f (commit)
via 663c9d2b60ecc298567c440d21a7635814467e6c (commit)
via 14815734e7858f905b56d08adb366aeaa1989408 (commit)
via 80bbaea1d717548efe705445d6c7abfce1518412 (commit)
via 897f2658cb609ad18635340f3449d6b150e10c90 (commit)
via a0c08508a25a09b3f8437004726c73a901d87f25 (commit)
via 3732bfe269cb8f9f0dc9ca4c7d1b00c60a5a3537 (commit)
via 5c61b71102e7cd76bb8a01b69ae6623b445302f1 (commit)
via ab7ae2075024e39d30fe565d93162b82760b588b (commit)
via 68c5c5556deb993a09a6e5a4023b229f42dea0bf (commit)
via 59b1f7bc50c236fabc01bbd97c7bebac7bf7575c (commit)
via fd00dbf34b6dbd039f5e1e3f2ef423e850f81d7c (commit)
via 4dd3183c3d82d70ffd722c67629f2793e04afe1b (commit)
via 755e895fcb37be65053c5b56742230bd39c4d141 (commit)
via 3a4360b3797f9f2ac5b399604683cb6e21e62212 (commit)
via 930c93fe7e9a4151de878945150e4d1651bb5aec (commit)
via ba61dc8e3898ee2ff6d722d999a8a356b325ad6f (commit)
via d35ee554a6d2c98295ffbdef25aed7a81d42b5f3 (commit)
via 205ebf688922e56861129382c315adc2214f2972 (commit)
via d8fc77c1fd4f1e5fa3a3a953c3d1149c50cc6b4b (commit)
via 809edb95467a3330ac3c82bed30e6ed15ef23c33 (commit)
via 1026a38bfc9510b9e12aa1277ca41254ed08dfab (commit)
via 20f0311540df8a58d195eb9d24c952a54c34e518 (commit)
via 5e00e1d00ac0b104e0a04c4574b13470afe3492b (commit)
via 9ac30fbfd8e5fa9207f7c9bde4155f24efc0f87f (commit)
via 579eb6f6b8d600d60a1b8370249f7853e82a95e1 (commit)
via c04620fbc84b45bfcea4816cc2a3a7b812636ac1 (commit)
via 01d2783cc8d8801795801f864360d85ffb03f40a (commit)
via 996f1c13b2e73e1021630a959ca292254570f4b9 (commit)
via b324e810155d03617dcf7260c2c1cfaf85ef3338 (commit)
via 56d26fe7bcee4817518b6772d1f7f86620cf01cc (commit)
via 63a376bf8a7d57a1e4eba99d130403ab8db8159d (commit)
via 0d8b33d65f67ba8f3a82dceb744df4e7f3b3436f (commit)
via 6a1021489dcf0688cce3903f0f03796b07827cd9 (commit)
via 9f1f2f962af31b39a54f62bc2648673c8be1d011 (commit)
via 91b99472a9b0da8db1e02d70b83da45440ab4af2 (commit)
via 459fd4cc486fd1757e7cc30930450ae371907dc2 (commit)
via c6f11dd6d4b30a81111d5de2bb2e704f4edc7e0e (commit)
via 3d00ff9f61acd1bb3a46ba872c2431adf81aab4d (commit)
via cfd24fafadc7311bd358b9a6f583cdf5028cfe0b (commit)
via 24db49e269ba2abd72d1201c678b185ee2f0d72e (commit)
via 3e72ecb36ad784b75eb5e5de8f63619a37d08eef (commit)
via 9daf8e09a09f5a5f8fd5154fe44e8c8bea2965c8 (commit)
via 1034f77dfc06a3aa8a0817bbb255466e826cc654 (commit)
via 2d8311a8a89b65810dab4d0fdb4d27bc0047c7a9 (commit)
via c8204afdba1bc0555aca3106b0425ce5b8677923 (commit)
via ce84d869d42db8fedd4366e7e30ea3feb2671739 (commit)
via ad635b3c3cad334e4b544d5ad74765d11512b4b1 (commit)
via 2b744c12bb7056f22b19bc6ff53a30f9620f168a (commit)
via 2f9465c2d178b774f745b752535a44075d52d082 (commit)
via 3f10da37ee0804eca086594e6ebd8b622f3bfc39 (commit)
via edbbc1a9346af46f8aed2fbc3710810e0256067b (commit)
via c5a61c764eb84f2a45f3ff3149b0aa9bbd28639a (commit)
via 0ab6f62e9a2af7dca8c54ca887def99637ccfafb (commit)
via 6ad600dae716b6992d60b537a58bed9f733f952e (commit)
via 2b4650d2fdd5b65ed65a2b2a68806f0221401dc6 (commit)
via 13f98b7288c6ab01d16852e8391ef9f5c804e7b9 (commit)
via e755d6ff4bcd068d9c478a10504752f845ac7d1f (commit)
via 498d83306ac10f749b9a5b0214c7dd054b3f7c9e (commit)
via 55396e92b9acc5174057c20d51afec6b970569cf (commit)
via 29cf3268c5d9809de9fbf267eb4dd7ce9dc16566 (commit)
via 5d4a65cac89f2caf9436975df756a61701893b91 (commit)
via d0b58746324819c96524f1b1ebdebfd5df1c3177 (commit)
via 801f9868d4048027e3bb28f9af706551f483a43b (commit)
via 29e22e325389ec30a648b6a2329c793a784b4eef (commit)
via 91565cd347d745ebbb73f3bb59ba38b57269f8ab (commit)
via 79714a1cb688b61f561929106906b040392ad973 (commit)
via c026c442880c57a2c2cd0ec353f6343b799ce515 (commit)
via bc18b9f78f46c69a423f7c36a2240f44f2ea7133 (commit)
via 32cc41a6a4ef6b780785c7e9ccf5e62ef54fae7c (commit)
via 8d12b8234cdfaa29d5839b3fee5d35acfc3baaed (commit)
via 8489b9284727976b84278e0885d3ba8f080407e5 (commit)
via 2f8583e8d3e56b94a922ad19195287b601bfeb89 (commit)
via 22cfe79b5ee9f2a876485c3f56c86dde8aec2a98 (commit)
via f151271e7379e9a7ff19214ec2acc4369996132b (commit)
via 4446afb79dce6f0ea9cbd4a3ce783fc386c34c20 (commit)
via 95d744ce1792a4aeb733f27107b926c931ab6d77 (commit)
via 6a37637762545f976477e0bbc70d6e8da2fda73b (commit)
via f405f82a7a579523c93f431656777a3c2aa85d16 (commit)
via 2b3b57f9ceea3d9bce418040165a153a0bdb06de (commit)
via f1528cf8a638679025bc3298b58f21343139a44f (commit)
from dd845888f8aa6b6f725d7342f84abbc552346bd7 (commit)
- Log -----------------------------------------------------------------
commit 3c39f13afc4362e22436d3320db3db47e75f8d19
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue May 18 11:45:05 2010 +0200
Fix format string.
commit f1afd48f97cbf5dc3b1ad60088818a53919b04ae
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Tue May 18 10:59:31 2010 +0200
Translation update done using Pootle.
commit a98ef3bafc92ef3e7296cb05ad0c22c08f32566f
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Tue May 18 10:59:14 2010 +0200
Translation update done using Pootle.
commit 1284ebc758ad80d45166a4d3ee676aa906d9e1a9
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:19:41 2010 +0200
Translation update done using Pootle.
commit fb73d5b4c92065fe325e1fe2877561dcb5487bfe
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:19:16 2010 +0200
Translation update done using Pootle.
commit e0c9e0671aec679905b98ac44eca10f285be9a85
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:18:40 2010 +0200
Translation update done using Pootle.
commit 13c066794d41563e19366171ea7fdacf0803d867
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:18:25 2010 +0200
Translation update done using Pootle.
commit 250a8392ce273345537b2a975d6cbcd57fa298e4
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:17:22 2010 +0200
Translation update done using Pootle.
commit 19f919d280e41c2a6d244aa8b2611bf2964861a7
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:17:08 2010 +0200
Translation update done using Pootle.
commit 8a62dfe35eea9d49de340830ea271d77df7183d2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:16:34 2010 +0200
Translation update done using Pootle.
commit 55a36fd4bd0ac44a80c8e066a84338951241c6ef
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:16:18 2010 +0200
Translation update done using Pootle.
commit 14cbd3a3108ea60989fd1ae4aaa3f929091496df
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:14:04 2010 +0200
Translation update done using Pootle.
commit 4e97f757511b061a6fd73d8241f15499e610dd26
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:13:08 2010 +0200
Translation update done using Pootle.
commit 8eedf4dad9492a5bf13b8337a201f2c84ec2d294
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:12:45 2010 +0200
Translation update done using Pootle.
commit 2ea1dd98271ac6f1f233303c3e6d4f9a9722c3d5
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:12:23 2010 +0200
Translation update done using Pootle.
commit bfbb3c555eef37554ac96a28c3f2af2e2b7e16ee
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:12:10 2010 +0200
Translation update done using Pootle.
commit d10732c46771bda1adc47d9225dab084e3c85d6b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:11:54 2010 +0200
Translation update done using Pootle.
commit 46c0f4fad364247b8a688b48f92308b9f5cfcb3b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:10:26 2010 +0200
Translation update done using Pootle.
commit 4fb5414acafd42901ed8c284352a41e2f1a1f1f2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:10:01 2010 +0200
Translation update done using Pootle.
commit 7765a6317951f0239c21828c0e0a4373bf140b0c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:09:58 2010 +0200
Translation update done using Pootle.
commit dffff1266a2620d0e9e14c0bf74d021296015d38
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:09:51 2010 +0200
Translation update done using Pootle.
commit 9c90059fb0f1761cab09c5942d2d025a6d3188ec
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:09:29 2010 +0200
Translation update done using Pootle.
commit eba42aa5e0845e2908437076f4862ace398f8452
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:09:09 2010 +0200
Translation update done using Pootle.
commit b0ac929d7aa70690be043e5e8e3ed4b82f559dcc
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:08:35 2010 +0200
Translation update done using Pootle.
commit cbd24e4c90a55254fdb9e3aa86a644caf379bed5
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:08:26 2010 +0200
Translation update done using Pootle.
commit cb3bc9fa854c32fe57027164b30ede82dec35d21
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:08:04 2010 +0200
Translation update done using Pootle.
commit ddba3bddd8fb7aa9a78c71c67940ace67d501a67
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:07:49 2010 +0200
Translation update done using Pootle.
commit b5689a21deed27f933d6bc1be9a710952bb07b56
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:07:11 2010 +0200
Translation update done using Pootle.
commit a57955ff5799886bbce3421d97c7e610116fa8a4
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:06:26 2010 +0200
Translation update done using Pootle.
commit b9015766fbd468f069bb5cdcc0be6b2d6a6e2c61
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:05:39 2010 +0200
Translation update done using Pootle.
commit 2d6a519107ad4abbd96feb5f68de72434ad9713b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:04:18 2010 +0200
Translation update done using Pootle.
commit 07ff842bf9caf64e3eba7bb48a3719b7915629fb
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:04:00 2010 +0200
Translation update done using Pootle.
commit 69d404601f06c3e6a002d450f45dd8eb02f6824e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:03:46 2010 +0200
Translation update done using Pootle.
commit 5d8d7643bfa5da60b1b9662ba2e37394bcac3f49
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:02:40 2010 +0200
Translation update done using Pootle.
commit 5625d3195adbd2b6f8ce2a7e936d80bcfa085b3e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:02:15 2010 +0200
Translation update done using Pootle.
commit 2a3a43c2a22fdebc1fd9b50708576cb14d7cbcda
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:02:01 2010 +0200
Translation update done using Pootle.
commit b682b2ad76ceff25b33a4c39a98ee36fbe88efc8
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:01:06 2010 +0200
Translation update done using Pootle.
commit 869ac78342a073a56f2566b9d3c7cfeecb80f738
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 08:00:08 2010 +0200
Translation update done using Pootle.
commit faed53ce8a05d7574f2979bd5b495d832669a794
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:59:35 2010 +0200
Translation update done using Pootle.
commit 56a259d3c7f2dfc90f50496b632b33d36ae6d995
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:58:53 2010 +0200
Translation update done using Pootle.
commit 0a631c7161a0d637f79493585d329f39b25959d6
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:58:21 2010 +0200
Translation update done using Pootle.
commit 85e83a8b64f90558d9c2ad647facbeb9fccd0e96
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:56:53 2010 +0200
Translation update done using Pootle.
commit 9511ea1dcee7a47f08d41bd01d03c039dfd81a76
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:56:24 2010 +0200
Translation update done using Pootle.
commit 22dc9f4ad30d04ce548beebb695ba22efd33b747
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:55:32 2010 +0200
Translation update done using Pootle.
commit 5e0db3a357ce765a83acb8d64f80e1900e317728
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:55:10 2010 +0200
Translation update done using Pootle.
commit b431000067de90723f97a97018ed9b0e6948d0fd
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:54:43 2010 +0200
Translation update done using Pootle.
commit 881267485b0718fb1b8a15ed4c37143d7ab0435f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:54:28 2010 +0200
Translation update done using Pootle.
commit 663c9d2b60ecc298567c440d21a7635814467e6c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:53:56 2010 +0200
Translation update done using Pootle.
commit 14815734e7858f905b56d08adb366aeaa1989408
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:53:38 2010 +0200
Translation update done using Pootle.
commit 80bbaea1d717548efe705445d6c7abfce1518412
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:53:30 2010 +0200
Translation update done using Pootle.
commit 897f2658cb609ad18635340f3449d6b150e10c90
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:52:21 2010 +0200
Translation update done using Pootle.
commit a0c08508a25a09b3f8437004726c73a901d87f25
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:49:59 2010 +0200
Translation update done using Pootle.
commit 3732bfe269cb8f9f0dc9ca4c7d1b00c60a5a3537
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:47:05 2010 +0200
Translation update done using Pootle.
commit 5c61b71102e7cd76bb8a01b69ae6623b445302f1
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:46:27 2010 +0200
Translation update done using Pootle.
commit ab7ae2075024e39d30fe565d93162b82760b588b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:46:11 2010 +0200
Translation update done using Pootle.
commit 68c5c5556deb993a09a6e5a4023b229f42dea0bf
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:45:09 2010 +0200
Translation update done using Pootle.
commit 59b1f7bc50c236fabc01bbd97c7bebac7bf7575c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:43:33 2010 +0200
Translation update done using Pootle.
commit fd00dbf34b6dbd039f5e1e3f2ef423e850f81d7c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:42:28 2010 +0200
Translation update done using Pootle.
commit 4dd3183c3d82d70ffd722c67629f2793e04afe1b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:18:32 2010 +0200
Translation update done using Pootle.
commit 755e895fcb37be65053c5b56742230bd39c4d141
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:18:14 2010 +0200
Translation update done using Pootle.
commit 3a4360b3797f9f2ac5b399604683cb6e21e62212
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:17:57 2010 +0200
Translation update done using Pootle.
commit 930c93fe7e9a4151de878945150e4d1651bb5aec
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:17:47 2010 +0200
Translation update done using Pootle.
commit ba61dc8e3898ee2ff6d722d999a8a356b325ad6f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:17:36 2010 +0200
Translation update done using Pootle.
commit d35ee554a6d2c98295ffbdef25aed7a81d42b5f3
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:17:21 2010 +0200
Translation update done using Pootle.
commit 205ebf688922e56861129382c315adc2214f2972
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:17:01 2010 +0200
Translation update done using Pootle.
commit d8fc77c1fd4f1e5fa3a3a953c3d1149c50cc6b4b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:58 2010 +0200
Translation update done using Pootle.
commit 809edb95467a3330ac3c82bed30e6ed15ef23c33
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:55 2010 +0200
Translation update done using Pootle.
commit 1026a38bfc9510b9e12aa1277ca41254ed08dfab
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:52 2010 +0200
Translation update done using Pootle.
commit 20f0311540df8a58d195eb9d24c952a54c34e518
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:50 2010 +0200
Translation update done using Pootle.
commit 5e00e1d00ac0b104e0a04c4574b13470afe3492b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:39 2010 +0200
Translation update done using Pootle.
commit 9ac30fbfd8e5fa9207f7c9bde4155f24efc0f87f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:35 2010 +0200
Translation update done using Pootle.
commit 579eb6f6b8d600d60a1b8370249f7853e82a95e1
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:16:05 2010 +0200
Translation update done using Pootle.
commit c04620fbc84b45bfcea4816cc2a3a7b812636ac1
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:47 2010 +0200
Translation update done using Pootle.
commit 01d2783cc8d8801795801f864360d85ffb03f40a
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:43 2010 +0200
Translation update done using Pootle.
commit 996f1c13b2e73e1021630a959ca292254570f4b9
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:31 2010 +0200
Translation update done using Pootle.
commit b324e810155d03617dcf7260c2c1cfaf85ef3338
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:14 2010 +0200
Translation update done using Pootle.
commit 56d26fe7bcee4817518b6772d1f7f86620cf01cc
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:08 2010 +0200
Translation update done using Pootle.
commit 63a376bf8a7d57a1e4eba99d130403ab8db8159d
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:04 2010 +0200
Translation update done using Pootle.
commit 0d8b33d65f67ba8f3a82dceb744df4e7f3b3436f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:15:00 2010 +0200
Translation update done using Pootle.
commit 6a1021489dcf0688cce3903f0f03796b07827cd9
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:14:22 2010 +0200
Translation update done using Pootle.
commit 9f1f2f962af31b39a54f62bc2648673c8be1d011
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:14:01 2010 +0200
Translation update done using Pootle.
commit 91b99472a9b0da8db1e02d70b83da45440ab4af2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:13:48 2010 +0200
Translation update done using Pootle.
commit 459fd4cc486fd1757e7cc30930450ae371907dc2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:13:27 2010 +0200
Translation update done using Pootle.
commit c6f11dd6d4b30a81111d5de2bb2e704f4edc7e0e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:13:03 2010 +0200
Translation update done using Pootle.
commit 3d00ff9f61acd1bb3a46ba872c2431adf81aab4d
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:13:01 2010 +0200
Translation update done using Pootle.
commit cfd24fafadc7311bd358b9a6f583cdf5028cfe0b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:12:44 2010 +0200
Translation update done using Pootle.
commit 24db49e269ba2abd72d1201c678b185ee2f0d72e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:12:34 2010 +0200
Translation update done using Pootle.
commit 3e72ecb36ad784b75eb5e5de8f63619a37d08eef
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:12:28 2010 +0200
Translation update done using Pootle.
commit 9daf8e09a09f5a5f8fd5154fe44e8c8bea2965c8
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:12:25 2010 +0200
Translation update done using Pootle.
commit 1034f77dfc06a3aa8a0817bbb255466e826cc654
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:12:20 2010 +0200
Translation update done using Pootle.
commit 2d8311a8a89b65810dab4d0fdb4d27bc0047c7a9
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:12:07 2010 +0200
Translation update done using Pootle.
commit c8204afdba1bc0555aca3106b0425ce5b8677923
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:11:49 2010 +0200
Translation update done using Pootle.
commit ce84d869d42db8fedd4366e7e30ea3feb2671739
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:11:30 2010 +0200
Translation update done using Pootle.
commit ad635b3c3cad334e4b544d5ad74765d11512b4b1
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:11:04 2010 +0200
Translation update done using Pootle.
commit 2b744c12bb7056f22b19bc6ff53a30f9620f168a
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:10:34 2010 +0200
Translation update done using Pootle.
commit 2f9465c2d178b774f745b752535a44075d52d082
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:09:33 2010 +0200
Translation update done using Pootle.
commit 3f10da37ee0804eca086594e6ebd8b622f3bfc39
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:09:10 2010 +0200
Translation update done using Pootle.
commit edbbc1a9346af46f8aed2fbc3710810e0256067b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:08:42 2010 +0200
Translation update done using Pootle.
commit c5a61c764eb84f2a45f3ff3149b0aa9bbd28639a
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:07:48 2010 +0200
Translation update done using Pootle.
commit 0ab6f62e9a2af7dca8c54ca887def99637ccfafb
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:07:23 2010 +0200
Translation update done using Pootle.
commit 6ad600dae716b6992d60b537a58bed9f733f952e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:07:00 2010 +0200
Translation update done using Pootle.
commit 2b4650d2fdd5b65ed65a2b2a68806f0221401dc6
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:05:44 2010 +0200
Translation update done using Pootle.
commit 13f98b7288c6ab01d16852e8391ef9f5c804e7b9
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:04:55 2010 +0200
Translation update done using Pootle.
commit e755d6ff4bcd068d9c478a10504752f845ac7d1f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:04:05 2010 +0200
Translation update done using Pootle.
commit 498d83306ac10f749b9a5b0214c7dd054b3f7c9e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:03:39 2010 +0200
Translation update done using Pootle.
commit 55396e92b9acc5174057c20d51afec6b970569cf
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:03:06 2010 +0200
Translation update done using Pootle.
commit 29cf3268c5d9809de9fbf267eb4dd7ce9dc16566
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:02:49 2010 +0200
Translation update done using Pootle.
commit 5d4a65cac89f2caf9436975df756a61701893b91
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:02:23 2010 +0200
Translation update done using Pootle.
commit d0b58746324819c96524f1b1ebdebfd5df1c3177
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:01:38 2010 +0200
Translation update done using Pootle.
commit 801f9868d4048027e3bb28f9af706551f483a43b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:01:16 2010 +0200
Translation update done using Pootle.
commit 29e22e325389ec30a648b6a2329c793a784b4eef
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:00:52 2010 +0200
Translation update done using Pootle.
commit 91565cd347d745ebbb73f3bb59ba38b57269f8ab
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 07:00:15 2010 +0200
Translation update done using Pootle.
commit 79714a1cb688b61f561929106906b040392ad973
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:59:17 2010 +0200
Translation update done using Pootle.
commit c026c442880c57a2c2cd0ec353f6343b799ce515
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:58:35 2010 +0200
Translation update done using Pootle.
commit bc18b9f78f46c69a423f7c36a2240f44f2ea7133
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:58:03 2010 +0200
Translation update done using Pootle.
commit 32cc41a6a4ef6b780785c7e9ccf5e62ef54fae7c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:57:32 2010 +0200
Translation update done using Pootle.
commit 8d12b8234cdfaa29d5839b3fee5d35acfc3baaed
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:56:56 2010 +0200
Translation update done using Pootle.
commit 8489b9284727976b84278e0885d3ba8f080407e5
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:54:24 2010 +0200
Translation update done using Pootle.
commit 2f8583e8d3e56b94a922ad19195287b601bfeb89
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:48:48 2010 +0200
Translation update done using Pootle.
commit 22cfe79b5ee9f2a876485c3f56c86dde8aec2a98
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:46:23 2010 +0200
Translation update done using Pootle.
commit f151271e7379e9a7ff19214ec2acc4369996132b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:45:06 2010 +0200
Translation update done using Pootle.
commit 4446afb79dce6f0ea9cbd4a3ce783fc386c34c20
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:44:41 2010 +0200
Translation update done using Pootle.
commit 95d744ce1792a4aeb733f27107b926c931ab6d77
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:44:04 2010 +0200
Translation update done using Pootle.
commit 6a37637762545f976477e0bbc70d6e8da2fda73b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:43:56 2010 +0200
Translation update done using Pootle.
commit f405f82a7a579523c93f431656777a3c2aa85d16
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:42:32 2010 +0200
Translation update done using Pootle.
commit 2b3b57f9ceea3d9bce418040165a153a0bdb06de
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:40:23 2010 +0200
Translation update done using Pootle.
commit f1528cf8a638679025bc3298b58f21343139a44f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Tue May 18 06:37:03 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/hi.po | 229 ++++++++++++++++++++++++++++++--------------------------------
po/nb.po | 28 ++------
2 files changed, 118 insertions(+), 139 deletions(-)
diff --git a/po/hi.po b/po/hi.po
index 2a36ab1..b5a7c70 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-05-17 05:52+0200\n"
+"PO-Revision-Date: 2010-05-18 08:19+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
+"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -766,7 +766,7 @@ msgstr "टेबल का विश्लेषण करें"
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
#: tbl_row_action.php:59
msgid "Export"
-msgstr "एक्सपोर्ट"
+msgstr "निर्यात"
#: db_tracking.php:66 libraries/messages.inc.php:1147
msgid "Tracked tables"
@@ -902,11 +902,15 @@ msgid ""
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
msgstr ""
+"कोई डेटा आयात करने के लिए प्राप्त नहीं किया गया. या तो कोई फ़ाइल नाम "
+"प्रस्तुत नहीं किया गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति "
+"आकार के पार हो गई है. [a @. \"Documentation.html # @ faq1_16 प्रलेखन] अकसर "
+"किये गए सवाल 1.16 [/ a] देखें."
#: import.php:372 libraries/display_import.lib.php:24
#: libraries/messages.inc.php:121
msgid "Could not load import plugins, please check your installation!"
-msgstr ""
+msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें."
#: import.php:397 libraries/messages.inc.php:98
msgid "The bookmark has been deleted."
@@ -914,7 +918,7 @@ msgstr "यह बुकमार्क हटा दिया गया है"
#: import.php:401 libraries/messages.inc.php:875
msgid "Showing bookmark"
-msgstr ""
+msgstr "बुकमार्क प्रदर्शित किया जा रहा है."
#: import.php:403 libraries/messages.inc.php:97 sql.php:626
#, php-format
@@ -924,23 +928,27 @@ msgstr "बुकमार्क %s बनाया"
#: import.php:409 import.php:415 libraries/messages.inc.php:403
#, php-format
msgid "Import has been successfully finished, %d queries executed."
-msgstr ""
+msgstr "आयात सफलतापूर्वक समाप्त हो गया है,% d कुएरी चलाई गयी हैं."
#: import.php:424 libraries/messages.inc.php:1103
msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
msgstr ""
+"स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए वही फाइल फिर से "
+"जमा करें."
#: import.php:426 libraries/messages.inc.php:1102
msgid ""
"However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+"पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php "
+"समय सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है."
#: index.php:190 libraries/messages.inc.php:549
msgid "phpMyAdmin is more friendly with a <b>frames-capable</b> browser."
-msgstr ""
+msgstr "phpMyAdmin <b>तख़्त-सक्षम</b> ब्रोव्सेर के लिए ज्यादा दोस्ताना है."
#: js/messages.php:25 libraries/messages.inc.php:151
#: server_synchronize.php:345 server_synchronize.php:357
@@ -948,16 +956,16 @@ msgstr ""
#: server_synchronize.php:739 server_synchronize.php:767
#: server_synchronize.php:795 server_synchronize.php:807
msgid "Click to select"
-msgstr ""
+msgstr "चयन करने के लिए क्लिक करें."
#: js/messages.php:26 libraries/messages.inc.php:152
msgid "Click to unselect"
-msgstr ""
+msgstr "रद्द करने के लिए क्लिक करें."
#: js/messages.php:27 libraries/import.lib.php:103
#: libraries/messages.inc.php:546 sql.php:89
msgid "\"DROP DATABASE\" statements are disabled."
-msgstr ""
+msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
#: js/messages.php:30 libraries/messages.inc.php:266
#: libraries/mult_submits.inc.php:258 sql.php:188
@@ -967,7 +975,7 @@ msgstr "क्या आप सचमुच चाहते है की"
#: js/messages.php:31 libraries/messages.inc.php:267
#: libraries/mult_submits.inc.php:258 sql.php:172
msgid "You are about to DESTROY a complete database!"
-msgstr ""
+msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
#: js/messages.php:34 libraries/messages.inc.php:90
msgid "You are about to DISABLE a BLOB Repository!"
@@ -980,7 +988,7 @@ msgstr "क्या आप वाकई %s दाताबेस के सा
#: js/messages.php:38 libraries/messages.inc.php:338
msgid "Missing value in the form!"
-msgstr ""
+msgstr "फॉर्म में मूल्य गूम हैं."
#: js/messages.php:39 libraries/messages.inc.php:566
msgid "This is not a number!"
@@ -988,21 +996,21 @@ msgstr "यह नंबर नहीं है!"
#: js/messages.php:42 libraries/messages.inc.php:376
msgid "The host name is empty!"
-msgstr "होस्ट का नाम (hostname) खाली है!"
+msgstr "मेज़बान का नाम (hostname) खाली है!"
#: js/messages.php:43 libraries/messages.inc.php:1204
msgid "The user name is empty!"
-msgstr "यूसरनेम खाली है!"
+msgstr "उपयोगकर्ता नाम खाली है!"
#: js/messages.php:44 libraries/messages.inc.php:603
#: server_privileges.php:1197 user_password.php:70
msgid "The password is empty!"
-msgstr ""
+msgstr "पासवर्ड खाली है"
#: js/messages.php:45 libraries/messages.inc.php:605
#: server_privileges.php:1195 user_password.php:73
msgid "The passwords aren't the same!"
-msgstr ""
+msgstr "पासवर्ड मिलते झूलते नहीं हैं."
#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342
#: pmd_general.php:379
@@ -1011,69 +1019,69 @@ msgstr "रद्द"
#: js/messages.php:52 libraries/messages.inc.php:510 pmd_save_pos.php:54
msgid "Modifications have been saved"
-msgstr ""
+msgstr "संशोधनों को बचाया गया है"
#: js/messages.php:53 libraries/messages.inc.php:737 pmd_relation_upd.php:49
msgid "Relation deleted"
-msgstr ""
+msgstr "रिश्ते को नष्ट कर दिया"
#: js/messages.php:54 libraries/messages.inc.php:336 pmd_relation_new.php:64
msgid "FOREIGN KEY relation added"
-msgstr ""
+msgstr "विदेशी कुंजी रिश्ता जोड़ा."
#: js/messages.php:55 libraries/messages.inc.php:430 pmd_relation_new.php:86
msgid "Internal relation added"
-msgstr ""
+msgstr "आंतरिक संबंध जोड़ा."
#: js/messages.php:56 libraries/messages.inc.php:295 pmd_relation_new.php:63
#: pmd_relation_new.php:88
msgid "Error: Relation not added."
-msgstr ""
+msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया."
#: js/messages.php:57 libraries/messages.inc.php:296 pmd_relation_new.php:31
msgid "Error: relation already exists."
-msgstr ""
+msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है. "
#: js/messages.php:58 libraries/messages.inc.php:298
msgid "Error saving coordinates for Designer."
-msgstr ""
+msgstr "डिजाइनर के लिए निर्देशांक बचाने में त्रुटि आ रही है"
#: js/messages.php:59 libraries/messages.inc.php:347
#: libraries/relation.lib.php:107 libraries/relation.lib.php:119
msgid "General relation features"
-msgstr ""
+msgstr "सामान्य सुविधाओं के संबंध"
#: js/messages.php:59 libraries/messages.inc.php:256
#: libraries/relation.lib.php:101 libraries/relation.lib.php:108
msgid "Disabled"
-msgstr ""
+msgstr "अक्षम"
#: js/messages.php:60 libraries/messages.inc.php:846
msgid "Select referenced key"
-msgstr ""
+msgstr "संदर्भित कुंजी का चयन करें."
#: js/messages.php:61 libraries/messages.inc.php:844
msgid "Select Foreign Key"
-msgstr ""
+msgstr "विदेश कुंजी का चयन करें."
#: js/messages.php:62 libraries/messages.inc.php:649
msgid "Please select the primary key or a unique key"
-msgstr ""
+msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77
#: tbl_relation.php:548
msgid "Choose field to display"
-msgstr ""
+msgstr "क्षेत्र प्रदर्शित करने के लिए चयन करें."
#. l10n: Display text for calendar close link
#: js/messages.php:73
msgid "Done"
-msgstr ""
+msgstr "किया"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:75
msgid "Prev"
-msgstr ""
+msgstr "पिछला"
#. l10n: Display text for next month link in calendar
#: js/messages.php:77 libraries/common.lib.php:2344
@@ -1086,26 +1094,23 @@ msgstr " अगला"
#. l10n: Display text for current month link in calendar
#: js/messages.php:79
msgid "Today"
-msgstr ""
+msgstr "आज"
#: js/messages.php:82
-#, fuzzy
#| msgid "Binary"
msgid "January"
-msgstr "बइनरी"
+msgstr "जनवरी"
#: js/messages.php:83
msgid "February"
-msgstr ""
+msgstr "फरवरी"
#: js/messages.php:84
-#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "मार्च"
#: js/messages.php:85
-#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "अप्रैल"
@@ -1115,40 +1120,36 @@ msgid "May"
msgstr "मई"
#: js/messages.php:87
-#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "जून"
#: js/messages.php:88
-#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "जुलाई"
#: js/messages.php:89
-#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "अगस्त"
#: js/messages.php:90
msgid "September"
-msgstr ""
+msgstr "सितम्बर"
#: js/messages.php:91
-#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "अक्तूबर"
#: js/messages.php:92
msgid "November"
-msgstr ""
+msgstr "नवम्बर"
#: js/messages.php:93
msgid "December"
-msgstr ""
+msgstr "दिसम्बर"
#. l10n: Short month name
#: js/messages.php:97 libraries/common.lib.php:1555
@@ -1172,7 +1173,6 @@ msgstr "अप्रैल"
#. l10n: Short month name
#: js/messages.php:105 libraries/common.lib.php:1563
-#, fuzzy
#| msgid "May"
msgctxt "Short month name"
msgid "May"
@@ -1214,40 +1214,36 @@ msgid "Dec"
msgstr "दिसमबर"
#: js/messages.php:122
-#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "रविवार"
#: js/messages.php:123
-#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "सोमवार"
#: js/messages.php:124
-#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "मन्गलवार"
#: js/messages.php:125
msgid "Wednesday"
-msgstr ""
+msgstr "बुधवार"
#: js/messages.php:126
msgid "Thursday"
-msgstr ""
+msgstr "गुरूवार"
#: js/messages.php:127
-#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "शुक्रवार"
#: js/messages.php:128
msgid "Saturday"
-msgstr ""
+msgstr "शनिवार"
#. l10n: Short week day name
#: js/messages.php:132 libraries/common.lib.php:1580
@@ -1286,49 +1282,42 @@ msgstr "शनिवार"
#. l10n: Minimal week day name
#: js/messages.php:148
-#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
#: js/messages.php:150
-#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
#: js/messages.php:152
-#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
#: js/messages.php:154
-#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
#: js/messages.php:156
-#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
#: js/messages.php:158
-#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
#: js/messages.php:160
-#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "शनिवार"
@@ -1336,93 +1325,97 @@ msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:162
msgid "Wk"
-msgstr ""
+msgstr "हफ्ता"
#: js/messages.php:164
msgid "Hour"
-msgstr ""
+msgstr "घंटा"
#: js/messages.php:165
msgid "Minute"
-msgstr ""
+msgstr "मिनट"
#: js/messages.php:166
msgid "Second"
-msgstr ""
+msgstr "सेकंड"
#: libraries/Config.class.php:1015 libraries/messages.inc.php:334
msgid "Font size"
-msgstr ""
+msgstr "फ़ॉन्ट का आकार"
#: libraries/File.class.php:344 libraries/File.class.php:432
#: libraries/File.class.php:569 libraries/File.class.php:708
#: libraries/messages.inc.php:1197
msgid "Unknown error in file upload."
-msgstr ""
+msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
#: libraries/File.class.php:414 libraries/messages.inc.php:1194
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
+msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
#: libraries/File.class.php:417 libraries/messages.inc.php:1193
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
+"अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक "
+"है."
#: libraries/File.class.php:420 libraries/messages.inc.php:1196
msgid "The uploaded file was only partially uploaded."
-msgstr ""
+msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
#: libraries/File.class.php:423 libraries/messages.inc.php:1195
msgid "Missing a temporary folder."
-msgstr ""
+msgstr "एक अस्थायी फ़ोल्डर गुम है."
#: libraries/File.class.php:426 libraries/messages.inc.php:1191
msgid "Failed to write file to disk."
-msgstr ""
+msgstr "डिस्क में फ़ाइल लिखने में असफल"
#: libraries/File.class.php:429 libraries/messages.inc.php:1192
msgid "File upload stopped by extension."
-msgstr ""
+msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
#: libraries/File.class.php:908 libraries/messages.inc.php:315
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
+"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
+"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
#: libraries/Index.class.php:428 libraries/messages.inc.php:550
#: tbl_relation.php:529
msgid "No index defined!"
-msgstr ""
+msgstr "परिभाषित सूचकांक नहीं पाए गए!"
#: libraries/Index.class.php:433 libraries/messages.inc.php:407
#: server_databases.php:132 tbl_tracking.php:316
msgid "Indexes"
-msgstr ""
+msgstr "सूचकांक"
#: libraries/Index.class.php:444 libraries/messages.inc.php:1182
#: libraries/mult_submits.inc.php:103 libraries/tbl_properties.inc.php:519
#: tbl_structure.php:33 tbl_structure.php:155 tbl_structure.php:159
#: tbl_structure.php:475 tbl_tracking.php:322
msgid "Unique"
-msgstr ""
+msgstr "अद्वितीय"
#: libraries/Index.class.php:445 libraries/messages.inc.php:592
#: tbl_tracking.php:323
msgid "Packed"
-msgstr ""
+msgstr "जमा"
#: libraries/Index.class.php:447 libraries/messages.inc.php:127
#: tbl_tracking.php:325
msgid "Cardinality"
-msgstr ""
+msgstr "प्रमुखता"
#: libraries/Index.class.php:450 libraries/messages.inc.php:158
#: tbl_tracking.php:279 tbl_tracking.php:328
msgid "Comment"
-msgstr ""
+msgstr "टिप्पणी"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
@@ -1431,23 +1424,23 @@ msgstr ""
#: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352
#: tbl_row_action.php:69
msgid "Edit"
-msgstr "एडिट"
+msgstr "सम्पादन"
#: libraries/Index.class.php:472 libraries/messages.inc.php:662
msgid "The primary key has been dropped"
-msgstr ""
+msgstr "प्राथमिक कुंजी गिरा दी गयी है"
#: libraries/Index.class.php:476 libraries/messages.inc.php:409
#, php-format
msgid "Index %s has been dropped"
-msgstr ""
+msgstr "सूचकांक %s गिरा दिया गया है"
#: libraries/Index.class.php:576 libraries/messages.inc.php:408
#, php-format
msgid ""
"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
"removed."
-msgstr ""
+msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214
#: libraries/server_links.inc.php:41 server_databases.php:88
@@ -1461,13 +1454,13 @@ msgstr " डाटाबेस"
#: pdf_schema.php:32 pdf_schema.php:232 tbl_change.php:1027
#: tbl_operations.php:213 tbl_relation.php:290 view_operations.php:62
msgid "Error"
-msgstr "गल्ती"
+msgstr "त्रुटि"
#: libraries/Message.class.php:282
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
-msgstr[0] "एकवचन%1$d रोव प्रभावित"
+msgstr[0] "एकवचन %1$d रोव प्रभावित"
msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
#: libraries/Message.class.php:301
@@ -1487,78 +1480,78 @@ msgstr[1] "बहुवचन%1$d रोवस डाला"
#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545
msgid ""
"There is no detailed status information available for this storage engine."
-msgstr ""
+msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है."
#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287
-#, php-format
+#, php-format, fuzzy
msgid "%s is available on this MySQL server."
-msgstr ""
+msgstr "%s इस MySQL सर्वर पर उपलब्ध है."
#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288
#, php-format
msgid "%s has been disabled for this MySQL server."
-msgstr ""
+msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है."
#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290
#, php-format
msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
+msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
#: libraries/Table.class.php:1019 libraries/messages.inc.php:439
msgid "Invalid database"
-msgstr ""
+msgstr "अमान्य डेटाबेस"
#: libraries/Table.class.php:1033 libraries/messages.inc.php:446
#: tbl_get_field.php:26
msgid "Invalid table name"
-msgstr ""
+msgstr "अवैध तालिका नाम"
#: libraries/Table.class.php:1048 libraries/messages.inc.php:297
#, php-format
msgid "Error renaming table %1$s to %2$s"
-msgstr ""
+msgstr "तालिका का नाम %1$s से %2$s में बदलने में त्रुटि."
#: libraries/Table.class.php:1132 libraries/messages.inc.php:750
#, php-format
msgid "Table %s has been renamed to %s"
-msgstr ""
+msgstr "तालिका %s का नाम बदल कर %s रखा गया है."
#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095
#, php-format
msgid "No valid image path for theme %s found!"
-msgstr ""
+msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093
msgid "No preview available."
-msgstr ""
+msgstr "पूर्वावलोकन उपलब्ध नहीं."
#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085
msgid "take it"
-msgstr ""
+msgstr "इसे ले लो"
#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092
#, php-format
msgid "Default theme %s not found!"
-msgstr ""
+msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!"
#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094
#, php-format
msgid "Theme %s not found!"
-msgstr ""
+msgstr "विषयवस्तु %s नहीं मिला है!"
#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096
#, php-format
msgid "Theme path not found for theme %s!"
-msgstr ""
+msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097
#: test/theme.php:161 themes.php:21 themes.php:41
msgid "Theme / Style"
-msgstr ""
+msgstr "थीम/शैली "
#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168
msgid "Cannot connect: invalid settings."
-msgstr ""
+msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं"
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
@@ -1573,8 +1566,8 @@ msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
-"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
-"$s का उपयोग करें."
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup "
+"script%2$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -1583,9 +1576,10 @@ msgid ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
msgstr ""
-"phpMyAdmin ने सर्वर से कोन्नेक्ट करने की कोशिश की है पर सर्वर ने उसे अस्वीकार किया है. आप "
-"अपने मेजबान विन्यास में, उपयोगकर्ता नाम और पासवर्ड की जाँच करें और इत्मीनान कर ले की ये "
-"उपयोगकरता नाम और पासवर्ड MySQL सर्वर के व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं."
+"phpMyAdmin ने सर्वर से कोन्नेक्ट करने की कोशिश की है पर सर्वर ने उसे "
+"अस्वीकार किया है. आप अपने मेजबान विन्यास में, उपयोगकर्ता नाम और पासवर्ड की "
+"जाँच करें और इत्मीनान कर ले की ये उपयोगकरता नाम और पासवर्ड MySQL सर्वर के "
+"व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं."
#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484
msgid "Log in"
@@ -1596,20 +1590,20 @@ msgstr "लोगिन"
#: libraries/navigation_header.inc.php:93
#: libraries/navigation_header.inc.php:95
msgid "phpMyAdmin documentation"
-msgstr "phpMyAdmin डोक्युमेंटेशन"
+msgstr "phpMyAdmin दस्तावेज़ीकरण"
#: libraries/auth/cookie.auth.lib.php:258
#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488
msgid "You can enter hostname/IP address and port separated by space."
-msgstr ""
+msgstr "आप होस्टनाम / आईपी पता और पोर्ट स्पचे से अलग कर के दाल सकते हैं."
#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489
msgid "Server:"
-msgstr ""
+msgstr "सर्वर:"
#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490
msgid "Username:"
-msgstr "यूसरनेम:"
+msgstr "उपयोक्तानाम:"
#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487
msgid "Password:"
@@ -1617,56 +1611,57 @@ msgstr "पासव्रड:"
#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850
msgid "Server Choice"
-msgstr "Server चुनिये"
+msgstr "सर्वर चुनिये"
#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59
#: libraries/messages.inc.php:173
msgid "Cookies must be enabled past this point."
-msgstr ""
+msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए."
#: libraries/auth/cookie.auth.lib.php:671
#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
+"पासवर्ड के बिना लॉग इन विन्यास से मना किया गया है (AllowNoPassword देखें)."
#: libraries/auth/cookie.auth.lib.php:675
#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540
#, php-format
msgid "No activity within %s seconds; please log in again"
-msgstr ""
+msgstr "%s सेकंड के भीतर कोई गतिविधि नहीं है. कृपया फिर से लोगिन करें."
#: libraries/auth/cookie.auth.lib.php:685
#: libraries/auth/cookie.auth.lib.php:687
#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122
msgid "Cannot log in to the MySQL server"
-msgstr ""
+msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते"
#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241
msgid "Wrong username/password. Access denied."
-msgstr "यूसरनेम/पासवर्ड गलत है। Access denied."
+msgstr "यूसरनेम/पासवर्ड गलत है। प्रवेश निषेध"
#: libraries/auth/swekey/swekey.auth.lib.php:118
#: libraries/messages.inc.php:1053
#, php-format
msgid "File %s does not contain any key id"
-msgstr ""
+msgstr "%s फाइल में कोई भी प्रमुख आईडी नहीं है"
#: libraries/auth/swekey/swekey.auth.lib.php:157
#: libraries/auth/swekey/swekey.auth.lib.php:180
#: libraries/messages.inc.php:1052
msgid "Hardware authentication failed"
-msgstr ""
+msgstr "हार्डवेयर प्रमाणीकरण असफल"
#: libraries/auth/swekey/swekey.auth.lib.php:166
#: libraries/messages.inc.php:1054
msgid "No valid authentication key plugged"
-msgstr ""
+msgstr "कोई वैध प्रमाणीकरण कुंजी नहीं पाई गई."
#: libraries/auth/swekey/swekey.auth.lib.php:202
#: libraries/messages.inc.php:1051
msgid "Authenticating..."
-msgstr ""
+msgstr "सत्यापन."
#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226
msgid "View image"
diff --git a/po/nb.po b/po/nb.po
index 9c8d9ef..73b2b78 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-17 11:36+0200\n"
-"PO-Revision-Date: 2010-05-11 08:13+0200\n"
+"PO-Revision-Date: 2010-05-18 10:59+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -2942,12 +2942,13 @@ msgid "PHP array"
msgstr "PHP array"
#: libraries/export/sql.php:29
-#, fuzzy
#| msgid "Add custom comment into header (\\n splits lines)"
msgid ""
"Add custom comment into header (\n"
" splits lines)"
-msgstr "Legg til egen kommentar i hodet (\\n lager linjeskift)"
+msgstr ""
+"Legg til egen kommentar i hodet (\n"
+" lager linjeskift)"
#: libraries/export/sql.php:32 libraries/messages.inc.php:283
msgid "Enclose export in a transaction"
@@ -3236,10 +3237,9 @@ msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importer prosenter som ekte desimaler (12.00% til .12)"
#: libraries/import/ods.php:28
-#, fuzzy
#| msgid "Import currencies ($5.00 to 5.00)"
msgid "Import currencies (.00 to 5.00)"
-msgstr "Importer valuta ($5.00 til 5.00)"
+msgstr "Importer valuta (.00 til 5.00)"
#: libraries/import/sql.php:42 libraries/messages.inc.php:264
msgid "Do not use AUTO_INCREMENT for zero values"
@@ -8670,19 +8670,3 @@ msgstr "Lag en indeks på %s kolonner"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Beskrivelse"
-
-#, fuzzy
-#~| msgid ""
-#~| "However on last run no data has been parsed, this usually means "
-#~| "phpMyAdmin won't be able to finish this import unless you increase php "
-#~| "time limits."
-#~ msgid ""
-#~ "However on last run no data has been parsed, this usually means "
-#~ "phpMyAdmin won"
-#~ msgstr ""
-#~ "Men under den siste kjøringen så ble ingen data lest, dette betyr "
-#~ "vanligvis at phpMyAdmin ikke vil være istand til å fullføre importeringen "
-#~ "uten at du øker php tidsgrensen."
-
-#~ msgid "encoding conversion"
-#~ msgstr "kodingskonvertering"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3400-gdd84588
by Marc Delisle 17 May '10
by Marc Delisle 17 May '10
17 May '10
The branch, master has been updated
via dd845888f8aa6b6f725d7342f84abbc552346bd7 (commit)
from d7181d6911f4e2c32bcccaa7ddb69b1f5df7559e (commit)
- Log -----------------------------------------------------------------
commit dd845888f8aa6b6f725d7342f84abbc552346bd7
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon May 17 12:53:26 2010 -0400
not really an old-style message
-----------------------------------------------------------------------
Summary of changes:
test/PMA_headerLocation_test.php | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/test/PMA_headerLocation_test.php b/test/PMA_headerLocation_test.php
index 7dabfc1..7626906 100644
--- a/test/PMA_headerLocation_test.php
+++ b/test/PMA_headerLocation_test.php
@@ -248,8 +248,6 @@ class PMA_headerLocation_test extends PHPUnit_Extensions_OutputTestCase
// over 600 chars
$testUri = 'http://testurl.com/test.php?testlonguri=over600chars&test=test&test=test&te…';
- $GLOBALS['strGo'] = 'test link';
-
$header = "<html><head><title>- - -</title>\n" .
"<meta http-equiv=\"expires\" content=\"0\">\n" .
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
@@ -264,7 +262,7 @@ class PMA_headerLocation_test extends PHPUnit_Extensions_OutputTestCase
"<body>\n" .
"<script type=\"text/javascript\">\n" .
"//<![CDATA[\n" .
- "document.write('<p><a href=\"" . $testUri . "\">" . $GLOBALS['strGo'] . "</a></p>');\n" .
+ "document.write('<p><a href=\"" . $testUri . "\">" . 'test link' . "</a></p>');\n" .
"//]]>\n" .
"</script></body></html>\n";
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-3399-gd7181d6
by Marc Delisle 17 May '10
by Marc Delisle 17 May '10
17 May '10
The branch, master has been updated
via d7181d6911f4e2c32bcccaa7ddb69b1f5df7559e (commit)
from 0ce31724d60474e86c6d947c590bf63a91c980b8 (commit)
- Log -----------------------------------------------------------------
commit d7181d6911f4e2c32bcccaa7ddb69b1f5df7559e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon May 17 12:42:47 2010 -0400
gettext conversion
-----------------------------------------------------------------------
Summary of changes:
setup/lib/FormDisplay.class.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/setup/lib/FormDisplay.class.php b/setup/lib/FormDisplay.class.php
index f1ee1c3..7b6bfeb 100644
--- a/setup/lib/FormDisplay.class.php
+++ b/setup/lib/FormDisplay.class.php
@@ -455,7 +455,7 @@ class FormDisplay
break;
case 'select':
if (!$this->_validateSelect($_POST[$key], $form->getOptionValueList($system_path))) {
- $this->errors[$work_path][] = $GLOBALS["strSetuperror_incorrect_value"];
+ $this->errors[$work_path][] = __('Incorrect value');
$result = false;
continue;
}
hooks/post-receive
--
phpMyAdmin
1
0