From 268628e5ffe7ed2a74d912a43a6e53db186867c2 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 12:46:51 -0500 Subject: [PATCH 001/732] missing title --- libraries/header.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 33531ea6e..6ce37b82b 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -122,7 +122,7 @@ if (!$GLOBALS['is_ajax_request']) { $GLOBALS['cfg']['DefaultTabDatabase'], PMA_generate_common_url($GLOBALS['db']), $GLOBALS['db'], - '', + __('Database'), 's_tbl.png'); // if the table is being dropped, $_REQUEST['purge'] is set // (it always contains "1") From fff3afc08e73b1fedafec2490f343bcb3dd541be Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Fri, 26 Nov 2010 20:55:58 +0100 Subject: [PATCH 002/732] bug #3115519: Prevent long queries from being shown in confirmation popup --- ChangeLog | 1 + db_search.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 994b4faf2..d9e6a3446 100644 --- a/ChangeLog +++ b/ChangeLog @@ -120,6 +120,7 @@ - bug #3087682 [interface] Do not apply LeftFrameDBSeparator on first character. + rfe #3111455 [interface] Column highlighting and marking in table view + Visual query builder +- bug #3115519 [interface] Prevent long queries from being shown in confirmation popup 3.3.9.0 (not yet released) - bug [doc] Fix references to MySQL doc diff --git a/db_search.php b/db_search.php index 6c87f614b..10a9a1305 100644 --- a/db_search.php +++ b/db_search.php @@ -257,7 +257,7 @@ if (isset($_REQUEST['submit_search'])) { $this_url_params['sql_query'] = $newsearchsqls['delete']; echo '' . PMA_linkOrButton( 'sql.php' . PMA_generate_common_url($this_url_params), - __('Delete'), $newsearchsqls['delete']) . "\n"; + __('Delete'), printf(__('Delete the matches for the "%s" table?'), htmlspecialchars($each_table))) . "\n"; } else { echo ' ' . "\n" From 5467dab20909e17fef854fea1e5c626d119c76b7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 28 Nov 2010 07:40:29 -0500 Subject: [PATCH 003/732] bug #3119884, path not found (in case the kit is English-only) --- libraries/select_lang.lib.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index f1a3725aa..3ed35e4d6 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -343,10 +343,8 @@ function PMA_langList() /* Open the directory */ $handle = @opendir($GLOBALS['lang_path']); + /* This can happen if the kit is English-only */ if ($handle === FALSE) { - trigger_error('phpMyAdmin: path not found: ' - . $GLOBALS['lang_path'] . ', check your language directory.', - E_USER_WARNING); return $result; } @@ -363,7 +361,7 @@ function PMA_langList() } /** - * @global string path to the translations directory + * @global string path to the translations directory; may be absent if the kit is English-only */ $GLOBALS['lang_path'] = './locale/'; From a3ae93f7768cbb4eb91a2473cdce0dc4936407f1 Mon Sep 17 00:00:00 2001 From: garas Date: Sun, 28 Nov 2010 08:12:22 -0500 Subject: [PATCH 004/732] patch #3112792 [navi] Left panel table grouping incorrect --- ChangeLog | 2 ++ navigation.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d9e6a3446..5895330dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -121,6 +121,8 @@ + rfe #3111455 [interface] Column highlighting and marking in table view + Visual query builder - bug #3115519 [interface] Prevent long queries from being shown in confirmation popup +- patch #3112792 [navi] Left panel table grouping incorrect, + thanks to garas - garas 3.3.9.0 (not yet released) - bug [doc] Fix references to MySQL doc diff --git a/navigation.php b/navigation.php index bebdb19d0..a45277c1f 100644 --- a/navigation.php +++ b/navigation.php @@ -606,7 +606,7 @@ function PMA_displayTableList($tables, $visible = false, echo '' . "\n"; } elseif (is_array($table)) { // the table was not grouped because it is the only one with its prefix - if (isset($table['is' . $sep . 'group'])) { + while (isset($table['is' . $sep . 'group'])) { // get the array with the actual table information foreach ($table as $value) { if(is_array($value)) { From 15e3837850c83875ef9eff4c00aea11a9ead6564 Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Sun, 28 Nov 2010 14:44:50 +0100 Subject: [PATCH 005/732] removed quotes from translated string, messed up in JS. And fixed to sprintf. --- db_search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_search.php b/db_search.php index 10a9a1305..3defeb40e 100644 --- a/db_search.php +++ b/db_search.php @@ -257,7 +257,7 @@ if (isset($_REQUEST['submit_search'])) { $this_url_params['sql_query'] = $newsearchsqls['delete']; echo '' . PMA_linkOrButton( 'sql.php' . PMA_generate_common_url($this_url_params), - __('Delete'), printf(__('Delete the matches for the "%s" table?'), htmlspecialchars($each_table))) . "\n"; + __('Delete'), sprintf(__('Delete the matches for the %s table?'), htmlspecialchars($each_table))) . "\n"; } else { echo ' ' . "\n" From 24ada6eeea5c73539ccfc3e804e316d69df83bc9 Mon Sep 17 00:00:00 2001 From: Herman van Rink Date: Sun, 28 Nov 2010 14:59:36 +0100 Subject: [PATCH 006/732] Minor comment updates --- js/functions.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/js/functions.js b/js/functions.js index ef0cf1f63..cba0853a1 100644 --- a/js/functions.js +++ b/js/functions.js @@ -80,7 +80,7 @@ function selectContent( element, lock, only_once ) { } /** - * Displays an confirmation box before to submit a "DROP DATABASE" query. + * Displays a confirmation box before submitting a "DROP DATABASE" query. * This function is called while clicking links * * @param object the link @@ -105,7 +105,7 @@ function confirmLinkDropDB(theLink, theSqlQuery) } // end of the 'confirmLinkDropDB()' function /** - * Displays an confirmation box before to submit a "DROP/DELETE/ALTER" query. + * Displays a confirmation box before to submit a "DROP/DELETE/ALTER" query. * This function is called while clicking links * * @param object the link @@ -135,7 +135,7 @@ function confirmLink(theLink, theSqlQuery) /** - * Displays an confirmation box before doing some action + * Displays a confirmation box before doing some action * * @param object the message to display * @@ -540,7 +540,6 @@ function showDetails(i, update_size, insert_size, remove_size, insert_index, rem * @param img_obj the image object whose source needs to be changed * */ - function change_Image(img_obj) { var relative_path = (img_obj.src).split("themes/"); @@ -571,7 +570,6 @@ function change_Image(img_obj) * @param token the token generated for each PMA form * */ - function ApplySelectedChanges(token) { var div = document.getElementById("list"); @@ -604,8 +602,8 @@ function ApplySelectedChanges(token) } /** -* Displays error message if any text field -* is left empty other than port field. +* Displays an error message if any text field +* is left empty other than the port field. * * @param string the form name * @param object the form @@ -650,8 +648,8 @@ function validateConnection(form_name, form_obj) } /** - * Check if a form's element is empty - * should be + * Check if a form's element is empty. + * An element containing only spaces is also considered empty * * @param object the form * @param string the name of the form field to put the focus on @@ -677,6 +675,7 @@ function emptyCheckTheField(theForm, theFieldName) /** + * Check whether a form field is empty or not * * @param object the form * @param string the name of the form field to put the focus on From 2c215264bdb9047b7443318fe3c89f7425bf6bfd Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:11:49 +0200 Subject: [PATCH 007/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 8dd91c41c..72284ead0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-23 19:43+0200\n" +"PO-Revision-Date: 2010-11-26 19:11+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -6913,7 +6913,7 @@ msgstr "" #: navigation.php:60 navigation.php:61 navigation.php:64 msgid "Reload navigation frame" -msgstr "Recharger le cadre de navigation" +msgstr "Actualiser" #: navigation.php:203 server_databases.php:270 server_synchronize.php:1189 msgid "No databases" From bc16617d9f425401a76ca92ee34bfc77e84f5730 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:12:10 +0200 Subject: [PATCH 008/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 72284ead0..2ef57ca4f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:11+0200\n" +"PO-Revision-Date: 2010-11-26 19:12+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -359,7 +359,7 @@ msgstr "Table" #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:869 msgid "Rows" -msgstr "Enregistrements" +msgstr "Lignes" #: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" From 47a5207ed1693061ec2a55e280fc90c90b96e084 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:12:23 +0200 Subject: [PATCH 009/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 2ef57ca4f..de54a9010 100644 --- a/po/fr.po +++ b/po/fr.po @@ -610,7 +610,7 @@ msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -"Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à %" +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" "sdocumentation%s." #: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138 From 88c80383435cbda3f7a9e4f5f7fd03071da373e3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:12:46 +0200 Subject: [PATCH 010/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index de54a9010..e0ccf7f38 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1494,8 +1494,8 @@ msgstr "Erreur" #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "%1$d enregistrement affecté." -msgstr[1] "%1$d enregistrements affectés." +msgstr[0] "%1$d ligne affectée." +msgstr[1] "%1$d lignes affectées." #: libraries/Message.class.php:300 #, php-format From 5ca0098fb39b546b24945b473fa13309048adfb3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:13:02 +0200 Subject: [PATCH 011/732] Translation update done using Pootle. --- po/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index e0ccf7f38..9e4a6e2d9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:12+0200\n" +"PO-Revision-Date: 2010-11-26 19:13+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -1501,8 +1501,8 @@ msgstr[1] "%1$d lignes affectées." #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d enregistrement supprimé." -msgstr[1] "%1$d enregistrements supprimés." +msgstr[0] "%1$d ligne supprimée." +msgstr[1] "%1$d lignes supprimées." #: libraries/Message.class.php:319 #, php-format From 7536e1bcece2efe2636396000d28349f1c16fb77 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:13:22 +0200 Subject: [PATCH 012/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 9e4a6e2d9..abcde6a84 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1508,8 +1508,8 @@ msgstr[1] "%1$d lignes supprimées." #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d enregistrement inséré." -msgstr[1] "%1$d enregistrements insérés." +msgstr[0] "%1$d ligne insérée." +msgstr[1] "%1$d lignes insérées." #: libraries/StorageEngine.class.php:194 msgid "" From a58703459c6f65910478044f44c8ecd9d6968d40 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:13:33 +0200 Subject: [PATCH 013/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index abcde6a84..385145e63 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2274,7 +2274,7 @@ msgstr "Utilisé quand on clique sur une ligne" #: libraries/config/messages.inc.php:25 msgid "Row marker" -msgstr "Activer le marqueur d'enregistrements" +msgstr "Activer le marqueur de lignes" #: libraries/config/messages.inc.php:26 msgid "Highlight row pointed by the mouse cursor" From f6ca8fe97d1e2227e290dfa4adea9b7316a4f161 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:13:50 +0200 Subject: [PATCH 014/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 385145e63..30770e069 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2278,7 +2278,7 @@ msgstr "Activer le marqueur de lignes" #: libraries/config/messages.inc.php:26 msgid "Highlight row pointed by the mouse cursor" -msgstr "Mettre en surbrillance l'enregistrement sur lequel pointe la souris" +msgstr "Mettre en surbrillance la ligne sur laquelle pointe la souris" #: libraries/config/messages.inc.php:27 msgid "Highlight pointer" From 0cf89d3efa43252c3002268da314e7186790ee5e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:14:05 +0200 Subject: [PATCH 015/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 30770e069..08cbb31bc 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:13+0200\n" +"PO-Revision-Date: 2010-11-26 19:14+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -3093,7 +3093,7 @@ msgstr "Valeur initiale des zones de glissement" #: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" -msgstr "Le nombre d'enregistrements qui peuvent être insérés à la fois." +msgstr "Le nombre de lignes qui peuvent être insérées à la fois." #: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" From f3787646f0fcc4fe5fd6180eff7bea19eac70837 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:14:19 +0200 Subject: [PATCH 016/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 08cbb31bc..d01ad0c97 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3097,7 +3097,7 @@ msgstr "Le nombre de lignes qui peuvent être insérées à la fois." #: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" -msgstr "Nombre d'enregistrements à insérer" +msgstr "Nombre de lignes à insérer" #: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" From 89c5be4d67375d41cd46708e2a4679ef198473b7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:14:31 +0200 Subject: [PATCH 017/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index d01ad0c97..e27a086b6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3307,7 +3307,7 @@ msgstr "" #: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" -msgstr "Nombre maximum d'enregistrements à afficher" +msgstr "Nombre maximum de lignes à afficher" #: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" From 7e29192523037a4815d6ec88762095da5085d556 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:14:39 +0200 Subject: [PATCH 018/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index e27a086b6..4a709abe1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3946,7 +3946,7 @@ msgstr "Devrait-on afficher un bouton «Tout afficher»" #: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" -msgstr "Permettre l'affichage de tous les enregistrements" +msgstr "Permettre l'affichage de toutes les lignes" #: libraries/config/messages.inc.php:437 msgid "" From 52d4c6a2e1b37284f02d6648e08ad05604c60339 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:14:52 +0200 Subject: [PATCH 019/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 4a709abe1..dd6c5cea8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4219,7 +4219,7 @@ msgid "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -"Montre le nombre d'enregistrements affectés par chaque énoncé. Voir " +"Montre le nombre de lignes affectées par chaque énoncé. Voir " "libraries/import.lib.php pour le nombre d'énoncés qu'une requête peut " "comporter." From 1769c2d0d46fca87ef7d9a032f0786f8da7dd106 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:15:02 +0200 Subject: [PATCH 020/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index dd6c5cea8..5e1047b45 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:14+0200\n" +"PO-Revision-Date: 2010-11-26 19:15+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -4518,7 +4518,7 @@ msgstr "Ligne de début:" #: libraries/display_export.lib.php:173 msgid "Dump all rows" -msgstr "Exporter tous les enregistrements" +msgstr "Exporter toutes les lignes" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" From 859f351861091d9e143df62b760405e7237bed36 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:15:11 +0200 Subject: [PATCH 021/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 5e1047b45..8beeca9cc 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4696,7 +4696,7 @@ msgstr "Langue" #: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." -msgstr "%d n'est pas un numéro d'enregistrement valable." +msgstr "%d n'est pas un numéro de ligne valable." #: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" From 55cebca86816928ee33594177194a7ddd47e7a46 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:15:20 +0200 Subject: [PATCH 022/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 8beeca9cc..43e6bf896 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4777,7 +4777,7 @@ msgstr "Transformation" #: libraries/display_tbl.lib.php:1170 libraries/display_tbl.lib.php:1182 msgid "The row has been deleted" -msgstr "L'enregistrement a été effacé" +msgstr "La ligne a été effacée" #: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:2052 #: server_processlist.php:70 tbl_row_action.php:63 From e9bbd19a149e8a74d0f366fcd74cc202eda0645a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:15:27 +0200 Subject: [PATCH 023/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 43e6bf896..718a8b0e7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4790,7 +4790,7 @@ msgstr "dans la requête" #: libraries/display_tbl.lib.php:1948 msgid "Showing rows" -msgstr "Affichage des enregistrements" +msgstr "Affichage des lignes" #: libraries/display_tbl.lib.php:1958 msgid "total" From 9d6a759758fa63185c5a95da1aceb89762bf08cc Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:16:31 +0200 Subject: [PATCH 024/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 718a8b0e7..ddf5eaa6e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:15+0200\n" +"PO-Revision-Date: 2010-11-26 19:16+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -5574,7 +5574,7 @@ msgstr "Généré par" #: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." -msgstr "MySQL n'a retourné aucun enregistrement." +msgstr "MySQL a retourné un résultat vide (aucune ligne)." #: libraries/import.lib.php:1141 msgid "" From 8083816f0bb65d6a72f299f1c87531512dae4f1a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:16:51 +0200 Subject: [PATCH 025/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index ddf5eaa6e..194b212c6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7979,8 +7979,8 @@ msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -"Le nombre d'enregistrements écrits avec INSERT DELAYED pour lesquels une " -"erreur est survenue (probablement un doublon sur la clé)." +"Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " +"survenue (probablement un doublon sur la clé)." #: server_status.php:52 msgid "" From 7cf946cbba473c0d7ba3af14b86164c4b995cc68 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:17:01 +0200 Subject: [PATCH 026/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 194b212c6..06084d34e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:16+0200\n" +"PO-Revision-Date: 2010-11-26 19:17+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -7992,7 +7992,7 @@ msgstr "" #: server_status.php:53 msgid "The number of INSERT DELAYED rows written." -msgstr "Le nombre d'enregistrements écrits via INSERT DELAYED." +msgstr "Le nombre de lignes écrites via INSERT DELAYED." #: server_status.php:54 msgid "The number of executed FLUSH statements." From 86dea2e4069a11e5e58e83e8e86b0c989107289e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:17:15 +0200 Subject: [PATCH 027/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 06084d34e..eaecc8e2e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8004,7 +8004,7 @@ msgstr "Le nombre de commandes COMMIT internes." #: server_status.php:56 msgid "The number of times a row was deleted from a table." -msgstr "Le nombre de fois qu'un enregistrement a été supprimé d'une table." +msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." #: server_status.php:57 msgid "" From 38f4190bbe2510ded288806207d40aab91f5324d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:17:50 +0200 Subject: [PATCH 028/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index eaecc8e2e..37a22c07d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8032,8 +8032,8 @@ msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -"Le nombre de requêtes pour lire un enregistrement via une clé. Si élevé, " -"c'est une bonne indication que vos tables sont correctement indexées." +"Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " +"bonne indication que vos tables sont correctement indexées." #: server_status.php:60 msgid "" From c33a6692d6fce41d4a45039848182cee35056835 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:18:08 +0200 Subject: [PATCH 029/732] Translation update done using Pootle. --- po/fr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fr.po b/po/fr.po index 37a22c07d..288a5a7ff 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:17+0200\n" +"PO-Revision-Date: 2010-11-26 19:18+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -8041,9 +8041,9 @@ msgid "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -"Le nombre de requêtes de lecture du prochain enregistrement, en ordre de " -"clé. Ceci est augmenté si vous interrogez une colonne indexée avec un " -"critère de fourchette ou si vous parcourez l'index." +"Le nombre de requêtes de lecture de la prochaine ligne, en ordre de clé. " +"Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " +"fourchette ou si vous parcourez l'index." #: server_status.php:61 msgid "" From a3d45ffd05498c718c038b49ffc061b383e24e0f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:18:22 +0200 Subject: [PATCH 030/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 288a5a7ff..f1fe570f7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8050,8 +8050,8 @@ msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -"Le nombre de requêtes de lecture de l'enregistrement précédent, en ordre de " -"clé. Utilisé surtout pour optimiser ORDER BY ... DESC." +"Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " +"Utilisé surtout pour optimiser ORDER BY ... DESC." #: server_status.php:62 msgid "" From 2825088bf4114e5b8844c674c0a95471cac8bf2a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:18:37 +0200 Subject: [PATCH 031/732] Translation update done using Pootle. --- po/fr.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/fr.po b/po/fr.po index f1fe570f7..55e02b026 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8060,11 +8060,11 @@ msgid "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." msgstr "" -"Le nombre de requêtes de lecture d'un enregistrement basée sur une position " -"fixe. Ce nombre est élevé si vous faites de nombreuses requêtes qui " -"nécessitent de trier les résultats. Vous avez probablement un grand nombre " -"de requêtes qui demandent à MySQL de parcourir des tables en entier, ou vous " -"avez des jointures qui n'utilisent pas correctement les clés." +"Le nombre de requêtes de lecture d'une ligne basée sur une position fixe. Ce " +"nombre est élevé si vous faites de nombreuses requêtes qui nécessitent de " +"trier les résultats. Vous avez probablement un grand nombre de requêtes qui " +"demandent à MySQL de parcourir des tables en entier, ou vous avez des " +"jointures qui n'utilisent pas correctement les clés." #: server_status.php:63 msgid "" From 97f92f15bf746803ad7df0ce832a0c031d733ed8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:18:54 +0200 Subject: [PATCH 032/732] Translation update done using Pootle. --- po/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index 55e02b026..463de170b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8073,9 +8073,9 @@ msgid "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." msgstr "" -"Le nombre de requêtes de lecture du prochaine enregistrement dans le " -"fichier. Élevé si vous faites plusieurs parcours de tables. Ceci suggère que " -"vos tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " +"Le nombre de requêtes de lecture de la prochaine ligne dans le fichier. " +"Élevé si vous faites plusieurs parcours de tables. Ceci suggère que vos " +"tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." #: server_status.php:64 From bd80140872037c81480ef19d58607029e4d24534 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:19:15 +0200 Subject: [PATCH 033/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 463de170b..44fa59852 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:18+0200\n" +"PO-Revision-Date: 2010-11-26 19:19+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -8084,7 +8084,7 @@ msgstr "Le nombre d'énoncés ROLLBACK internes." #: server_status.php:65 msgid "The number of requests to update a row in a table." -msgstr "Le nombre de requêtes de mise à jour d'enregistrements." +msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." #: server_status.php:66 msgid "The number of requests to insert a row in a table." From 0955320a1f9f9bc1b1e81d65401ee69ba6e06420 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:19:28 +0200 Subject: [PATCH 034/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 44fa59852..102669a3b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8088,7 +8088,7 @@ msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." #: server_status.php:66 msgid "The number of requests to insert a row in a table." -msgstr "Le nombre de requêtes d'insertion d'enregistrements." +msgstr "Le nombre de requêtes d'insertion de lignes dans une table." #: server_status.php:67 msgid "The number of pages containing data (dirty or clean)." From 86404343eb486dff51b55325e104e2bd977f14b6 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:19:55 +0200 Subject: [PATCH 035/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 102669a3b..1a10e8ae3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8294,7 +8294,7 @@ msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." #: server_status.php:106 msgid "The number of rows deleted from InnoDB tables." -msgstr "Le nombre d'enregistrements supprimés des tables InnoDB." +msgstr "Le nombre de lignes supprimées des tables InnoDB." #: server_status.php:107 msgid "The number of rows inserted in InnoDB tables." From 977fd3ff7c6e6dd336185cf7a68a1b0bb8834612 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:20:05 +0200 Subject: [PATCH 036/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 1a10e8ae3..8f0352207 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:19+0200\n" +"PO-Revision-Date: 2010-11-26 19:20+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -8298,7 +8298,7 @@ msgstr "Le nombre de lignes supprimées des tables InnoDB." #: server_status.php:107 msgid "The number of rows inserted in InnoDB tables." -msgstr "Le nombre d'enregistrements insérés dans des tables InnoDB." +msgstr "Le nombre de lignes insérées dans des tables InnoDB." #: server_status.php:108 msgid "The number of rows read from InnoDB tables." From 17dad726b42db4c10561af5f8da61cf6869b11aa Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:20:14 +0200 Subject: [PATCH 037/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 8f0352207..d4a96d2f6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8302,7 +8302,7 @@ msgstr "Le nombre de lignes insérées dans des tables InnoDB." #: server_status.php:108 msgid "The number of rows read from InnoDB tables." -msgstr "Le nombre d'enregistrements lus dans des tables InnoDB." +msgstr "Le nombre de lignes lues dans des tables InnoDB." #: server_status.php:109 msgid "The number of rows updated in InnoDB tables." From f87b3b7336effe6a595370b66988c8159b153b86 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:20:25 +0200 Subject: [PATCH 038/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index d4a96d2f6..7b690db53 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8306,7 +8306,7 @@ msgstr "Le nombre de lignes lues dans des tables InnoDB." #: server_status.php:109 msgid "The number of rows updated in InnoDB tables." -msgstr "Le nombre d'enregistrements mis à jour dans des tables InnoDB." +msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." #: server_status.php:110 msgid "" From 65c6af404e9b3d311969058f5a01cff9b37a8460 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:20:52 +0200 Subject: [PATCH 039/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 7b690db53..7cb3e1f84 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8372,7 +8372,7 @@ msgstr "" #: server_status.php:118 msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Le nombre d'enregistrements en attente d'écriture (INSERT DELAYED)." +msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." #: server_status.php:119 msgid "" From d8cbc69291cdd414852e27120097788be3795229 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:21:16 +0200 Subject: [PATCH 040/732] Translation update done using Pootle. --- po/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index 7cb3e1f84..42f4d09f3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:20+0200\n" +"PO-Revision-Date: 2010-11-26 19:21+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -8467,8 +8467,8 @@ msgid "" "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" "Le nombre de jointures sans clés qui vérifient l'utilisation de clé à chaque " -"enregistrement. (Si ceci est supérieur à 0, vérifiez soigneusement les " -"indexes de vos tables.)" +"ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de " +"vos tables.)" #: server_status.php:136 msgid "" From 6c5f0b9df3dc536864908a555c5ca19bc6a5dc22 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:21:25 +0200 Subject: [PATCH 041/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 42f4d09f3..9f029dd66 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8532,7 +8532,7 @@ msgstr "Le nombre de tri effectués avec des plages." #: server_status.php:145 msgid "The number of sorted rows." -msgstr "Le nombre d'enregistrements triés." +msgstr "Le nombre de lignes triées." #: server_status.php:146 msgid "The number of sorts that were done by scanning the table." From 2dd73eff7b442d9c58ee36d7d4011879693ac496 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:21:34 +0200 Subject: [PATCH 042/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 9f029dd66..e93ff2fb6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8818,7 +8818,7 @@ msgstr "Appliquer des index" #: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" -msgstr "Modifier des enregistrements" +msgstr "Modifier des lignes" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" From dda809ba8e5e3945f61f1b2ec714cd0b8268e099 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:21:41 +0200 Subject: [PATCH 043/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index e93ff2fb6..7dd9d62b0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8822,7 +8822,7 @@ msgstr "Modifier des lignes" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" -msgstr "Insérer des enregistrements" +msgstr "Insérer des lignes" #: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" From d001640a4537e3b5caca2ffc2e04a92795a11d8e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:21:51 +0200 Subject: [PATCH 044/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 7dd9d62b0..663d6d065 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8826,7 +8826,7 @@ msgstr "Insérer des lignes" #: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" -msgstr "Voulez-vous supprimer tous les enregistrements des tables cible ?" +msgstr "Voulez-vous supprimer toutes les lignes des tables cible ?" #: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" From fa402c48f13a251590f4c00b78b37005da3de857 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:22:03 +0200 Subject: [PATCH 045/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 663d6d065..455fd11f0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:21+0200\n" +"PO-Revision-Date: 2010-11-26 19:22+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -9212,7 +9212,7 @@ msgstr "" #: sql.php:569 tbl_replace.php:380 #, php-format msgid "Inserted row id: %1$d" -msgstr "Identifiant de l'enregistrement inséré : %1$d" +msgstr "Identifiant de la ligne insérée : %1$d" #: sql.php:586 msgid "Showing as PHP code" From fa5f1704d16c924e41a1d41b756c5c482da2829c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:22:17 +0200 Subject: [PATCH 046/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 455fd11f0..e421924a6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9269,7 +9269,7 @@ msgstr "Télécharger vers le dépôt BLOB" #: tbl_change.php:1033 msgid "Insert as new row" -msgstr "Sauvegarder un nouvel enregistrement" +msgstr "Sauvegarder une nouvelle ligne" #: tbl_change.php:1034 msgid "Insert as new row and ignore errors" From 86b9ca04edd7885c1810e42c608772a6cd9d2f94 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:22:40 +0200 Subject: [PATCH 047/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index e421924a6..ff5cde60e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9273,7 +9273,7 @@ msgstr "Sauvegarder une nouvelle ligne" #: tbl_change.php:1034 msgid "Insert as new row and ignore errors" -msgstr "Sauvegarder un nouvel enregistrement (ignorer les erreurs)" +msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" #: tbl_change.php:1035 msgid "Show insert query" From 92035e2688a83e263dec96971df1453d57e56cd4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:22:53 +0200 Subject: [PATCH 048/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index ff5cde60e..87280539f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9289,7 +9289,7 @@ msgstr "Retourner à la page précédente" #: tbl_change.php:1051 msgid "Insert another new row" -msgstr "Insérer un nouvel enregistrement" +msgstr "Insérer une nouvelle ligne" #: tbl_change.php:1055 msgid "Go back to this page" From a9763f2e74d033bf0890f75555d32b8b3e64068a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:23:04 +0200 Subject: [PATCH 049/732] Translation update done using Pootle. --- po/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fr.po b/po/fr.po index 87280539f..1c4d3a040 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:22+0200\n" +"PO-Revision-Date: 2010-11-26 19:23+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -9297,7 +9297,7 @@ msgstr "Demeurer sur cette page" #: tbl_change.php:1063 msgid "Edit next row" -msgstr "Modifier l'enregistrement suivant" +msgstr "Modifier la ligne suivante" #: tbl_change.php:1074 msgid "" From 661a5cbf40c8653cebd1e949154de54b8f1f0377 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:23:14 +0200 Subject: [PATCH 050/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 1c4d3a040..4c615a38e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9647,7 +9647,7 @@ msgstr "Contrainte de clé étrangère" #: tbl_row_action.php:28 msgid "No rows selected" -msgstr "Aucun enregistrement n'a été sélectionné" +msgstr "Aucune ligne n'a été sélectionnée" #: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" From 02b8766bd15cf9a0d9dc1cd001f2c081a9aad6db Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Nov 2010 19:23:21 +0200 Subject: [PATCH 051/732] Translation update done using Pootle. --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 4c615a38e..e88d6d162 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9663,7 +9663,7 @@ msgstr "Critères de recherche (pour l'énoncé «where») :" #: tbl_select.php:291 msgid "Number of rows per page" -msgstr "Nombre d'enregistrements par page" +msgstr "Nombre de lignes par page" #: tbl_select.php:297 msgid "Display order:" From eb9624a7e9194f434cf8b5169b26b0d246fbcdd7 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:41:52 +0200 Subject: [PATCH 052/732] Translation update done using Pootle. --- po/fi.po | 509 +------------------------------------------------------ 1 file changed, 5 insertions(+), 504 deletions(-) diff --git a/po/fi.po b/po/fi.po index 2741814bd..bdba78b4b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-04-30 18:08+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-11-26 19:41+0200\n" +"Last-Translator: \n" "Language-Team: finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.1\n" +"X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 #: libraries/display_tbl.lib.php:415 server_privileges.php:1594 @@ -96,7 +96,7 @@ msgstr "Käytä tätä arvoa" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "" +msgstr "BLOB-suoratoistopalvelinta ei ole määritelty." #: bs_disp_as_mime_type.php:35 #, fuzzy @@ -10402,502 +10402,3 @@ msgstr "Nimeä taulu uudelleen" #~ msgid "No tables" #~ msgstr "Ei tauluja" - -#, fuzzy -#~| msgid "CSV" -#~ msgid "SVG" -#~ msgstr "CSV" - -#~ msgid "" -#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#~ "enabled if your web server supports it" -#~ msgstr "" -#~ "Tämä [a@?page=form&formset=features#tab_Security]valinta[/a] tulisi " -#~ "ottaa käyttöön, jos verkkopalvelin tukee sitä" - -#, fuzzy -#~| msgid "" -#~| "Please enter the values for transformation options using this format: " -#~| "'a', 100, b,'c'...
If you ever need to put a backslash (\"\\\") or " -#~| "a single quote (\"'\") amongst those values, precede it with a backslash " -#~| "(for example '\\\\xyz' or 'a\\'b')." -#~ msgid "" -#~ "Enter each value in a separate field, enclosed in single quotes. If you " -#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst " -#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a" -#~ "\\'b')." -#~ msgstr "" -#~ "Syötä muunnosvalinnoille arvot käyttäen tätä muotoa: 'a', 100, b,'c'..." -#~ "
Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä " -#~ "lainausmerkkiä (\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai " -#~ "'a\\'b')." - -#, fuzzy -#~| msgid "" -#~| "Please enter the values for transformation options using this format: " -#~| "'a', 100, b,'c'...
If you ever need to put a backslash (\"\\\") or " -#~| "a single quote (\"'\") amongst those values, precede it with a backslash " -#~| "(for example '\\\\xyz' or 'a\\'b')." -#~ msgid "" -#~ "Enter each value in a separate field. If you ever need to put a backslash " -#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with " -#~ "a backslash (for example '\\\\xyz' or 'a\\'b')." -#~ msgstr "" -#~ "Syötä muunnosvalinnoille arvot käyttäen tätä muotoa: 'a', 100, b,'c'..." -#~ "
Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä " -#~ "lainausmerkkiä (\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai " -#~ "'a\\'b')." - -#, fuzzy -#~ msgid "New table" -#~ msgstr "Ei tauluja" - -#~ msgid "server name" -#~ msgstr "palvelimen nimi" - -#~ msgid "database name" -#~ msgstr "tietokannan nimi" - -#~ msgid "table name" -#~ msgstr "taulun nimi" - -#~ msgid "Edit PDF Pages" -#~ msgstr "Muokkaa PDF-sivuja" - -#~ msgid "Data Dictionary Format" -#~ msgstr "Tietosanaston tallennusmuoto" - -#~ msgid "no" -#~ msgstr "ei" - -#~ msgid "Enter login options for signon authentication" -#~ msgstr "Anna kirjautumistodennuksen kirjautumisasetukset" - -#~ msgid "Signon login options" -#~ msgstr "Kirjautumistodennuksen asetukset" - -#~ msgid "PMA database" -#~ msgstr "PMA-tietokanta" - -#~ msgid "Customization" -#~ msgstr "Mukauttaminen" - -#~ msgid "" -#~ "SQL queries settings, for SQL Query box options see [a@?page=form&" -#~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings" -#~ msgstr "" -#~ "SQL-kyselyjen asetukset; SQL-kyselykentän asetuksia varten katso [a@?" -#~ "page=form&formset=main_frame#tab_Sql_box]navigointikehyksen[/a] " -#~ "asetukset" - -#~ msgid "yes" -#~ msgstr "kyllä" - -#, fuzzy -#~| msgid "Remove CRLF characters within fields" -#~ msgid "Remove carriage return/line field characters within columns" -#~ msgstr "Poista kentistä CRLF-merkit" - -#, fuzzy -#~| msgid "Add AUTO_INCREMENT value" -#~ msgid "AUTO_INCREMENT" -#~ msgstr "Lisää AUTO_INCREMENT-arvo" - -#, fuzzy -#~| msgid "Dump %s row(s) starting at record # %s" -#~ msgid "Dump %s row(s) starting at row # %s" -#~ msgstr "Tee vedos %s rivistä, alkaen riviltä: %s." - -#~ msgid "remember template" -#~ msgstr "muista pohja" - -#~ msgid "\"zipped\"" -#~ msgstr "\"zip-pakattu\"" - -#~ msgid "\"gzipped\"" -#~ msgstr "\"gzip-pakkaus\"" - -#~ msgid "\"bzipped\"" -#~ msgstr "\"bzip-pakkaus\"" - -#~ msgid "Imported file compression will be automatically detected from: %s" -#~ msgstr "Seuraavat tiedostonpakkausmuodot havaitaan automaattisesti: %s" - -#~ msgid "Add into comments" -#~ msgstr "Lisää kommentteihin" - -#~ msgid "Export Structure Schemas (recommended)" -#~ msgstr "Vie rakennekaaviot (suositeltavaa)" - -#~ msgid "Export functions" -#~ msgstr "Vie funktiot" - -#~ msgid "Export procedures" -#~ msgstr "Vie proseduurit" - -#~ msgid "Export triggers" -#~ msgstr "Vie herättimet" - -#~ msgid "Export views" -#~ msgstr "Vie näkymät" - -#~ msgid "Invalid column (%s) specified!" -#~ msgstr "Virheellinen sarake (%s) määritelty!" - -#~ msgid "Actions" -#~ msgstr "Toiminnot" - -#~ msgid "Interface" -#~ msgstr "Käyttöliittymä" - -#, fuzzy -#~| msgid "Table name" -#~ msgid "Table removal" -#~ msgstr "Taulun nimi" - -#~ msgid "BLOB Repository" -#~ msgstr "BLOB-tietokanta" - -#, fuzzy -#~| msgid "Enabled" -#~ msgctxt "BLOB repository" -#~ msgid "Enabled" -#~ msgstr "Päällä" - -#~ msgid "Disable" -#~ msgstr "Poista käytöstä" - -#~ msgid "Damaged" -#~ msgstr "Vioittunut" - -#, fuzzy -#~| msgid "Repair" -#~ msgctxt "BLOB repository" -#~ msgid "Repair" -#~ msgstr "Korjaa" - -#, fuzzy -#~| msgid "Disabled" -#~ msgctxt "BLOB repository" -#~ msgid "Disabled" -#~ msgstr "Pois päältä" - -#~ msgid "Enable" -#~ msgstr "Ota käyttöön" - -#~ msgid "" -#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " -#~ "extension. Please check your PHP configuration." -#~ msgstr "Laajennuksen %s lataus ei onnistu; tarkista PHP:n asetukset" - -#~ msgid "" -#~ "Couldn't load the iconv or recode extension needed for charset " -#~ "conversion. Either configure PHP to enable these extensions or disable " -#~ "charset conversion in phpMyAdmin." -#~ msgstr "" -#~ "Merkistön muunnokseen tarvittavaa iconv- tai recode-laajennusta ei voitu " -#~ "ladata. Muokkaa PHP:n asetuksia ottaen käyttöön nämä laajennukset tai " -#~ "muuta phpMyAdminin asetuksia siinä määrin ettei muunnosta suoriteta." - -#~ msgid "" -#~ "Couldn't use the iconv, libiconv, or recode_string functions, although " -#~ "the necessary extensions appear to be loaded. Check your PHP " -#~ "configuration." -#~ msgstr "" -#~ "Iconv-, libiconv- tai recode_string-funktioita ei voitu käyttää. Tarkista " -#~ "PHP:n asetukset." - -#~ msgid "Allow character set conversion" -#~ msgstr "Salli merkistömuunnos" - -#~ msgid "Default character set used for conversions" -#~ msgstr "Muunnoksissa käytettävä oletusmerkistö" - -#~ msgid "Default character set" -#~ msgstr "Oletusmerkistö" - -#, fuzzy -#~| msgid "Add new field" -#~ msgid "Add field" -#~ msgstr "Lisää sarake" - -#~ msgid "Field" -#~ msgstr "Sarake" - -#~ msgid "Records" -#~ msgstr "Rivit" - -#~ msgid "Fields terminated by" -#~ msgstr "Sarakkeiden erotinmerkki" - -#~ msgid "Fields" -#~ msgstr "Sarakkeet" - -#~ msgid "Add %s field(s)" -#~ msgstr "Lisää %s kenttä(ä)" - -#~ msgid "Field %s has been dropped" -#~ msgstr "Sarake %s on poistettu" - -#~ msgid "See image/jpeg: inline" -#~ msgstr "Katso image/jpeg: inline" - -#, fuzzy -#~| msgid "Add custom comment into header (\\n splits lines)" -#~ msgid "" -#~ "Add custom comment into header (\n" -#~ " splits lines)" -#~ msgstr "Lisää oma kommentti otsikkoon (\\n on rivinvaihto)" - -#~ msgid "and" -#~ msgstr "ja" - -#, fuzzy -#~ msgctxt "$strBLOBRepositoryDisabled" -#~ msgid "Disabled" -#~ msgstr "Ei käytössä" - -#, fuzzy -#~ msgctxt "$strBLOBRepositoryEnabled" -#~ msgid "Enabled" -#~ msgstr "Käytössä" - -#, fuzzy -#~ msgctxt "$strBLOBRepositoryRepair" -#~ msgid "Repair" -#~ msgstr "Korjaa" - -#~ msgid "Calendar" -#~ msgstr "Kalenteri" - -#~ msgid "MySQL 4.0 compatible" -#~ msgstr "MySQL 4.0 -yhteensopiva" - -#~ msgid "Could not load default configuration from: \"%1$s\"" -#~ msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" - -#~ msgid "Create an index on %s columns" -#~ msgstr "Luo  %s:n sarakkeen indeksi" - -#, fuzzy -#~ msgctxt "$strCreateTableShort" -#~ msgid "Create table" -#~ msgstr "Luo taulu" - -#, fuzzy -#~ msgctxt "$strCreateUserDatabaseNone" -#~ msgid "None" -#~ msgstr "Ei mitään" - -#~ msgid "Flush the table (\"FLUSH\")" -#~ msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" - -#~ msgid "Invalid server index: \"%s\"" -#~ msgstr "Virheellinen palvelimen indeksi: \"%s\"" - -#~ msgctxt "$strMIME_description" -#~ msgid "Description" -#~ msgstr "Kuvaus" - -#~ msgctxt "$strNoneDefault" -#~ msgid "None" -#~ msgstr "Ei mikään" - -#~ msgid "Schema of the \"%s\" database - Page %s" -#~ msgstr "Tietokannan \"%s\" kaavio - Sivu %s" - -#~ msgid "The \"%s\" table doesn't exist!" -#~ msgstr "Taulua \"%s\" ei ole!" - -#~ msgid "" -#~ "This MySQL server works as %s in replication process. For further " -#~ "information about replication status on the server, please visit the replication section." -#~ msgstr "" -#~ "MySQL-palvelin toimii %s-tilassa, replikaatio-prosessissa. Hae " -#~ "palvelimen replikaatiotilasta lisää tietoja kohdasta Replikaatio." - -#~ msgid "running on %s" -#~ msgstr "palvelimella %s" - -#~ msgid "The scale factor is too small to fit the schema on one page" -#~ msgstr "Kaavio ei mahdu yhdelle sivulle tässä mittakaavassa" - -#~ msgid "" -#~ "Cannot start session without errors, please check errors given in your " -#~ "PHP and/or webserver log file and configure your PHP installation " -#~ "properly." -#~ msgstr "" -#~ "Istuntoa ei voi aloittaa virheettömästi. Tarkista PHP:n tai " -#~ "verkkopalvelimen lokitiedostojen virheilmoitukset ja määritä PHP-" -#~ "asennuksen asetukset oikein." - -#, 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 "" -#~ "Viimeisellä suorituskerralla ei kuitenkaan jäsennelty mitään tietoja. " -#~ "Tämä tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia " -#~ "loppuun asti ellei PHP:n suoritusaikarajaa nosteta." - -#, fuzzy -#~| msgid "None" -#~ msgctxt "None action" -#~ msgid "None" -#~ msgstr "Ei mitään" - -#, fuzzy -#~| msgid "None" -#~ msgctxt "" -#~ msgid "None" -#~ msgstr "Ei mitään" - -#, fuzzy -#~| msgid "Grant all privileges on wildcard name (username\\_%)" -#~ msgid "Grant all privileges on wildcard name (username_%)" -#~ msgstr "" -#~ "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" - -#, fuzzy -#~| msgid "The \"%s\" table doesn't exist!" -#~ msgid "The %s table doesn" -#~ msgstr "Taulua \"%s\" ei ole!" - -#, fuzzy -#~| msgid "Invalid hostname for server %1$s. Please review your configuration." -#~ msgid "Invalid hostname for server %1. Please review your configuration." -#~ msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." - -#, fuzzy -#~| msgid "Error renaming table %1$s to %2$s" -#~ msgid "Error renaming table %1 to %2" -#~ msgstr "Virhe annettaessa taululle %1$s nimeä %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 "Laajennuksen %s lataus ei onnistu; tarkista PHP:n asetukset" - -#, fuzzy -#~| msgid "" -#~| "This server is not configured as master in a replication process. Would " -#~| "you like to configure it?" -#~ msgid "" -#~ "This server is not configured as master in a replication process. Would " -#~ "you like to configure it?" -#~ msgstr "" -#~ "Tätä palvelinta ei ole määritetty replikaatioprosessin " -#~ "isäntäpalvelimeksi. Haluatko määrittää sen?" - -#, fuzzy -#~| msgid "" -#~| "This server is not configured as slave in a replication process. Would " -#~| "you like to configure it?" -#~ msgid "" -#~ "This server is not configured as slave in a replication process. Would " -#~ "you like to configure it?" -#~ msgstr "" -#~ "Tätä palvelinta ei ole määritetty replikaatioprosessin alipalvelimeksi. " -#~ "Haluatko määrittää sen?" - -#, fuzzy -#~| msgid "Could not connect to MySQL server" -#~ msgid "(or the local MySQL server" -#~ msgstr "MySQL-palvelimeen ei voitu yhdistää" - -#, 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 "" -#~ "Olet ehkä löytänyt SQL-jäsentimestä ohjelmointivirheen. Tarkista " -#~ "käyttämäsi SQL-lause, erityisesti lainausmerkit merkkijonojen alusta ja " -#~ "lopusta. Toinen mahdollinen virheen aiheuttaja on se, että olet " -#~ "siirtämässä tiedostoa, jossa on binääritietoa lainausmerkkien " -#~ "ulkopuolella. Jos mahdollista, kokeile SQL-lausetta suoraan " -#~ "komentoriviltä. MySQL-palvelimen antama virheilmoitus näkyy alla, mikäli " -#~ "palvelin sellaisen antoi. Jos lause toimi komentoriviltä muttei " -#~ "phpMyAdminista, etsi rivi jolla virheilmoitus ilmeni ja lähetä meille " -#~ "ilmoitus virheestä alla olevan koodin kera:" - -#~ msgctxt "$strStrucCSV" -#~ msgid "CSV" -#~ msgstr "CSV-muotoista tietoa" - -#~ msgid "Copy" -#~ msgstr "Kopioi" - -#~ msgid "Delete the users and reload the privileges afterwards." -#~ msgstr "Poista käyttäjät ja lataa käyttöoikeudet sen jälkeen uudelleen." - -#~ msgid "" -#~ "This is the cleanest way, but reloading the privileges may take a while." -#~ msgstr "" -#~ "Tämä on siivoin tapa, mutta käyttöoikeuksien lataaminen uudelleen kestää " -#~ "hetken." - -#~ msgid "has been altered." -#~ msgstr "on muutettu." - -#~ msgid "Internet Explorer does not support this function." -#~ msgstr "Internet Explorer ei tue tätä toimintoa." - -#~ msgid "" -#~ "The "deleted" users will still be able to access the server as " -#~ "usual until the privileges are reloaded." -#~ msgstr "" -#~ ""Poistetut" käyttäjät voivat edelleen käyttää tavalliseen " -#~ "tapaan palvelinta, ellei käyttöoikeuksia ladata uudestaan." - -#~ msgid "Just delete the users from the privilege tables." -#~ msgstr "Poista käyttäjät vain käyttöoikeustauluista." - -#~ msgid "" -#~ "Allows running stored procedures; has no effect in this MySQL version." -#~ msgstr "" -#~ "Sallii talletettujen proseduurien suorittamisen; ei vaikutusta tässä " -#~ "MySQL-palvelimen versiossa." - -#~ msgid "Process list" -#~ msgstr "Prosessiluettelo" - -#~ msgid "" -#~ "The users will still have the USAGE privilege until the privileges are " -#~ "reloaded." -#~ msgstr "" -#~ "Käyttäjillä on USAGE-käyttöoikeus, kunnes käyttöoikeudet ladataan " -#~ "uudelleen." - -#~ msgid "Native MS Excel format" -#~ msgstr "Natiivi MS Excel -muoto" - -#~ msgid "Alter index(s)" -#~ msgstr "Muuta indeksiä/indeksejä" - -#~ msgid "Tracking Mechanism" -#~ msgstr "Seurantamekanismi" From 320c1b9b7a01b1fcb3cbd993221d3a1bcf1e7ac0 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:42:39 +0200 Subject: [PATCH 053/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index bdba78b4b..f4a68e175 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:41+0200\n" +"PO-Revision-Date: 2010-11-26 19:42+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -271,10 +271,9 @@ msgid "Command" msgstr "Komento" #: db_operations.php:429 -#, fuzzy #| msgid "Rename database to" msgid "Remove database" -msgstr "Muuta tietokannan nimi" +msgstr "Poista tietokanta" #: db_operations.php:441 #, php-format From 79cd20fd64da9b10acd0ec672992b1dfe5c4f936 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:43:00 +0200 Subject: [PATCH 054/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f4a68e175..4069be53d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:42+0200\n" +"PO-Revision-Date: 2010-11-26 19:43+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -273,7 +273,7 @@ msgstr "Komento" #: db_operations.php:429 #| msgid "Rename database to" msgid "Remove database" -msgstr "Poista tietokanta" +msgstr "Tuhoa tietokanta" #: db_operations.php:441 #, php-format From 2af07852c11291c4c66fe43d5c8e21a65e907ed5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:43:16 +0200 Subject: [PATCH 055/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 4069be53d..cbf3436e3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -281,10 +281,9 @@ msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." #: db_operations.php:446 -#, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" -msgstr "Siirry tietokantaan" +msgstr "Tuhoa tietokanta (DROP)" #: db_operations.php:474 msgid "Copy database to" From 3dddac474b52a7cb2840b8e8926b4b93a0ad452b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:44:02 +0200 Subject: [PATCH 056/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index cbf3436e3..f78cd64e3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:43+0200\n" +"PO-Revision-Date: 2010-11-26 19:44+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -303,7 +303,7 @@ msgstr "Vain tiedot" #: db_operations.php:491 msgid "CREATE DATABASE before copying" -msgstr "Suorita CREATE DATABASE ennen kopioimista" +msgstr "Suorita CREATE DATABASE ennen kopiointia" #: db_operations.php:494 libraries/config/messages.inc.php:122 #: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 From e31271262ff5895bdaa265736faba537051d57b7 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:47:05 +0200 Subject: [PATCH 057/732] Translation update done using Pootle. --- po/fi.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fi.po b/po/fi.po index f78cd64e3..35b4eda50 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:44+0200\n" +"PO-Revision-Date: 2010-11-26 19:47+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -336,7 +336,7 @@ msgid "Collation" msgstr "Aakkosjärjestys" #: db_operations.php:548 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -344,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " -"Katso %slisätietoja%s." +"phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, " +"mistä tämä johtuu." #: db_operations.php:581 #, fuzzy From 6e6d895ae8a57ed0280a520bc491a5dca312961e Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:49:13 +0200 Subject: [PATCH 058/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 35b4eda50..8543e82a0 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:47+0200\n" +"PO-Revision-Date: 2010-11-26 19:49+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -348,10 +348,9 @@ msgstr "" "mistä tämä johtuu." #: db_operations.php:581 -#, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" -msgstr "Relaatioskeema" +msgstr "Relaatioskeeman muokkaus tai vienti" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 #: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 From ceeb7bd33a2c5c86114dad7e758a2ce22963c086 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:50:11 +0200 Subject: [PATCH 059/732] Translation update done using Pootle. --- po/fi.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/fi.po b/po/fi.po index 8543e82a0..b998a9d31 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:49+0200\n" +"PO-Revision-Date: 2010-11-26 19:50+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -401,12 +401,12 @@ msgid "Last check" msgstr "Viimeksi tarkistettu" #: db_printview.php:220 db_structure.php:432 -#, fuzzy, php-format +#, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s taulu(a)" -msgstr[1] "%s taulu(a)" +msgstr[0] "%s taulu" +msgstr[1] "%s taulua" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 #: libraries/display_tbl.lib.php:1977 libraries/sql_query_form.lib.php:136 From 2fdfce8744d16342ed3dd590c56cf4a1e9aa8784 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:51:18 +0200 Subject: [PATCH 060/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index b998a9d31..2e9b2a91f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:50+0200\n" +"PO-Revision-Date: 2010-11-26 19:51+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" From 94fa3ccd5e84c3a2475ce126381fa06bb288eaa4 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:52:14 +0200 Subject: [PATCH 061/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 2e9b2a91f..b431ea197 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:51+0200\n" +"PO-Revision-Date: 2010-11-26 19:52+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" From 9cf78132d33d897d4f2bfa26c7c20a373af3a2bb Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:52:24 +0200 Subject: [PATCH 062/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index b431ea197..6f0b2bbeb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -421,7 +421,7 @@ msgstr "Valitse vähintään yksi sarake" #: db_qbe.php:182 msgid "Switch to" -msgstr "" +msgstr "Siirry kohteeseen" #: db_qbe.php:186 msgid "visual builder" From 730b86adbd73bfc80105dfd9f19e8640e982b914 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:53:44 +0200 Subject: [PATCH 063/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 6f0b2bbeb..6242be27a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:52+0200\n" +"PO-Revision-Date: 2010-11-26 19:53+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -425,7 +425,7 @@ msgstr "Siirry kohteeseen" #: db_qbe.php:186 msgid "visual builder" -msgstr "" +msgstr "visuaalinen luonti" #: db_qbe.php:219 libraries/db_structure.lib.php:95 #: libraries/display_tbl.lib.php:860 From 529b6df25a5d543e6b8145b8ab902f3aa59ce1dd Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:54:47 +0200 Subject: [PATCH 064/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 6242be27a..8df0de434 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:53+0200\n" +"PO-Revision-Date: 2010-11-26 19:54+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" From 1d841b8d3a327abb838d6c67260db53ccb123038 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:56:16 +0200 Subject: [PATCH 065/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 8df0de434..9a3cddb8f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:54+0200\n" +"PO-Revision-Date: 2010-11-26 19:56+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -5856,7 +5856,7 @@ msgstr "Luontiympäristö" #: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." -msgstr "MySQL palautti tyhjän vastauksen, toisin sanoen nolla riviä." +msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." #: libraries/import.lib.php:1141 msgid "" From 9dca921e6080fb6a3e95cc7c43aed34ad9ac9227 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:57:17 +0200 Subject: [PATCH 066/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 9a3cddb8f..b5a59073f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:56+0200\n" +"PO-Revision-Date: 2010-11-26 19:57+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -99,10 +99,9 @@ msgid "No blob streaming server configured!" msgstr "BLOB-suoratoistopalvelinta ei ole määritelty." #: bs_disp_as_mime_type.php:35 -#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" -msgstr "Tiedoston kirjoitus levylle epäonnistui." +msgstr "Otsakkeiden nouto epäonnistui" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From 59c97697dbc4b34303d5b0808096b5b36713cd00 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:57:43 +0200 Subject: [PATCH 067/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index b5a59073f..0c446048b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -105,7 +105,7 @@ msgstr "Otsakkeiden nouto epäonnistui" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Etäosoitteen avaaminen epäonnistui" #: db_create.php:58 #, php-format From a78f445d01fb543731d1c100fcaa1397e701c1f1 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:57:47 +0200 Subject: [PATCH 068/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 0c446048b..5a69cc9b9 100644 --- a/po/fi.po +++ b/po/fi.po @@ -131,10 +131,9 @@ msgstr "Taulun kommentit" #: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 -#, fuzzy #| msgid "Column names" msgid "Column" -msgstr "Sarakkeiden nimet" +msgstr "Sarake" #: db_datadict.php:170 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:25 libraries/db_routines.inc.php:36 From e94d84a23b6d48909212dd49cd963ba52ef0160a Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:58:40 +0200 Subject: [PATCH 069/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 5a69cc9b9..647734eeb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:57+0200\n" +"PO-Revision-Date: 2010-11-26 19:58+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -476,7 +476,6 @@ msgid "Modify" msgstr "Muokkaa" #: db_qbe.php:603 -#, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Lisää tai poista hakuehtoja" From e6846f46a4c35f0695953de3c978714a8a39b407 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 19:58:48 +0200 Subject: [PATCH 070/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 647734eeb..580f3afc1 100644 --- a/po/fi.po +++ b/po/fi.po @@ -481,7 +481,6 @@ msgid "Add/Delete criteria rows" msgstr "Lisää tai poista hakuehtoja" #: db_qbe.php:615 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Lisää tai poista sarakkeita" From d83f7fdfd8e6e3f42fd43cd690fd7c4ad34a258a Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:00:10 +0200 Subject: [PATCH 071/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 580f3afc1..fc0b3c254 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 19:58+0200\n" +"PO-Revision-Date: 2010-11-26 20:00+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -531,7 +531,7 @@ msgid "Search results for \"%s\" %s:" msgstr "Tulokset hakusanalla \"%s\" %s:" #: db_search.php:248 -#, fuzzy, php-format +#, php-format #| msgid "%s match(es) inside table %s" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" From 949b7658f753bdae9f1363efd16df58c43f1eaea Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:01:16 +0200 Subject: [PATCH 072/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index fc0b3c254..45235aff6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:00+0200\n" +"PO-Revision-Date: 2010-11-26 20:01+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -558,7 +558,7 @@ msgid "Delete" msgstr "Poista" #: db_search.php:273 -#, fuzzy, php-format +#, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" From 9dbc217bc918cc03756d37829128bfa434a2c709 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:01:38 +0200 Subject: [PATCH 073/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 45235aff6..ff1545c50 100644 --- a/po/fi.po +++ b/po/fi.po @@ -586,10 +586,9 @@ msgid "Inside table(s):" msgstr "Tauluista:" #: db_search.php:352 -#, fuzzy #| msgid "Inside field:" msgid "Inside column:" -msgstr "Kentän sisältä:" +msgstr "Sarakkeen sisältä:" #: db_structure.php:59 #, fuzzy From b00ffe623d03b6369b43897827c4934edfd87c63 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:01:50 +0200 Subject: [PATCH 074/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index ff1545c50..6634511d8 100644 --- a/po/fi.po +++ b/po/fi.po @@ -591,7 +591,6 @@ msgid "Inside column:" msgstr "Sarakkeen sisältä:" #: db_structure.php:59 -#, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tietokannassa ei ole tauluja." From c14beb8ead51dc3ac04b5b5e51c08c80a756ee41 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:02:18 +0200 Subject: [PATCH 075/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 6634511d8..490e841e7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:01+0200\n" +"PO-Revision-Date: 2010-11-26 20:02+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -809,7 +809,7 @@ msgstr "Tietokantaloki" #: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" -msgstr "" +msgstr "Sarakkeen \"%s\" arvot" #: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." From b7f295ad61b7640f8df18129452517f11e5568c8 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:02:54 +0200 Subject: [PATCH 076/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 490e841e7..7d7731f11 100644 --- a/po/fi.po +++ b/po/fi.po @@ -813,7 +813,7 @@ msgstr "Sarakkeen \"%s\" arvot" #: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." -msgstr "" +msgstr "Syötä arvot omiin kenttiinsä." #: export.php:73 msgid "Selected export type has to be saved in file!" From d3aa9d5c4486b0b090b9e1c9309f07d293443fc5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:03:19 +0200 Subject: [PATCH 077/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 7d7731f11..62389adf4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:02+0200\n" +"PO-Revision-Date: 2010-11-26 20:03+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -950,7 +950,7 @@ msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" #: js/messages.php:32 msgid "Dropping Event" -msgstr "" +msgstr "Poistotapahtuma" #: js/messages.php:33 #, fuzzy From 25cc50bfea78cdd5d6cfda53dd0d9ff746e6374b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:03:45 +0200 Subject: [PATCH 078/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 62389adf4..0f59c1dd1 100644 --- a/po/fi.po +++ b/po/fi.po @@ -953,10 +953,9 @@ msgid "Dropping Event" msgstr "Poistotapahtuma" #: js/messages.php:33 -#, fuzzy #| msgid "Procedures" msgid "Dropping Procedure" -msgstr "Proseduurit" +msgstr "Poistotoiminto" #: js/messages.php:35 #, fuzzy From 8d32d2b525d6489f342e848c1bd9e9a99b8047f7 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:03:59 +0200 Subject: [PATCH 079/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 0f59c1dd1..063436561 100644 --- a/po/fi.po +++ b/po/fi.po @@ -958,10 +958,9 @@ msgid "Dropping Procedure" msgstr "Poistotoiminto" #: js/messages.php:35 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Deleting tracking data" -msgstr "Poista tämän taulun seurantatiedot" +msgstr "Seurantatietojen poisto" #: js/messages.php:36 msgid "Dropping Primary Key/Index" From c190982546662a16872ac6323ac5bf8c63226b2a Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:04:18 +0200 Subject: [PATCH 080/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 063436561..695c22cf8 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:03+0200\n" +"PO-Revision-Date: 2010-11-26 20:04+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -964,7 +964,7 @@ msgstr "Seurantatietojen poisto" #: js/messages.php:36 msgid "Dropping Primary Key/Index" -msgstr "" +msgstr "Pääavaimen tai indeksin poisto" #: js/messages.php:37 msgid "This operation could take a long time. Proceed anyway?" From 820166c9ecb4fdd6a485bcbb0705a2d3e9ab10ab Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:06:53 +0200 Subject: [PATCH 081/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 695c22cf8..393f36ace 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:04+0200\n" +"PO-Revision-Date: 2010-11-26 20:06+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1005,7 +1005,6 @@ msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" #: js/messages.php:52 -#, fuzzy #| msgid "Add a new User" msgid "Add a New User" msgstr "Lisää uusi käyttäjä" From 9395b7f788bb87b4258115ed626c92baf507a2d3 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:07:03 +0200 Subject: [PATCH 082/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 393f36ace..1b638aa29 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:06+0200\n" +"PO-Revision-Date: 2010-11-26 20:07+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1010,10 +1010,9 @@ msgid "Add a New User" msgstr "Lisää uusi käyttäjä" #: js/messages.php:53 -#, fuzzy #| msgid "Create version" msgid "Create User" -msgstr "Luo versio" +msgstr "Luo käyttäjä" #: js/messages.php:54 #, fuzzy From 5d2bc5a7c3e538e137262d7ae9d37a6ddfc39f9f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:07:29 +0200 Subject: [PATCH 083/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 1b638aa29..4b0faf56a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1015,10 +1015,9 @@ msgid "Create User" msgstr "Luo käyttäjä" #: js/messages.php:54 -#, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" -msgstr "Lataa käyttöoikeudet uudelleen" +msgstr "Käyttöoikeusten uudelleenlataus" #: js/messages.php:55 #, fuzzy From f1cc27f1cd33044085838b83696bff2e80a74a07 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:07:57 +0200 Subject: [PATCH 084/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 4b0faf56a..5fe69b544 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1020,7 +1020,6 @@ msgid "Reloading Privileges" msgstr "Käyttöoikeusten uudelleenlataus" #: js/messages.php:55 -#, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" From 986722740c741713020a91562213dcd089ed1842 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:08:01 +0200 Subject: [PATCH 085/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 5fe69b544..7480d85d3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:07+0200\n" +"PO-Revision-Date: 2010-11-26 20:08+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" From 49c3bee34338c4663869b2c9e758fdbd426814f7 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:08:18 +0200 Subject: [PATCH 086/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 7480d85d3..dad71f0a6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1035,10 +1035,9 @@ msgid "Cancel" msgstr "Peruuta" #: js/messages.php:63 -#, fuzzy #| msgid "Load" msgid "Loading" -msgstr "Lataa asetukset" +msgstr "Lataa" #: js/messages.php:64 #, fuzzy From a8df2ade15a6fcef6b2fd238fd328f5d06e7c364 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:09:16 +0200 Subject: [PATCH 087/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index dad71f0a6..53017f48f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:08+0200\n" +"PO-Revision-Date: 2010-11-26 20:09+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1040,10 +1040,9 @@ msgid "Loading" msgstr "Lataa" #: js/messages.php:64 -#, fuzzy #| msgid "Processes" msgid "Processing Request" -msgstr "Prosessit" +msgstr "Pyynnön käsittely" #: js/messages.php:65 msgid "Error in Processing Request" From 8a2c5a6e199dcafe4d358884ae04fffa62d5d2e8 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:09:27 +0200 Subject: [PATCH 088/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 53017f48f..3eca5ed7e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1046,7 +1046,7 @@ msgstr "Pyynnön käsittely" #: js/messages.php:65 msgid "Error in Processing Request" -msgstr "" +msgstr "Virhe pyynnön käsittelyssä" #: js/messages.php:66 msgid "Dropping Column" From 758195c0fe7325e0c733c817fe8be641b280ea7f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:09:33 +0200 Subject: [PATCH 089/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 3eca5ed7e..cf1983c6c 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1050,7 +1050,7 @@ msgstr "Virhe pyynnön käsittelyssä" #: js/messages.php:66 msgid "Dropping Column" -msgstr "" +msgstr "Sarakkeen poisto" #: js/messages.php:67 msgid "Adding Primary Key" From 2e61f63befaf833e7b9300a4d53ed85bb5ac9af3 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:09:39 +0200 Subject: [PATCH 090/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index cf1983c6c..5a6f19d0d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1054,7 +1054,7 @@ msgstr "Sarakkeen poisto" #: js/messages.php:67 msgid "Adding Primary Key" -msgstr "" +msgstr "Pääavaimen lisäys" #: js/messages.php:68 libraries/relation.lib.php:81 pmd_general.php:388 #: pmd_general.php:545 pmd_general.php:593 pmd_general.php:669 From e2470fd6478b47d0d1fb659583b85c3ad65b0700 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:10:10 +0200 Subject: [PATCH 091/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 5a6f19d0d..f7cee9c5d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:09+0200\n" +"PO-Revision-Date: 2010-11-26 20:10+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1063,10 +1063,9 @@ msgid "OK" msgstr "Kunnossa" #: js/messages.php:71 -#, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" -msgstr "Muuta tietokannan nimi" +msgstr "Muuta tietokantojen nimiä" #: js/messages.php:72 #, fuzzy From 74ce56d4adadf770d1e9d0518afd9bf9f59b705f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:10:26 +0200 Subject: [PATCH 092/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f7cee9c5d..737ccbd23 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1068,10 +1068,9 @@ msgid "Renaming Databases" msgstr "Muuta tietokantojen nimiä" #: js/messages.php:72 -#, fuzzy #| msgid "Rename database to" msgid "Reload Database" -msgstr "Muuta tietokannan nimi" +msgstr "Lataa tietokanta uudestaan" #: js/messages.php:73 #, fuzzy From cc487f92072fd0306b1a4ed2def5471e2af2db14 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:11:04 +0200 Subject: [PATCH 093/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 737ccbd23..0815ee795 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:10+0200\n" +"PO-Revision-Date: 2010-11-26 20:11+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1073,10 +1073,9 @@ msgid "Reload Database" msgstr "Lataa tietokanta uudestaan" #: js/messages.php:73 -#, fuzzy #| msgid "Copy database to" msgid "Copying Database" -msgstr "Luo tietokannasta toinen tietokanta nimellä" +msgstr "Tietokannan kopiointi" #: js/messages.php:74 #, fuzzy From 2c3ffa9d9964eabc92104d26326cae22cad431b5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:11:14 +0200 Subject: [PATCH 094/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 0815ee795..9fb7ac29b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1078,10 +1078,9 @@ msgid "Copying Database" msgstr "Tietokannan kopiointi" #: js/messages.php:74 -#, fuzzy #| msgid "Charset" msgid "Changing Charset" -msgstr "Merkistökoodaus" +msgstr "Merkistökoodauksen muuttaminen" #: js/messages.php:75 #, fuzzy From 12a38a34e006c4568349ca538f0dbbc395315296 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:11:22 +0200 Subject: [PATCH 095/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 9fb7ac29b..3e2a4ef13 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1080,7 +1080,7 @@ msgstr "Tietokannan kopiointi" #: js/messages.php:74 #| msgid "Charset" msgid "Changing Charset" -msgstr "Merkistökoodauksen muuttaminen" +msgstr "Merkistökoodauksen vaihtaminen" #: js/messages.php:75 #, fuzzy From 6b025bf2e11a7327080241debe8e560989243ca4 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:11:30 +0200 Subject: [PATCH 096/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 3e2a4ef13..87eb2ab98 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1083,7 +1083,6 @@ msgid "Changing Charset" msgstr "Merkistökoodauksen vaihtaminen" #: js/messages.php:75 -#, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Taulussa on oltava vähintään yksi kenttä." From 69f9a6afab6a1c2d5da80acef82fce7e4e00fcc7 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:11:34 +0200 Subject: [PATCH 097/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 87eb2ab98..7cb585a79 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1088,7 +1088,6 @@ msgid "Table must have at least one column" msgstr "Taulussa on oltava vähintään yksi kenttä." #: js/messages.php:76 -#, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Luo taulu" From 6e694c5a439fbde201b2be0797387f8a7cdd019c Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:11:37 +0200 Subject: [PATCH 098/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 7cb585a79..0404b405e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1093,7 +1093,6 @@ msgid "Create Table" msgstr "Luo taulu" #: js/messages.php:81 -#, fuzzy #| msgid "Search" msgid "Searching" msgstr "Etsi" From 585bf6effb109ab2377f751edeae6da3ea7c7019 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:12:09 +0200 Subject: [PATCH 099/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 0404b405e..d33898270 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:11+0200\n" +"PO-Revision-Date: 2010-11-26 20:12+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1098,10 +1098,9 @@ msgid "Searching" msgstr "Etsi" #: js/messages.php:84 -#, fuzzy #| msgid "SQL Query box" msgid "Hide query box" -msgstr "SQL-kyselykenttä" +msgstr "Piilota SQL-kyselykenttä" #: js/messages.php:85 #, fuzzy From fe9830410d432cb2fd5db96ed8870563d39ea4ec Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:12:31 +0200 Subject: [PATCH 100/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index d33898270..9e6c2095b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1103,10 +1103,9 @@ msgid "Hide query box" msgstr "Piilota SQL-kyselykenttä" #: js/messages.php:85 -#, fuzzy #| msgid "SQL Query box" msgid "Show query box" -msgstr "SQL-kyselykenttä" +msgstr "Näytä kyselykenttä" #: js/messages.php:86 #, fuzzy From 8eadb7fba1c41922a5fa879e3537a2185714bcd4 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:25:08 +0200 Subject: [PATCH 101/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 9e6c2095b..a655daf90 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:12+0200\n" +"PO-Revision-Date: 2010-11-26 20:25+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1157,10 +1157,9 @@ msgid "Change Password" msgstr "Vaihda salasana" #: js/messages.php:106 -#, fuzzy #| msgid "Mon" msgid "More" -msgstr "Ma" +msgstr "Lisää" #. l10n: Display text for calendar close link #: js/messages.php:116 From 50d9924b4a34484c920df740a499955e7abb832d Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:25:49 +0200 Subject: [PATCH 102/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index a655daf90..592957560 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1163,10 +1163,9 @@ msgstr "Lisää" #. l10n: Display text for calendar close link #: js/messages.php:116 -#, fuzzy #| msgid "Donate" msgid "Done" -msgstr "Lahjoita" +msgstr "Valmis" #. l10n: Display text for previous month link in calendar #: js/messages.php:118 From 22f4130ba4835f4ad022e105d8351abd9315f9bc Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:25:58 +0200 Subject: [PATCH 103/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 592957560..ad0df0e7f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1169,7 +1169,6 @@ msgstr "Valmis" #. l10n: Display text for previous month link in calendar #: js/messages.php:118 -#, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Edellinen" From 6ee71f97c1a91369a595c6263370f9e1741831f2 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:00 +0200 Subject: [PATCH 104/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index ad0df0e7f..d5dcfbac1 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:25+0200\n" +"PO-Revision-Date: 2010-11-26 20:26+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" From 45ca31a0bba943dcb5dc2707466feffe7230d8e5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:16 +0200 Subject: [PATCH 105/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index d5dcfbac1..2677c15a7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1183,10 +1183,9 @@ msgstr "Seuraava" #. l10n: Display text for current month link in calendar #: js/messages.php:122 -#, fuzzy #| msgid "Total" msgid "Today" -msgstr "Yhteensä" +msgstr "Tänään" #: js/messages.php:125 #, fuzzy From 70c388d264d68221f6e0cd9a074ab593455f5d24 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:24 +0200 Subject: [PATCH 106/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 2677c15a7..17ef8f673 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1188,10 +1188,9 @@ msgid "Today" msgstr "Tänään" #: js/messages.php:125 -#, fuzzy #| msgid "Binary" msgid "January" -msgstr "Binääritietoa" +msgstr "Tammikuu" #: js/messages.php:126 msgid "February" From 8ea3e043f8f3f1cb400810872086279cc83ee195 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:27 +0200 Subject: [PATCH 107/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 17ef8f673..cfee6b3f0 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1194,7 +1194,7 @@ msgstr "Tammikuu" #: js/messages.php:126 msgid "February" -msgstr "" +msgstr "Helmikuu" #: js/messages.php:127 #, fuzzy From 272f1df0c34819c3359630c883db38f5970cfd27 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:40 +0200 Subject: [PATCH 108/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index cfee6b3f0..a4aa73870 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1194,7 +1194,7 @@ msgstr "Tammikuu" #: js/messages.php:126 msgid "February" -msgstr "Helmikuu" +msgstr "Helmi" #: js/messages.php:127 #, fuzzy From ed7fd8663fc437afca0a3b22c609dca87d41cbf2 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:50 +0200 Subject: [PATCH 109/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index a4aa73870..f335d54f9 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1197,7 +1197,6 @@ msgid "February" msgstr "Helmi" #: js/messages.php:127 -#, fuzzy #| msgid "Mar" msgid "March" msgstr "Maalis" From d9b7a3415da02ffc6f89448c0c9773e1f39c06a6 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:26:55 +0200 Subject: [PATCH 110/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index f335d54f9..2b62f117f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1190,7 +1190,7 @@ msgstr "Tänään" #: js/messages.php:125 #| msgid "Binary" msgid "January" -msgstr "Tammikuu" +msgstr "Tammi" #: js/messages.php:126 msgid "February" From b1fb8f78bcaa91108be0c08ac8c677c4054d26da Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:27:05 +0200 Subject: [PATCH 111/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 2b62f117f..6a5cab436 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:26+0200\n" +"PO-Revision-Date: 2010-11-26 20:27+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1202,7 +1202,6 @@ msgid "March" msgstr "Maalis" #: js/messages.php:128 -#, fuzzy #| msgid "Apr" msgid "April" msgstr "Huhti" From 92f2e381c2518a451003cb3b712e88c0c3a040f3 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:27:14 +0200 Subject: [PATCH 112/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 6a5cab436..2f06945bc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1211,7 +1211,6 @@ msgid "May" msgstr "Touko" #: js/messages.php:130 -#, fuzzy #| msgid "Jun" msgid "June" msgstr "Kesä" From f77326df6aed34edf58fc55be93a44758feeb604 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:27:17 +0200 Subject: [PATCH 113/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 2f06945bc..22e188d3b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1216,7 +1216,6 @@ msgid "June" msgstr "Kesä" #: js/messages.php:131 -#, fuzzy #| msgid "Jul" msgid "July" msgstr "Heinä" From 68d2a5b9a17380d6ac1b39e6e5625ff19ad9d52d Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:27:43 +0200 Subject: [PATCH 114/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 22e188d3b..3318a9b34 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1221,7 +1221,6 @@ msgid "July" msgstr "Heinä" #: js/messages.php:132 -#, fuzzy #| msgid "Aug" msgid "August" msgstr "Elo" From fd1bfd35f1ca874bb2a0f86d1116523dbd9145d8 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:27:49 +0200 Subject: [PATCH 115/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 3318a9b34..bc01fc6be 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1227,7 +1227,7 @@ msgstr "Elo" #: js/messages.php:133 msgid "September" -msgstr "" +msgstr "Syys" #: js/messages.php:134 #, fuzzy From b4180e366c8fc0cd4bd1d051fba8297f1ee8ed7e Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:27:53 +0200 Subject: [PATCH 116/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index bc01fc6be..4f9d0e97e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1230,7 +1230,6 @@ msgid "September" msgstr "Syys" #: js/messages.php:134 -#, fuzzy #| msgid "Oct" msgid "October" msgstr "Loka" From 18e65350911f988dfa20edd84fa5bbf1744dc2e1 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:28:01 +0200 Subject: [PATCH 117/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 4f9d0e97e..9453e940f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:27+0200\n" +"PO-Revision-Date: 2010-11-26 20:28+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1236,7 +1236,7 @@ msgstr "Loka" #: js/messages.php:135 msgid "November" -msgstr "" +msgstr "Marras" #: js/messages.php:136 msgid "December" From a753b9b415b79c1e047d562e35cb26901e07e4b6 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:28:21 +0200 Subject: [PATCH 118/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 9453e940f..0dc0929eb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1240,7 +1240,7 @@ msgstr "Marras" #: js/messages.php:136 msgid "December" -msgstr "" +msgstr "Joulu" #. l10n: Short month name #: js/messages.php:140 libraries/common.lib.php:1545 From 26190de2f86a9314058a0e8e6d6a9cfb7774912b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:29:09 +0200 Subject: [PATCH 119/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 0dc0929eb..79009eaa7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:28+0200\n" +"PO-Revision-Date: 2010-11-26 20:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" From 1d5f628d62e36337e8f9f054419fc5dffd1cdd02 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:29:28 +0200 Subject: [PATCH 120/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 79009eaa7..a22e1a815 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1264,7 +1264,6 @@ msgstr "Huhti" #. l10n: Short month name #: js/messages.php:148 libraries/common.lib.php:1553 -#, fuzzy #| msgid "May" msgctxt "Short month name" msgid "May" From 6beee6caffb66ff5077080290a496bc428c28cd0 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:30:28 +0200 Subject: [PATCH 121/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index a22e1a815..fbd0df839 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:29+0200\n" +"PO-Revision-Date: 2010-11-26 20:30+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1305,7 +1305,6 @@ msgid "Dec" msgstr "Joulu" #: js/messages.php:165 -#, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Su" From 263096fdd75542e7e5506fb11e3efee958a62303 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:30:31 +0200 Subject: [PATCH 122/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index fbd0df839..3db3da4c1 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1310,7 +1310,6 @@ msgid "Sunday" msgstr "Su" #: js/messages.php:166 -#, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" From 70ffd41a1c797b0ad174d2aa0765224d3e0d45d5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:31:20 +0200 Subject: [PATCH 123/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 3db3da4c1..7081105ff 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:30+0200\n" +"PO-Revision-Date: 2010-11-26 20:31+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1315,7 +1315,6 @@ msgid "Monday" msgstr "Ma" #: js/messages.php:167 -#, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ti" From 66fb2a46bddeccd2d31da27bbf87729e16ec8cf2 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:31:23 +0200 Subject: [PATCH 124/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 7081105ff..f03c2e94b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1321,7 +1321,7 @@ msgstr "Ti" #: js/messages.php:168 msgid "Wednesday" -msgstr "" +msgstr "Ke" #: js/messages.php:169 msgid "Thursday" From e085f1cdfcf5a94c7203c8f2fed7072f56a98e23 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:31:25 +0200 Subject: [PATCH 125/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index f03c2e94b..69e2d5ed4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1325,7 +1325,7 @@ msgstr "Ke" #: js/messages.php:169 msgid "Thursday" -msgstr "" +msgstr "To" #: js/messages.php:170 #, fuzzy From aa8eaa9a0a9ecea37abed406af81abe8ff7235a7 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:31:39 +0200 Subject: [PATCH 126/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 69e2d5ed4..175e404cb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1328,7 +1328,6 @@ msgid "Thursday" msgstr "To" #: js/messages.php:170 -#, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pe" From ec267b38388ecc21be0a51c2a3831fa53ffe0bfd Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:31:42 +0200 Subject: [PATCH 127/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 175e404cb..d445d4a97 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1334,7 +1334,7 @@ msgstr "Pe" #: js/messages.php:171 msgid "Saturday" -msgstr "" +msgstr "La" #. l10n: Short week day name #: js/messages.php:175 libraries/common.lib.php:1570 From 1dfa72774f931f811da384802bb78d9d18a26600 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:33:00 +0200 Subject: [PATCH 128/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index d445d4a97..f14526f45 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:31+0200\n" +"PO-Revision-Date: 2010-11-26 20:33+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1108,10 +1108,9 @@ msgid "Show query box" msgstr "Näytä kyselykenttä" #: js/messages.php:86 -#, fuzzy #| msgid "Engines" msgid "Inline Edit" -msgstr "Moottorit" +msgstr "Rivin muokkaus" #: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 From d425fdb29367016fc8eb9efbcb1e55d33093a807 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:34:01 +0200 Subject: [PATCH 129/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f14526f45..4586b8ef3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:33+0200\n" +"PO-Revision-Date: 2010-11-26 20:34+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1130,7 +1130,6 @@ msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" #: js/messages.php:95 pmd_general.php:89 tbl_relation.php:545 -#, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Valitse näytettävä sarake" From 8b1a2e5641d67960470c1eec24ca0c950e49142e Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:36:06 +0200 Subject: [PATCH 130/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 4586b8ef3..071d00da2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:34+0200\n" +"PO-Revision-Date: 2010-11-26 20:36+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1136,7 +1136,7 @@ msgstr "Valitse näytettävä sarake" #: js/messages.php:98 msgid "Add an option for column " -msgstr "" +msgstr "Lisää asetus sarakkeelle" #: js/messages.php:101 #, fuzzy From 204c26d951ead6b378647484db1fca8f008c379f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:36:14 +0200 Subject: [PATCH 131/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 071d00da2..b01c0b7a2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1139,7 +1139,6 @@ msgid "Add an option for column " msgstr "Lisää asetus sarakkeelle" #: js/messages.php:101 -#, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Keksi salasana" From d248824c9145fd2c1b6c1968cb8db6ef1b66b798 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:37:26 +0200 Subject: [PATCH 132/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index b01c0b7a2..64af0006f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:36+0200\n" +"PO-Revision-Date: 2010-11-26 20:37+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1148,7 +1148,6 @@ msgid "Generate" msgstr "Keksi" #: js/messages.php:103 -#, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Vaihda salasana" From 818d67a1a08d0592d90cafbf1dbdb8bbcd0cd22b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:37:30 +0200 Subject: [PATCH 133/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 64af0006f..4b109cd5c 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1369,7 +1369,6 @@ msgstr "La" #. l10n: Minimal week day name #: js/messages.php:191 -#, fuzzy #| msgid "Sun" msgid "Su" msgstr "Su" From 2c49c9226e3cf4bade58c38aa5e68f0867bbe83c Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:37:33 +0200 Subject: [PATCH 134/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 4b109cd5c..7f7a33f54 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1375,7 +1375,6 @@ msgstr "Su" #. l10n: Minimal week day name #: js/messages.php:193 -#, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" From d8976973259ab4aeeda697307c7953eb6e504918 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:20 +0200 Subject: [PATCH 135/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 7f7a33f54..f0576c640 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:37+0200\n" +"PO-Revision-Date: 2010-11-26 20:38+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1381,7 +1381,6 @@ msgstr "Ma" #. l10n: Minimal week day name #: js/messages.php:195 -#, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ti" From 29e1297503c886b9fca35913ab99bb550cbbd011 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:23 +0200 Subject: [PATCH 136/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index f0576c640..2e95d8be4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1387,7 +1387,6 @@ msgstr "Ti" #. l10n: Minimal week day name #: js/messages.php:197 -#, fuzzy #| msgid "Wed" msgid "We" msgstr "Ke" From d639ee82be550d5d76bbb27f300dabcbb3c0e9af Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:25 +0200 Subject: [PATCH 137/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 2e95d8be4..e6770bfcb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1393,7 +1393,6 @@ msgstr "Ke" #. l10n: Minimal week day name #: js/messages.php:199 -#, fuzzy #| msgid "Thu" msgid "Th" msgstr "To" From d0c613f551093fd6a5965b0566e3636058db7c4a Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:27 +0200 Subject: [PATCH 138/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index e6770bfcb..2f13b001f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1399,7 +1399,6 @@ msgstr "To" #. l10n: Minimal week day name #: js/messages.php:201 -#, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pe" From a7adba80fa89d0760d2f9c7cf521c36a5e54a8dc Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:32 +0200 Subject: [PATCH 139/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 2f13b001f..934ae90eb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1405,7 +1405,6 @@ msgstr "Pe" #. l10n: Minimal week day name #: js/messages.php:203 -#, fuzzy #| msgid "Sat" msgid "Sa" msgstr "La" From 9bce9a967116ae94e3599ea42cbeb5f28db900c1 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:44 +0200 Subject: [PATCH 140/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 934ae90eb..15ced9d58 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1411,10 +1411,9 @@ msgstr "La" #. l10n: Column header for week of the year in calendar #: js/messages.php:205 -#, fuzzy #| msgid "Wiki" msgid "Wk" -msgstr "Wiki" +msgstr "Vko" #: js/messages.php:207 msgid "Hour" From 1aef1ef79725f4bb58ab4255f8e9cf5fdcae0406 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:48 +0200 Subject: [PATCH 141/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 15ced9d58..c17889f30 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1417,7 +1417,7 @@ msgstr "Vko" #: js/messages.php:207 msgid "Hour" -msgstr "" +msgstr "Tunti" #: js/messages.php:208 #, fuzzy From 45f97d2ba1117411c2123c3e4f0bdb2cd4c9cffd Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:53 +0200 Subject: [PATCH 142/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index c17889f30..02707ae54 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1420,10 +1420,9 @@ msgid "Hour" msgstr "Tunti" #: js/messages.php:208 -#, fuzzy #| msgid "in use" msgid "Minute" -msgstr "käytössä" +msgstr "Minuutti" #: js/messages.php:209 #, fuzzy From 10845558a51cbe6ecd9b0bcb09add3731d0da193 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:38:57 +0200 Subject: [PATCH 143/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 02707ae54..1a45e3059 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1425,10 +1425,9 @@ msgid "Minute" msgstr "Minuutti" #: js/messages.php:209 -#, fuzzy #| msgid "per second" msgid "Second" -msgstr "sekunnissa" +msgstr "Sekunti" #: libraries/Config.class.php:1190 tbl_chart.php:159 msgid "Font size" From 6dfda88c44101081aa0caf6d3699f40697387c59 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:39:16 +0200 Subject: [PATCH 144/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 1a45e3059..4a633e519 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:38+0200\n" +"PO-Revision-Date: 2010-11-26 20:39+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1541,7 +1541,7 @@ msgid "Error" msgstr "Virhe" #: libraries/Message.class.php:281 -#, fuzzy, php-format +#, php-format #| msgid "%1$d row(s) affected." msgid "%1$d row affected." msgid_plural "%1$d rows affected." From b64672c2e1500a5b89398c56a1ab6de1f9d0fdd4 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:39:21 +0200 Subject: [PATCH 145/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 4a633e519..7293d74f4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1549,7 +1549,7 @@ msgstr[0] "%1$d rivi(ä) muutettu." msgstr[1] "%1$d rivi(ä) muutettu." #: libraries/Message.class.php:300 -#, fuzzy, php-format +#, php-format #| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." From 1854da90192f4609b358e44ee48ac1b48d907d40 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:39:26 +0200 Subject: [PATCH 146/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 7293d74f4..d8e2674eb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1557,7 +1557,7 @@ msgstr[0] "%1$d rivi(ä) poistettu." msgstr[1] "%1$d rivi(ä) poistettu." #: libraries/Message.class.php:319 -#, fuzzy, php-format +#, php-format #| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." From e799c5ecd8983eb690f5c3e9e8d8e1b0d20c847d Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:39:36 +0200 Subject: [PATCH 147/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index d8e2674eb..b08b42d20 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1751,7 +1751,7 @@ msgstr "Todennetaan..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "PBMS-virhe" #: libraries/blobstreaming.lib.php:267 #, fuzzy From 338104d0625ce18519741b9369e9e627c37ee296 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:39:50 +0200 Subject: [PATCH 148/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index b08b42d20..55da254ae 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1754,10 +1754,9 @@ msgid "PBMS error" msgstr "PBMS-virhe" #: libraries/blobstreaming.lib.php:267 -#, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" -msgstr "MySQL-yhteyden aakkosjärjestys" +msgstr "PBMS-yhteys epäonnistui:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" From b2ae622c15212d748568f0acbc65fda97f51a6b9 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:49:11 +0200 Subject: [PATCH 149/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 55da254ae..f06f0cd4a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:39+0200\n" +"PO-Revision-Date: 2010-11-26 20:49+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1764,7 +1764,7 @@ msgstr "" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "BLOB Content-Typen haku epäonnistui" #: libraries/blobstreaming.lib.php:347 msgid "View image" From 9c61006b5da76c76cd732bf8e698a76532e5f8df Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:49:37 +0200 Subject: [PATCH 150/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index f06f0cd4a..e8258b457 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1785,7 +1785,7 @@ msgstr "Lataa tiedosto" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "Tiedostoa ei voida avata: %s" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 From 9953c1a6b3d16bf53b9f507396fcc0bb9c7b7225 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:50:02 +0200 Subject: [PATCH 151/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index e8258b457..54b4f09f7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:49+0200\n" +"PO-Revision-Date: 2010-11-26 20:50+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1818,7 +1818,6 @@ msgid "Overhead" msgstr "Ylijäämä" #: libraries/build_html_for_db.lib.php:93 -#, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Siirry tietokantaan" From a5871225c3edbfe72e0736f64cfd5046a2fdb819 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:51:07 +0200 Subject: [PATCH 152/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 54b4f09f7..a51de6063 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:50+0200\n" +"PO-Revision-Date: 2010-11-26 20:51+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1823,10 +1823,9 @@ msgid "Jump to database" msgstr "Siirry tietokantaan" #: libraries/build_html_for_db.lib.php:130 -#, fuzzy #| msgid "Master replication" msgid "Not replicated" -msgstr "Isäntäpalvelimen replikointi" +msgstr "Ei replikoitu" #: libraries/build_html_for_db.lib.php:136 #, fuzzy From 14689449dae6e87f533405f0e105bf91f92be529 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:51:58 +0200 Subject: [PATCH 153/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index a51de6063..d54e13723 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1828,10 +1828,9 @@ msgid "Not replicated" msgstr "Ei replikoitu" #: libraries/build_html_for_db.lib.php:136 -#, fuzzy #| msgid "Replication" msgid "Replicated" -msgstr "Replikaatio" +msgstr "Kahdennettu" #: libraries/build_html_for_db.lib.php:150 #, php-format From c17f142a02f09b90390eac1cbab8b1d43de38e3b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:52:06 +0200 Subject: [PATCH 154/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index d54e13723..ff643cb76 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:51+0200\n" +"PO-Revision-Date: 2010-11-26 20:52+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1825,7 +1825,7 @@ msgstr "Siirry tietokantaan" #: libraries/build_html_for_db.lib.php:130 #| msgid "Master replication" msgid "Not replicated" -msgstr "Ei replikoitu" +msgstr "Ei kahdennettu" #: libraries/build_html_for_db.lib.php:136 #| msgid "Replication" From f63327957ebaa350d3601311a27ca72a769b2e82 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:52:23 +0200 Subject: [PATCH 155/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index ff643cb76..f50bb52d3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -636,7 +636,7 @@ msgstr "Näkymä" #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" -msgstr "Replikaatio" +msgstr "Kahdennus" #: db_structure.php:441 msgid "Sum" From da893f56ee6f384c26380f8a0fd22cf78967337f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:53:08 +0200 Subject: [PATCH 156/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f50bb52d3..10b781eb6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:52+0200\n" +"PO-Revision-Date: 2010-11-26 20:53+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -6302,7 +6302,7 @@ msgstr "" #: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" -msgstr "Lisää alireplikaatiokäyttäjä" +msgstr "Lisää alikahdennuksen käyttäjä" #: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" From 0a1eca26a169df5ef9fedab7988ae1ab868a0541 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:53:13 +0200 Subject: [PATCH 157/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 10b781eb6..8ac0bcc0b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7583,7 +7583,7 @@ msgstr "Tietokantatilastot" #: server_databases.php:172 server_replication.php:179 #: server_replication.php:207 msgid "Master replication" -msgstr "Isäntäpalvelimen replikointi" +msgstr "Isäntäpalvelimen kahdennus" #: server_databases.php:174 server_replication.php:246 msgid "Slave replication" From eaa80957e6fe8a585cf463c6fea16a739556f9fa Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:53:16 +0200 Subject: [PATCH 158/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 8ac0bcc0b..d48120e9d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7587,7 +7587,7 @@ msgstr "Isäntäpalvelimen kahdennus" #: server_databases.php:174 server_replication.php:246 msgid "Slave replication" -msgstr "Alipalvelimen replikointi" +msgstr "Alipalvelimen kahdennus" #: server_databases.php:257 server_databases.php:258 msgid "Enable Statistics" From bcc95a23df1c290ef758fbead35e4c3d5c8760d9 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:54:08 +0200 Subject: [PATCH 159/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index d48120e9d..498912ae2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:53+0200\n" +"PO-Revision-Date: 2010-11-26 20:54+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -7758,7 +7758,7 @@ msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." #: server_privileges.php:52 server_privileges.php:198 #: server_privileges.php:554 msgid "Needed for the replication slaves." -msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa." +msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." #: server_privileges.php:53 server_privileges.php:181 #: server_privileges.php:440 server_privileges.php:504 From ac7c34aceffd843e632fd44f9e3b1b59c061384c Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:54:19 +0200 Subject: [PATCH 160/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 498912ae2..f1c38a921 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8092,7 +8092,7 @@ msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" #: server_replication.php:180 msgid "This server is configured as master in a replication process." -msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi." +msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." #: server_replication.php:182 server_status.php:398 msgid "Show master status" From 5c87443740c4f75f150d995c6da6c4cf11aafebc Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 20:54:34 +0200 Subject: [PATCH 161/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f1c38a921..e277c388a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8108,8 +8108,8 @@ msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -"Tätä palvelinta ei ole määritetty replikaatioprosessin isäntäpalvelimeksi. " -"Haluatko määrittää sen?" +"Tätä palvelinta ei ole määritetty kahdennustoiminnon isäntäpalvelimeksi. " +"Haluatko määrittää sen asetukset?" #: server_replication.php:215 msgid "Master configuration" From ba38bdcd5c63421257ff7217385e88547e318638 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:00:05 +0200 Subject: [PATCH 162/732] Translation update done using Pootle. --- po/fi.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/fi.po b/po/fi.po index e277c388a..2e59f4335 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 20:54+0200\n" +"PO-Revision-Date: 2010-11-26 21:00+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -8123,11 +8123,11 @@ msgid "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" msgstr "" -"Tätä palvelinta ei ole määritetty replikaatioprosessin isäntäpalvelimeksi. " -"Voit valita replikoitaviksi joko kaikki tietokannat tai sivuuttaa tietyt " -"tietokannat (hyödyllinen, jos valtaosa tietokannoista halutaan replikoida). " +"Tätä palvelinta ei ole määritetty kahdennustoiminnon isäntäpalvelimeksi. " +"Voit valita kahdennettaviksi joko kaikki tietokannat tai sivuuttaa tietyt " +"tietokannat (hyödyllinen, jos valtaosa tietokannoista halutaan kahdentaa). " "Voit myös oletusarvoisesti sivuuttaa kaikki tietokannat ja sallia vain " -"tiettyjen tietokantojen replikoinnin. Valitse tila:" +"tiettyjen tietokantojen kahdennuksen. Valitse tila:" #: server_replication.php:219 msgid "Replicate all databases; Ignore:" From 0c33e871970dabf71b381eb38312ed4e89a68a4f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:00:12 +0200 Subject: [PATCH 163/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 2e59f4335..08e1bb429 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8131,7 +8131,7 @@ msgstr "" #: server_replication.php:219 msgid "Replicate all databases; Ignore:" -msgstr "Replikoi kaikki tietokannat; Sivuuta:" +msgstr "Kahdenna kaikki tietokannat; Sivuuta:" #: server_replication.php:220 msgid "Ignore all databases; Replicate:" From b8959094e5ec512a319151f21ab8b1a7cc9276f9 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:00:40 +0200 Subject: [PATCH 164/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 08e1bb429..2aa4cda4b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8135,7 +8135,7 @@ msgstr "Kahdenna kaikki tietokannat; Sivuuta:" #: server_replication.php:220 msgid "Ignore all databases; Replicate:" -msgstr "Sivuuta kaikki tietokannat; Replikoi:" +msgstr "Sivuuta kaikki tietokannat; Kahdenna:" #: server_replication.php:223 msgid "Please select databases:" From a2f1b65f4bc4f1b33f9d40f4d5be8d820bd81905 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:00:48 +0200 Subject: [PATCH 165/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 2aa4cda4b..c6d8ff6ca 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8171,7 +8171,7 @@ msgstr "" msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -"Palvelin on määritetty replikaatioprosessin alipalvelimeksi. Mitä haluat " +"Palvelin on määritetty kahdennustoiminnon alipalvelimeksi. Mitä haluat " "tehdä?" #: server_replication.php:306 From bda8a59ac3b200e0995b578f19dd9007d55a24d5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:01:12 +0200 Subject: [PATCH 166/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index c6d8ff6ca..c5f99bcec 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:00+0200\n" +"PO-Revision-Date: 2010-11-26 21:01+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -8246,7 +8246,7 @@ msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -"Tätä palvelinta ei ole määritetty replikaatioprosessin alipalvelimeksi. " +"Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" #: server_status.php:46 From 2f3e41225c1d60f8d723c7ab20493a24f90d47c0 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:01:26 +0200 Subject: [PATCH 167/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index c5f99bcec..73c3bbbec 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8768,7 +8768,7 @@ msgstr "Nollaa" #: server_status.php:132 msgid "The status of failsafe replication (not yet implemented)." -msgstr "Replikaation vikasietotila (ei vielä toteutettu)." +msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." #: server_status.php:133 msgid "" From 91afce5102815b81049b44a91ef6ca0cb1575024 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:05:35 +0200 Subject: [PATCH 168/732] Translation update done using Pootle. --- po/fi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 73c3bbbec..08af14749 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:01+0200\n" +"PO-Revision-Date: 2010-11-26 21:05+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -8814,8 +8814,8 @@ msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -"Kertoo, kuinka usein replikaation SQL-alisäie on käynnistyksestään lähtien " -"kaikkiaan uudelleen yrittänyt transkatioita." +"Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " +"käynnistyksestään lähtien yrittänut suorittaa transaktioita." #: server_status.php:140 msgid "This is ON if this server is a slave that is connected to a master." From 223fa3007b3e27e51912512ead92839c01080998 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:06:24 +0200 Subject: [PATCH 169/732] Translation update done using Pootle. --- po/fi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 08af14749..9b4928fa1 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:05+0200\n" +"PO-Revision-Date: 2010-11-26 21:06+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -8874,8 +8874,8 @@ msgid "" msgstr "" "Kertoo, kuinka usein taulua ei ole saatu heti lukittua, ja on siten jouduttu " "odottamaan. Jos tämä arvo on suuri, ja suorituskyvyn kanssa on ongelmia, on " -"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " -"käyttää hyödyksi replikaatiota." +"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan " +"tai käyttää hyödyksi kahdennusta." #: server_status.php:149 msgid "" From d76a9a8fe8c9d7fedb0dd228a88e40599afa98a5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:09:06 +0200 Subject: [PATCH 170/732] Translation update done using Pootle. --- po/fi.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 9b4928fa1..b0ea74827 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:06+0200\n" +"PO-Revision-Date: 2010-11-26 21:09+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -8984,12 +8984,13 @@ msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." #: server_status.php:477 -#, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" "This MySQL server works as master and slave in replication process." -msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi." +msgstr "" +"Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " +"alipalvelimena." #: server_status.php:479 #, fuzzy From 9911424b34279253aac63e4d86fda678c030297b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:09:45 +0200 Subject: [PATCH 171/732] Translation update done using Pootle. --- po/fi.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index b0ea74827..de83623d6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8993,10 +8993,11 @@ msgstr "" "alipalvelimena." #: server_status.php:479 -#, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." -msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi." +msgstr "" +"Tämä MySQL-palvelin toimii kahdennustoiminnossa " +"pääpalvelimena." #: server_status.php:481 #, fuzzy From bab629504f8320fe81e368fb869125734c134982 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:10:06 +0200 Subject: [PATCH 172/732] Translation update done using Pootle. --- po/fi.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index de83623d6..7b9ef0152 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:09+0200\n" +"PO-Revision-Date: 2010-11-26 21:10+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -9000,10 +9000,11 @@ msgstr "" "pääpalvelimena." #: server_status.php:481 -#, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." -msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi." +msgstr "" +"Tämä MySQL-palvelin toimii kahdennustoiminnossa ja " +"alipalvelimena." #: server_status.php:483 #, fuzzy From 853627d18c75c384580a471599d24e6ad60273e5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:11:12 +0200 Subject: [PATCH 173/732] Translation update done using Pootle. --- po/fi.po | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/po/fi.po b/po/fi.po index 7b9ef0152..60893c609 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:10+0200\n" +"PO-Revision-Date: 2010-11-26 21:11+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -9007,7 +9007,6 @@ msgstr "" "alipalvelimena." #: server_status.php:483 -#, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " #| "information about replication status on the server, please visit the replication section." msgstr "" -"MySQL-palvelin toimii %s-tilassa, replikaatio-prosessissa. Hae " -"palvelimen replikaatiotilasta lisää tietoja kohdasta Replikaatio." +"Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." #: server_status.php:500 msgid "" From afbbcb2e796cae66cca0fa59aa866b5c8dc028e8 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:11:17 +0200 Subject: [PATCH 174/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 60893c609..79f65af81 100644 --- a/po/fi.po +++ b/po/fi.po @@ -9090,7 +9090,7 @@ msgstr "Kyselyn tyyppi" #: server_status.php:845 msgid "Replication status" -msgstr "Replikaation tila" +msgstr "Kahdennuksen tila" #: server_synchronize.php:92 msgid "Could not connect to the source" From 8d44d19180ed911a2626afe20f046d6eb5ab3be1 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:12:11 +0200 Subject: [PATCH 175/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 79f65af81..9e2a04690 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:11+0200\n" +"PO-Revision-Date: 2010-11-26 21:12+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1760,7 +1760,7 @@ msgstr "PBMS-yhteys epäonnistui:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "PBMS:n BLOB-tietojen haku epäonnistui:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" From 565935c9cda95efcf4f2620db52ac2e8222b5e59 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:12:58 +0200 Subject: [PATCH 176/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 9e2a04690..e88191934 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1842,10 +1842,9 @@ msgid "Check Privileges" msgstr "Hallitse käyttöoikeuksia" #: libraries/chart.lib.php:40 -#, fuzzy #| msgid "Show statistics" msgid "Query statistics" -msgstr "Näytä tilastot" +msgstr "Kyselyn ominaisuuksia" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" From cd607ae36054a84e269dce2f5698e8adf98fd545 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:13:42 +0200 Subject: [PATCH 177/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index e88191934..f76ccf64d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:12+0200\n" +"PO-Revision-Date: 2010-11-26 21:13+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1848,7 +1848,7 @@ msgstr "Kyselyn ominaisuuksia" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" -msgstr "" +msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)" #: libraries/chart.lib.php:83 #, fuzzy From bbc53a062e308a0312b6a4cd49421203a51ff634 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:13:53 +0200 Subject: [PATCH 178/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f76ccf64d..8b61a4d0e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1851,10 +1851,9 @@ msgid "Query execution time comparison (in microseconds)" msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)" #: libraries/chart.lib.php:83 -#, fuzzy #| msgid "Query results operations" msgid "Query results" -msgstr "Kyselytulosten toimenpiteet" +msgstr "Kyselyn tulokset" #: libraries/chart.lib.php:109 msgid "No data found for the chart." From a83e622d53b2b12d12dbbbafc2623abf0ddf8832 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:14:11 +0200 Subject: [PATCH 179/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 8b61a4d0e..e965d8e33 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:13+0200\n" +"PO-Revision-Date: 2010-11-26 21:14+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1857,7 +1857,7 @@ msgstr "Kyselyn tulokset" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "" +msgstr "Kaaviolle ei ole tietoja." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." From 99ebee415da90c19c85bfad550eb33bf200bf350 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:15:31 +0200 Subject: [PATCH 180/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index e965d8e33..64c08de23 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:14+0200\n" +"PO-Revision-Date: 2010-11-26 21:15+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1861,7 +1861,7 @@ msgstr "Kaaviolle ei ole tietoja." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "" +msgstr "Kaavioiden käyttöön tarvitaan GD-laajennus." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." From f07c6fbd45ea5355cda1d554b9d3f06a11160aba Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:17:23 +0200 Subject: [PATCH 181/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 64c08de23..a9dd5ce2d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:15+0200\n" +"PO-Revision-Date: 2010-11-26 21:17+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1865,7 +1865,7 @@ msgstr "Kaavioiden käyttöön tarvitaan GD-laajennus." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "" +msgstr "Kaavioiden työkaluvihjeitä varten tarvitaan JSON-koodain." #: libraries/common.inc.php:571 msgid "" From 28924778d06d7299fb376192fdf09ff8a60f1ff1 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:17:41 +0200 Subject: [PATCH 182/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index a9dd5ce2d..4bf32a071 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1883,7 +1883,7 @@ msgstr "" ">Jos linkistä avautuva sivu on tyhjä, asetustiedostossa ei ollut virhettä." #: libraries/common.inc.php:582 -#, fuzzy, php-format +#, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" From ab701006f48b087078eb069d7a00ab4289158af2 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:18:00 +0200 Subject: [PATCH 183/732] Translation update done using Pootle. --- po/fi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 4bf32a071..f4131aa76 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:17+0200\n" +"PO-Revision-Date: 2010-11-26 21:18+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1895,10 +1895,10 @@ msgid "" msgstr "$cfg['PmaAbsoluteUri'] täytyy määritellä asetustiedostossa!" #: libraries/common.inc.php:617 -#, fuzzy, php-format +#, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" -msgstr "Virheellinen palvelimen indeksi: \"%s\"" +msgstr "Virheellinen palvelimen indeksi: %s" #: libraries/common.inc.php:624 #, php-format From c1c95e1ad5fdd9e1ed35fb30dd33e659ff36054c Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:18:07 +0200 Subject: [PATCH 184/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index f4131aa76..87b1bd121 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1926,10 +1926,9 @@ msgstr "Enimmäiskoko: %s%s" #. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:407 -#, fuzzy msgctxt "$mysql_5_1_doc_lang" msgid "en" -msgstr "Lähetetty" +msgstr "en" #. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:411 From 0dab2ed9228a653090323357c7360d765053878f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:18:41 +0200 Subject: [PATCH 185/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 87b1bd121..90c9bf7ea 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1932,10 +1932,9 @@ msgstr "en" #. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:411 -#, fuzzy msgctxt "$mysql_5_0_doc_lang" msgid "en" -msgstr "Lähetetty" +msgstr "en" #: libraries/common.lib.php:424 libraries/common.lib.php:426 #: libraries/common.lib.php:428 libraries/common.lib.php:444 From 5bab2d3cd26c26dce87c0575b1fbd8af3166e3ea Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:19:06 +0200 Subject: [PATCH 186/732] Translation update done using Pootle. --- po/fi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 90c9bf7ea..9ce130652 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:18+0200\n" +"PO-Revision-Date: 2010-11-26 21:19+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -1956,10 +1956,9 @@ msgid "MySQL said: " msgstr "MySQL ilmoittaa: " #: libraries/common.lib.php:1078 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" -msgstr "MySQL-palvelimeen ei voitu yhdistää" +msgstr "SQL-validaattoriin ei voitu yhdistää" #: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" From 453e082478a953d2ea994e4ddee265cd2c33d199 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:19:14 +0200 Subject: [PATCH 187/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 9ce130652..972abf386 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1991,7 +1991,7 @@ msgstr "Tarkista SQL-lause" #: libraries/common.lib.php:1244 msgid "Inline edit of this query" -msgstr "" +msgstr "Tämän kyselyn muokkaus" #: libraries/common.lib.php:1246 #, fuzzy From 8fed5b2f739652881d360015901e0452dc419b61 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:19:19 +0200 Subject: [PATCH 188/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 972abf386..c0798de26 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1994,10 +1994,9 @@ msgid "Inline edit of this query" msgstr "Tämän kyselyn muokkaus" #: libraries/common.lib.php:1246 -#, fuzzy #| msgid "Engines" msgid "Inline" -msgstr "Moottorit" +msgstr "Muokkaus" #: libraries/common.lib.php:1310 libraries/common.lib.php:1326 msgid "Profiling" From 4cec8c97b08dfb38bba521425f631ea01d8635f5 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:19:44 +0200 Subject: [PATCH 189/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index c0798de26..92e8a88f4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2118,7 +2118,7 @@ msgstr "Toiminnot" #: libraries/common.lib.php:2957 msgid "Browse your computer:" -msgstr "" +msgstr "Selaa tietokonettasi:" #: libraries/common.lib.php:2970 #, fuzzy, php-format From d224ebb9a939e3defdb15837940a5bd76fada2ed Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:21:15 +0200 Subject: [PATCH 190/732] Translation update done using Pootle. --- po/fi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fi.po b/po/fi.po index 92e8a88f4..e418e954a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:19+0200\n" +"PO-Revision-Date: 2010-11-26 21:21+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2121,10 +2121,10 @@ msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" #: libraries/common.lib.php:2970 -#, fuzzy, php-format +#, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" -msgstr "palvelimen lähetyshakemisto" +msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" #: libraries/common.lib.php:2982 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 From 5c0dbee08adbca55268f6565267826371830205f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:21:27 +0200 Subject: [PATCH 191/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index e418e954a..b498cadfd 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2142,7 +2142,7 @@ msgstr "rakenne" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "" +msgstr "data" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From d04375f0828396750fdaedf533604e493ddc1477 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:21:35 +0200 Subject: [PATCH 192/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index b498cadfd..0ddc93963 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2147,10 +2147,9 @@ msgstr "data" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#, fuzzy #| msgid "Structure and data" msgid "structure and data" -msgstr "Rakenne ja tiedot" +msgstr "rakenne ja tiedot" #: libraries/config.values.php:99 libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options to configure" From 7aec9e9a07c59f8722e3e409d45bdfbf0934def9 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:21:41 +0200 Subject: [PATCH 193/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 0ddc93963..e3cc2c6ca 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2142,7 +2142,7 @@ msgstr "rakenne" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "data" +msgstr "tiedot" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From 0010faad4059e4ce30dec500a7ba93afc5efb45e Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:22:54 +0200 Subject: [PATCH 194/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index e3cc2c6ca..87685e856 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:21+0200\n" +"PO-Revision-Date: 2010-11-26 21:22+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2153,7 +2153,7 @@ msgstr "rakenne ja tiedot" #: libraries/config.values.php:99 libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän" #: libraries/config.values.php:100 libraries/display_export.lib.php:129 msgid "Custom - display all possible options to configure" From 737b7326d6f78d7dc796e12171ba2b1340fa5703 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:23:06 +0200 Subject: [PATCH 195/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 87685e856..e69a0a005 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:22+0200\n" +"PO-Revision-Date: 2010-11-26 21:23+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2157,7 +2157,7 @@ msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän" #: libraries/config.values.php:100 libraries/display_export.lib.php:129 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Mukautettu - näytä kaikki mahdolliset asetukset" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" From 2f8ef7a6a2de19e112eca5b5b4aa5eb137ffdb3b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:23:27 +0200 Subject: [PATCH 196/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index e69a0a005..e601b3b03 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2161,7 +2161,7 @@ msgstr "Mukautettu - näytä kaikki mahdolliset asetukset" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" -msgstr "" +msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa" #: libraries/config.values.php:119 #, fuzzy From d719bdbfefa8d96b267df6766d28a70b968e674f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:23:35 +0200 Subject: [PATCH 197/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index e601b3b03..3ce2e6661 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2164,7 +2164,6 @@ msgid "Custom - like above, but without the quick/custom choice" msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa" #: libraries/config.values.php:119 -#, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Kokonaiset lisäyslauseet" From d0d41daa9ca69667f9b8dd9d401ec28c07be6552 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:23:41 +0200 Subject: [PATCH 198/732] Translation update done using Pootle. --- po/fi.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 3ce2e6661..83deed0ad 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2169,7 +2169,6 @@ msgid "complete inserts" msgstr "Kokonaiset lisäyslauseet" #: libraries/config.values.php:120 -#, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Laajennetut lisäyslauseet" From 89e17733bc281e2ad27fe37354cd6b5f017117dd Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:23:47 +0200 Subject: [PATCH 199/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 83deed0ad..5194f8d7f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2175,7 +2175,7 @@ msgstr "Laajennetut lisäyslauseet" #: libraries/config.values.php:121 msgid "both of the above" -msgstr "" +msgstr "molemmat yltä" #: libraries/config.values.php:122 msgid "neither of the above" From 3128eb87baf924ac74d3a64b7f7c1aa5828652ed Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:23:54 +0200 Subject: [PATCH 200/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 5194f8d7f..d98928ebc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2179,7 +2179,7 @@ msgstr "molemmat yltä" #: libraries/config.values.php:122 msgid "neither of the above" -msgstr "" +msgstr "ei kumpikaan yltä" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:416 From 78c1acd7d1db673d99628302272a636528b10218 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:24:06 +0200 Subject: [PATCH 201/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index d98928ebc..fff05ffda 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:23+0200\n" +"PO-Revision-Date: 2010-11-26 21:24+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2206,7 +2206,7 @@ msgstr "Virheellinen arvo" #: libraries/config/validate.lib.php:458 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "Arvon on oltava yhtä suuri tai pienempi kuin %s" #: libraries/config/FormDisplay.class.php:535 #, php-format From e41e289442a612e980178b777a516ec6f62891be Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:24:12 +0200 Subject: [PATCH 202/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index fff05ffda..9bd11f853 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2215,10 +2215,9 @@ msgstr "Kohteesta %s puuttuu tiedot" #: libraries/config/FormDisplay.class.php:727 #: libraries/config/FormDisplay.class.php:731 -#, fuzzy #| msgid "Variable" msgid "unavailable" -msgstr "Muuttuja" +msgstr "Ei saatavilla" #: libraries/config/FormDisplay.class.php:728 #: libraries/config/FormDisplay.class.php:732 From 33148bc8097a9ec5ad3f1d93de5c4e1f1c15988f Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:24:40 +0200 Subject: [PATCH 203/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 9bd11f853..34486831b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2223,7 +2223,7 @@ msgstr "Ei saatavilla" #: libraries/config/FormDisplay.class.php:732 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" vaatii laajennuksen %s" #: libraries/config/FormDisplay.class.php:746 #, php-format From acae2efdc0df71f953d18df3b63a0a186980b307 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:24:53 +0200 Subject: [PATCH 204/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 34486831b..80aab0845 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2228,7 +2228,7 @@ msgstr "\"%s\" vaatii laajennuksen %s" #: libraries/config/FormDisplay.class.php:746 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "tuonti ei toimi, puuttuva funktio (%s)" #: libraries/config/FormDisplay.class.php:750 #, php-format From c2e17d0f8a5875515ee8e52d30729c11b6bbcab0 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:25:02 +0200 Subject: [PATCH 205/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 80aab0845..048689c78 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:24+0200\n" +"PO-Revision-Date: 2010-11-26 21:25+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2233,7 +2233,7 @@ msgstr "tuonti ei toimi, puuttuva funktio (%s)" #: libraries/config/FormDisplay.class.php:750 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "vienti ei toimi, puuttuva funktio (%s)" #: libraries/config/FormDisplay.class.php:757 msgid "SQL Validator is disabled" From c11267c99d94caf6124614c47af765cb9c10a24b Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:25:11 +0200 Subject: [PATCH 206/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 048689c78..b8be65042 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2237,7 +2237,7 @@ msgstr "vienti ei toimi, puuttuva funktio (%s)" #: libraries/config/FormDisplay.class.php:757 msgid "SQL Validator is disabled" -msgstr "" +msgstr "SQL-validaattori ei ole käytössä" #: libraries/config/FormDisplay.class.php:764 #, fuzzy From 248551d8e9066d7a524620610e69088c4b6cd55e Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:25:17 +0200 Subject: [PATCH 207/732] Translation update done using Pootle. --- po/fi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index b8be65042..903b98a8d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2240,10 +2240,9 @@ msgid "SQL Validator is disabled" msgstr "SQL-validaattori ei ole käytössä" #: libraries/config/FormDisplay.class.php:764 -#, fuzzy #| msgid "PHP extension to use" msgid "SOAP extension not found" -msgstr "Käytettävä PHP-laajennus" +msgstr "SOAP-laajennusta ei löydy" #: libraries/config/FormDisplay.class.php:772 #, fuzzy, php-format From 5ab0ea5903d4beb2f53028952a4bde470ce89647 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:25:25 +0200 Subject: [PATCH 208/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 903b98a8d..5f0b5bfdf 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2245,10 +2245,10 @@ msgid "SOAP extension not found" msgstr "SOAP-laajennusta ei löydy" #: libraries/config/FormDisplay.class.php:772 -#, fuzzy, php-format +#, php-format #| msgid "Maximum tables" msgid "maximum %s" -msgstr "Tauluja enintään" +msgstr "Enintään %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" From 93ee4df8f11b2ede570e01b54050a889b97bbb72 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:25:59 +0200 Subject: [PATCH 209/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index 5f0b5bfdf..47dabcdab 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2252,7 +2252,7 @@ msgstr "Enintään %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "" +msgstr "Tämä asetus on poissa käytöstä; sitä ei lisätä asetuksiisi" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:83 #: libraries/relation.lib.php:90 pmd_relation_new.php:68 From 581d6cae48e40a9e6a46e45c473c051b15c8f9c2 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:26:32 +0200 Subject: [PATCH 210/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index 47dabcdab..fcbcf500f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:25+0200\n" +"PO-Revision-Date: 2010-11-26 21:26+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2252,7 +2252,7 @@ msgstr "Enintään %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "Tämä asetus on poissa käytöstä; sitä ei lisätä asetuksiisi" +msgstr "Tämä asetus on poissa käytöstä; sitä ei käytetä asetusmäärittelyssäsi" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:83 #: libraries/relation.lib.php:90 pmd_relation_new.php:68 From d9c5e12d77adb21c9fd999fd9cf684a839f0b3ba Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:26:47 +0200 Subject: [PATCH 211/732] Translation update done using Pootle. --- po/fi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index fcbcf500f..c9c1b9386 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2271,7 +2271,7 @@ msgstr "Palauta oletusarvo" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Anna käyttäjien mukauttaa tätä arvoa" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 From 5ca2fcf190c3c8425f144eb5b62a29a1ff45b581 Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:28:39 +0200 Subject: [PATCH 212/732] Translation update done using Pootle. --- po/fi.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/fi.po b/po/fi.po index c9c1b9386..d7c33722d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:26+0200\n" +"PO-Revision-Date: 2010-11-26 21:28+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2304,6 +2304,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Tämän ottaminen käyttöön antaa eri palvelimella olevan sivun kutsua " +"phpMyAdminia kehyksessä, ja on mahdollinen [strong]turva-aukko[/strong], " +"joka mahdollistaa kehystenväliset skriptihyökkäykset." #: libraries/config/messages.inc.php:20 msgid "Allow third party framing" From 3f3ef7737678ce060dcabcbbc3666f1e141ac5ff Mon Sep 17 00:00:00 2001 From: asdfsdf Date: Fri, 26 Nov 2010 21:29:20 +0200 Subject: [PATCH 213/732] Translation update done using Pootle. --- po/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/fi.po b/po/fi.po index d7c33722d..316219918 100644 --- a/po/fi.po +++ b/po/fi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 21:28+0200\n" +"PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" "Language: fi\n" @@ -2310,7 +2310,7 @@ msgstr "" #: libraries/config/messages.inc.php:20 msgid "Allow third party framing" -msgstr "" +msgstr "Anna kolmannen osapuolen käyttää kehystä" #: libraries/config/messages.inc.php:21 msgid "Show "Drop database" link to normal users" From 1d6d5aa0722d712d8913d0e984fe37934e63df98 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:35:10 +0200 Subject: [PATCH 214/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index ec1127573..cff4fff94 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 15:56+0200\n" +"PO-Revision-Date: 2010-11-26 22:35+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -948,10 +948,9 @@ msgid "Dropping Event" msgstr "Συμβάν διαγραφής" #: js/messages.php:33 -#, fuzzy #| msgid "Procedures" msgid "Dropping Procedure" -msgstr "Διαδικασίες" +msgstr "Διαδικασία διαγραφής" #: js/messages.php:35 #, fuzzy From 4cdde7b1379722a67c20c0f20aaf4b9ac0f2c046 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:35:25 +0200 Subject: [PATCH 215/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index cff4fff94..52cb43246 100644 --- a/po/el.po +++ b/po/el.po @@ -953,10 +953,9 @@ msgid "Dropping Procedure" msgstr "Διαδικασία διαγραφής" #: js/messages.php:35 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Deleting tracking data" -msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" +msgstr "Διαγραφή δεδομένων παρακολούθησης" #: js/messages.php:36 msgid "Dropping Primary Key/Index" From e05bd40ff2c1ed25b50db1effbd85d8ca1b8b042 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:35:37 +0200 Subject: [PATCH 216/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 52cb43246..ced758428 100644 --- a/po/el.po +++ b/po/el.po @@ -1000,7 +1000,6 @@ msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" #: js/messages.php:52 -#, fuzzy #| msgid "Add a new User" msgid "Add a New User" msgstr "Προσθήκη νέου Χρήστη" From 805544b97989523e1c262729b34f4df25b1a53a7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:35:49 +0200 Subject: [PATCH 217/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ced758428..caa52e17c 100644 --- a/po/el.po +++ b/po/el.po @@ -1005,10 +1005,9 @@ msgid "Add a New User" msgstr "Προσθήκη νέου Χρήστη" #: js/messages.php:53 -#, fuzzy #| msgid "Create version" msgid "Create User" -msgstr "Δημιουργία έκδοσης" +msgstr "Δημιουργία Χρήστη" #: js/messages.php:54 #, fuzzy From d66826f981395bc4cec6adef0daaa07a49f26e87 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:36:01 +0200 Subject: [PATCH 218/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index caa52e17c..8b7d6bda2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:35+0200\n" +"PO-Revision-Date: 2010-11-26 22:36+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1010,7 +1010,6 @@ msgid "Create User" msgstr "Δημιουργία Χρήστη" #: js/messages.php:54 -#, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Επαναφόρτωση δικαιωμάτων" From 23b827f0c043e9d6c18e52209fa5140a8eb7f106 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:36:38 +0200 Subject: [PATCH 219/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 8b7d6bda2..82ddf05ff 100644 --- a/po/el.po +++ b/po/el.po @@ -1015,7 +1015,6 @@ msgid "Reloading Privileges" msgstr "Επαναφόρτωση δικαιωμάτων" #: js/messages.php:55 -#, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" From fd8e4dc02a1c5f9b3252604954847443e01a7446 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:36:41 +0200 Subject: [PATCH 220/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 82ddf05ff..48a88de9d 100644 --- a/po/el.po +++ b/po/el.po @@ -1030,7 +1030,6 @@ msgid "Cancel" msgstr "Άκυρο" #: js/messages.php:63 -#, fuzzy #| msgid "Load" msgid "Loading" msgstr "Φόρτωση" From f932cafc035b680f1cec9ba28a2abf4fe48964e2 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:37:02 +0200 Subject: [PATCH 221/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 48a88de9d..3e2ac6d40 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:36+0200\n" +"PO-Revision-Date: 2010-11-26 22:37+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1035,10 +1035,9 @@ msgid "Loading" msgstr "Φόρτωση" #: js/messages.php:64 -#, fuzzy #| msgid "Processes" msgid "Processing Request" -msgstr "Διεργασίες" +msgstr "Προώθηση Αιτήματος" #: js/messages.php:65 msgid "Error in Processing Request" From 7bd33377a0ebe32b156a2be9f9ad26abaad39f54 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:37:22 +0200 Subject: [PATCH 222/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 3e2ac6d40..3ab73b13f 100644 --- a/po/el.po +++ b/po/el.po @@ -1058,10 +1058,9 @@ msgid "OK" msgstr "Εντάξει" #: js/messages.php:71 -#, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" -msgstr "Μετονομασία βάσης δεδομένων σε" +msgstr "Μετονομασία βάσεων δεδομένων" #: js/messages.php:72 #, fuzzy From 5f73fad241f4ccaf2cb44b74eff9fb638e00ab7d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:38:10 +0200 Subject: [PATCH 223/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 3ab73b13f..ba80dc21f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:37+0200\n" +"PO-Revision-Date: 2010-11-26 22:38+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1063,10 +1063,9 @@ msgid "Renaming Databases" msgstr "Μετονομασία βάσεων δεδομένων" #: js/messages.php:72 -#, fuzzy #| msgid "Rename database to" msgid "Reload Database" -msgstr "Μετονομασία βάσης δεδομένων σε" +msgstr "Επαναφόρτωση βάσεων δεδομένων" #: js/messages.php:73 #, fuzzy From 07bb2056c710e08c1890333d39e433d09a452b27 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:38:20 +0200 Subject: [PATCH 224/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ba80dc21f..5e0fd6c2f 100644 --- a/po/el.po +++ b/po/el.po @@ -1068,10 +1068,9 @@ msgid "Reload Database" msgstr "Επαναφόρτωση βάσεων δεδομένων" #: js/messages.php:73 -#, fuzzy #| msgid "Copy database to" msgid "Copying Database" -msgstr "Αντιγραφή βάσης δεδομένων σε" +msgstr "Αντιγραφή βάσης δεδομένων" #: js/messages.php:74 #, fuzzy From bdd315c4cdfe46498317b9ffd024428c7b20fa26 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:38:46 +0200 Subject: [PATCH 225/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 5e0fd6c2f..27f3eff8d 100644 --- a/po/el.po +++ b/po/el.po @@ -1073,10 +1073,9 @@ msgid "Copying Database" msgstr "Αντιγραφή βάσης δεδομένων" #: js/messages.php:74 -#, fuzzy #| msgid "Charset" msgid "Changing Charset" -msgstr "Σύνολο χαρακτήρων" +msgstr "Αλλαγή Συνόλου χαρακτήρων" #: js/messages.php:75 #, fuzzy From f0e5de5262ca94232ec2a36f6f697021a3bdfc23 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:39:12 +0200 Subject: [PATCH 226/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 27f3eff8d..96ff661c8 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:38+0200\n" +"PO-Revision-Date: 2010-11-26 22:39+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1078,10 +1078,9 @@ msgid "Changing Charset" msgstr "Αλλαγή Συνόλου χαρακτήρων" #: js/messages.php:75 -#, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" -msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον ένα πεδίο." +msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη" #: js/messages.php:76 #, fuzzy From fb91ec6f7e92d4609631988c334d413a8bbf59f8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:39:20 +0200 Subject: [PATCH 227/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 96ff661c8..d1468c8ec 100644 --- a/po/el.po +++ b/po/el.po @@ -1083,10 +1083,9 @@ msgid "Table must have at least one column" msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη" #: js/messages.php:76 -#, fuzzy #| msgid "Create table" msgid "Create Table" -msgstr "Δημιουργία πίνακα" +msgstr "Δημιουργία Πίνακα" #: js/messages.php:81 #, fuzzy From ef4417dc3fe0d3b3a23350a2754f019b591f9a5c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:39:25 +0200 Subject: [PATCH 228/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index d1468c8ec..f167d37c6 100644 --- a/po/el.po +++ b/po/el.po @@ -1088,7 +1088,6 @@ msgid "Create Table" msgstr "Δημιουργία Πίνακα" #: js/messages.php:81 -#, fuzzy #| msgid "Search" msgid "Searching" msgstr "Αναζήτηση" From cbc9bc66ea28783d050a78241973a7314c8840f0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:39:52 +0200 Subject: [PATCH 229/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index f167d37c6..5f12288f0 100644 --- a/po/el.po +++ b/po/el.po @@ -1093,10 +1093,9 @@ msgid "Searching" msgstr "Αναζήτηση" #: js/messages.php:84 -#, fuzzy #| msgid "SQL Query box" msgid "Hide query box" -msgstr "Χώρος Ερωτήματος SQL" +msgstr "Απόκρυψη παραθύρου ερωτήματος SQL" #: js/messages.php:85 #, fuzzy From 7a5a0d4aa1b5d3094d65466ad27f409e1b6a58d8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:40:11 +0200 Subject: [PATCH 230/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 5f12288f0..6a199fa79 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:39+0200\n" +"PO-Revision-Date: 2010-11-26 22:40+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1098,10 +1098,9 @@ msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος SQL" #: js/messages.php:85 -#, fuzzy #| msgid "SQL Query box" msgid "Show query box" -msgstr "Χώρος Ερωτήματος SQL" +msgstr "Προβολή παραθύρου ερωτήματος SQL" #: js/messages.php:86 #, fuzzy From e3b8e1c2c7c6f6c4f45031c181c32e9d9c33f423 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:40:26 +0200 Subject: [PATCH 231/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 6a199fa79..8c218c3cd 100644 --- a/po/el.po +++ b/po/el.po @@ -1103,9 +1103,8 @@ msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος SQL" #: js/messages.php:86 -#, fuzzy msgid "Inline Edit" -msgstr "Μηχανές" +msgstr "Εσωτερική Επεξεργασία" #: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 From bbe3b44885dfafb47648110c8c6a7ddcfded96ec Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:40:43 +0200 Subject: [PATCH 232/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8c218c3cd..8df551100 100644 --- a/po/el.po +++ b/po/el.po @@ -1124,10 +1124,9 @@ msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" #: js/messages.php:95 pmd_general.php:89 tbl_relation.php:545 -#, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" -msgstr "Επιλέξτε πεδίο για εμφάνιση" +msgstr "Επιλέξτε στήλη για εμφάνιση" #: js/messages.php:98 msgid "Add an option for column " From fc6662a9ec2001b5df4532e039cebe676f32807f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:40:59 +0200 Subject: [PATCH 233/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8df551100..d9d944512 100644 --- a/po/el.po +++ b/po/el.po @@ -1133,10 +1133,9 @@ msgid "Add an option for column " msgstr "Προσθήκη επιλογής για τη στήλη " #: js/messages.php:101 -#, fuzzy #| msgid "Generate Password" msgid "Generate password" -msgstr "Παραγωγή Κωδικού Πρόσβασης" +msgstr "Δημιουργία Κωδικού Πρόσβασης" #: js/messages.php:102 libraries/replication_gui.lib.php:365 msgid "Generate" From d297849f003fdbc212bd608a792b0f86400ab764 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:41:14 +0200 Subject: [PATCH 234/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index d9d944512..d800f403f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:40+0200\n" +"PO-Revision-Date: 2010-11-26 22:41+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1142,10 +1142,9 @@ msgid "Generate" msgstr "Παραγωγή" #: js/messages.php:103 -#, fuzzy #| msgid "Change password" msgid "Change Password" -msgstr "Αλλαγή κωδικού πρόσβασης" +msgstr "Αλλαγή Κωδικού Πρόσβασης" #: js/messages.php:106 #, fuzzy From c0d2e37750417615414b3d8a78580803d7f460da Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:41:25 +0200 Subject: [PATCH 235/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d800f403f..74f29edd1 100644 --- a/po/el.po +++ b/po/el.po @@ -1147,9 +1147,8 @@ msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" #: js/messages.php:106 -#, fuzzy msgid "More" -msgstr "Δευτέρα" +msgstr "Περισσότερα" #. l10n: Display text for calendar close link #: js/messages.php:116 From bcd2631a3de7a457d0a15643e4f424a923d7973c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:41:35 +0200 Subject: [PATCH 236/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 74f29edd1..d33c53101 100644 --- a/po/el.po +++ b/po/el.po @@ -1152,9 +1152,8 @@ msgstr "Περισσότερα" #. l10n: Display text for calendar close link #: js/messages.php:116 -#, fuzzy msgid "Done" -msgstr "Δωρεά" +msgstr "Ολοκληρώθηκε" #. l10n: Display text for previous month link in calendar #: js/messages.php:118 From 766ee72450e6e9a8303bff514ffc7452b7c74a06 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:41:41 +0200 Subject: [PATCH 237/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index d33c53101..26dddbe97 100644 --- a/po/el.po +++ b/po/el.po @@ -1157,7 +1157,6 @@ msgstr "Ολοκληρώθηκε" #. l10n: Display text for previous month link in calendar #: js/messages.php:118 -#, fuzzy msgid "Prev" msgstr "Προηγούμενο" From 6da196e6276addb0a807e2a8aaddf0c6c0cdd9fe Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:41:49 +0200 Subject: [PATCH 238/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 26dddbe97..1cc18d3d1 100644 --- a/po/el.po +++ b/po/el.po @@ -1170,9 +1170,8 @@ msgstr "Επόμενο" #. l10n: Display text for current month link in calendar #: js/messages.php:122 -#, fuzzy msgid "Today" -msgstr "Σύνολο" +msgstr "Σήμερα" #: js/messages.php:125 #, fuzzy From 6db33633863058c257c67cb1e03756471f52e4d7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:42:00 +0200 Subject: [PATCH 239/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 1cc18d3d1..446d95c31 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:41+0200\n" +"PO-Revision-Date: 2010-11-26 22:42+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1174,9 +1174,8 @@ msgid "Today" msgstr "Σήμερα" #: js/messages.php:125 -#, fuzzy msgid "January" -msgstr "Δυαδικό" +msgstr "Ιανουαρίου" #: js/messages.php:126 msgid "February" From 68a7292a0b6a212a79ae28c5b31359d1dce4daf9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:42:10 +0200 Subject: [PATCH 240/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 446d95c31..e2cf347dc 100644 --- a/po/el.po +++ b/po/el.po @@ -1182,7 +1182,6 @@ msgid "February" msgstr "Φεβρουαρίου" #: js/messages.php:127 -#, fuzzy msgid "March" msgstr "Μαρτίου" From 2d62d3f1ac033fc942218cfd8762b59ca0651b2a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:42:14 +0200 Subject: [PATCH 241/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index e2cf347dc..5c167dd31 100644 --- a/po/el.po +++ b/po/el.po @@ -1186,7 +1186,6 @@ msgid "March" msgstr "Μαρτίου" #: js/messages.php:128 -#, fuzzy msgid "April" msgstr "Απριλίου" From beeebddba34a93ae762e6f9a54808a5e739e9cb2 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:42:27 +0200 Subject: [PATCH 242/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 5c167dd31..73f2e6fb9 100644 --- a/po/el.po +++ b/po/el.po @@ -1194,7 +1194,6 @@ msgid "May" msgstr "Μαΐου" #: js/messages.php:130 -#, fuzzy msgid "June" msgstr "Ιουνίου" From fb32b4f3ec7d9611da07d7a43809f50a9b2cbdcf Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:42:29 +0200 Subject: [PATCH 243/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 73f2e6fb9..4dfa31f16 100644 --- a/po/el.po +++ b/po/el.po @@ -1198,7 +1198,6 @@ msgid "June" msgstr "Ιουνίου" #: js/messages.php:131 -#, fuzzy msgid "July" msgstr "Ιουλίου" From 6b69fba10a2a429dc731267f35aeccfbbbeec746 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:42:32 +0200 Subject: [PATCH 244/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 4dfa31f16..0341842d7 100644 --- a/po/el.po +++ b/po/el.po @@ -1202,7 +1202,6 @@ msgid "July" msgstr "Ιουλίου" #: js/messages.php:132 -#, fuzzy msgid "August" msgstr "Αυγούστου" From a457caf6c604ad9b02a00d27de3af1a42e66f6ef Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:43:04 +0200 Subject: [PATCH 245/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 0341842d7..d834862a4 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:42+0200\n" +"PO-Revision-Date: 2010-11-26 22:43+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1210,7 +1210,6 @@ msgid "September" msgstr "Σεπτεμβρίου" #: js/messages.php:134 -#, fuzzy msgid "October" msgstr "Οκτωβρίου" From 5d4c1a8b2d7d3b0c352731643446575f48631f2b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:43:25 +0200 Subject: [PATCH 246/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index d834862a4..acd27af03 100644 --- a/po/el.po +++ b/po/el.po @@ -1243,7 +1243,6 @@ msgstr "Απριλίου" #. l10n: Short month name #: js/messages.php:148 libraries/common.lib.php:1553 -#, fuzzy msgctxt "Short month name" msgid "May" msgstr "Μαΐου" From 0a0b6411005a4cb458e8159c0d26b68de5061f48 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:43:31 +0200 Subject: [PATCH 247/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index acd27af03..4f323262a 100644 --- a/po/el.po +++ b/po/el.po @@ -1283,7 +1283,6 @@ msgid "Dec" msgstr "Δεκεμβρίου" #: js/messages.php:165 -#, fuzzy msgid "Sunday" msgstr "Κυριακή" From 6867e141b1839ef488e488fe434a12450f2499df Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:43:34 +0200 Subject: [PATCH 248/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 4f323262a..5f5637813 100644 --- a/po/el.po +++ b/po/el.po @@ -1287,7 +1287,6 @@ msgid "Sunday" msgstr "Κυριακή" #: js/messages.php:166 -#, fuzzy msgid "Monday" msgstr "Δευτέρα" From ae6dfd9815d90c8b5cefcfb9250438cf15179343 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:43:37 +0200 Subject: [PATCH 249/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 5f5637813..5a2e1a587 100644 --- a/po/el.po +++ b/po/el.po @@ -1291,7 +1291,6 @@ msgid "Monday" msgstr "Δευτέρα" #: js/messages.php:167 -#, fuzzy msgid "Tuesday" msgstr "Τρίτη" From 7f6921d83b517538f343b430b25c52db6e5d042f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:43:41 +0200 Subject: [PATCH 250/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 5a2e1a587..3d333b53e 100644 --- a/po/el.po +++ b/po/el.po @@ -1303,7 +1303,6 @@ msgid "Thursday" msgstr "Πέμπτη" #: js/messages.php:170 -#, fuzzy msgid "Friday" msgstr "Παρασκευή" From ca700882120f7691fe718ed23ee2d2c09a5a8914 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:08 +0200 Subject: [PATCH 251/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 3d333b53e..1292e9677 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:43+0200\n" +"PO-Revision-Date: 2010-11-26 22:44+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1347,9 +1347,8 @@ msgstr "Σάββατο" #. l10n: Minimal week day name #: js/messages.php:191 -#, fuzzy msgid "Su" -msgstr "Κυριακή" +msgstr "Κυ" #. l10n: Minimal week day name #: js/messages.php:193 From a82559457d6800d4899ec323677e8230cd5f60a0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:16 +0200 Subject: [PATCH 252/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 1292e9677..86abcae4f 100644 --- a/po/el.po +++ b/po/el.po @@ -1352,9 +1352,8 @@ msgstr "Κυ" #. l10n: Minimal week day name #: js/messages.php:193 -#, fuzzy msgid "Mo" -msgstr "Δευτέρα" +msgstr "Δε" #. l10n: Minimal week day name #: js/messages.php:195 From 9c5ba399182ca1beda7cb3f0b655f9ea2fbd6a1f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:22 +0200 Subject: [PATCH 253/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 86abcae4f..9f7496a1d 100644 --- a/po/el.po +++ b/po/el.po @@ -1357,9 +1357,8 @@ msgstr "Δε" #. l10n: Minimal week day name #: js/messages.php:195 -#, fuzzy msgid "Tu" -msgstr "Τρίτη" +msgstr "Τρ" #. l10n: Minimal week day name #: js/messages.php:197 From f55f9e8eb228bac324537ac5f0a96b3379833d79 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:28 +0200 Subject: [PATCH 254/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 9f7496a1d..d2e61471c 100644 --- a/po/el.po +++ b/po/el.po @@ -1362,9 +1362,8 @@ msgstr "Τρ" #. l10n: Minimal week day name #: js/messages.php:197 -#, fuzzy msgid "We" -msgstr "Τετάρτη" +msgstr "Τε" #. l10n: Minimal week day name #: js/messages.php:199 From d91c9e3a5946e633417d6ec2f238eb440c7aa2a6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:33 +0200 Subject: [PATCH 255/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d2e61471c..a86f5786e 100644 --- a/po/el.po +++ b/po/el.po @@ -1367,9 +1367,8 @@ msgstr "Τε" #. l10n: Minimal week day name #: js/messages.php:199 -#, fuzzy msgid "Th" -msgstr "Πέμπτη" +msgstr "Πε" #. l10n: Minimal week day name #: js/messages.php:201 From 0b7aed5f0921743d2c37eee3d2b5c06c389b6105 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:39 +0200 Subject: [PATCH 256/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a86f5786e..5ed2a979f 100644 --- a/po/el.po +++ b/po/el.po @@ -1372,9 +1372,8 @@ msgstr "Πε" #. l10n: Minimal week day name #: js/messages.php:201 -#, fuzzy msgid "Fr" -msgstr "Παρασκευή" +msgstr "Πα" #. l10n: Minimal week day name #: js/messages.php:203 From 0291359379c09266f2d6ae77ccf4272851358991 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:44 +0200 Subject: [PATCH 257/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 5ed2a979f..6999df687 100644 --- a/po/el.po +++ b/po/el.po @@ -1377,9 +1377,8 @@ msgstr "Πα" #. l10n: Minimal week day name #: js/messages.php:203 -#, fuzzy msgid "Sa" -msgstr "Σάββατο" +msgstr "Σα" #. l10n: Column header for week of the year in calendar #: js/messages.php:205 From 537bddb17ac04320a1a6330c4a42d273828233f4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:49 +0200 Subject: [PATCH 258/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 6999df687..c086e34fc 100644 --- a/po/el.po +++ b/po/el.po @@ -1382,7 +1382,6 @@ msgstr "Σα" #. l10n: Column header for week of the year in calendar #: js/messages.php:205 -#, fuzzy msgid "Wk" msgstr "Wiki" From 394925e781be76de13f0bbc9a9691e7b8e6a34ad Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:44:58 +0200 Subject: [PATCH 259/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index c086e34fc..f0837d38d 100644 --- a/po/el.po +++ b/po/el.po @@ -1390,9 +1390,8 @@ msgid "Hour" msgstr "Ώρα" #: js/messages.php:208 -#, fuzzy msgid "Minute" -msgstr "σε χρήση" +msgstr "Λεπτό" #: js/messages.php:209 #, fuzzy From 60d20bf632acc97a5f4b72ea873821d52d79df67 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:45:07 +0200 Subject: [PATCH 260/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index f0837d38d..10846ce0c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:44+0200\n" +"PO-Revision-Date: 2010-11-26 22:45+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1394,9 +1394,8 @@ msgid "Minute" msgstr "Λεπτό" #: js/messages.php:209 -#, fuzzy msgid "Second" -msgstr "ανά δευτερόλεπτο" +msgstr "Δευτερόλεπτο" #: libraries/Config.class.php:1190 tbl_chart.php:159 msgid "Font size" From dcb78f341ccb65ac8f236cd2399201280cc6efd6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:45:41 +0200 Subject: [PATCH 261/732] Translation update done using Pootle. --- po/el.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 10846ce0c..0ae6a7061 100644 --- a/po/el.po +++ b/po/el.po @@ -1511,11 +1511,11 @@ msgid "Error" msgstr "λάθος" #: libraries/Message.class.php:281 -#, fuzzy, php-format +#, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "Επηρεάστηκε(αν) %1$d γραμμή(ές)." -msgstr[1] "Επηρεάστηκε(αν) %1$d γραμμή(ές)." +msgstr[0] "Επηρεάστηκε %1$d γραμμή." +msgstr[1] "Επηρεάστηκαν %1$d γραμμές." #: libraries/Message.class.php:300 #, fuzzy, php-format From ad2dcc3795ac94eed891a6c2b39fb1537386f182 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:46:09 +0200 Subject: [PATCH 262/732] Translation update done using Pootle. --- po/el.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index 0ae6a7061..5e5d3451e 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:45+0200\n" +"PO-Revision-Date: 2010-11-26 22:46+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1518,11 +1518,11 @@ msgstr[0] "Επηρεάστηκε %1$d γραμμή." msgstr[1] "Επηρεάστηκαν %1$d γραμμές." #: libraries/Message.class.php:300 -#, fuzzy, php-format +#, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "Διαγράφτηκε(αν) %1$d γραμμή(ές)." -msgstr[1] "Διαγράφτηκε(αν) %1$d γραμμή(ές)." +msgstr[0] "Διαγράφτηκε %1$d γραμμή." +msgstr[1] "Διαγράφτηκαν %1$d γραμμές." #: libraries/Message.class.php:319 #, fuzzy, php-format From 8cdc05fc36809db68d0f3069266c0815842347a8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:46:31 +0200 Subject: [PATCH 263/732] Translation update done using Pootle. --- po/el.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 5e5d3451e..ccbf658e2 100644 --- a/po/el.po +++ b/po/el.po @@ -1525,11 +1525,11 @@ msgstr[0] "Διαγράφτηκε %1$d γραμμή." msgstr[1] "Διαγράφτηκαν %1$d γραμμές." #: libraries/Message.class.php:319 -#, fuzzy, php-format +#, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "Εισήχθηκε(αν) %1$d γραμμή(ές)." -msgstr[1] "Εισήχθηκε(αν) %1$d γραμμή(ές)." +msgstr[0] "Εισήχθηκε %1$d γραμμή." +msgstr[1] "Εισήχθηκαν %1$d γραμμές." #: libraries/StorageEngine.class.php:194 msgid "" From eb720836edc86f954e9dad68791f73e38a045227 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:46:39 +0200 Subject: [PATCH 264/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index ccbf658e2..7dffd40be 100644 --- a/po/el.po +++ b/po/el.po @@ -1787,7 +1787,6 @@ msgid "Overhead" msgstr "Περίσσεια" #: libraries/build_html_for_db.lib.php:93 -#, fuzzy msgid "Jump to database" msgstr "Μετάβαση στη βάση δεδομένων" From 84eb68080cfe97c90bc49ac3c89cc1e4c82c2830 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:47:00 +0200 Subject: [PATCH 265/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 7dffd40be..0321763e9 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:46+0200\n" +"PO-Revision-Date: 2010-11-26 22:47+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1791,10 +1791,9 @@ msgid "Jump to database" msgstr "Μετάβαση στη βάση δεδομένων" #: libraries/build_html_for_db.lib.php:130 -#, fuzzy #| msgid "Master replication" msgid "Not replicated" -msgstr "Πρωτεύουσα αναπαραγωγή" +msgstr "Χωρίς αναπαραγωγή" #: libraries/build_html_for_db.lib.php:136 #, fuzzy From 498b7c2a164d44d75cddd3c596502f44c4731015 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:47:25 +0200 Subject: [PATCH 266/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 0321763e9..d02647dfa 100644 --- a/po/el.po +++ b/po/el.po @@ -1796,10 +1796,9 @@ msgid "Not replicated" msgstr "Χωρίς αναπαραγωγή" #: libraries/build_html_for_db.lib.php:136 -#, fuzzy #| msgid "Replication" msgid "Replicated" -msgstr "Αναπαραγωγή" +msgstr "Αναπαραγμένο" #: libraries/build_html_for_db.lib.php:150 #, php-format From 241137a8aa1cc396bf729b87bbbadfa75128a320 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:47:44 +0200 Subject: [PATCH 267/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d02647dfa..2c67b3529 100644 --- a/po/el.po +++ b/po/el.po @@ -1810,10 +1810,9 @@ msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" #: libraries/chart.lib.php:40 -#, fuzzy #| msgid "Show statistics" msgid "Query statistics" -msgstr "Εμφάνιση στατιστικών" +msgstr "Στατιστικά ερωτήματος" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" From acdd4748ff6edbf89d21ce680a9f7c9e6371251d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:48:07 +0200 Subject: [PATCH 268/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 2c67b3529..d7cd94ce5 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:47+0200\n" +"PO-Revision-Date: 2010-11-26 22:48+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1819,10 +1819,9 @@ msgid "Query execution time comparison (in microseconds)" msgstr "Σύγκριση χρόνου εκτέλεσης ερωτήματος (σε χιλιοστοδευτερόλεπτα)" #: libraries/chart.lib.php:83 -#, fuzzy #| msgid "Query results operations" msgid "Query results" -msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" +msgstr "Αποτελέσματα ερωτήματος" #: libraries/chart.lib.php:109 msgid "No data found for the chart." From c4469e2788c56731f411827ea80a0d2aa1862984 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:48:19 +0200 Subject: [PATCH 269/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index d7cd94ce5..b0394e7cb 100644 --- a/po/el.po +++ b/po/el.po @@ -1853,7 +1853,7 @@ msgstr "" "σωστά." #: libraries/common.inc.php:582 -#, fuzzy, php-format +#, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" From f94afa0b782928063db341538523e062ccb970ee Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:48:32 +0200 Subject: [PATCH 270/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index b0394e7cb..4823adc5b 100644 --- a/po/el.po +++ b/po/el.po @@ -1866,9 +1866,9 @@ msgstr "" "ρυθμίσεων!" #: libraries/common.inc.php:617 -#, fuzzy, php-format +#, php-format msgid "Invalid server index: %s" -msgstr "Μη έγκυρο ευρετήριο διακομιστή: «%s»" +msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" #: libraries/common.inc.php:624 #, php-format From 832b8eb3ae2ef6b71682a1f4b5a8d825c9ca6928 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:48:49 +0200 Subject: [PATCH 271/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4823adc5b..8eb08cfa2 100644 --- a/po/el.po +++ b/po/el.po @@ -1928,10 +1928,9 @@ msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μύνημα: " #: libraries/common.lib.php:1078 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" -msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL" +msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL" #: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" From e38bec248e5b76d622c9f19f96691731e7dc0dfc Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:48:59 +0200 Subject: [PATCH 272/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8eb08cfa2..77e0807fc 100644 --- a/po/el.po +++ b/po/el.po @@ -1966,9 +1966,8 @@ msgid "Inline edit of this query" msgstr "Εσωτερική επεξεργασία αυτού του ερωτήματος" #: libraries/common.lib.php:1246 -#, fuzzy msgid "Inline" -msgstr "Μηχανές" +msgstr "Εσωτερικό" #: libraries/common.lib.php:1310 libraries/common.lib.php:1326 msgid "Profiling" From de9d3be075305f07fb895b640bb4ed8033ea7dbc Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:49:08 +0200 Subject: [PATCH 273/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 77e0807fc..35884b68d 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:48+0200\n" +"PO-Revision-Date: 2010-11-26 22:49+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2119,10 +2119,9 @@ msgstr "δεδομένα" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#, fuzzy #| msgid "Structure and data" msgid "structure and data" -msgstr "Δομή και δεδομένα" +msgstr "δομή και δεδομένα" #: libraries/config.values.php:99 libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options to configure" From 0b4f0fa8bdaaa345044568e0ab77f43a5fcf8c1d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:49:35 +0200 Subject: [PATCH 274/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 35884b68d..80481a05d 100644 --- a/po/el.po +++ b/po/el.po @@ -2137,10 +2137,9 @@ msgstr "" "Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου" #: libraries/config.values.php:119 -#, fuzzy #| msgid "Complete inserts" msgid "complete inserts" -msgstr "Πλήρεις εντολές «Insert»" +msgstr "πλήρεις εντολές εισαγωγής (Insert)" #: libraries/config.values.php:120 #, fuzzy From 6e95ae77d60f4924bdd015f4c20add814a865c53 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:50:01 +0200 Subject: [PATCH 275/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 80481a05d..030a6699f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:49+0200\n" +"PO-Revision-Date: 2010-11-26 22:50+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2142,10 +2142,9 @@ msgid "complete inserts" msgstr "πλήρεις εντολές εισαγωγής (Insert)" #: libraries/config.values.php:120 -#, fuzzy #| msgid "Extended inserts" msgid "extended inserts" -msgstr "Εκτεταμένες εντολές «Insert»" +msgstr "Εκτεταμένες εντολές εισαγωγής (Insert)" #: libraries/config.values.php:121 msgid "both of the above" From 48faa4a114b1c9cdf303c930e22078a5ae5f0662 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:50:20 +0200 Subject: [PATCH 276/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 030a6699f..14ee9ac65 100644 --- a/po/el.po +++ b/po/el.po @@ -2188,10 +2188,9 @@ msgstr "Απολεσθέντα δεδομένα για %s" #: libraries/config/FormDisplay.class.php:727 #: libraries/config/FormDisplay.class.php:731 -#, fuzzy #| msgid "Variable" msgid "unavailable" -msgstr "Μεταβλητή" +msgstr "μη διαθέσιμο" #: libraries/config/FormDisplay.class.php:728 #: libraries/config/FormDisplay.class.php:732 From 20092649e42e7b9b7db67c0b76ac2a926e33065d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:50:40 +0200 Subject: [PATCH 277/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 14ee9ac65..a18a0ae0d 100644 --- a/po/el.po +++ b/po/el.po @@ -2218,10 +2218,10 @@ msgid "SOAP extension not found" msgstr "Η επέκταση SOAP δεν βρέθηκε" #: libraries/config/FormDisplay.class.php:772 -#, fuzzy, php-format +#, php-format #| msgid "Maximum tables" msgid "maximum %s" -msgstr "Μέγιστος αριθμός πινάκων" +msgstr "Μέγιστος αριθμός %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" From f1a10dbe72323c32ad8a3b9a42af11278622a0e8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:51:43 +0200 Subject: [PATCH 278/732] Translation update done using Pootle. --- po/el.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/el.po b/po/el.po index a18a0ae0d..4bb60d876 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:50+0200\n" +"PO-Revision-Date: 2010-11-26 22:51+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2333,7 +2333,6 @@ msgid "Bzip2" msgstr "Bzip2" #: libraries/config/messages.inc.php:30 -#, fuzzy #| msgid "" #| "Defines which type of editing controls should be used for CHAR and " #| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]" @@ -2343,9 +2342,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" -"Ορίζει ποιος τύπος επεξεργασμένων ελέγχων πρέπει να χρησιμοποιηθεί για πεδία " -"CHAR και VARCHAR: [kbd]input[/kbd] - επιτρέπει περιορισμό του μήκους, [kbd]" -"textarea[/kbd] - επιτρέπει αλλαγή γραμμών στα πεδία" +"Ορίζει ποιος τύπος πεδίων φόρμας πρέπει να χρησιμοποιηθεί για πεδία CHAR και " +"VARCHAR: [kbd]input[/kbd] - επιτρέπει περιορισμό του μήκους, " +"[kbd]textarea[/kbd] - επιτρέπει αλλαγή γραμμών στα πεδία" #: libraries/config/messages.inc.php:31 #, fuzzy From 1397307e54a8dd118576dc538fbf6a8188038079 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:51:56 +0200 Subject: [PATCH 279/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4bb60d876..6f3e7bf7d 100644 --- a/po/el.po +++ b/po/el.po @@ -2347,10 +2347,9 @@ msgstr "" "[kbd]textarea[/kbd] - επιτρέπει αλλαγή γραμμών στα πεδία" #: libraries/config/messages.inc.php:31 -#, fuzzy #| msgid "CHAR fields editing" msgid "CHAR columns editing" -msgstr "Επεξεργασία πεδίων CHAR" +msgstr "Επεξεργασία στηλών CHAR" #: libraries/config/messages.inc.php:32 msgid "Number of columns for CHAR/VARCHAR textareas" From 9aae042625ead2af59dbe5ae489e64332ccfe249 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:52:31 +0200 Subject: [PATCH 280/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 6f3e7bf7d..0e3372cc3 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:51+0200\n" +"PO-Revision-Date: 2010-11-26 22:52+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2406,10 +2406,9 @@ msgid "Debug SQL" msgstr "Ανίχνευση λαθών SQL" #: libraries/config/messages.inc.php:43 -#, fuzzy #| msgid "Databases display options" msgid "Default display direction" -msgstr "Επιλογές προβολής βάσεων δεδομένων" +msgstr "Προεπιλεγμένη κατεύθυνση προβολής" #: libraries/config/messages.inc.php:44 msgid "" From 9bc5f259782fbc4c3ad1648c67cf09facd547f27 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:52:44 +0200 Subject: [PATCH 281/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 0e3372cc3..2db4e9877 100644 --- a/po/el.po +++ b/po/el.po @@ -2476,10 +2476,9 @@ msgid "Edit SQL queries in popup window" msgstr "Επεξεργασία ερωτημάτων SQL σε αναδυόμενο παράθυρο" #: libraries/config/messages.inc.php:59 -#, fuzzy #| msgid "Edit next row" msgid "Edit in window" -msgstr "Επεξεργασία επόμενης γραμμής" +msgstr "Επεξεργασία σε παράθυρο" #: libraries/config/messages.inc.php:60 #, fuzzy From 975101433206bf2b133468f8d96eaf0753c5fb19 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:53:19 +0200 Subject: [PATCH 282/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 2db4e9877..57b444cc1 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:52+0200\n" +"PO-Revision-Date: 2010-11-26 22:53+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2481,10 +2481,9 @@ msgid "Edit in window" msgstr "Επεξεργασία σε παράθυρο" #: libraries/config/messages.inc.php:60 -#, fuzzy #| msgid "Display Features" msgid "Display errors" -msgstr "Λειτουργίες εμφάνισης" +msgstr "Σφάλματα εμφάνισης" #: libraries/config/messages.inc.php:61 #, fuzzy From 290aa91536d5a2d318427d2ccfb05efa3fb2b9c7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:54:02 +0200 Subject: [PATCH 283/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 57b444cc1..28419ab3b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:53+0200\n" +"PO-Revision-Date: 2010-11-26 22:54+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2483,7 +2483,7 @@ msgstr "Επεξεργασία σε παράθυρο" #: libraries/config/messages.inc.php:60 #| msgid "Display Features" msgid "Display errors" -msgstr "Σφάλματα εμφάνισης" +msgstr "Προβολή σφαλμάτων" #: libraries/config/messages.inc.php:61 #, fuzzy From 2dd9a53849a1e4b3c635178383662ab0c905dee1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:54:11 +0200 Subject: [PATCH 284/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 28419ab3b..00e606249 100644 --- a/po/el.po +++ b/po/el.po @@ -2486,10 +2486,9 @@ msgid "Display errors" msgstr "Προβολή σφαλμάτων" #: libraries/config/messages.inc.php:61 -#, fuzzy #| msgid "Ignore errors" msgid "Gather errors" -msgstr "Παράβλεψη σφαλμάτων" +msgstr "Συγκέντρωση σφαλμάτων" #: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" From 071b6b1e0934f0ca98491f831484c5068fbcf748 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:54:59 +0200 Subject: [PATCH 285/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 00e606249..62fb4947e 100644 --- a/po/el.po +++ b/po/el.po @@ -2496,10 +2496,9 @@ msgstr "" "Προβολή εικονιδίων για μηνύματα προειδοποίησης, σφαλματος και πληροφοριών" #: libraries/config/messages.inc.php:63 -#, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" -msgstr "Παράβλεψη σφαλμάτων" +msgstr "Εικονικά σφάλματα" #: libraries/config/messages.inc.php:64 msgid "" From d46ce8bec0281d935fb6e3990a9ff87baadeb318 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:55:14 +0200 Subject: [PATCH 286/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 62fb4947e..5daf27466 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:54+0200\n" +"PO-Revision-Date: 2010-11-26 22:55+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2538,10 +2538,9 @@ msgstr "Συμπίεση" #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 #: libraries/export/xls.php:24 libraries/export/xlsx.php:24 -#, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" -msgstr "Εμφάνιση ονομάτων πεδίων στην πρώτη γραμμή" +msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γραμμή" #: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 #: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 From 90177810fac25c70c00294a121bdc68406abd838 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:55:31 +0200 Subject: [PATCH 287/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 5daf27466..301c9e069 100644 --- a/po/el.po +++ b/po/el.po @@ -2545,10 +2545,9 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 #: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 -#, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" -msgstr "Πεδία που περικλείονται σε" +msgstr "Στήλες που περικλείονται από" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 #: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 From fbaffd4c3f1ed346a1d8804a4abc47df2912b609 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:55:47 +0200 Subject: [PATCH 288/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 301c9e069..18ed88a50 100644 --- a/po/el.po +++ b/po/el.po @@ -2565,10 +2565,9 @@ msgid "Replace NULL by" msgstr "Αντικατάσταση τιμής NULL με" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" -msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στα πεδία" +msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στήλες" #: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 #: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 From 5bc54223ab410a1c41d80ed1fac1c610231bbc97 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:56:16 +0200 Subject: [PATCH 289/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 18ed88a50..795d2e683 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:55+0200\n" +"PO-Revision-Date: 2010-11-26 22:56+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2572,10 +2572,9 @@ msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στ #: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 #: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" -msgstr "Γραμμές που τελειώνουν σε" +msgstr "Στήλες που τελειώνουν με" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 From c8c51b70b8f384efceaff7de38da1568d8602a28 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:56:23 +0200 Subject: [PATCH 290/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 795d2e683..a0a0054b2 100644 --- a/po/el.po +++ b/po/el.po @@ -2582,7 +2582,6 @@ msgid "Lines terminated by" msgstr "Γραμμές που τελειώνουν σε" #: libraries/config/messages.inc.php:78 -#, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Έκδοση Excel" From daf2ec4c0e37f9383c39f600eab12f7d506ad074 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:57:18 +0200 Subject: [PATCH 291/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index a0a0054b2..9af192934 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:56+0200\n" +"PO-Revision-Date: 2010-11-26 22:57+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2603,10 +2603,9 @@ msgstr "Πρότυπο ονόματος πίνακα" #: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 -#, fuzzy #| msgid "%s table(s)" msgid "Dump table" -msgstr "%s Πίνακας/Πίνακες" +msgstr "Απόρριψη πίνακα" #: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" From b6a4bf7ec8f556e7799157cf169f934205c47342 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:57:29 +0200 Subject: [PATCH 292/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 9af192934..fcdb9120d 100644 --- a/po/el.po +++ b/po/el.po @@ -2637,10 +2637,9 @@ msgid "Relations" msgstr "Συσχετίσεις" #: libraries/config/messages.inc.php:101 -#, fuzzy #| msgid "Export type" msgid "Export method" -msgstr "Τύπος εξαγωγής" +msgstr "Μέθοδος εξαγωγής" #: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" From 78b2c4207ae896c35b0480477ce61207496c7a27 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:57:48 +0200 Subject: [PATCH 293/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index fcdb9120d..b4ea14440 100644 --- a/po/el.po +++ b/po/el.po @@ -2655,10 +2655,9 @@ msgid "Remember file name template" msgstr "Πρότυπο απομνημόνευσης ονοματος αρχείου" #: libraries/config/messages.inc.php:116 -#, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" -msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των Πινάκων και των Πεδίων" +msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των Πινάκων και των Στηλών" #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 From ff0dbe1cb93f565c7e9f9e0dd850f3f343d32a28 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:58:33 +0200 Subject: [PATCH 294/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index b4ea14440..73b249d9a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:57+0200\n" +"PO-Revision-Date: 2010-11-26 22:58+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -2693,10 +2693,9 @@ msgid "Maximal length of created query" msgstr "Μέγιστο μήκος δημιουργηθέντος ερωτήματος" #: libraries/config/messages.inc.php:133 -#, fuzzy #| msgid "Export tables" msgid "Export type" -msgstr "Εξαγωγή πινάκων" +msgstr "Εξαγωγή τύπου" #: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" From 57615ac8c6d3b2bcfee890ffc5ab81d863172cf4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:58:47 +0200 Subject: [PATCH 295/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 73b249d9a..07fa24354 100644 --- a/po/el.po +++ b/po/el.po @@ -2747,10 +2747,9 @@ msgstr "Προσαρμοσμένη κατάσταση αναζήτησης" #: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 #: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 #: libraries/config/messages.inc.php:224 -#, fuzzy #| msgid "Customize default export options" msgid "Customize default options" -msgstr "Προσαρμογή προεπιλεγμένων επιλογών εξαγωγής" +msgstr "Προσαρμογή προεπιλεγμένων επιλογών" #: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 From b14238964929a04fc8ce59e215fd06c576f0a8b6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:58:56 +0200 Subject: [PATCH 296/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 07fa24354..447a85101 100644 --- a/po/el.po +++ b/po/el.po @@ -2789,10 +2789,9 @@ msgid "Features" msgstr "Χαρακτηριστικά" #: libraries/config/messages.inc.php:163 -#, fuzzy #| msgid "Generate" msgid "General" -msgstr "Παραγωγή" +msgstr "Γενικά" #: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" From ea085485a2505ed35452f42b347564674d15c2a9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:59:14 +0200 Subject: [PATCH 297/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 447a85101..4c6eb08e2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:58+0200\n" +"PO-Revision-Date: 2010-11-26 22:59+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3004,10 +3004,9 @@ msgid "SQL queries settings" msgstr "Ρυθμίσεις ερωτημάτων SQL" #: libraries/config/messages.inc.php:215 -#, fuzzy #| msgid "SQL history" msgid "SQL Validator" -msgstr "Ιστορικό SQL" +msgstr "Εγκυροποιητής SQL" #: libraries/config/messages.inc.php:216 msgid "" From e5486f413a617b1126ca59018b6b78871e7c0870 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:59:31 +0200 Subject: [PATCH 298/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4c6eb08e2..1105e230c 100644 --- a/po/el.po +++ b/po/el.po @@ -3039,10 +3039,9 @@ msgid "Choose how you want tabs to work" msgstr "Επιλέξτε πως θα λειτουργούν οι καρτέλες" #: libraries/config/messages.inc.php:221 -#, fuzzy #| msgid "Use text field" msgid "Text fields" -msgstr "Χρησιμοποιήστε το πεδίο κειμένου" +msgstr "Πεδία κειμένου" #: libraries/config/messages.inc.php:222 #, fuzzy From cffb9d4c7321f59a7787b19d44445016f2db3e2f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 22:59:53 +0200 Subject: [PATCH 299/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 1105e230c..500489e11 100644 --- a/po/el.po +++ b/po/el.po @@ -3044,10 +3044,9 @@ msgid "Text fields" msgstr "Πεδία κειμένου" #: libraries/config/messages.inc.php:222 -#, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" -msgstr "Προσαρμογή επιλογών εξαγωγής" +msgstr "Προσαρμογή πεδίων εισαγωγής κειμένου" #: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" From 2c5dc8c23d30fe35d85bbf56f5ada3abb84c4dc1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:00:21 +0200 Subject: [PATCH 300/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 500489e11..11d24e1be 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 22:59+0200\n" +"PO-Revision-Date: 2010-11-26 23:00+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3145,7 +3145,6 @@ msgid "Import currencies ($5.00 to 5.00)" msgstr "Προσθήκη νομισμάτων (€5,00 αντί 5,00)" #: libraries/config/messages.inc.php:252 -#, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)" From fb59d427fa7e1b9a1201f74389d3cc743e0e1217 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:00:36 +0200 Subject: [PATCH 301/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 11d24e1be..bdbd7b222 100644 --- a/po/el.po +++ b/po/el.po @@ -3150,10 +3150,9 @@ msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)" #: libraries/config/messages.inc.php:253 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" -msgstr "Αριθμός εγγραφών (ερωτημάτων) που θα παραβλεφθούν από την αρχή" +msgstr "Αριθμός ερωτημάτων που θα παραβλεφθούν από την αρχή" #: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" From 4cc3b19f9c02a0bead390f1d0df204f88b135663 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:01:06 +0200 Subject: [PATCH 302/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index bdbd7b222..ac660f322 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:00+0200\n" +"PO-Revision-Date: 2010-11-26 23:01+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3196,10 +3196,9 @@ msgid "Display servers selection" msgstr "Προβολή επιλογής διακομιστών" #: libraries/config/messages.inc.php:267 -#, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" -msgstr "Δενδροειδής προβολή βάσεων δεδομένων" +msgstr "Προβολή φίλτρου πίνακα" #: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" From f3b04f9c3d0e58d1a4f1f9ec19af1c11354a5696 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:02:14 +0200 Subject: [PATCH 303/732] Translation update done using Pootle. --- po/el.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index ac660f322..bd23d01dd 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:01+0200\n" +"PO-Revision-Date: 2010-11-26 23:02+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3279,11 +3279,12 @@ msgid "Light tabs" msgstr "Απλές καρτέλες" #: libraries/config/messages.inc.php:285 -#, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" -msgstr "Μέγιστος αριθμός χαρακτήρων όταν προβάλεται ένα ερώτημα SQL" +msgstr "" +"Μέγιστος αριθμός χαρακτήρων που φαίνεται σε μη αριθμητική στήλη στην προβολή " +"φυλλομετρητή" #: libraries/config/messages.inc.php:286 msgid "Limit column characters" From 7d4ee2d5d3e895001bb70ae462c32ee2ec22182f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:02:32 +0200 Subject: [PATCH 304/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index bd23d01dd..d8f0ce143 100644 --- a/po/el.po +++ b/po/el.po @@ -3424,10 +3424,9 @@ msgid "Memory limit" msgstr "Όριο μνήμης" #: libraries/config/messages.inc.php:312 -#, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" -msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" +msgstr "Προβολή συνδέσμου διαγραφής στα αριστερά" #: libraries/config/messages.inc.php:313 msgid "Show right delete link" From e1146677b069cd583a68d2cd977b69ee2c02fdd0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:02:46 +0200 Subject: [PATCH 305/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d8f0ce143..05aad4525 100644 --- a/po/el.po +++ b/po/el.po @@ -3439,10 +3439,9 @@ msgstr "" "δεδομένων" #: libraries/config/messages.inc.php:315 -#, fuzzy #| msgid "Alter table order by" msgid "Natural order" -msgstr "Αλλαγή ταξινόμησης Πίνακα κατά" +msgstr "Φυσική ταξινόμηση" #: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" From fd715986f204392544df9b4f00e163ff9295b451 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:03:04 +0200 Subject: [PATCH 306/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 05aad4525..d37aee975 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:02+0200\n" +"PO-Revision-Date: 2010-11-26 23:03+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3461,7 +3461,6 @@ msgid "GZip output buffering" msgstr "Εξαγόμενο GZip buffering" #: libraries/config/messages.inc.php:320 -#, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " #| "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3469,7 +3468,7 @@ msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -"[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για πεδία τύπου TIME, DATE, " +"[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, " "DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα" #: libraries/config/messages.inc.php:321 From a9946386873110d3a2f3326287a77406772f87f8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:03:15 +0200 Subject: [PATCH 307/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d37aee975..af13fc45c 100644 --- a/po/el.po +++ b/po/el.po @@ -3502,10 +3502,9 @@ msgid "Iconic table operations" msgstr "Λειτουργίες πίνακα με εικονίδια" #: libraries/config/messages.inc.php:328 -#, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" -msgstr "Αποτροπή επεξεργασίας πεδίων BLOB και BINARY" +msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY" #: libraries/config/messages.inc.php:329 #, fuzzy From 4a746610b0bf9a7340c4cbd52e1a324b470cc899 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:03:24 +0200 Subject: [PATCH 308/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index af13fc45c..a84a8b74a 100644 --- a/po/el.po +++ b/po/el.po @@ -3507,10 +3507,9 @@ msgid "Disallow BLOB and BINARY columns from editing" msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY" #: libraries/config/messages.inc.php:329 -#, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" -msgstr "Προστασία δυαδικών πεδίων" +msgstr "Προστασία δυαδικών στηλών" #: libraries/config/messages.inc.php:330 #, fuzzy From a3ed34404a5920f45d36bb4fe96ca5200548c8ad Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:04:11 +0200 Subject: [PATCH 309/732] Translation update done using Pootle. --- po/el.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/el.po b/po/el.po index a84a8b74a..a45770873 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:03+0200\n" +"PO-Revision-Date: 2010-11-26 23:04+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3512,7 +3512,6 @@ msgid "Protect binary columns" msgstr "Προστασία δυαδικών στηλών" #: libraries/config/messages.inc.php:330 -#, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " #| "this utilizes JS-routines to display query history (lost by window close)." @@ -3521,9 +3520,9 @@ msgid "" "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -"Ενεργοποιήστε το αν θέλετε ιστορικό ανά βάση δεδομένων (απαιτεί pmadb). Αν " -"απενεργοποιηθεί, λειτουργούν ρουτίνες JS για προβολή του ιστορικού " -"ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)." +"Ενεργοποιήστε το αν θέλετε ιστορικό ανά βάση δεδομένων (απαιτεί αποθήκευση " +"ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για " +"προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)." #: libraries/config/messages.inc.php:331 msgid "Permanent query history" From 59fbcfb9331e3e86f6b92825e0bafa1b40697436 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:05:27 +0200 Subject: [PATCH 310/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index a45770873..9a102035a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:04+0200\n" +"PO-Revision-Date: 2010-11-26 23:05+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3549,10 +3549,9 @@ msgid "Query window height (in pixels)" msgstr "Ύψος παραθύρου ερωτήματος (σε εικονοστοιχεία)" #: libraries/config/messages.inc.php:338 -#, fuzzy #| msgid "Query window" msgid "Query window height" -msgstr "Παράθυρο ερωτήματος" +msgstr "Ύψος παράθυρου ερωτήματος" #: libraries/config/messages.inc.php:339 #, fuzzy From d704f2e3fe31a00f668227aeb57bfcfd0eee7aac Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:05:50 +0200 Subject: [PATCH 311/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 9a102035a..8767fb8fe 100644 --- a/po/el.po +++ b/po/el.po @@ -3551,7 +3551,7 @@ msgstr "Ύψος παραθύρου ερωτήματος (σε εικονοστ #: libraries/config/messages.inc.php:338 #| msgid "Query window" msgid "Query window height" -msgstr "Ύψος παράθυρου ερωτήματος" +msgstr "Ύψος παραθύρου ερωτήματος" #: libraries/config/messages.inc.php:339 #, fuzzy From 66cd0b25c2f221e873b62d770bf06d46a30e53ce Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:06:15 +0200 Subject: [PATCH 312/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 8767fb8fe..4ffbfb444 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:05+0200\n" +"PO-Revision-Date: 2010-11-26 23:06+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3554,10 +3554,9 @@ msgid "Query window height" msgstr "Ύψος παραθύρου ερωτήματος" #: libraries/config/messages.inc.php:339 -#, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" -msgstr "Παράθυρο ερωτήματος" +msgstr "Πλάτος παραθύρου ερωτήματος (σε εικονοστοιχεία)" #: libraries/config/messages.inc.php:340 #, fuzzy From 2e32812ce48aeb04570eddfc6f2c1e65587e5211 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:06:30 +0200 Subject: [PATCH 313/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4ffbfb444..a4b102c60 100644 --- a/po/el.po +++ b/po/el.po @@ -3559,10 +3559,9 @@ msgid "Query window width (in pixels)" msgstr "Πλάτος παραθύρου ερωτήματος (σε εικονοστοιχεία)" #: libraries/config/messages.inc.php:340 -#, fuzzy #| msgid "Query window" msgid "Query window width" -msgstr "Παράθυρο ερωτήματος" +msgstr "Πλάτος παραθύρου ερωτήματος" #: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" From 7803eff51adb562b757eed7183e3b0ef9859f95b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:06:49 +0200 Subject: [PATCH 314/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a4b102c60..7a4a11c70 100644 --- a/po/el.po +++ b/po/el.po @@ -3580,10 +3580,9 @@ msgstr "" "χαρακτηριστικό" #: libraries/config/messages.inc.php:344 -#, fuzzy #| msgid "Repair threads" msgid "Repeat headers" -msgstr "Προσπάθειες επιδιόρθωσης" +msgstr "Επανάληψη κεφαλίδων" #: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" From ebc6a3ed43ad14847e96329488ef9fd0b9aa1c5d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:07:18 +0200 Subject: [PATCH 315/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 7a4a11c70..4ba6f432d 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:06+0200\n" +"PO-Revision-Date: 2010-11-26 23:07+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3605,10 +3605,9 @@ msgid "Leave blank if not used" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί" #: libraries/config/messages.inc.php:351 -#, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" -msgstr "Σειρά επικύρωσης" +msgstr "Σειρά πιστοποίησης φιλοξενητή" #: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" From 76abb810faa8acfa3f1705da4d4390c53523aeb2 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:07:30 +0200 Subject: [PATCH 316/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4ba6f432d..497901643 100644 --- a/po/el.po +++ b/po/el.po @@ -3614,10 +3614,9 @@ msgid "Leave blank for defaults" msgstr "Αφήστε κενό για προεπιλογές" #: libraries/config/messages.inc.php:353 -#, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" -msgstr "Κανόνες επικύρωσης" +msgstr "Κανόνες πιστοποίησης φιλοξενητή" #: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" From aaeecec309edd3d569245fdaf5251ff4cfaa6882 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:07:40 +0200 Subject: [PATCH 317/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 497901643..310002b87 100644 --- a/po/el.po +++ b/po/el.po @@ -3850,10 +3850,9 @@ msgstr "" "[kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:397 -#, fuzzy #| msgid "database name" msgid "Database name" -msgstr "όνομα βάσης δεδομένων" +msgstr "Όνομα βάσης δεδομένων" #: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" From 19c869f0b3088f2a913850bc5600aa1292959a37 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:08:26 +0200 Subject: [PATCH 318/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 310002b87..810e4c207 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:07+0200\n" +"PO-Revision-Date: 2010-11-26 23:08+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3930,7 +3930,6 @@ msgid "PDF schema: table coordinates" msgstr "Σχέδιο PDF: συντεταγμένες πίνακα" #: libraries/config/messages.inc.php:413 -#, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " #| "suggested: [kbd]pma_table_info[/kbd]" @@ -3938,7 +3937,7 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -"Ο πίνακας που περιγράφει τα προβαλόμενα πεδία. Αφήστε το κενό για να μην " +"Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες. Αφήστε το κενό για να μην " "υποστηρίζεται. Προτείνεται: [kbd]pma_table_info[/kbd]" #: libraries/config/messages.inc.php:414 From 0589030ddf3fb22c8f30808bc9ce24f1e29942e7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:08:44 +0200 Subject: [PATCH 319/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 810e4c207..fbab8c218 100644 --- a/po/el.po +++ b/po/el.po @@ -3941,10 +3941,9 @@ msgstr "" "υποστηρίζεται. Προτείνεται: [kbd]pma_table_info[/kbd]" #: libraries/config/messages.inc.php:414 -#, fuzzy #| msgid "Display fields table" msgid "Display columns table" -msgstr "Πίνακας προβολής πεδίων" +msgstr "Πίνακας προβολής στηλών" #: libraries/config/messages.inc.php:415 msgid "" From bf0b034a80dab130dadb9bb14a05a4f479572182 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:09:04 +0200 Subject: [PATCH 320/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index fbab8c218..fd52abb9c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:08+0200\n" +"PO-Revision-Date: 2010-11-26 23:09+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3988,9 +3988,8 @@ msgstr "" "εκδόσεις." #: libraries/config/messages.inc.php:422 -#, fuzzy msgid "Statements to track" -msgstr "Δηλώσεις" +msgstr "Δηλώσεις προς παρακολούθηση" #: libraries/config/messages.inc.php:423 #, fuzzy From 3506a276a9c32547e4e895e36d6e1ce70dedf892 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:09:16 +0200 Subject: [PATCH 321/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index fd52abb9c..ea1a4dbb3 100644 --- a/po/el.po +++ b/po/el.po @@ -3992,7 +3992,6 @@ msgid "Statements to track" msgstr "Δηλώσεις προς παρακολούθηση" #: libraries/config/messages.inc.php:423 -#, fuzzy msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" From 1562695231edc552accf522887b3da43e9bc129e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:09:38 +0200 Subject: [PATCH 322/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ea1a4dbb3..ed877702d 100644 --- a/po/el.po +++ b/po/el.po @@ -4000,9 +4000,8 @@ msgstr "" "[kbd]pma_history[/kbd]" #: libraries/config/messages.inc.php:424 -#, fuzzy msgid "SQL query tracking table" -msgstr "Πίνακας ιστορικού ερωτημάτων SQL" +msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL" #: libraries/config/messages.inc.php:425 msgid "" From 19f29c6f6bb00ccde2833624fc82dc91f4fb8de0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:09:56 +0200 Subject: [PATCH 323/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ed877702d..a28b826f8 100644 --- a/po/el.po +++ b/po/el.po @@ -4012,9 +4012,8 @@ msgstr "" "αυτόματα." #: libraries/config/messages.inc.php:426 -#, fuzzy msgid "Automatically create versions" -msgstr "Αυτόματη κατάσταση επαναφοράς" +msgstr "Αυτόματη δημιουργία εκδόσεων" #: libraries/config/messages.inc.php:427 #, fuzzy From cf1ab82dbd8e9ae05134837df9916efaa4f1933c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:10:41 +0200 Subject: [PATCH 324/732] Translation update done using Pootle. --- po/el.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index a28b826f8..f5d349f12 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:09+0200\n" +"PO-Revision-Date: 2010-11-26 23:10+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4016,13 +4016,12 @@ msgid "Automatically create versions" msgstr "Αυτόματη δημιουργία εκδόσεων" #: libraries/config/messages.inc.php:427 -#, fuzzy msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " -"[kbd]pma_history[/kbd]" +"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: " +"[kbd]pma_config[/kbd]" #: libraries/config/messages.inc.php:428 msgid "User preferences storage table" From b5342755e203ceba5b079d1ab7f79c047c076c08 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:11:07 +0200 Subject: [PATCH 325/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index f5d349f12..0f69360b5 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:10+0200\n" +"PO-Revision-Date: 2010-11-26 23:11+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4056,11 +4056,10 @@ msgid "Verbose name of this server" msgstr "Φιλοχρηστικό όνομα διακομιστή" #: libraries/config/messages.inc.php:435 -#, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «Εμφάνιση όλων (εγγραφές)»" +msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «Εμφάνιση όλων»" #: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" From 55e5980b9f265045e560f2fae96fe4ec611edcee Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:11:23 +0200 Subject: [PATCH 326/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 0f69360b5..bde0f73a7 100644 --- a/po/el.po +++ b/po/el.po @@ -4093,10 +4093,9 @@ msgstr "" "επεξεργασίας/εισαγωγής" #: libraries/config/messages.inc.php:441 -#, fuzzy #| msgid "Show open tables" msgid "Show field types" -msgstr "Εμφάνιση ανοιχτών πινάκων" +msgstr "Εμφάνιση τύπων πεδίου" #: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" From 8717d591cbf4eb73ac2f2c64c697574123988426 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:11:35 +0200 Subject: [PATCH 327/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index bde0f73a7..e5293a855 100644 --- a/po/el.po +++ b/po/el.po @@ -4253,10 +4253,9 @@ msgstr "" "ερωτημάτων (x1,25)" #: libraries/config/messages.inc.php:474 -#, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" -msgstr "Στήλες περιοχής κειμένου (textarea) CHAR" +msgstr "Στήλες περιοχής κειμένου (textarea)" #: libraries/config/messages.inc.php:475 msgid "" From 5212dc0daea2fe45f7c9dff52592d2c7eeb541f8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:11:43 +0200 Subject: [PATCH 328/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index e5293a855..91df0d8a8 100644 --- a/po/el.po +++ b/po/el.po @@ -4267,10 +4267,9 @@ msgstr "" "ερωτημάτων (x1,25)" #: libraries/config/messages.inc.php:476 -#, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" -msgstr "Γραμμές περιοχής κειμένου (textarea) CHAR" +msgstr "Γραμμές περιοχής κειμένου (textarea)" #: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" From 33a756b898ffa3896f6a0abf28d302948e65f00c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:12:16 +0200 Subject: [PATCH 329/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 91df0d8a8..8f6535cd1 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:11+0200\n" +"PO-Revision-Date: 2010-11-26 23:12+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4281,10 +4281,9 @@ msgid "Title of browser window when nothing is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα" #: libraries/config/messages.inc.php:480 -#, fuzzy #| msgid "Default table tab" msgid "Default title" -msgstr "Προεπιλεγμένη καρτέλα πίνακα" +msgstr "Προεπιλεγμένος τίτλος" #: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" From b870e4755a897c5ab2651d5a1ad09f7336b0753f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:12:36 +0200 Subject: [PATCH 330/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8f6535cd1..3eb220db5 100644 --- a/po/el.po +++ b/po/el.po @@ -4369,10 +4369,9 @@ msgid "ZIP" msgstr "ZIP" #: libraries/config/setup.forms.php:41 -#, fuzzy #| msgid "Host authentication order" msgid "Config authentication" -msgstr "Σειρά επικύρωσης" +msgstr "Ρύθμιση πιστοποίησης" #: libraries/config/setup.forms.php:45 #, fuzzy From 5c481ceaf679be03b98310215ce3383a75b2e6cb Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:13:05 +0200 Subject: [PATCH 331/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 3eb220db5..55c97788d 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:12+0200\n" +"PO-Revision-Date: 2010-11-26 23:13+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4374,10 +4374,9 @@ msgid "Config authentication" msgstr "Ρύθμιση πιστοποίησης" #: libraries/config/setup.forms.php:45 -#, fuzzy #| msgid "Host authentication order" msgid "Cookie authentication" -msgstr "Σειρά επικύρωσης" +msgstr "Πιστοποίηση Cookie" #: libraries/config/setup.forms.php:48 #| msgid "Host authentication order" From 0b5b89415f5d1c4eeb93d20d2feb1215dac600c7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:13:11 +0200 Subject: [PATCH 332/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 55c97788d..0898f2b69 100644 --- a/po/el.po +++ b/po/el.po @@ -4384,7 +4384,6 @@ msgid "HTTP authentication" msgstr "Πιστοποίηση HTTP" #: libraries/config/setup.forms.php:51 -#, fuzzy #| msgid "Host authentication order" msgid "Signon authentication" msgstr "Σειρά επικύρωσης" From c80c85b3e0f14da3cf2e20b6fcc605b3a1f66401 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:13:32 +0200 Subject: [PATCH 333/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 0898f2b69..27fca30aa 100644 --- a/po/el.po +++ b/po/el.po @@ -4371,7 +4371,7 @@ msgstr "ZIP" #: libraries/config/setup.forms.php:41 #| msgid "Host authentication order" msgid "Config authentication" -msgstr "Ρύθμιση πιστοποίησης" +msgstr "Πιστοποίηση ρύθμισης" #: libraries/config/setup.forms.php:45 #| msgid "Host authentication order" From 109780c785526c54ee5c0c53612496f73c322166 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:13:53 +0200 Subject: [PATCH 334/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 27fca30aa..248cad72e 100644 --- a/po/el.po +++ b/po/el.po @@ -4421,10 +4421,9 @@ msgstr "Γρήγορο" #: libraries/config/setup.forms.php:264 #: libraries/config/user_preferences.forms.php:167 -#, fuzzy #| msgid "Custom color" msgid "Custom" -msgstr "Προσαρμοσμένο χρώμα" +msgstr "Προσαρμοσμένο" #: libraries/config/setup.forms.php:285 #: libraries/config/user_preferences.forms.php:187 From d79a88f877e8a2ef5caabe059d6431a32e252a91 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:14:03 +0200 Subject: [PATCH 335/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 248cad72e..5ddf66526 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:13+0200\n" +"PO-Revision-Date: 2010-11-26 23:14+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4575,7 +4575,6 @@ msgid "Password Hashing" msgstr "Μείγμα κωδικού πρόσβασης" #: libraries/display_change_password.lib.php:65 -#, fuzzy msgid "MySQL 4.0 compatible" msgstr "Συμβατό με MySQL 4.0" From 52d75a8c0243d909d7763e339892996bd0c5847b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:14:11 +0200 Subject: [PATCH 336/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 5ddf66526..68dbcd4eb 100644 --- a/po/el.po +++ b/po/el.po @@ -4598,10 +4598,9 @@ msgid "Create table on database %s" msgstr "Δημιουργία νέου πίνακα στη βάση %s" #: libraries/display_create_table.lib.php:55 -#, fuzzy #| msgid "Number of fields" msgid "Number of columns" -msgstr "Αριθμός πεδίων" +msgstr "Αριθμός στηλών" #: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" From 08c92194a3439b6786033586dffb50fed842ffed Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:14:38 +0200 Subject: [PATCH 337/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 68dbcd4eb..a30a51990 100644 --- a/po/el.po +++ b/po/el.po @@ -4607,10 +4607,9 @@ msgid "Could not load export plugins, please check your installation!" msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!" #: libraries/display_export.lib.php:87 -#, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases in the current server" -msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." +msgstr "Εξαγωγή βάσεων δεδομένων στον τρέχοντα διακομιστή" #: libraries/display_export.lib.php:89 #, fuzzy, php-format From 672946838d9ab6a23d68f04a8c0bcf41ac1eaf77 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:15:07 +0200 Subject: [PATCH 338/732] Translation update done using Pootle. --- po/el.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index a30a51990..fd56805ea 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:14+0200\n" +"PO-Revision-Date: 2010-11-26 23:15+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4612,10 +4612,10 @@ msgid "Exporting databases in the current server" msgstr "Εξαγωγή βάσεων δεδομένων στον τρέχοντα διακομιστή" #: libraries/display_export.lib.php:89 -#, fuzzy, php-format +#, php-format #| msgid "Create table on database %s" msgid "Exporting tables in the database \"%s\"" -msgstr "Δημιουργία νέου πίνακα στη βάση %s" +msgstr "Εξαγωγή πινάκων στη βάση δεδομένων «%s»" #: libraries/display_export.lib.php:91 #, fuzzy, php-format From 381fc2712fa8cd675c0cc0596d17904edc357cf5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:15:53 +0200 Subject: [PATCH 339/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index fd56805ea..8c4eab628 100644 --- a/po/el.po +++ b/po/el.po @@ -4618,10 +4618,10 @@ msgid "Exporting tables in the database \"%s\"" msgstr "Εξαγωγή πινάκων στη βάση δεδομένων «%s»" #: libraries/display_export.lib.php:91 -#, fuzzy, php-format +#, php-format #| msgid "Create table on database %s" msgid "Exporting rows in the table \"%s\"" -msgstr "Δημιουργία νέου πίνακα στη βάση %s" +msgstr "Εξαγωγή εγγραφών στον πίνακα «%s»" #: libraries/display_export.lib.php:97 #, fuzzy From d2092acbdc6f67596370bcdbfc35352c273bebf5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:16:05 +0200 Subject: [PATCH 340/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 8c4eab628..7c836fe1a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:15+0200\n" +"PO-Revision-Date: 2010-11-26 23:16+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4624,10 +4624,9 @@ msgid "Exporting rows in the table \"%s\"" msgstr "Εξαγωγή εγγραφών στον πίνακα «%s»" #: libraries/display_export.lib.php:97 -#, fuzzy #| msgid "Export type" msgid "Export Method:" -msgstr "Τύπος εξαγωγής" +msgstr "Μέθοδος εξαγωγής" #: libraries/display_export.lib.php:137 #, fuzzy From df97cb8587679595e4d98a2dc578eddb2ce89ed0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:16:18 +0200 Subject: [PATCH 341/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 7c836fe1a..de6c828d0 100644 --- a/po/el.po +++ b/po/el.po @@ -4629,10 +4629,9 @@ msgid "Export Method:" msgstr "Μέθοδος εξαγωγής" #: libraries/display_export.lib.php:137 -#, fuzzy #| msgid "Databases" msgid "Database(s):" -msgstr "Βάσεις Δεδομένων" +msgstr "Βάση(εις) Δεδομένων" #: libraries/display_export.lib.php:139 #, fuzzy From dda5fbf52a86865c02b2234f6e3827631050f401 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:16:30 +0200 Subject: [PATCH 342/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index de6c828d0..78d0a9156 100644 --- a/po/el.po +++ b/po/el.po @@ -4634,10 +4634,9 @@ msgid "Database(s):" msgstr "Βάση(εις) Δεδομένων" #: libraries/display_export.lib.php:139 -#, fuzzy #| msgid "Tables" msgid "Table(s):" -msgstr "Πίνακες" +msgstr "Πίνακας(ες)" #: libraries/display_export.lib.php:149 #, fuzzy From cd069305ee75d5c6c7b0fa53683a5b9dbf8fa10b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:16:36 +0200 Subject: [PATCH 343/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 78d0a9156..d767a2181 100644 --- a/po/el.po +++ b/po/el.po @@ -4639,7 +4639,6 @@ msgid "Table(s):" msgstr "Πίνακας(ες)" #: libraries/display_export.lib.php:149 -#, fuzzy #| msgid "Rows" msgid "Rows:" msgstr "Εγγραφές" From 87f9cb72abec5919a00fcc67c1c2bed81263f4cd Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:17:03 +0200 Subject: [PATCH 344/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index d767a2181..4852191a2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:16+0200\n" +"PO-Revision-Date: 2010-11-26 23:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4644,10 +4644,9 @@ msgid "Rows:" msgstr "Εγγραφές" #: libraries/display_export.lib.php:157 -#, fuzzy #| msgid "Dump all rows" msgid "Dump some row(s)" -msgstr "Αχρήστευση όλων των γραμμών" +msgstr "Αχρήστευση μερικών εγγραφών" #: libraries/display_export.lib.php:159 #, fuzzy From 38d666a38f2df419999cef64bf270c9929e916cc Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:17:11 +0200 Subject: [PATCH 345/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4852191a2..011fbf8c3 100644 --- a/po/el.po +++ b/po/el.po @@ -4649,10 +4649,9 @@ msgid "Dump some row(s)" msgstr "Αχρήστευση μερικών εγγραφών" #: libraries/display_export.lib.php:159 -#, fuzzy #| msgid "Number of fields" msgid "Number of rows:" -msgstr "Αριθμός πεδίων" +msgstr "Αριθμός εγγραφών" #: libraries/display_export.lib.php:162 msgid "Row to begin at:" From 67d2a838105538f1d44546169f53f5c16feff6e8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:17:35 +0200 Subject: [PATCH 346/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 011fbf8c3..36047c3e8 100644 --- a/po/el.po +++ b/po/el.po @@ -4672,10 +4672,9 @@ msgid "Save on server in the directory %s" msgstr "Αποθήκευση στον διακομιστή στον φάκελο %s" #: libraries/display_export.lib.php:206 -#, fuzzy #| msgid "Save as file" msgid "Save output to a file" -msgstr "Αποστολή" +msgstr "Αποθήκευση εξαγόμενου σε αρχείο" #: libraries/display_export.lib.php:227 #, fuzzy From 47f6d34ca676fe56dbefa7e4d95ee7fdd9e89660 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:17:53 +0200 Subject: [PATCH 347/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 36047c3e8..893ac688d 100644 --- a/po/el.po +++ b/po/el.po @@ -4677,10 +4677,9 @@ msgid "Save output to a file" msgstr "Αποθήκευση εξαγόμενου σε αρχείο" #: libraries/display_export.lib.php:227 -#, fuzzy #| msgid "File name template" msgid "File name template:" -msgstr "Μορφή ονόματος αρχείου" +msgstr "Πρότυπο ονόματος αρχείου" #: libraries/display_export.lib.php:229 msgid "@SERVER@ will become the server name" From c56988e0ab5b7a7db28d47debfc2c93fb52b5ee4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:17:57 +0200 Subject: [PATCH 348/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 893ac688d..3b83d4085 100644 --- a/po/el.po +++ b/po/el.po @@ -4719,7 +4719,6 @@ msgid "Character set of the file:" msgstr "Σύνολο χαρακτήρων του αρχείου:" #: libraries/display_export.lib.php:309 -#, fuzzy #| msgid "Compression" msgid "Compression:" msgstr "Συμπίεση" From 0e3a5faf8a264fe1e2c18534bdea3478771fac4d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:18:03 +0200 Subject: [PATCH 349/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 3b83d4085..1c26bb657 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:17+0200\n" +"PO-Revision-Date: 2010-11-26 23:18+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4730,7 +4730,6 @@ msgid "None" msgstr "Καμία" #: libraries/display_export.lib.php:313 -#, fuzzy msgid "zipped" msgstr "συμπίεση «zip»" From ba2a396242aea44212e1b503652f33d19a56ff52 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:18:07 +0200 Subject: [PATCH 350/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 1c26bb657..3532c82d3 100644 --- a/po/el.po +++ b/po/el.po @@ -4734,7 +4734,6 @@ msgid "zipped" msgstr "συμπίεση «zip»" #: libraries/display_export.lib.php:315 -#, fuzzy msgid "gzipped" msgstr "συμπίεση «gzip»" From 28deb6a4b1b08c43e786133399d29535c228f95b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:18:10 +0200 Subject: [PATCH 351/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 3532c82d3..9dafe4c86 100644 --- a/po/el.po +++ b/po/el.po @@ -4738,7 +4738,6 @@ msgid "gzipped" msgstr "συμπίεση «gzip»" #: libraries/display_export.lib.php:317 -#, fuzzy msgid "bzipped" msgstr "συμπίεση «bzip»" From ec619bed1d0f21c636e2f66f1f9095395031931a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:18:14 +0200 Subject: [PATCH 352/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 9dafe4c86..ec31a9d07 100644 --- a/po/el.po +++ b/po/el.po @@ -4743,7 +4743,6 @@ msgstr "συμπίεση «bzip»" #: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:37 -#, fuzzy #| msgid "Format" msgid "Format:" msgstr "Μορφοποίηση" From da255e4c1ce6a187056aa80deebdd408a8b03741 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:18:30 +0200 Subject: [PATCH 353/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index ec31a9d07..4872ba5d3 100644 --- a/po/el.po +++ b/po/el.po @@ -4752,9 +4752,8 @@ msgid "Format-Specific Options:" msgstr "Επιλογές Ορισμένης Μορφής:" #: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260 -#, fuzzy msgid "Encoding Conversion:" -msgstr "Μηχανή επανακωδικοποίησης" +msgstr "Μετατροπή κωδικοποίησης" #: libraries/display_import.lib.php:66 msgid "" From 5ba11a5f4f8c5f4e321b8487136b96da19b5303a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:18:51 +0200 Subject: [PATCH 354/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4872ba5d3..d7a51e128 100644 --- a/po/el.po +++ b/po/el.po @@ -4778,10 +4778,9 @@ msgstr "" "διαθέσιμες." #: libraries/display_import.lib.php:129 -#, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL" +msgstr "Εισαγωγή στον τρέχοντα διακομιστή" #: libraries/display_import.lib.php:131 #, fuzzy, php-format From 58d9f94f3bc0a677c6383ff82aa5fc44a119a107 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:19:10 +0200 Subject: [PATCH 355/732] Translation update done using Pootle. --- po/el.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index d7a51e128..4bb3c7a42 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:18+0200\n" +"PO-Revision-Date: 2010-11-26 23:19+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4783,9 +4783,9 @@ msgid "Importing into the current server" msgstr "Εισαγωγή στον τρέχοντα διακομιστή" #: libraries/display_import.lib.php:131 -#, fuzzy, php-format +#, php-format msgid "Importing into the database \"%s\"" -msgstr "Μετάβαση στη βάση δεδομένων" +msgstr "Εισαγωγή στη βάση δεδομένων «%s»" #: libraries/display_import.lib.php:133 #, fuzzy, php-format From 501aac251fe54990558426d16fdbf9e955619e67 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:19:34 +0200 Subject: [PATCH 356/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4bb3c7a42..eff2d6629 100644 --- a/po/el.po +++ b/po/el.po @@ -4788,9 +4788,9 @@ msgid "Importing into the database \"%s\"" msgstr "Εισαγωγή στη βάση δεδομένων «%s»" #: libraries/display_import.lib.php:133 -#, fuzzy, php-format +#, php-format msgid "Importing into the table \"%s\"" -msgstr "Μετάβαση στη βάση δεδομένων" +msgstr "Εισαγωγή στον πίνακα «%s»" #: libraries/display_import.lib.php:139 #, fuzzy From 3f274dcaadde3fd8a893c57d1842f23c4b6c3135 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:19:41 +0200 Subject: [PATCH 357/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index eff2d6629..24faea3fe 100644 --- a/po/el.po +++ b/po/el.po @@ -4793,7 +4793,6 @@ msgid "Importing into the table \"%s\"" msgstr "Εισαγωγή στον πίνακα «%s»" #: libraries/display_import.lib.php:139 -#, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Αρχείο για εισαγωγή" From efd141e213289c601492b9cb575f90c52955d359 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:19:46 +0200 Subject: [PATCH 358/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 24faea3fe..6b1f8f946 100644 --- a/po/el.po +++ b/po/el.po @@ -4815,7 +4815,6 @@ msgid "File uploads are not allowed on this server." msgstr "Οι αποστολές αρχείων δεν επιτρέπονται σε αυτό τον διακομιστή." #: libraries/display_import.lib.php:208 -#, fuzzy #| msgid "Partial import" msgid "Partial Import:" msgstr "Μερική εισαγωγή" From 2f5fd6f8dc2092db4b51741d0d263b0fca19fd16 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:20:00 +0200 Subject: [PATCH 359/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 6b1f8f946..054178ad6 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:19+0200\n" +"PO-Revision-Date: 2010-11-26 23:20+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4845,10 +4845,9 @@ msgstr "" "large files, however it can break transactions.)" #: libraries/display_import.lib.php:228 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" -msgstr "Αριθμός εγγραφών (ερωτημάτων) που θα παραβλεφθούν από την αρχή" +msgstr "Αριθμός εγγραφών που θα παραβλεφθούν από την αρχή" #: libraries/display_select_lang.lib.php:44 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 From 1851ef81572e9a4129ba010f523abaceb1475199 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:20:30 +0200 Subject: [PATCH 360/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 054178ad6..cde782eea 100644 --- a/po/el.po +++ b/po/el.po @@ -4860,10 +4860,9 @@ msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." #: libraries/display_tbl.lib.php:308 -#, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" -msgstr "Εγγραφές αρχίζοντας από την εγγραφή" +msgstr "εγγραφή(ές) αρχίζοντας από την εγγραφή #" #: libraries/display_tbl.lib.php:314 msgid "horizontal" From c07879ab237ae8bec6a09a74491f1dc1e0dc015f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:20:39 +0200 Subject: [PATCH 361/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index cde782eea..770e14994 100644 --- a/po/el.po +++ b/po/el.po @@ -4904,7 +4904,6 @@ msgid "Options" msgstr "Επιλογές" #: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 -#, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Περιληπτικά κείμενα" From 0ebd80e94bb859a214e45776d31fd440b4988240 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:20:44 +0200 Subject: [PATCH 362/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 770e14994..a3afda5b6 100644 --- a/po/el.po +++ b/po/el.po @@ -4909,7 +4909,6 @@ msgid "Partial texts" msgstr "Περιληπτικά κείμενα" #: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 -#, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Πλήρη κείμενα" From 11a0960450ff8f8aae0858d080b8ab33659921c2 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:21:01 +0200 Subject: [PATCH 363/732] Translation update done using Pootle. --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index a3afda5b6..118074cae 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:20+0200\n" +"PO-Revision-Date: 2010-11-26 23:21+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -4918,10 +4918,9 @@ msgid "Relational key" msgstr "Κλειδί συσχέτισης" #: libraries/display_tbl.lib.php:586 -#, fuzzy #| msgid "Relational display field" msgid "Relational display column" -msgstr "Πεδίο προβολής συσχέτισης" +msgstr "Στήλη προβολής συσχέτισης" #: libraries/display_tbl.lib.php:593 msgid "Show binary contents" From 3f2d56d67f96f6cc456ff9cc2dfff4e61d23e777 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:21:14 +0200 Subject: [PATCH 364/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 118074cae..392c08e09 100644 --- a/po/el.po +++ b/po/el.po @@ -4981,10 +4981,9 @@ msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" #: libraries/display_tbl.lib.php:2230 tbl_chart.php:81 -#, fuzzy #| msgid "Display PDF schema" msgid "Display chart" -msgstr "Εμφάνιση σχήματος PDF" +msgstr "Εμφάνιση διαγράμματος" #: libraries/display_tbl.lib.php:2380 msgid "Link not found" From 1d9a0f79e98f0810a62f0c177f76f3a4048920fc Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:21:26 +0200 Subject: [PATCH 365/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 392c08e09..5aabfda5c 100644 --- a/po/el.po +++ b/po/el.po @@ -5178,7 +5178,6 @@ msgstr "" "εντολές CREATE INDEX ή ALTER TABLE." #: libraries/engines/pbms.lib.php:30 -#, fuzzy #| msgid "Garbage threshold" msgid "Garbage Threshold" msgstr "Όριο σκουπιδιών" From a4adfa526abcfbe2a30522e9c6e340de82d420c4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:21:41 +0200 Subject: [PATCH 366/732] Translation update done using Pootle. --- po/el.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index 5aabfda5c..4cf9cac93 100644 --- a/po/el.po +++ b/po/el.po @@ -5183,14 +5183,12 @@ msgid "Garbage Threshold" msgstr "Όριο σκουπιδιών" #: libraries/engines/pbms.lib.php:31 -#, fuzzy #| msgid "" #| "The percentage of garbage in a data log file before it is compacted. This " #| "is a value between 1 and 99. The default is 50." msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" -"Το ποσοστό των σκουπιδιών στο αρχείο καταγραφής δεδομένων πριν συμπιεστεί. " -"Λαμβάνει τιμές από 1 έως 99. Προεπιλεγμένη τιμή είναι το 50." +"Το ποσοστό των σκουπιδιών στο αρχείο καταγραφής δεδομένων πριν συμπιεστεί." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:69 #: server_synchronize.php:1161 From 3b1912ac88aba766a06d6d8f99e7f900ee96022d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:21:55 +0200 Subject: [PATCH 367/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4cf9cac93..02226b6a3 100644 --- a/po/el.po +++ b/po/el.po @@ -5231,10 +5231,9 @@ msgstr "" "εγγραφή στη βάση δεδομένων." #: libraries/engines/pbms.lib.php:50 -#, fuzzy #| msgid "Log file threshold" msgid "Temp Log Threshold" -msgstr "Όριο αρχείου καταγραφής" +msgstr "Όριο αρχείου προσωρινής καταγραφής" #: libraries/engines/pbms.lib.php:51 msgid "" From b48f64ad68ac274677032e3704b5bf0305859815 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:22:43 +0200 Subject: [PATCH 368/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 02226b6a3..a0460d242 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:21+0200\n" +"PO-Revision-Date: 2010-11-26 23:22+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5241,6 +5241,9 @@ msgid "" "indicate the unit of the value. A value in bytes is assumed when no unit is " "specified." msgstr "" +"Το μέγιστο μέγεθος ενός αρχείου προσωρινής απόθεσης BLOB. Μπορείτε να " +"χρησιμοποιήσετε Kb, MB ή GB για να δείξετε τις μονάδες της τιμής. Η τιμή " +"θεωρείτε σε Bytes όταν δεν οριστούν μονάδες." #: libraries/engines/pbms.lib.php:55 msgid "Max Keep Alive" From eaab13ea80aa4850cd89e7955857b07277a9d05a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:23:28 +0200 Subject: [PATCH 369/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a0460d242..48cd905b4 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:22+0200\n" +"PO-Revision-Date: 2010-11-26 23:23+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5247,7 +5247,7 @@ msgstr "" #: libraries/engines/pbms.lib.php:55 msgid "Max Keep Alive" -msgstr "" +msgstr "Μέγιστη Διατήρηση Βιωσιμότητας" #: libraries/engines/pbms.lib.php:56 msgid "" From f8b899cffd4d0e8ac5c0e35056f760984040669d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:24:56 +0200 Subject: [PATCH 370/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 48cd905b4..66ad6bedd 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:23+0200\n" +"PO-Revision-Date: 2010-11-26 23:24+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5254,6 +5254,9 @@ msgid "" "The timeout for inactive connection with the keep-alive flag set. After this " "time the connection will be closed. The time-out is in milliseconds (1/1000)." msgstr "" +"Ο χρόνος λήξης για μη ενεργή σύνδεση με ορισμένη την επιλογή διαγήρησης " +"βιωσιμότητας. Μετά από αυτό το χρόνο θα κλείσει. Ο χρόνος λήξης είναι σε " +"χιλιοστοδευτερόλεπτα (1/1000)." #: libraries/engines/pbms.lib.php:60 msgid "Metadata Headers" From 50657f9329bb01621f85b92b823676e5bfe2fdb9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:25:15 +0200 Subject: [PATCH 371/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 66ad6bedd..5e847dc92 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:24+0200\n" +"PO-Revision-Date: 2010-11-26 23:25+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5260,7 +5260,7 @@ msgstr "" #: libraries/engines/pbms.lib.php:60 msgid "Metadata Headers" -msgstr "" +msgstr "Κεφαλίδες μετα-δεδομένων" #: libraries/engines/pbms.lib.php:61 msgid "" From eeba723a2dd0eb1487beefe5f5e9af2bce9aa524 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:26:46 +0200 Subject: [PATCH 372/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 5e847dc92..078287f6b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:25+0200\n" +"PO-Revision-Date: 2010-11-26 23:26+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5267,6 +5267,9 @@ msgid "" "A \":\" delimited list of metadata headers to be used to initialize the " "pbms_metadata_header table when a database is created." msgstr "" +"Μια τελεία «:» διαχωρίζει τη λίστα των κεφαλίδων μετα-δεδομένων για να " +"χρησιμοποιηθούν για την έναρξη του πίνακα pbms_metadata_header όταν " +"δημιουργηθεί η βάση δεδομένων." #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" From 0aa32d953c496ac034f9f9dfc93ce66b28d504e3 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:27:43 +0200 Subject: [PATCH 373/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 078287f6b..ddb2ca62e 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:26+0200\n" +"PO-Revision-Date: 2010-11-26 23:27+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5572,6 +5572,8 @@ msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" +"Προβολή σχολίων (περιλαμβάνει πληροφορίες όπως εξαγωγή timestamp, έκδοση " +"PHPκαι έκδοση διακομιστή)" #: libraries/export/sql.php:35 #| msgid "Add custom comment into header (\\n splits lines)" From 11124569ece9c3dbedb1fdc303165d6ba263636f Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:28:56 +0200 Subject: [PATCH 374/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index ddb2ca62e..4dce8c581 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:27+0200\n" +"PO-Revision-Date: 2010-11-26 23:28+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5587,6 +5587,8 @@ msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" +"Περιλαμβάνει μια χρονοσφραγίδα για το πότε δημιουργούνται, ενημερώνονται και " +"ελέγχονται βάσεις δεδομένων" #: libraries/export/sql.php:65 msgid "" From 69e149f67893cf8b2492b70b8155845a94b80c04 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:30:01 +0200 Subject: [PATCH 375/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 4dce8c581..82137005e 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:28+0200\n" +"PO-Revision-Date: 2010-11-26 23:30+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5594,6 +5594,8 @@ msgstr "" msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" +"Σύστημα βάσεων δεδομένων ή παλαιός διακομιστής MySQL για μεγιστοποίηση της " +"συμβατότητας του εξαγόμενου με:" #: libraries/export/sql.php:72 libraries/export/sql.php:105 #: libraries/export/sql.php:107 From dc4811bb871f1ef50e78c813adfe207bcdc029d8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:31:31 +0200 Subject: [PATCH 376/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 82137005e..e7d89b8f8 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:30+0200\n" +"PO-Revision-Date: 2010-11-26 23:31+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5611,7 +5611,7 @@ msgstr "Προσθήκη δηλώσεων" #: libraries/export/sql.php:111 msgid "CREATE TABLE options:" -msgstr "" +msgstr "Επιλογές ΔΗΜΙΟΥΡΓΙΑΣ ΠΙΝΑΚΑ (CREATE TABLE):" #: libraries/export/sql.php:123 msgid "" From ec11e283ae8846f926f250b72a8d34a93d4c645a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:33:39 +0200 Subject: [PATCH 377/732] Translation update done using Pootle. --- po/el.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/po/el.po b/po/el.po index e7d89b8f8..8b607e485 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:31+0200\n" +"PO-Revision-Date: 2010-11-26 23:33+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6747,7 +6747,6 @@ msgid "Event" msgstr "Συμβάν" #: libraries/transformations/application_octetstream__download.inc.php:9 -#, fuzzy #| msgid "" #| "Displays a link to download the binary data of the field. You can use the " #| "first option to specify the filename, or use the second option as the " @@ -6759,11 +6758,11 @@ msgid "" "of a column which contains the filename. If you use the second option, you " "need to set the first option to the empty string." msgstr "" -"Προβάλει έναν σύνδεσμο για λήψη των δυαδικών δεδομένων ενός πεδίου. Η πρώτη " -"επιλογή είναι το όνομα αρχείου ενός δυαδικού αρχείου. Η δεύτερη επιλογή " -"είναι ένα πιθανό όνομα πεδίου μια γραμμής πίνακα που περιέχει το όνομα " -"αρχείου. Αν δώσετε μια δεύτερη επιλογή πρέπει να έχετε ορίσει την πρώτη " -"επιλογή ως κενό" +"Προβάλει έναν σύνδεσμο για λήψη των δυαδικών δεδομένων μιας στήλης. Μπορείτε " +"να χρησιμοποιήσετε την πρώτη επιλογή για να ορίσετε το όνομα αρχείου. Η " +"δεύτερη επιλογή είναι ένα πιθανό όνομα στήλης πίνακα που περιέχει το όνομα " +"αρχείου. Αν επιλέξετε τη δεύτερη επιλογή πρέπει να έχετε ορίσει την πρώτη " +"επιλογή ως κενό." #: libraries/transformations/application_octetstream__hex.inc.php:9 msgid "" From 64b0683b551b31b596eefc22f3ccd3fde0375cc1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:33:52 +0200 Subject: [PATCH 378/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8b607e485..56f344182 100644 --- a/po/el.po +++ b/po/el.po @@ -6934,10 +6934,9 @@ msgid "" msgstr "" #: libraries/user_preferences.lib.php:141 -#, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save configuration" -msgstr "Αδύνατη η φόρτωση ή η αποθήκευση ρυθμίσεων" +msgstr "Αδύνατη η αποθήκευση ρυθμίσεων" #: libraries/user_preferences.lib.php:308 msgid "" From 3df1c3ca567a5e5b334ac257779d6f11b26f5b55 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:35:10 +0200 Subject: [PATCH 379/732] Translation update done using Pootle. --- po/el.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index 56f344182..ab4a5416f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:33+0200\n" +"PO-Revision-Date: 2010-11-26 23:35+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7101,7 +7101,7 @@ msgstr "" "μόλις ρυθμιστεί το phpMyAdmin." #: main.php:304 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -7109,8 +7109,9 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " -"απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." +"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " +"%sεδώ%s." #: main.php:319 msgid "" From 92d78c31693958dee6b5a0c0e7cc9895bc71e8ee Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:36:45 +0200 Subject: [PATCH 380/732] Translation update done using Pootle. --- po/el.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/el.po b/po/el.po index ab4a5416f..e6e2c82cb 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:35+0200\n" +"PO-Revision-Date: 2010-11-26 23:36+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7286,7 +7286,6 @@ msgid "To select relation, click :" msgstr "Για να επιλέξετε συσχέτιση, πατήστε :" #: pmd_help.php:28 -#, fuzzy #| msgid "" #| "The display field is shown in pink. To set/unset a field as the display " #| "field, click the \"Choose field to display\" icon, then click on the " @@ -7296,9 +7295,9 @@ msgid "" "column, click the \"Choose column to display\" icon, then click on the " "appropriate column name." msgstr "" -"Το προβαλόμενο πεδίο εμφανίζεται ροζ. Για να ορίσετε ή όχι ένα πεδίο ως " -"εμφανιζόμενο πεδίο, πατήστε το εικονίδιο «Επιλογή πεδίο για εμφάνιση» και " -"μετά πατήστε το κατάλληλο όνομα πεδίου." +"Η προβαλλόμενη στήλη εμφανίζεται ως ροζ. Για να ορίσετε ή όχι μια στήλη ως " +"εμφανιζόμενη στήλη, πατήστε το εικονίδιο «Επιλογή στήλης για προβολή» και " +"μετά πατήστε το κατάλληλο όνομα στήλης." #: pmd_pdf.php:60 msgid "Page has been created" From df7b8bf0476df6a81d02e3cea69ca800970d320d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:37:15 +0200 Subject: [PATCH 381/732] Translation update done using Pootle. --- po/el.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index e6e2c82cb..1147f2f23 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:36+0200\n" +"PO-Revision-Date: 2010-11-26 23:37+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8139,7 +8139,6 @@ msgid "Error management:" msgstr "Διαχείριση σφάλματος:" #: server_replication.php:332 -#, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" From dac27209864c52f549258fae65903d33808e13c1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:38:55 +0200 Subject: [PATCH 382/732] Translation update done using Pootle. --- po/el.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index 1147f2f23..5ab95e5d8 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:37+0200\n" +"PO-Revision-Date: 2010-11-26 23:38+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9315,13 +9315,13 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #: setup/lib/index.lib.php:162 -#, fuzzy, php-format +#, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Χρησιμοποιείτε υποέκδοση έκδοσης. Εκτελέστε την [kbd]ενημέρωση svn[/kbd] :-)" -"[br]Η τελευταία τελική έκδοση είναι η %s και δημοσιεύτηκε την %s." +"Χρησιμοποιείτε έκδοση Git, τρέξτε το [kbd]git pull[/kbd] :-)[br]Η τελευταία " +"σταθερή έκδοση είναι %s, δημοσιεύτηκε την %s." #: setup/lib/index.lib.php:165 msgid "No newer stable version is available" From accf7cf437daf943c397902b167b1e252683f66e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:42:20 +0200 Subject: [PATCH 383/732] Translation update done using Pootle. --- po/el.po | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/po/el.po b/po/el.po index 5ab95e5d8..2b98e98ab 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:38+0200\n" +"PO-Revision-Date: 2010-11-26 23:42+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9328,7 +9328,7 @@ msgid "No newer stable version is available" msgstr "Δεν υπάρχει νεότερη έκδοση (μη δοκιμαστική) διαθέσιμη" #: setup/lib/index.lib.php:250 -#, fuzzy, php-format +#, php-format #| msgid "" #| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " #| "disabled as it allows attackers to bruteforce login to any MySQL server. " @@ -9342,13 +9342,11 @@ msgid "" "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" -"Αυτή η [a@?page=form&formset=features#tab_Security]επιλογή[/a] πρέπει να " -"απενεργοποιηθεί καθώς επιτρέπει σε κακόβουλους να εισβάλουν συνδεόμενοι σε " -"οποιοδήποτε διακομιστή MySQL. Αν νομίζετε ότι είναι απαραίτητο, " -"χρησιμοποιείστε [a@?page=form&formset=features#tab_Security]λίστα " -"διευθύνσεων που εμπιστεύεστε[/a]. Ωστόσο, η βασισμένη σε IP προστασία ίσως " -"να μην είναι αξιόπιστη αν η IP σας ανήκει σε έναν ISP όπου χιλιάδες χρήστες, " -"μαζί με εσάς, είναι συνδεδεμένοι σε αυτόν." +"Αυτή η %sεπιλογή%s πρέπει να απενεργοποιηθεί καθώς επιτρέπει σε εισβολείς να " +"συνδεθούν σε οποιοδήποτε διακομιστή MySQL. Αν νομίζετε ότι αυτό είναι " +"απαραίτητο, χρησιμοποιήστε %sλίστα αξιόπιστων διακομιστών%s. Ωστόσο, η " +"προστασία με βάση την IP ίσως να μην είναι αξιόπιστη γιατί μπορεί η IP σας " +"να ανήκει σε πάροχο με χιλιάδες χρήστες." #: setup/lib/index.lib.php:252 msgid "" From b2f2547d53fd4ab70741850dfe50a44d2bba6218 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:43:29 +0200 Subject: [PATCH 384/732] Translation update done using Pootle. --- po/el.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/el.po b/po/el.po index 2b98e98ab..a2a4f0bd2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:42+0200\n" +"PO-Revision-Date: 2010-11-26 23:43+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9359,7 +9359,7 @@ msgstr "" "κρυπτογράφηση cookies. Δεν χρειάζεται να το θυμάστε." #: setup/lib/index.lib.php:253 -#, fuzzy, php-format +#, php-format #| msgid "" #| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " #| "and decompression[/a] requires functions (%s) which are unavailable on " @@ -9368,9 +9368,8 @@ msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"Η [a@?page=form&formset=features#tab_Import_export]συμπίεση και " -"αποσυμπίεση Bzip2[/a] απαιτεί λειτουργίες (%s) που δεν είναι διαθεσιμες σε " -"αυτό το σύστημα." +"Η %sσυμπίεση και αποσυμπίεση Bzip2%s απαιτεί συναρτήσεις (%s) που δεν είναι " +"διαθέσιμες σε αυτό το σύστημα." #: setup/lib/index.lib.php:255 msgid "" From d65c9893c7afb00a5013757ec27b4670534556b0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:44:17 +0200 Subject: [PATCH 385/732] Translation update done using Pootle. --- po/el.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index a2a4f0bd2..f01095fac 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:43+0200\n" +"PO-Revision-Date: 2010-11-26 23:44+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9381,12 +9381,12 @@ msgstr "" "χρήστες στο διακομιστή σας." #: setup/lib/index.lib.php:256 -#, fuzzy, php-format +#, php-format #| msgid "You should use SSL connections if your web server supports it" msgid "This %soption%s should be enabled if your web server supports it." msgstr "" -"Πρέπει να χρησιμοποιήσετε συνδέσεις SSL αν ο διακομιστής ιστού σας τις " -"υποστηρίζει" +"Αυτή η %sεπιλογή%s πρέπει να ενεργοποιηθεί αν ο διακομιστής σας το " +"υποστηρίζει." #: setup/lib/index.lib.php:258 #, fuzzy, php-format From 3ae4538e0d4950e996b877fc5fe4ca811045ab6e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:44:41 +0200 Subject: [PATCH 386/732] Translation update done using Pootle. --- po/el.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index f01095fac..612f1f133 100644 --- a/po/el.po +++ b/po/el.po @@ -9389,7 +9389,7 @@ msgstr "" "υποστηρίζει." #: setup/lib/index.lib.php:258 -#, fuzzy, php-format +#, php-format #| msgid "" #| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " #| "decompression[/a] requires functions (%s) which are unavailable on this " @@ -9398,9 +9398,8 @@ msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Συμπίεση και " -"αποσυμπίεση GZip[/a] απαιτεί λειτουργίες (%s) που δεν είναι διαθέσιμες σε " -"αυτό το σύστημα." +"Η %sσυμπίεση και αποσυμπίεση GZip%s απαιτεί συναρτήσεις (%s) που δεν είναι " +"διαθέσιμες σε αυτό το σύστημα." #: setup/lib/index.lib.php:260 #, php-format From 78501ae7d8aaaf55dca9f5a9cd16ff43398df14b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:46:41 +0200 Subject: [PATCH 387/732] Translation update done using Pootle. --- po/el.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/el.po b/po/el.po index 612f1f133..702fbd3d4 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:44+0200\n" +"PO-Revision-Date: 2010-11-26 23:46+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9410,7 +9410,7 @@ msgid "" msgstr "" #: setup/lib/index.lib.php:262 -#, fuzzy, php-format +#, php-format #| msgid "" #| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " #| "should be set to 1800 seconds (30 minutes) at most. Values larger than " @@ -9419,9 +9419,9 @@ msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"Η [a@?page=form&formset=features#tab_Security]Ισχύς του cookie σύνδεσης[/a] " -"πρέπει να οριστεί σε 1800 δευτερόλεπτα (30 λεπτά) το περισσότερο. Τιμές " -"μεγαλύτερες από 1800 ίσως παρουσιάσουν προβλήματα ασφάλειας όπως μίμηση." +"Η %sεγκυρότητα Σύνδεσης cookie%s πρέπει να οριστεί σε 1800 δευτερόλεπτα (30 " +"λεπτά) το περισσότερο. Τιμές μεγαλύτερες από 1800 μπορεί να ελοχεύει " +"κινδύνους απροσωποληψίας." #: setup/lib/index.lib.php:264 #, php-format From 47f77f3050e343fce9d5c228bd6b10a73bc51dfc Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:48:04 +0200 Subject: [PATCH 388/732] Translation update done using Pootle. --- po/el.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/el.po b/po/el.po index 702fbd3d4..ea1310f08 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:46+0200\n" +"PO-Revision-Date: 2010-11-26 23:48+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9451,7 +9451,7 @@ msgstr "" "ο πάροχός έχει χιλιάδες χρήστες που συνδέονται." #: setup/lib/index.lib.php:268 -#, fuzzy, php-format +#, php-format #| msgid "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " @@ -9466,11 +9466,11 @@ msgid "" "phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" "http[/kbd]." msgstr "" -"Ορίζετε τον τύπο επικύρωσης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα " +"Ορίζετε τον τύπο πιστοποίησης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα " "χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. " "Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει " -"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]." +"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή " +"[kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, fuzzy, php-format From 4d77268427605b7c18ef9e287312de68993dd3d5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:48:54 +0200 Subject: [PATCH 389/732] Translation update done using Pootle. --- po/el.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index ea1310f08..0c9ae29f1 100644 --- a/po/el.po +++ b/po/el.po @@ -9473,7 +9473,7 @@ msgstr "" "[kbd]http[/kbd]." #: setup/lib/index.lib.php:270 -#, fuzzy, php-format +#, php-format #| msgid "" #| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " #| "requires functions (%s) which are unavailable on this system." @@ -9481,8 +9481,8 @@ msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"Η [a@?page=form&formset=features#tab_Import_export]συμπίεση Zip[/a] " -"απαιτεί συναρτήσεις (%s) οι οποίες δεν είναι διαθέσιμες σε αυτό το σύστημα." +"Η %sσυμπίεση Zip%s απαιτεί συναρτήσεις (%s) που δεν είναι διαθέσιμες σε αυτό " +"το σύστημα." #: setup/lib/index.lib.php:272 #, fuzzy, php-format From 47c8a239d63457a26cbcd6938be7857de428e6e9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:49:15 +0200 Subject: [PATCH 390/732] Translation update done using Pootle. --- po/el.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/el.po b/po/el.po index 0c9ae29f1..18516667f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:48+0200\n" +"PO-Revision-Date: 2010-11-26 23:49+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9485,7 +9485,7 @@ msgstr "" "το σύστημα." #: setup/lib/index.lib.php:272 -#, fuzzy, php-format +#, php-format #| msgid "" #| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" #| "a] requires functions (%s) which are unavailable on this system." @@ -9493,8 +9493,8 @@ msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"Η [a@?page=form&formset=features#tab_Import_export]αποσυμπίεση Zip[/a] " -"απαιτεί συναρτήσεις (%s) οι οποίες δεν είναι διαθέσιμες σε αυτό το σύστημα." +"Η %sαποσυμπίεση Zip%s απαιτεί συναρτήσεις (%s) που δεν είναι διαθέσιμες σε " +"αυτό το σύστημα." #: setup/lib/index.lib.php:296 #, fuzzy From 0286656f9de4d6819ed7501947be9e301996d004 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:49:30 +0200 Subject: [PATCH 391/732] Translation update done using Pootle. --- po/el.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/el.po b/po/el.po index 18516667f..bc72e3078 100644 --- a/po/el.po +++ b/po/el.po @@ -9497,7 +9497,6 @@ msgstr "" "αυτό το σύστημα." #: setup/lib/index.lib.php:296 -#, fuzzy #| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." msgstr "" From 87baf4524617a52593a31d779e07dc16785c0ee7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:52:38 +0200 Subject: [PATCH 392/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index bc72e3078..c8d6f94c2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:49+0200\n" +"PO-Revision-Date: 2010-11-26 23:52+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5618,6 +5618,9 @@ msgid "" "Enclose table and field names with backquotes (Protects field and table " "names formed with special characters or keywords)" msgstr "" +"Εσωκλείνει ονόματα πίνακα και πεδίων με ανάποδα εισαγωγικά (Προστατεύει " +"τα ονόματα πεδίων και πινάκων που δημιουργήθηκαν με ειδικούς χαρακτήρες ή " +"λέξεις-κλειδιά)" #: libraries/export/sql.php:136 msgid "Instead of INSERT statements, use:" From c6142c2831482c3c1fd106e938af63d9317d62e5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:53:27 +0200 Subject: [PATCH 393/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index c8d6f94c2..abeb7578a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:52+0200\n" +"PO-Revision-Date: 2010-11-26 23:53+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5624,7 +5624,7 @@ msgstr "" #: libraries/export/sql.php:136 msgid "Instead of INSERT statements, use:" -msgstr "" +msgstr "Αντί για δηλώσεις ΕΙΣΑΓΩΓΗΣ (INSERT), χρησιμοποιήστε:" #: libraries/export/sql.php:138 msgid "INSERT DELAYED statements" From ab92a64fc8d63a7ba4f5e37fc18017f483e5aa8e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:54:34 +0200 Subject: [PATCH 394/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index abeb7578a..bb2c058d8 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:53+0200\n" +"PO-Revision-Date: 2010-11-26 23:54+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5628,7 +5628,7 @@ msgstr "Αντί για δηλώσεις ΕΙΣΑΓΩΓΗΣ (INSERT #: libraries/export/sql.php:138 msgid "INSERT DELAYED statements" -msgstr "" +msgstr "δηλώσεις ΕΙΣΑΓΩΓΗΣ ΚΑΘΥΣΤΕΡΗΜΕΝΗΣ (INSERT DELAYED)" #: libraries/export/sql.php:140 msgid "INSERT IGNORE statements" From df14af77f988693835d3f7a51d84012b2a1394f5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:55:14 +0200 Subject: [PATCH 395/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index bb2c058d8..2d74ff562 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:54+0200\n" +"PO-Revision-Date: 2010-11-26 23:55+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5632,7 +5632,7 @@ msgstr "δηλώσεις ΕΙΣΑΓΩΓΗΣ ΚΑΘΥΣΤΕΡΗΜΕΝΗΣINSERT IGNORE statements" -msgstr "" +msgstr "δηλώσεις ΕΙΣΑΓΩΓΗΣ ΑΓΝΟΗΣΗΣ (INSERT IGNORE)" #: libraries/export/sql.php:147 msgid "Function to use when dumping data:" From e53befbb8b3ac6b55783a6f85caa19b4c7a28cd6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:55:47 +0200 Subject: [PATCH 396/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 2d74ff562..eb56d6265 100644 --- a/po/el.po +++ b/po/el.po @@ -5636,7 +5636,7 @@ msgstr "δηλώσεις ΕΙΣΑΓΩΓΗΣ ΑΓΝΟΗΣΗΣ (INSER #: libraries/export/sql.php:147 msgid "Function to use when dumping data:" -msgstr "" +msgstr "Η συνάρτηση που θα χρησιμοποιηθεί κατά την αχρήστευση δεδομένων:" #: libraries/export/sql.php:151 msgid "Syntax to use when inserting data:" From 397bcf64e2738c0bf3af4e9fd2e4a878e606df4c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:56:21 +0200 Subject: [PATCH 397/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index eb56d6265..c91258134 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:55+0200\n" +"PO-Revision-Date: 2010-11-26 23:56+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5640,7 +5640,7 @@ msgstr "Η συνάρτηση που θα χρησιμοποιηθεί κατά #: libraries/export/sql.php:151 msgid "Syntax to use when inserting data:" -msgstr "" +msgstr "Η σύνταξη που θα χρησιμοποιηθεί κατά την εισαγωγή δεδομένων:" #: libraries/export/sql.php:154 msgid "" From 416f947b5f491db1014e17a82136113a4eaa4026 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:57:54 +0200 Subject: [PATCH 398/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c91258134..036747ff2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:56+0200\n" +"PO-Revision-Date: 2010-11-26 23:57+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5648,6 +5648,9 @@ msgid "" "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" +"συμπεριλαμβάνει ονόματα στηλών σε κάθε δήλωση ΕΙΣΑΓΩΓΗΣ " +"(INSERT)
      Παράδειγμα: INSERT INTO tbl_name " +"(col_A,col_B,col_C) VALUES (1,2,3)" #: libraries/export/sql.php:155 msgid "" From 582eb4b11483119bc5da16adfc0a00264695c010 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:58:46 +0200 Subject: [PATCH 399/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 036747ff2..8ba70e444 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:57+0200\n" +"PO-Revision-Date: 2010-11-26 23:58+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5658,6 +5658,9 @@ msgid "" "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" +"εισάγει πολλαπλές εγγραφές σε κάθε δήλωση ΕΙΣΑΓΩΓΗΣ (INSERT)
      Παράδειγμα: INSERT INTO tbl_name VALUES " +"(1,2,3), (4,5,6), (7,8,9)" #: libraries/export/sql.php:156 msgid "" From 13bbd815fa420b1fdd1fc10315218101c0eb7d1d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:59:21 +0200 Subject: [PATCH 400/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 8ba70e444..661645195 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:58+0200\n" +"PO-Revision-Date: 2010-11-26 23:59+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5667,6 +5667,8 @@ msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" +"όλα τα παραπάνω
      Παράδειγμα: INSERT INTO " +"tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" #: libraries/export/sql.php:157 msgid "" From cedf8a46d8021fdd70041182349579623a012b7b Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Fri, 26 Nov 2010 23:59:47 +0200 Subject: [PATCH 401/732] Translation update done using Pootle. --- po/el.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/el.po b/po/el.po index 661645195..a66c595ac 100644 --- a/po/el.po +++ b/po/el.po @@ -5675,6 +5675,8 @@ msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" +"κανένα από τα παραπάνω
      Παράδειγμα: INSERT " +"INTO tbl_name VALUES (1,2,3)" #: libraries/export/sql.php:167 msgid "" From 328264120edc2166a0f42b063b33f894e0d72c82 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:01:01 +0200 Subject: [PATCH 402/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index a66c595ac..3d5afb153 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-26 23:59+0200\n" +"PO-Revision-Date: 2010-11-27 00:01+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5683,6 +5683,8 @@ msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" +"Αχρήστευση δυαδικών στηλών σε δεκαεξαδική σημείωση (για παράδειγμα, το " +"«abc» γίνεται 0x616263)" #: libraries/export/sql.php:171 msgid "" From c78afe52dadd428fb42f9433b66cd283a18618d9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:02:38 +0200 Subject: [PATCH 403/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 3d5afb153..a8fadd6a2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:01+0200\n" +"PO-Revision-Date: 2010-11-27 00:02+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5691,6 +5691,9 @@ msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" +"Αχρήστευση στηλών ΧΡΟΝΟΣΦΡΑΓΙΔΑΣ (TIMESTAMP) σε UTC (ενεργοποιεί τις " +"στήλες TIMESTAMP να αχρηστευτούν και να επαναφορτωθούν μεταξύ διακομιστών " +"σε διαφορετικές ζώνες ώρας)" #: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" From 6126e0b7b3aeaa3c17a7e4edd4027bc398baa67c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:03:05 +0200 Subject: [PATCH 404/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a8fadd6a2..b037a8d6a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:02+0200\n" +"PO-Revision-Date: 2010-11-27 00:03+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5738,7 +5738,7 @@ msgstr "Κώδικας XML" #: libraries/export/xml.php:30 msgid "Object creation options (all are recommended)" -msgstr "" +msgstr "Επιλογές δημιουργίας αντικειμένου (όλες προτείνονται)" #: libraries/export/xml.php:40 #| msgid "View" From 3c765578ded88b467e3294e2a8bda73e436b857e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:04:10 +0200 Subject: [PATCH 405/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index b037a8d6a..4f9e7d03a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:03+0200\n" +"PO-Revision-Date: 2010-11-27 00:04+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5808,6 +5808,8 @@ msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" +"Η πρώτη γραμμή του αρχείου περιέχει τα ονόματα στηλών του πίνακα (αν δεν " +"επιλεγεί, η πρώτη γραμμή θα περιέχει δεδομένα)" #: libraries/import/csv.php:39 msgid "" From e3d8b0c7f8bfc6c5869578416388b32410bdb98c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:06:02 +0200 Subject: [PATCH 406/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 4f9e7d03a..a1d5f64c1 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:04+0200\n" +"PO-Revision-Date: 2010-11-27 00:06+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5817,6 +5817,9 @@ msgid "" "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." msgstr "" +"Αν τα δεδομένα σε κάθε εγγραφή του αρχείου δεν είναι στην ίδια σειρά όπως " +"στη βάση δεδομένων, δώστε εδώ τα ονόματα των στηλών. Τα ονόματα των στηλών " +"πρέπει να χωρίζονται με κόμμα και να μην περιβάλλονται σε εισαγωγικά." #: libraries/import/csv.php:41 #| msgid "Column names" From b15a5d4cd0cfa08ac5e13c1df51361786e33c5ff Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:09:38 +0200 Subject: [PATCH 407/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index a1d5f64c1..45f3d0d02 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:06+0200\n" +"PO-Revision-Date: 2010-11-27 00:09+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -5838,6 +5838,8 @@ msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" +"Ορίστηκε μη έγκυρη στήλη (%s)! Σιγουρευτείτε ότι τα ονόματα στηλών ορίζονται " +"σωστά, χωρίζονται με κόμμα δεν περιέχονται σε εισαγωγικά." #: libraries/import/csv.php:179 libraries/import/csv.php:426 #, php-format From 061d0643150a817fed5ad25d2c706afa8f4cec3d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:15:13 +0200 Subject: [PATCH 408/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 45f3d0d02..f4fb8c1c9 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:09+0200\n" +"PO-Revision-Date: 2010-11-27 00:15+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6182,7 +6182,7 @@ msgstr "Ιστορικό SQL" #: libraries/relation.lib.php:141 msgid "User preferences" -msgstr "" +msgstr "Ρυθμίσεις χρήστη" #: libraries/relation.lib.php:145 msgid "Quick steps to setup advanced features:" From 0e091ed0c9d9c24808b21ec9631560d9fc7f5855 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:15:51 +0200 Subject: [PATCH 409/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index f4fb8c1c9..9a37cb1c0 100644 --- a/po/el.po +++ b/po/el.po @@ -6186,7 +6186,7 @@ msgstr "Ρυθμίσεις χρήστη" #: libraries/relation.lib.php:145 msgid "Quick steps to setup advanced features:" -msgstr "" +msgstr "Γρήγορα βήματα για εγκατάσταση χαρακτηριστικών για προχωρημένους:" #: libraries/relation.lib.php:147 msgid "" From f7a5d463b33fe447729aa4b0978df840f1310e29 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:16:30 +0200 Subject: [PATCH 410/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 9a37cb1c0..729acaae7 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:15+0200\n" +"PO-Revision-Date: 2010-11-27 00:16+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6192,6 +6192,8 @@ msgstr "Γρήγορα βήματα για εγκατάσταση χαρακτη msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" +"Δημιουργία των απαραίτητων πινάκων με το αρχείο " +"script/create_tables.sql." #: libraries/relation.lib.php:148 msgid "Create a pma user and give access to these tables." From ce3ab373670979128bcb2773d705d76ae5e75fba Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:17:10 +0200 Subject: [PATCH 411/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 729acaae7..7c6b41993 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:16+0200\n" +"PO-Revision-Date: 2010-11-27 00:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6197,7 +6197,7 @@ msgstr "" #: libraries/relation.lib.php:148 msgid "Create a pma user and give access to these tables." -msgstr "" +msgstr "Δημιουργήστε έναν χρήστη pma και δώστε πρόσβαση σε αυτούς του πίνακες." #: libraries/relation.lib.php:149 msgid "" From e9147594c1ddd58636d3309666612197abffa9f8 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:23:26 +0200 Subject: [PATCH 412/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 7c6b41993..15de0b439 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:17+0200\n" +"PO-Revision-Date: 2010-11-27 00:23+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6204,6 +6204,9 @@ msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" +"Ενεργοποιεί χαρακτηριστικά για προχωρημένους στο αρχείο ρυθμίσεων " +"(config.inc.php), για παράδειγμα ξεκινήστε με το αρχείο " +"config.sample.inc.php." #: libraries/relation.lib.php:150 msgid "Re-login to phpMyAdmin to load the updated configuration file." From 215906cd19a0d0449a30967a7e328deb874735a4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:24:36 +0200 Subject: [PATCH 413/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 15de0b439..aae12e4ae 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:23+0200\n" +"PO-Revision-Date: 2010-11-27 00:24+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6211,6 +6211,8 @@ msgstr "" #: libraries/relation.lib.php:150 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" +"Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " +"ρυθμίσεων." #: libraries/relation.lib.php:1164 msgid "no description" From fba5e7b73806856b3f052161c60e634fa99ecfb3 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:25:00 +0200 Subject: [PATCH 414/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index aae12e4ae..4fbe70649 100644 --- a/po/el.po +++ b/po/el.po @@ -6350,7 +6350,7 @@ msgstr "Η σελίδα %s δεν περιέχει κανένα πίνακα!" #: libraries/schema/Export_Relation_Schema.class.php:207 msgid "SCHEMA ERROR: " -msgstr "" +msgstr "ΣΦΑΛΜΑ ΣΧΗΜΑΤΟΣ" #: libraries/schema/Pdf_Relation_Schema.class.php:891 #: libraries/schema/Pdf_Relation_Schema.class.php:1119 From 98fb61bdedc92a8840087b82d8dc4f1b7d473ae9 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:25:46 +0200 Subject: [PATCH 415/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4fbe70649..193f1e2b5 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:24+0200\n" +"PO-Revision-Date: 2010-11-27 00:25+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6394,7 +6394,7 @@ msgstr "Εσωτερικές συσχετίσεις" #: libraries/schema/User_Schema.class.php:116 msgid "FOREIGN KEY" -msgstr "" +msgstr "ΜΗ ΔΙΑΚΡΙΤΟ ΚΛΕΙΔΙ" #: libraries/schema/User_Schema.class.php:148 msgid "Please choose a page to edit" From bfffc19daa6c57290052be1654b281cd817b8ca2 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:26:03 +0200 Subject: [PATCH 416/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 193f1e2b5..2c06bb3b1 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:25+0200\n" +"PO-Revision-Date: 2010-11-27 00:26+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" From 2d13971c4a34bf98bd24fdc0fb8fcf42b0a579f7 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:28:04 +0200 Subject: [PATCH 417/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 2c06bb3b1..319121cc4 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:26+0200\n" +"PO-Revision-Date: 2010-11-27 00:28+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6398,7 +6398,7 @@ msgstr "ΜΗ ΔΙΑΚΡΙΤΟ ΚΛΕΙΔΙ" #: libraries/schema/User_Schema.class.php:148 msgid "Please choose a page to edit" -msgstr "Παρακαλώ επιλέξτε σελίδα για αλλαγή" +msgstr "Παρακαλώ επιλέξτε σελίδα για επεξεργασία" #: libraries/schema/User_Schema.class.php:153 #| msgctxt "Create SELECT * query" From 59933ef42176d61081a7990646aad8efd2ca12d3 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:28:54 +0200 Subject: [PATCH 418/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 319121cc4..d2544cb3c 100644 --- a/po/el.po +++ b/po/el.po @@ -6417,7 +6417,7 @@ msgstr "Προβολή σχεσιακού σχήματος" #: libraries/schema/User_Schema.class.php:356 msgid "Select Export Relational Type" -msgstr "" +msgstr "Επιλογή Τύπου Συσχέτισης Εξαγωγής" #: libraries/schema/User_Schema.class.php:377 msgid "Show grid" From 3295f43e053dd788f55559cb772a4b4e30876d35 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:30:49 +0200 Subject: [PATCH 419/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index d2544cb3c..258034c16 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:28+0200\n" +"PO-Revision-Date: 2010-11-27 00:30+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6642,7 +6642,7 @@ msgstr "END RAW" #: libraries/sqlparser.lib.php:367 msgid "Automatically appended backtick to the end of query!" -msgstr "" +msgstr "Αυτόματη επισύναψη οπισθοστίγματος στο τέλος του ερωτήματος!" #: libraries/sqlparser.lib.php:370 msgid "Unclosed quote" From 09e21d2247b08d4b1f8b37ff7ffd1fec7115bf04 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:31:39 +0200 Subject: [PATCH 420/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 258034c16..847b41d59 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:30+0200\n" +"PO-Revision-Date: 2010-11-27 00:31+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6730,7 +6730,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:371 msgid "ENUM or SET data too long?" -msgstr "" +msgstr "Τα δεδομένα ENUM ή SET είναι πολύ μεγάλα;" #: libraries/tbl_properties.inc.php:373 msgid "Get more editing space" From ac13d76172e60cc23969ddb88eda9d7451b13ead Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:31:54 +0200 Subject: [PATCH 421/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 847b41d59..d6edfb66e 100644 --- a/po/el.po +++ b/po/el.po @@ -6734,7 +6734,7 @@ msgstr "Τα δεδομένα ENUM ή SET είναι πολύ μεγάλα;" #: libraries/tbl_properties.inc.php:373 msgid "Get more editing space" -msgstr "" +msgstr "Λήψη περισσότερου χώρου επεξεργασίας" #: libraries/tbl_properties.inc.php:396 msgctxt "for default" From 818d10a9ca559974fbd70bdc1bfee519c75749d5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:33:17 +0200 Subject: [PATCH 422/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index d6edfb66e..a4632ad80 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:31+0200\n" +"PO-Revision-Date: 2010-11-27 00:33+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6929,6 +6929,8 @@ msgid "" "Converts an (IPv4) Internet network address into a string in Internet " "standard dotted format." msgstr "" +"Μετατρέπει μια διεύθυνση διαδικτύου (IPv4) σε κείμενο στη στικτή βασική " +"μορφή Διαδικτόυ." #: libraries/transformations/text_plain__sql.inc.php:9 msgid "Formats text as SQL query with syntax highlighting." From dab6c297fb62e41b2baf96ac126872026cab28bd Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:34:47 +0200 Subject: [PATCH 423/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index a4632ad80..8b1d7dfb7 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:33+0200\n" +"PO-Revision-Date: 2010-11-27 00:34+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6966,6 +6966,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" +"Οι προτιμήσεις σας θα αποθηκευτούν για την τρέχουσα συνεδρία μόνο. Για τη " +"μόνιμη αποθήκευση τους απαιτείται %sαποθήκευση ρυθμίσεων phpMyAdmin%s." #: libraries/user_preferences.lib.php:141 #| msgid "Cannot load or save configuration" From 2faeda2fdd614d6396adc5344200fbd145f2d06c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:35:57 +0200 Subject: [PATCH 424/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 8b1d7dfb7..2898f62aa 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:34+0200\n" +"PO-Revision-Date: 2010-11-27 00:35+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6979,6 +6979,8 @@ msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" msgstr "" +"Ο φυλλομετρητής σας έχει ρύθμιση phpMyAdmin για αυτό το domain. Θέλετε να το " +"εισάγετε για την τρέχουσα συνεδρία;" #: libraries/zip_extension.lib.php:25 msgid "No files found inside ZIP archive!" From 22def8723fe0a4212fa51818817e8826171b29aa Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:36:09 +0200 Subject: [PATCH 425/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 2898f62aa..5cb4dc812 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:35+0200\n" +"PO-Revision-Date: 2010-11-27 00:36+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7058,7 +7058,7 @@ msgstr "Επίσημη σελίδα του phpMyAdmin" #: main.php:223 msgid "Mailing lists" -msgstr "" +msgstr "Λίστες αλληλογραφίας" #: main.php:248 msgid "" From 0bd1593170e7a6006972fac32afbf36ea78f9b10 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:36:36 +0200 Subject: [PATCH 426/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 5cb4dc812..11e3db64f 100644 --- a/po/el.po +++ b/po/el.po @@ -7398,7 +7398,7 @@ msgstr "Αδύνατη η εισαγωγή ρυθμίσεων" #: prefs_manage.php:112 msgid "Configuration contains incorrect data for some fields." -msgstr "" +msgstr "Οι ρυθμίσεις περιέχουν λανθασμένα δεδομένα για ορισμένα πεδία." #: prefs_manage.php:128 msgid "Do you want to import remaining settings?" From ba7f0c5074d2c7ba397c471965c8f1c296c72f30 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:37:03 +0200 Subject: [PATCH 427/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 11e3db64f..c4c4dde7b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:36+0200\n" +"PO-Revision-Date: 2010-11-27 00:37+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7402,7 +7402,7 @@ msgstr "Οι ρυθμίσεις περιέχουν λανθασμένα δεδο #: prefs_manage.php:128 msgid "Do you want to import remaining settings?" -msgstr "" +msgstr "Θέλετε να εισάγετε τις υπόλοιπες ρυθμίσεις;" #: prefs_manage.php:225 prefs_manage.php:251 msgid "Saved on: @DATE@" From bd2c785012135cf86789786fd5174610408be927 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:37:17 +0200 Subject: [PATCH 428/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c4c4dde7b..0377b04fa 100644 --- a/po/el.po +++ b/po/el.po @@ -7406,7 +7406,7 @@ msgstr "Θέλετε να εισάγετε τις υπόλοιπες ρυθμί #: prefs_manage.php:225 prefs_manage.php:251 msgid "Saved on: @DATE@" -msgstr "" +msgstr "Αποθήκευση στις: @DATE@" #: prefs_manage.php:239 #| msgid "Import files" From b9f6ae0d47eeebe9da3897645782a77e57cb596d Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:37:35 +0200 Subject: [PATCH 429/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 0377b04fa..d6db61a2a 100644 --- a/po/el.po +++ b/po/el.po @@ -7415,7 +7415,7 @@ msgstr "Εισαγωγή από αρχείο" #: prefs_manage.php:245 msgid "Import from browser's storage" -msgstr "" +msgstr "Εισαγωγή από την αποθήκευση φυλλομετρητή" #: prefs_manage.php:248 msgid "Settings will be imported from your browser's local storage." From 22de18e6790f2b857f29130378245b3607b3f1fb Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:39:41 +0200 Subject: [PATCH 430/732] Translation update done using Pootle. --- po/el.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index d6db61a2a..a028311d3 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:37+0200\n" +"PO-Revision-Date: 2010-11-27 00:39+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7420,6 +7420,7 @@ msgstr "Εισαγωγή από την αποθήκευση φυλλομετρη #: prefs_manage.php:248 msgid "Settings will be imported from your browser's local storage." msgstr "" +"Οι ρυθμίσεις θα εισαχθούν από την τοπική αποθήκευση του φυλλομετρητή σας." #: prefs_manage.php:254 #| msgid "Other core settings" From 516f2d21202fa37de058610728841b9b34d1cd93 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:40:11 +0200 Subject: [PATCH 431/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index a028311d3..d77db4c17 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:39+0200\n" +"PO-Revision-Date: 2010-11-27 00:40+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7429,7 +7429,7 @@ msgstr "Δεν έχετε αποθηκευμένες ρυθμίσεις!" #: prefs_manage.php:258 prefs_manage.php:312 msgid "This feature is not supported by your web browser" -msgstr "" +msgstr "Αυτό το χαρακτηριστικό δεν υποστηρίζεται από τον φυλλομετρητή σας" #: prefs_manage.php:263 #| msgid "Server configuration" From 4add4a3bfd13cc84750c3fd271609f72fd8e7146 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:41:32 +0200 Subject: [PATCH 432/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index d77db4c17..feb02076c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:40+0200\n" +"PO-Revision-Date: 2010-11-27 00:41+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7442,6 +7442,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" +"Μπορείτε να ορίσετε περισσότερες ρυθμίσεις αλλάζοντας το αρχείο " +"config.inc.php, π.χ. χρησιμοποιώντας τον %sκώδικα Εγκατάστασης%s." #: prefs_manage.php:302 msgid "Save to browser's storage" From 939aa39fb9d29a190eb611fa2f61e9d620c21f73 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:41:53 +0200 Subject: [PATCH 433/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index feb02076c..c1394c235 100644 --- a/po/el.po +++ b/po/el.po @@ -7447,7 +7447,7 @@ msgstr "" #: prefs_manage.php:302 msgid "Save to browser's storage" -msgstr "" +msgstr "Αποθήκευση στο χώρο αποθήκευσης του φυλλομετρητή" #: prefs_manage.php:306 msgid "Settings will be saved in your browser's local storage." From da3564b3dec8f82eecee4f3f795c191504cbae44 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:42:25 +0200 Subject: [PATCH 434/732] Translation update done using Pootle. --- po/el.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c1394c235..43a668524 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:41+0200\n" +"PO-Revision-Date: 2010-11-27 00:42+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7452,6 +7452,7 @@ msgstr "Αποθήκευση στο χώρο αποθήκευσης του φυ #: prefs_manage.php:306 msgid "Settings will be saved in your browser's local storage." msgstr "" +"Οι ρυθμίσεις θα αποθηκευτούν στην τοπική αποθήκευση του φυλλομετρητή σας." #: prefs_manage.php:308 msgid "Existing settings will be overwritten!" From 2b3f6268ab2aa9a6303340f9caf17ef44dc0d9ac Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:42:45 +0200 Subject: [PATCH 435/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 43a668524..8d24aa047 100644 --- a/po/el.po +++ b/po/el.po @@ -7456,7 +7456,7 @@ msgstr "" #: prefs_manage.php:308 msgid "Existing settings will be overwritten!" -msgstr "" +msgstr "Οι υπάρχουσες ρυθμίσεις θα αντικατασταθούν!" #: prefs_manage.php:323 msgid "You can reset all your settings and restore them to default values." From 41b7385266401a74adcf4ca206b87b66d9feed89 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:43:19 +0200 Subject: [PATCH 436/732] Translation update done using Pootle. --- po/el.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 8d24aa047..6e7bc3ab7 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:42+0200\n" +"PO-Revision-Date: 2010-11-27 00:43+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -7461,6 +7461,7 @@ msgstr "Οι υπάρχουσες ρυθμίσεις θα αντικαταστα #: prefs_manage.php:323 msgid "You can reset all your settings and restore them to default values." msgstr "" +"Μπορείτε να επαναφέρεται όλες σας τις ρυθμίσεις στις προεπιλεγμένες τιμές." #: querywindow.php:93 msgid "Import files" From 95801795afaec4bea946a1f6db44c0022cf796aa Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:43:51 +0200 Subject: [PATCH 437/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 6e7bc3ab7..72979de9b 100644 --- a/po/el.po +++ b/po/el.po @@ -8122,7 +8122,7 @@ msgstr "" #: server_replication.php:291 msgid "Slave SQL Thread not running!" -msgstr "" +msgstr "Το δευτερεύον νήμα SQL δεν τρέχει!" #: server_replication.php:294 msgid "Slave IO Thread not running!" From 611052d29be7c75d06351abc5a951f8f2d2eb230 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:44:09 +0200 Subject: [PATCH 438/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 72979de9b..c1c738005 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:43+0200\n" +"PO-Revision-Date: 2010-11-27 00:44+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -8126,7 +8126,7 @@ msgstr "Το δευτερεύον νήμα SQL δεν τρέχει!" #: server_replication.php:294 msgid "Slave IO Thread not running!" -msgstr "" +msgstr "Το δευτερεύον IO SQL δεν τρέχει!" #: server_replication.php:303 msgid "" From 0e70e563f54ea2693e5d870eb82053c7b9d7ecb2 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:44:22 +0200 Subject: [PATCH 439/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c1c738005..3abf6cced 100644 --- a/po/el.po +++ b/po/el.po @@ -9157,7 +9157,7 @@ msgstr "Τα ακόλουθα ερωτήματα εκτελέστηκαν:" #: server_synchronize.php:1120 msgid "Enter manually" -msgstr "" +msgstr "Εισάγετε χειροκίνητα" #: server_synchronize.php:1121 msgid "Current connection" From 94ac20a7942069a6e559b53119553766b01fa157 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:47:15 +0200 Subject: [PATCH 440/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 3abf6cced..c6174234f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:44+0200\n" +"PO-Revision-Date: 2010-11-27 00:47+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9451,6 +9451,9 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" +"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format From 3d19f501e8e88074fcb631efd98b6b9e3c78ce0c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:49:05 +0200 Subject: [PATCH 441/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c6174234f..bdb4b6739 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:47+0200\n" +"PO-Revision-Date: 2010-11-27 00:49+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9475,6 +9475,9 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" +"Αν χρησιμοποιείτε πιστοποίηση cookie και η %sαποθήκευση cookie Σύνδεσης%s " +"δεν είναι 0, η %sεγκυρότητα Σύνδεσης cookie%s πρέπει να οριστεί σε μια τιμή " +"μικρότερη ή ίση με αυτή." #: setup/lib/index.lib.php:266 #, php-format From 9003b0ec5dd15a50ef78e7beb490565e6e2982d1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:51:32 +0200 Subject: [PATCH 442/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index bdb4b6739..3694eedbc 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:49+0200\n" +"PO-Revision-Date: 2010-11-27 00:51+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9763,6 +9763,8 @@ msgid "" "For compatibility reasons the chart image is segmented by default, select " "this to draw the whole chart in one image." msgstr "" +"Για λόγους συμβατότητας, η εικόνα του διαγράμματος περιορίζεται ως " +"προεπιλογή. Επιλέξτε το για σχεδιασμό όλο το διάγραμμα σε μια εικόνα." #: tbl_chart.php:166 msgid "" From 128c056b420ec26b59b07d315c88d9f9ee9d7eac Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:52:31 +0200 Subject: [PATCH 443/732] Translation update done using Pootle. --- po/el.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 3694eedbc..2d771122c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:51+0200\n" +"PO-Revision-Date: 2010-11-27 00:52+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9770,6 +9770,8 @@ msgstr "" msgid "" "When drawing a radar chart all values are normalized to a range [0..10]." msgstr "" +"Όταν σχεδιάζετε ένα διάγραμμα ραντάρ, όλες οι τιμές κανονικοποιούνται σε ένα " +"εύρος [0..10]." #: tbl_chart.php:173 msgid "" From bb4fe3c212f82f3c69f574d637465ef5727efeca Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:55:27 +0200 Subject: [PATCH 444/732] Translation update done using Pootle. --- po/el.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 2d771122c..00127fee6 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:52+0200\n" +"PO-Revision-Date: 2010-11-27 00:55+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9778,6 +9778,9 @@ msgid "" "Note that not every result table can be put to the chart. See FAQ 6.29" msgstr "" +"Σημειώστε ότι δεν μπορεί κάθε πίνακας αποτελεσμάτων να μπει σε διάγραμμα. " +"Δείτε τις ΣΑΕ " +"6.29" #: tbl_chart.php:181 msgid "Redraw" From 871e083beab138043296d5fe6c5016987117dab0 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 00:56:08 +0200 Subject: [PATCH 445/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 00127fee6..b6f947b31 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:55+0200\n" +"PO-Revision-Date: 2010-11-27 00:56+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" From b88a0ef8d1559a5a055aca86f9de2e08353deb81 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:08 +0200 Subject: [PATCH 446/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index b6f947b31..b5a67f65c 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 00:56+0200\n" +"PO-Revision-Date: 2010-11-27 01:06+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1224,7 +1224,7 @@ msgstr "Δεκεμβρίου" #. l10n: Short month name #: js/messages.php:140 libraries/common.lib.php:1545 msgid "Jan" -msgstr "Ιανουαρίου" +msgstr "Ιαν" #. l10n: Short month name #: js/messages.php:142 libraries/common.lib.php:1547 From 82c4a0c7ba03c22728a0e8106917ac23b5b90161 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:13 +0200 Subject: [PATCH 447/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index b5a67f65c..9b3f91061 100644 --- a/po/el.po +++ b/po/el.po @@ -1229,7 +1229,7 @@ msgstr "Ιαν" #. l10n: Short month name #: js/messages.php:142 libraries/common.lib.php:1547 msgid "Feb" -msgstr "Φεβρουαρίου" +msgstr "Φεβ" #. l10n: Short month name #: js/messages.php:144 libraries/common.lib.php:1549 From 85b9cb0cc658ea10d6a3856b4aefc97d3c0405cd Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:18 +0200 Subject: [PATCH 448/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 9b3f91061..eeab08980 100644 --- a/po/el.po +++ b/po/el.po @@ -1234,7 +1234,7 @@ msgstr "Φεβ" #. l10n: Short month name #: js/messages.php:144 libraries/common.lib.php:1549 msgid "Mar" -msgstr "Μαρτίου" +msgstr "Μαρ" #. l10n: Short month name #: js/messages.php:146 libraries/common.lib.php:1551 From 1a61fb979a4445ae644dd43301f5f026a92a49de Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:23 +0200 Subject: [PATCH 449/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index eeab08980..409d8c4bb 100644 --- a/po/el.po +++ b/po/el.po @@ -1239,7 +1239,7 @@ msgstr "Μαρ" #. l10n: Short month name #: js/messages.php:146 libraries/common.lib.php:1551 msgid "Apr" -msgstr "Απριλίου" +msgstr "Απρ" #. l10n: Short month name #: js/messages.php:148 libraries/common.lib.php:1553 From 266c68497bea0942d907af302bfed90053cde01a Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:33 +0200 Subject: [PATCH 450/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 409d8c4bb..4761c968d 100644 --- a/po/el.po +++ b/po/el.po @@ -1245,7 +1245,7 @@ msgstr "Απρ" #: js/messages.php:148 libraries/common.lib.php:1553 msgctxt "Short month name" msgid "May" -msgstr "Μαΐου" +msgstr "Μάη" #. l10n: Short month name #: js/messages.php:150 libraries/common.lib.php:1555 From a9d55b27ed460bc5519ed0e441af5c2e84a9e094 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:41 +0200 Subject: [PATCH 451/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 4761c968d..88c4d513d 100644 --- a/po/el.po +++ b/po/el.po @@ -1250,7 +1250,7 @@ msgstr "Μάη" #. l10n: Short month name #: js/messages.php:150 libraries/common.lib.php:1555 msgid "Jun" -msgstr "Ιουνίου" +msgstr "Ιουν" #. l10n: Short month name #: js/messages.php:152 libraries/common.lib.php:1557 From a62af04fd04b0c2d52abccd30ce7247600085267 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:45 +0200 Subject: [PATCH 452/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 88c4d513d..cb502c520 100644 --- a/po/el.po +++ b/po/el.po @@ -1255,7 +1255,7 @@ msgstr "Ιουν" #. l10n: Short month name #: js/messages.php:152 libraries/common.lib.php:1557 msgid "Jul" -msgstr "Ιουλίου" +msgstr "Ιουλ" #. l10n: Short month name #: js/messages.php:154 libraries/common.lib.php:1559 From 8677675809b8caf1b4c5628817119ebc56c5465c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:50 +0200 Subject: [PATCH 453/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index cb502c520..98a150303 100644 --- a/po/el.po +++ b/po/el.po @@ -1260,7 +1260,7 @@ msgstr "Ιουλ" #. l10n: Short month name #: js/messages.php:154 libraries/common.lib.php:1559 msgid "Aug" -msgstr "Αυγούστου" +msgstr "Αυγ" #. l10n: Short month name #: js/messages.php:156 libraries/common.lib.php:1561 From c9476acd555f64dd967d7df8e547d1ee5bdfcd48 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:55 +0200 Subject: [PATCH 454/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 98a150303..6de865bbc 100644 --- a/po/el.po +++ b/po/el.po @@ -1265,7 +1265,7 @@ msgstr "Αυγ" #. l10n: Short month name #: js/messages.php:156 libraries/common.lib.php:1561 msgid "Sep" -msgstr "Σεπτεμβρίου" +msgstr "Σεπ" #. l10n: Short month name #: js/messages.php:158 libraries/common.lib.php:1563 From ede07ac3b9cbd4946b64fdf3b7dd45619a06d5f5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:06:59 +0200 Subject: [PATCH 455/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 6de865bbc..df3aa5b90 100644 --- a/po/el.po +++ b/po/el.po @@ -1270,7 +1270,7 @@ msgstr "Σεπ" #. l10n: Short month name #: js/messages.php:158 libraries/common.lib.php:1563 msgid "Oct" -msgstr "Οκτωβρίου" +msgstr "Οκτ" #. l10n: Short month name #: js/messages.php:160 libraries/common.lib.php:1565 From 955109dd7c2421e00b34d6c0ba9869657eb21545 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:04 +0200 Subject: [PATCH 456/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index df3aa5b90..7f43ee1f2 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 01:06+0200\n" +"PO-Revision-Date: 2010-11-27 01:07+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1275,7 +1275,7 @@ msgstr "Οκτ" #. l10n: Short month name #: js/messages.php:160 libraries/common.lib.php:1565 msgid "Nov" -msgstr "Νοεμβρίου" +msgstr "Νοε" #. l10n: Short month name #: js/messages.php:162 libraries/common.lib.php:1567 From bc49813f40e24b7d25c36f4bf61578d235dfe524 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:08 +0200 Subject: [PATCH 457/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 7f43ee1f2..404096125 100644 --- a/po/el.po +++ b/po/el.po @@ -1280,7 +1280,7 @@ msgstr "Νοε" #. l10n: Short month name #: js/messages.php:162 libraries/common.lib.php:1567 msgid "Dec" -msgstr "Δεκεμβρίου" +msgstr "Δεκ" #: js/messages.php:165 msgid "Sunday" From b60ae20eb3250083731153f9243cd5dc712fc2e5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:27 +0200 Subject: [PATCH 458/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index 404096125..fbb01c202 100644 --- a/po/el.po +++ b/po/el.po @@ -1313,7 +1313,7 @@ msgstr "Σάββατο" #. l10n: Short week day name #: js/messages.php:175 libraries/common.lib.php:1570 msgid "Sun" -msgstr "Κυριακή" +msgstr "Κυρ" #. l10n: Short week day name #: js/messages.php:177 libraries/common.lib.php:1572 From d67ddd67b15f2878733477935e1bdccb8eedfbd5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:31 +0200 Subject: [PATCH 459/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index fbb01c202..c366449cf 100644 --- a/po/el.po +++ b/po/el.po @@ -1318,7 +1318,7 @@ msgstr "Κυρ" #. l10n: Short week day name #: js/messages.php:177 libraries/common.lib.php:1572 msgid "Mon" -msgstr "Δευτέρα" +msgstr "Δευ" #. l10n: Short week day name #: js/messages.php:179 libraries/common.lib.php:1574 From 197c7ace4b514143afa9ffc8085c6de709b24c39 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:38 +0200 Subject: [PATCH 460/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c366449cf..c8ef0fcbf 100644 --- a/po/el.po +++ b/po/el.po @@ -1323,7 +1323,7 @@ msgstr "Δευ" #. l10n: Short week day name #: js/messages.php:179 libraries/common.lib.php:1574 msgid "Tue" -msgstr "Τρίτη" +msgstr "Τρί" #. l10n: Short week day name #: js/messages.php:181 libraries/common.lib.php:1576 From 6adbd9308292c675e3fb17479c90a8aaa204d010 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:43 +0200 Subject: [PATCH 461/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index c8ef0fcbf..d41ae5163 100644 --- a/po/el.po +++ b/po/el.po @@ -1328,7 +1328,7 @@ msgstr "Τρί" #. l10n: Short week day name #: js/messages.php:181 libraries/common.lib.php:1576 msgid "Wed" -msgstr "Τετάρτη" +msgstr "Τετ" #. l10n: Short week day name #: js/messages.php:183 libraries/common.lib.php:1578 From af95d78f8574695b2e565060a6ae737b32f31fa5 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:48 +0200 Subject: [PATCH 462/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index d41ae5163..e1f3f9f99 100644 --- a/po/el.po +++ b/po/el.po @@ -1333,7 +1333,7 @@ msgstr "Τετ" #. l10n: Short week day name #: js/messages.php:183 libraries/common.lib.php:1578 msgid "Thu" -msgstr "Πέμπτη" +msgstr "Πέμ" #. l10n: Short week day name #: js/messages.php:185 libraries/common.lib.php:1580 From 1b1c72e05d6e44c58f64aa2b12a2361f07207df6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:53 +0200 Subject: [PATCH 463/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index e1f3f9f99..a93efb88d 100644 --- a/po/el.po +++ b/po/el.po @@ -1338,7 +1338,7 @@ msgstr "Πέμ" #. l10n: Short week day name #: js/messages.php:185 libraries/common.lib.php:1580 msgid "Fri" -msgstr "Παρασκευή" +msgstr "Παρ" #. l10n: Short week day name #: js/messages.php:187 libraries/common.lib.php:1582 From 4ea2e60835a22aa4a5b0ed0f004a557a456bbc52 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:07:58 +0200 Subject: [PATCH 464/732] Translation update done using Pootle. --- po/el.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/el.po b/po/el.po index a93efb88d..65b4bccce 100644 --- a/po/el.po +++ b/po/el.po @@ -1343,7 +1343,7 @@ msgstr "Παρ" #. l10n: Short week day name #: js/messages.php:187 libraries/common.lib.php:1582 msgid "Sat" -msgstr "Σάββατο" +msgstr "Σάβ" #. l10n: Minimal week day name #: js/messages.php:191 From fe6237bf947da7a5c2cf66b9e40e8694e498eff1 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:08:34 +0200 Subject: [PATCH 465/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 65b4bccce..50f6a7b76 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 01:07+0200\n" +"PO-Revision-Date: 2010-11-27 01:08+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1508,7 +1508,7 @@ msgstr "Βάσεις Δεδομένων" #: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:924 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" -msgstr "λάθος" +msgstr "Λάθος" #: libraries/Message.class.php:281 #, php-format From 30227f7b87cbcb6544ae8fa3184e35df56e7c150 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:09:31 +0200 Subject: [PATCH 466/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 50f6a7b76..8ad0d662b 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 01:08+0200\n" +"PO-Revision-Date: 2010-11-27 01:09+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -1925,7 +1925,7 @@ msgstr "Εντολή SQL" #: libraries/common.lib.php:628 msgid "MySQL said: " -msgstr "Η MySQL επέστρεψε το μύνημα: " +msgstr "Η MySQL επέστρεψε το μήνυμα: " #: libraries/common.lib.php:1078 #| msgid "Could not connect to MySQL server" From a143be1ccee5b5c7341cde12605f651d69279956 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:11:43 +0200 Subject: [PATCH 467/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 8ad0d662b..4f4e042b9 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 01:09+0200\n" +"PO-Revision-Date: 2010-11-27 01:11+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -3889,7 +3889,7 @@ msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -"Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους " +"Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους " "επικύρωσης[/a] για ένα παράδειγμα" #: libraries/config/messages.inc.php:405 From ca5bc577dc6091fbf430ed15afcf89a3c429a08e Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:14:14 +0200 Subject: [PATCH 468/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4f4e042b9..4acaadc2f 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 01:11+0200\n" +"PO-Revision-Date: 2010-11-27 01:14+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -6958,7 +6958,7 @@ msgstr "Διαχειριστείτε τις ρυθμίσεις σας" #: libraries/user_preferences.inc.php:47 prefs_manage.php:291 #| msgid "Modifications have been saved" msgid "Configuration has been saved" -msgstr "ΟΙ ρυθμίσεις αποθηκεύτηκαν" +msgstr "Οι ρυθμίσεις αποθηκεύτηκαν" #: libraries/user_preferences.inc.php:68 #, php-format From f42c43f0055df95cbb03565c7405462ca4b99f1c Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Sat, 27 Nov 2010 01:15:46 +0200 Subject: [PATCH 469/732] Translation update done using Pootle. --- po/el.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/el.po b/po/el.po index 4acaadc2f..dbf53a382 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 01:14+0200\n" +"PO-Revision-Date: 2010-11-27 01:15+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" "Language: el\n" @@ -9598,7 +9598,7 @@ msgstr "Προβλήματα με τα ευρετήρια στον πίνακα #: sql.php:852 msgid "Label" -msgstr "Τίτλος" +msgstr "Ετικέτα" #: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format From 860f6e3294a60209d67e1f5efa42a28b7cdc9d5e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Sat, 27 Nov 2010 10:22:41 +0200 Subject: [PATCH 470/732] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 077d3a251..0ac4adc8e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-21 20:13+0200\n" +"PO-Revision-Date: 2010-11-27 10:22+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -7185,7 +7185,7 @@ msgstr "Tüm Sorguları Göster" #: server_binlog.php:201 msgid "Log name" -msgstr "Günlük ismi" +msgstr "Günlük adı" #: server_binlog.php:202 msgid "Position" From 93ad3e71b945af7d700f6e7110e1c2d6783bed40 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Sat, 27 Nov 2010 10:22:53 +0200 Subject: [PATCH 471/732] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 0ac4adc8e..c5dfaeebf 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9352,7 +9352,7 @@ msgstr "Tablonun dökümünü (şemasını) göster" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" -msgstr "Birincil anahtarın ismi \"PRIMARY\" olmalıdır!" +msgstr "Birincil anahtarın adı \"PRIMARY\" olmalıdır!" #: tbl_indexes.php:74 msgid "Can't rename index to PRIMARY!" From d7069b1c71fcc0accfbef078902062cf67640384 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Sat, 27 Nov 2010 10:23:12 +0200 Subject: [PATCH 472/732] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index c5dfaeebf..42b851cf9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 10:22+0200\n" +"PO-Revision-Date: 2010-11-27 10:23+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9382,7 +9382,7 @@ msgstr "İndeks türü:" msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -"(\"PRIMARY\" sadece ve sadece bir birincil anahtarın ismi " +"(\"PRIMARY\" sadece ve sadece bir birincil anahtarın adı " "olmalıdır!)" #: tbl_indexes.php:249 From a7115f2d37ee31e6be15a19642ea9ddba32b59e6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Sat, 27 Nov 2010 10:24:10 +0200 Subject: [PATCH 473/732] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 42b851cf9..75b4dacea 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 10:23+0200\n" +"PO-Revision-Date: 2010-11-27 10:24+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -2222,7 +2222,7 @@ msgid "" "cross-frame scripting attacks" msgstr "" "Bunu etkinleştirmek phpMyAdmin'i çerçeve içinde çağırmak için farklı alan " -"isimlerine yerleşmiş sayfalara izin verir ve çapraz çerçeve betik yazım " +"adlarına yerleşmiş sayfalara izin verir ve çapraz çerçeve betik yazım " "saldırılarına izin veren olası [strong]güvenlik açığıdır[/strong]" #: libraries/config/messages.inc.php:20 From d0a799fa94c563c0cda4812c96c666c39645a690 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:49:44 +0200 Subject: [PATCH 474/732] Translation update done using Pootle. --- po/es.po | 524 +------------------------------------------------------ 1 file changed, 5 insertions(+), 519 deletions(-) diff --git a/po/es.po b/po/es.po index a6957715a..cece7432e 100644 --- a/po/es.po +++ b/po/es.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-03-12 11:23+0200\n" -"Last-Translator: Michal \n" +"PO-Revision-Date: 2010-11-27 14:49+0200\n" +"Last-Translator: \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.1\n" +"X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 #: libraries/display_tbl.lib.php:415 server_privileges.php:1594 @@ -96,7 +96,7 @@ msgstr "Use este valor" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:331 msgid "No blob streaming server configured!" -msgstr "" +msgstr "No hay configurado ningun servidor de streaming de blobs!" #: bs_disp_as_mime_type.php:35 #, fuzzy @@ -10383,517 +10383,3 @@ msgstr "Cambiar el nombre de la tabla a" #~ msgid "No tables" #~ msgstr "No existen tablas" - -#, fuzzy -#~| msgid "CSV" -#~ msgid "SVG" -#~ msgstr "CSV" - -#~ msgid "" -#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#~ "enabled if your web server supports it" -#~ msgstr "" -#~ "Esta [a@?page=form&formset=features#tab_Security]opción[/a] se debe " -#~ "permitir si su servidor la tiene" - -#, fuzzy -#~| msgid "" -#~| "Please enter the values for transformation options using this format: " -#~| "'a', 100, b,'c'...
If you ever need to put a backslash (\"\\\") or " -#~| "a single quote (\"'\") amongst those values, precede it with a backslash " -#~| "(for example '\\\\xyz' or 'a\\'b')." -#~ msgid "" -#~ "Enter each value in a separate field, enclosed in single quotes. If you " -#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst " -#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a" -#~ "\\'b')." -#~ msgstr "" -#~ "Por favor ingrese los valores para las opciones de transformación usando " -#~ "este formato: 'a','b','c'...
Si alguna vez requiere insertar un " -#~ "Backslash (\"\\\") o comilla sencilla (\"'\") entre esos valores, use " -#~ "backslash (por ejemplo '\\\\xyz' o 'a\\'b')." - -#, fuzzy -#~| msgid "" -#~| "Please enter the values for transformation options using this format: " -#~| "'a', 100, b,'c'...
If you ever need to put a backslash (\"\\\") or " -#~| "a single quote (\"'\") amongst those values, precede it with a backslash " -#~| "(for example '\\\\xyz' or 'a\\'b')." -#~ msgid "" -#~ "Enter each value in a separate field. If you ever need to put a backslash " -#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with " -#~ "a backslash (for example '\\\\xyz' or 'a\\'b')." -#~ msgstr "" -#~ "Por favor ingrese los valores para las opciones de transformación usando " -#~ "este formato: 'a','b','c'...
Si alguna vez requiere insertar un " -#~ "Backslash (\"\\\") o comilla sencilla (\"'\") entre esos valores, use " -#~ "backslash (por ejemplo '\\\\xyz' o 'a\\'b')." - -#, fuzzy -#~ msgid "New table" -#~ msgstr "No existen tablas" - -#~ msgid "server name" -#~ msgstr "nombre del servidor" - -#~ msgid "database name" -#~ msgstr "nombre de la base de datos" - -#~ msgid "table name" -#~ msgstr "nombre de la tabla" - -#~ msgid "Edit PDF Pages" -#~ msgstr "Editar las páginas PDF" - -#~ msgid "Data Dictionary Format" -#~ msgstr "Formato del Diccionario de Datos" - -#~ msgid "no" -#~ msgstr "no" - -#~ msgid "Enter login options for signon authentication" -#~ msgstr "" -#~ "Seleccione las opciones antes de ingresar el nombre y contraseña para la " -#~ "autenticación" - -#~ msgid "Signon login options" -#~ msgstr "Opciones previo al ingreso de nombre y contraseña" - -#~ msgid "PMA database" -#~ msgstr "Base de datos PMA" - -#~ msgid "Customization" -#~ msgstr "Cambiar los valores predeterminados" - -#~ msgid "" -#~ "SQL queries settings, for SQL Query box options see [a@?page=form&" -#~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings" -#~ msgstr "" -#~ "Parámetros de las consultas SQL, para las opciones de la caja de " -#~ "consultas SQL ver los parámetros del [a@?page=form&" -#~ "formset=main_frame#tab_Sql_box]marco de navegación[/a]" - -#~ msgid "yes" -#~ msgstr "sí" - -#, fuzzy -#~| msgid "Add AUTO_INCREMENT value" -#~ msgid "AUTO_INCREMENT" -#~ msgstr "Añadir el valor AUTO_INCREMENT" - -#, fuzzy -#~| msgid "Dump %s row(s) starting at record # %s" -#~ msgid "Dump %s row(s) starting at row # %s" -#~ msgstr "Volcar %s filas empezando por la fila %s." - -#~ msgid "remember template" -#~ msgstr "recordar la plantilla" - -#~ msgid "\"zipped\"" -#~ msgstr "\"comprimido con zip\"" - -#~ msgid "\"gzipped\"" -#~ msgstr "\"Comprimido con gzip\"" - -#~ msgid "\"bzipped\"" -#~ msgstr "\"Comprimido con bzip\"" - -#~ msgid "Imported file compression will be automatically detected from: %s" -#~ msgstr "" -#~ "La compresión escogida para el archivo a importar se detectará " -#~ "automáticamente de: %s" - -#~ msgid "Add into comments" -#~ msgstr "Añadir en los comentarios" - -#, fuzzy -#~ msgid "Export functions" -#~ msgstr "Exportar las opciones predeterminadas" - -#, fuzzy -#~ msgid "Export triggers" -#~ msgstr "Tipo de exportación" - -#, fuzzy -#~ msgid "Export views" -#~ msgstr "Exportar las opciones predeterminadas" - -#~ msgid "Invalid column (%s) specified!" -#~ msgstr "¡Las columnas especificadas (%s) no son válidas!" - -#~ msgid "Actions" -#~ msgstr "Accciones" - -#~ msgid "Interface" -#~ msgstr "Interfaz" - -#, fuzzy -#~| msgid "Table name" -#~ msgid "Table removal" -#~ msgstr "Nombre de la tabla" - -#~ msgid "BLOB Repository" -#~ msgstr "Repositorio BLOB" - -#, fuzzy -#~| msgid "Enabled" -#~ msgctxt "BLOB repository" -#~ msgid "Enabled" -#~ msgstr "Habilitado" - -#~ msgid "Disable" -#~ msgstr "Deshabilite" - -#~ msgid "Damaged" -#~ msgstr "Dañado" - -#, fuzzy -#~| msgid "Repair" -#~ msgctxt "BLOB repository" -#~ msgid "Repair" -#~ msgstr "Repare" - -#, fuzzy -#~| msgid "Disabled" -#~ msgctxt "BLOB repository" -#~ msgid "Disabled" -#~ msgstr "Deshabilitado" - -#~ msgid "Enable" -#~ msgstr "Habilite" - -#~ msgid "" -#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " -#~ "extension. Please check your PHP configuration." -#~ msgstr "" -#~ "no se pudo cargar la extensión %s,
por favor revise su configuración " -#~ "de PHP." - -#~ msgid "" -#~ "Couldn't load the iconv or recode extension needed for charset " -#~ "conversion. Either configure PHP to enable these extensions or disable " -#~ "charset conversion in phpMyAdmin." -#~ msgstr "" -#~ "No se puede cargar iconv o recodificar una extensión necesaria para la " -#~ "conversión de juegos de caracteres, configure php para permitir el uso de " -#~ "estas extensiones o desactive la conversión de juegos de caracteres en " -#~ "phpMyAdmin." - -#~ msgid "" -#~ "Couldn't use the iconv, libiconv, or recode_string functions, although " -#~ "the necessary extensions appear to be loaded. Check your PHP " -#~ "configuration." -#~ msgstr "" -#~ "No se puede utilizar iconv ni libiconv ni la función recode_string " -#~ "mientras se carga la extensión de informes. Comprueba la configuración de " -#~ "php." - -#~ msgid "Allow character set conversion" -#~ msgstr "" -#~ "Permitir cambios y conversión en los formatos de los caracteres " -#~ "(character set conversion)" - -#~ msgid "Default character set used for conversions" -#~ msgstr "Juego de caracteres predeterminado usado para conversiones" - -#~ msgid "Default character set" -#~ msgstr "Juego de caracteres predeterminado" - -#, fuzzy -#~| msgid "Add new field" -#~ msgid "Add field" -#~ msgstr "Insertar nuevo campo" - -#~ msgid "Field" -#~ msgstr "Campo" - -#~ msgid "Records" -#~ msgstr "Registros" - -#~ msgid "Fields terminated by" -#~ msgstr "Campos terminados en" - -#~ msgid "Fields" -#~ msgstr "Campos" - -#~ msgid "Field %s has been dropped" -#~ msgstr "Se eliminó el campo %s" - -#~ msgid "See image/jpeg: inline" -#~ msgstr "Ver imagen/jpeg: inline" - -#, fuzzy -#~| msgid "Add custom comment into header (\\n splits lines)" -#~ msgid "" -#~ "Add custom comment into header (\n" -#~ " splits lines)" -#~ msgstr "" -#~ "Añadir su propio comentario en el encabezado (\\n segmenta las oraciones)" - -#, fuzzy -#~ msgid "and" -#~ msgstr "y luego" - -#, fuzzy -#~ msgctxt "$strBLOBRepositoryDisabled" -#~ msgid "Disabled" -#~ msgstr "Deshabilitado" - -#, fuzzy -#~ msgctxt "$strBLOBRepositoryEnabled" -#~ msgid "Enabled" -#~ msgstr "Habilitado" - -#, fuzzy -#~ msgctxt "$strBLOBRepositoryRepair" -#~ msgid "Repair" -#~ msgstr "Repare" - -#~ msgid "Calendar" -#~ msgstr "Calendario" - -#~ msgid "MySQL 4.0 compatible" -#~ msgstr "Compatible con MySQL 4.0" - -#~ msgid "Could not load default configuration from: \"%1$s\"" -#~ msgstr "" -#~ "No fue posible cargar la configuración predeterminada desde: \"%1$s\"" - -#~ msgid "Create an index on %s columns" -#~ msgstr "Crear un índice en %s columna(s)" - -#, fuzzy -#~ msgctxt "$strCreateTableShort" -#~ msgid "Create table" -#~ msgstr "Crear tabla" - -#, fuzzy -#~ msgctxt "$strCreateUserDatabaseNone" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgid "Flush the table (\"FLUSH\")" -#~ msgstr "Vaciar el caché de la tabla (\"FLUSH\")" - -#~ msgid "Invalid server index: \"%s\"" -#~ msgstr "No es válido el índice del servidor: \"%s\"" - -#~ msgctxt "$strMIME_description" -#~ msgid "Description" -#~ msgstr "Descripción" - -#, fuzzy -#~ msgctxt "$strNoneDefault" -#~ msgid "None" -#~ msgstr "Ninguna" - -#~ msgid "Schema of the \"%s\" database - Page %s" -#~ msgstr "Esquema de la base de datos \"%s\" - Página %s" - -#~ msgid "The \"%s\" table doesn't exist!" -#~ msgstr "¡La tabla \"%s\" no existe!" - -#~ msgid "running on %s" -#~ msgstr "ejecutándose en %s" - -#~ msgid "The scale factor is too small to fit the schema on one page" -#~ msgstr "" -#~ "El factor de la escala es demasiado pequeño para poner el esquema en una " -#~ "página" - -#~ msgid "" -#~ "Cannot start session without errors, please check errors given in your " -#~ "PHP and/or webserver log file and configure your PHP installation " -#~ "properly." -#~ msgstr "" -#~ "Hubo errores al iniciar la sesión. Por favor, revise los errores en la " -#~ "bitácora de su PHP y/o servidor web y configure correctamente su " -#~ "instalación PHP." - -#, 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 "" -#~ "Sin embargo, en la ejecución más reciente no se procesaron datos. Esto " -#~ "usualmente significa que phpMyAdmin no será capaz de completar esta " -#~ "importación a menos que usted incremente el tiempo de ejecución de php." - -#, fuzzy -#~| msgid "None" -#~ msgctxt "None action" -#~ msgid "None" -#~ msgstr "Ninguna" - -#, fuzzy -#~| msgid "None" -#~ msgctxt "" -#~ msgid "None" -#~ msgstr "Ninguna" - -#, fuzzy -#~| msgid "Grant all privileges on wildcard name (username\\_%)" -#~ msgid "Grant all privileges on wildcard name (username_%)" -#~ msgstr "" -#~ "Otorgue todos los privilegios al nombre que contiene comodín (username\\_" -#~ "%)" - -#, fuzzy -#~| msgid "The \"%s\" table doesn't exist!" -#~ msgid "The %s table doesn" -#~ msgstr "¡La tabla \"%s\" no existe!" - -#, fuzzy -#~| msgid "Invalid hostname for server %1$s. Please review your configuration." -#~ msgid "Invalid hostname for server %1. Please review your configuration." -#~ msgstr "" -#~ "El nombre del host no es válido para el servidor %1$s. Por favor, revise " -#~ "su configuración." - -#, fuzzy -#~| msgid "Error renaming table %1$s to %2$s" -#~ msgid "Error renaming table %1 to %2" -#~ msgstr "Error al cambiar el nombre de la tabla %1$s a %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 "" -#~ "no se pudo cargar la extensión %s,
por favor revise su configuración " -#~ "de PHP." - -#, fuzzy -#~| msgid "Could not connect to MySQL server" -#~ msgid "(or the local MySQL server" -#~ msgstr "No pudo conectarse con un servidor 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 "" -#~ "Hay la posibilidad de que usted haya encontrado un error en el intérprete " -#~ "de SQL. Por favor examine cuidadosamente su consulta, y verifique que las " -#~ "comillas están siendo usadas adecuadamente y hacen juego. Otra posible " -#~ "causa del fallo es que usted este subiendo un archivo con datos binarios " -#~ "por fuera del área de texto delimitado. Intente su consulta en la " -#~ "interfaz de comandos de MySQL. La salida generada por el servidor de " -#~ "MySQL, de existir, aparece abajo, en cuyo caso puede ayudar a " -#~ "diagnosticar el problema. Si aún tiene problemas o el intérprete falla en " -#~ "tanto que en la interfaz de comandos funciona, por favor reduzca la " -#~ "salida de su consulta de SQL a la consulta que genera el problema, y " -#~ "envíe un reporte de error con la cadena de datos en la sección de CORTE " -#~ "indicada abajo:" - -#~ msgctxt "$strStrucCSV" -#~ msgid "CSV" -#~ msgstr "Datos CSV " - -#~ msgid "Copy" -#~ msgstr "Copiar" - -#~ msgid "Delete the users and reload the privileges afterwards." -#~ msgstr "Borrar a los usuarios y luego volver a cargar los privilegios." - -#~ msgid "" -#~ "This is the cleanest way, but reloading the privileges may take a while." -#~ msgstr "" -#~ "Este es el modo más limpio, pero volver a cargar los privilegios puede " -#~ "tomar tiempo." - -#~ msgid "has been altered." -#~ msgstr "fue modificada." - -#~ msgid "Internet Explorer does not support this function." -#~ msgstr "Internet Explorer no reconoce esa función." - -#~ msgid "" -#~ "The "deleted" users will still be able to access the server as " -#~ "usual until the privileges are reloaded." -#~ msgstr "" -#~ "Los usuarios "borrados" aún podrán acceder al servidor de " -#~ "manera usual hasta que los privilegios se hayan vuelto a cargar." - -#~ msgid "Just delete the users from the privilege tables." -#~ msgstr "Solamente borrar a los usuarios de la tabla de privilegios." - -#~ msgid "" -#~ "Allows running stored procedures; has no effect in this MySQL version." -#~ msgstr "" -#~ "Permite ejecutar procedimientos guardados; no tiene efecto en esta " -#~ "versión de MySQL." - -#~ msgid "Process list" -#~ msgstr "Lista de procesos" - -#~ msgid "" -#~ "The users will still have the USAGE privilege until the privileges are " -#~ "reloaded." -#~ msgstr "" -#~ "Los usuarios aún tendrán el privilegio \"USAGE\" hasta que los " -#~ "privilegios se hayan vuelto a cargar." - -#~ msgid "Native MS Excel format" -#~ msgstr "Datos de MS Excel en formato nativo" - -#, fuzzy -#~| msgid "Select All" -#~ msgctxt "Create SELECT ... query" -#~ msgid "Select" -#~ msgstr "Seleccionar todo" - -#, fuzzy -#~| msgid "Insert" -#~ msgctxt "Create INSERT query" -#~ msgid "Insert" -#~ msgstr "Insertar" - -#, fuzzy -#~| msgid "Update Query" -#~ msgctxt "Create UPDATE query" -#~ msgid "Update" -#~ msgstr "Modificar la consulta" - -#, fuzzy -#~| msgid "Delete" -#~ msgctxt "Create DELETE query" -#~ msgid "Delete" -#~ msgstr "Borrar" - -#~ msgid "%1$d row(s) affected." -#~ msgstr "%1$d fila(s) fueron afectadas." - -#~ msgid "utf-8" -#~ msgstr "utf-8" - -#~ msgid "Jan0" -#~ msgstr "Ene0" - -#~ msgid "Jan1" -#~ msgstr "Ene1" - -#~ msgid "Jan2" -#~ msgstr "Ene2" From bd534c91e3ab9b270403ce1d560371413828509a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:01 +0200 Subject: [PATCH 475/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index cece7432e..5e9511d7b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 14:49+0200\n" +"PO-Revision-Date: 2010-11-27 14:50+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -99,10 +99,9 @@ msgid "No blob streaming server configured!" msgstr "No hay configurado ningun servidor de streaming de blobs!" #: bs_disp_as_mime_type.php:35 -#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" -msgstr "No fue posible grabar el archivo al disco." +msgstr "No se pudieron obtener las cabeceras" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From 68e846d047f63fac8ecdab34062bbc2aab24d076 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:03 +0200 Subject: [PATCH 476/732] Translation update done using Pootle. --- po/es.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/es.po b/po/es.po index 5e9511d7b..e34d3a489 100644 --- a/po/es.po +++ b/po/es.po @@ -99,6 +99,7 @@ msgid "No blob streaming server configured!" msgstr "No hay configurado ningun servidor de streaming de blobs!" #: bs_disp_as_mime_type.php:35 +#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" msgstr "No se pudieron obtener las cabeceras" From 6d00aa826d7f43bf0f03f1fdb3b990ff21f0de4d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:15 +0200 Subject: [PATCH 477/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e34d3a489..0ab922b93 100644 --- a/po/es.po +++ b/po/es.po @@ -106,7 +106,7 @@ msgstr "No se pudieron obtener las cabeceras" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Fallo al abrir URL remota" #: db_create.php:58 #, php-format From da643475ac479918be890b1940449d91d556b8b7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:21 +0200 Subject: [PATCH 478/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0ab922b93..c6f7785b0 100644 --- a/po/es.po +++ b/po/es.po @@ -132,10 +132,9 @@ msgstr "Comentarios de la tabla" #: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 -#, fuzzy #| msgid "Column names" msgid "Column" -msgstr "Nombre de las columnas" +msgstr "Columna" #: db_datadict.php:170 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:25 libraries/db_routines.inc.php:36 From 53ba94bbee999e90e8c343ca9c0b43ee806f8097 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:23 +0200 Subject: [PATCH 479/732] Translation update done using Pootle. --- po/es.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/es.po b/po/es.po index c6f7785b0..69694817c 100644 --- a/po/es.po +++ b/po/es.po @@ -132,6 +132,7 @@ msgstr "Comentarios de la tabla" #: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 +#, fuzzy #| msgid "Column names" msgid "Column" msgstr "Columna" From 3fcca755cf7c94b9b6aae9bd17a533f3a692fd7a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:32 +0200 Subject: [PATCH 480/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 69694817c..28a6e1007 100644 --- a/po/es.po +++ b/po/es.po @@ -271,10 +271,9 @@ msgid "Command" msgstr "Comando" #: db_operations.php:429 -#, fuzzy #| msgid "Rename database to" msgid "Remove database" -msgstr "Cambiar el nombre de la base de datos a" +msgstr "Quitar base de datos" #: db_operations.php:441 #, php-format From 95ae30cc1f3c2d45afbaa328a0d8f3fb041aa5bd Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:34 +0200 Subject: [PATCH 481/732] Translation update done using Pootle. --- po/es.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/es.po b/po/es.po index 28a6e1007..924ec5b05 100644 --- a/po/es.po +++ b/po/es.po @@ -271,6 +271,7 @@ msgid "Command" msgstr "Comando" #: db_operations.php:429 +#, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Quitar base de datos" From 12c02daacc7855ff5c9788a66eb2325223ba545c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:48 +0200 Subject: [PATCH 482/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 924ec5b05..d77346a15 100644 --- a/po/es.po +++ b/po/es.po @@ -282,9 +282,8 @@ msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." #: db_operations.php:446 -#, fuzzy msgid "Drop the database (DROP)" -msgstr "No hay bases de datos" +msgstr "Eliminar la base de datos (DROP)" #: db_operations.php:474 msgid "Copy database to" From 3d726743ea32ffabd5a67564f35c2212edc3d2a0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:50:50 +0200 Subject: [PATCH 483/732] Translation update done using Pootle. --- po/es.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/es.po b/po/es.po index d77346a15..9e28f611a 100644 --- a/po/es.po +++ b/po/es.po @@ -282,6 +282,7 @@ msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." #: db_operations.php:446 +#, fuzzy msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" From afbef93cba34498ced2cb320185787255c4e90ce Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:52:44 +0200 Subject: [PATCH 484/732] Translation update done using Pootle. --- po/es.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/es.po b/po/es.po index 9e28f611a..71924e24b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 14:50+0200\n" +"PO-Revision-Date: 2010-11-27 14:52+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -337,7 +337,7 @@ msgid "Collation" msgstr "Cotejamiento" #: db_operations.php:548 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -345,8 +345,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Las opciones adicionales para trabajar con tablas vinculadas fueron " -"desactivadas. Para saber porqué, dé clic %saquí%s." +"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " +"Para saber por qué haz clic %saquí%s." #: db_operations.php:581 #, fuzzy From 1cb8801aabb70bf1c71e3263d904ded367d77624 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:53:13 +0200 Subject: [PATCH 485/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 71924e24b..0b9bbd3e7 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 14:52+0200\n" +"PO-Revision-Date: 2010-11-27 14:53+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -349,10 +349,9 @@ msgstr "" "Para saber por qué haz clic %saquí%s." #: db_operations.php:581 -#, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" -msgstr "Esquema relacionado" +msgstr "Editar o exportar esquema relacional" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 #: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 From 33996b8b36934c3af31be93e755ae486dd3d3050 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:59:29 +0200 Subject: [PATCH 486/732] Translation update done using Pootle. --- po/es.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 0b9bbd3e7..513501f3d 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 14:53+0200\n" +"PO-Revision-Date: 2010-11-27 14:59+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -401,12 +401,14 @@ msgstr "Última actualización" msgid "Last check" msgstr "Última revisión" +# singular: tabla +# plural: tablas #: db_printview.php:220 db_structure.php:432 -#, fuzzy, php-format +#, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s tabla(s)" +msgstr[0] "%s tablas" msgstr[1] "%s tabla(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 From cbbb275bf77f488b3cbf1cf103ab5047bee13352 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:59:40 +0200 Subject: [PATCH 487/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 513501f3d..3d64c8e72 100644 --- a/po/es.po +++ b/po/es.po @@ -424,7 +424,7 @@ msgstr "Debe elegir al menos una columna para mostrar" #: db_qbe.php:182 msgid "Switch to" -msgstr "" +msgstr "Cambiar a" #: db_qbe.php:186 msgid "visual builder" From c23fe899e7874944c25707422d1d486545ca80f7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 14:59:50 +0200 Subject: [PATCH 488/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 3d64c8e72..4e33f7b2a 100644 --- a/po/es.po +++ b/po/es.po @@ -428,7 +428,7 @@ msgstr "Cambiar a" #: db_qbe.php:186 msgid "visual builder" -msgstr "" +msgstr "editor visual" #: db_qbe.php:219 libraries/db_structure.lib.php:95 #: libraries/display_tbl.lib.php:860 From 3d2bc81f7f0b4f37914e9052032618d53e4457b7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:00:06 +0200 Subject: [PATCH 489/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 4e33f7b2a..6885109d4 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 14:59+0200\n" +"PO-Revision-Date: 2010-11-27 15:00+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -481,10 +481,9 @@ msgid "Modify" msgstr "Modificar" #: db_qbe.php:603 -#, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" -msgstr "Añadir/borrar fila de criterio" +msgstr "Añadir/borrar filas de criterios" #: db_qbe.php:615 #, fuzzy From b2dc9298fee14e0ebdf7ef3248d2a854548429e0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:00:15 +0200 Subject: [PATCH 490/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 6885109d4..53ac76d88 100644 --- a/po/es.po +++ b/po/es.po @@ -486,10 +486,9 @@ msgid "Add/Delete criteria rows" msgstr "Añadir/borrar filas de criterios" #: db_qbe.php:615 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" -msgstr "Añadir/borrar columna de criterio" +msgstr "Añadir/borrar columnas" #: db_qbe.php:628 db_qbe.php:653 msgid "Update Query" From 6f809eb021cfcbada5bfb790b88cc27a3975fad8 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:01:12 +0200 Subject: [PATCH 491/732] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 53ac76d88..a65c236e4 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:00+0200\n" +"PO-Revision-Date: 2010-11-27 15:01+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -535,6 +535,8 @@ msgstr "como expresión regular" msgid "Search results for \"%s\" %s:" msgstr "Resultados de la búsqueda por \"%s\" %s:" +# singular: %s resultado en la tabla %s +# plural: %s resultados en la tabla %s #: db_search.php:248 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" From d2fdedeef031c4d5083da86df49f52b9d53549e8 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:14:14 +0200 Subject: [PATCH 492/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a65c236e4..d75a6d716 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:01+0200\n" +"PO-Revision-Date: 2010-11-27 15:14+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From c9ea7af29cf4ddc798cc545a30a25d242ecfe384 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:14:59 +0200 Subject: [PATCH 493/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index d75a6d716..4a5d72889 100644 --- a/po/es.po +++ b/po/es.po @@ -621,7 +621,7 @@ msgstr "Se ha eliminado la tabla %s" #: db_structure.php:286 tbl_create.php:295 msgid "Tracking is active." -msgstr "" +msgstr "El seguimiento está activo." #: db_structure.php:288 tbl_create.php:297 msgid "Tracking is not active." From 575d2a926ec8b84fd0b12f8f5a4043488d1e6729 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:15:19 +0200 Subject: [PATCH 494/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 4a5d72889..6a1af2b7c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:14+0200\n" +"PO-Revision-Date: 2010-11-27 15:15+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -625,7 +625,7 @@ msgstr "El seguimiento está activo." #: db_structure.php:288 tbl_create.php:297 msgid "Tracking is not active." -msgstr "" +msgstr "El seguimiento no está activo." #: db_structure.php:372 libraries/display_tbl.lib.php:1940 #, php-format From 4f5ba6e5f57ac164bfa26ce5be94b59958ea059b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:15:40 +0200 Subject: [PATCH 495/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 6a1af2b7c..5df001cf0 100644 --- a/po/es.po +++ b/po/es.po @@ -737,9 +737,8 @@ msgid "Data Dictionary" msgstr "Diccionario de datos" #: db_tracking.php:78 -#, fuzzy msgid "Tracked tables" -msgstr "Saltarse las tablas bloqueadas" +msgstr "Tablas con seguimiento" #: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 From 99033e0b85823438ed401536b5146f40c99f2931 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:15:50 +0200 Subject: [PATCH 496/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5df001cf0..e34e9ac1b 100644 --- a/po/es.po +++ b/po/es.po @@ -753,9 +753,8 @@ msgid "Database" msgstr "Base de datos" #: db_tracking.php:85 -#, fuzzy msgid "Last version" -msgstr "Crear relación" +msgstr "Última versión" #: db_tracking.php:86 tbl_tracking.php:588 #, fuzzy From b6cfa4917375f71df8e6701cc779483424cc2fd1 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:16:03 +0200 Subject: [PATCH 497/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index e34e9ac1b..cbe59e4b7 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:15+0200\n" +"PO-Revision-Date: 2010-11-27 15:16+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -757,9 +757,8 @@ msgid "Last version" msgstr "Última versión" #: db_tracking.php:86 tbl_tracking.php:588 -#, fuzzy msgid "Created" -msgstr "Crear" +msgstr "Creado/a" #: db_tracking.php:87 tbl_tracking.php:589 msgid "Updated" From b276d7c3663284807de58046d8c5bd0df9d4fd56 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:16:17 +0200 Subject: [PATCH 498/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index cbe59e4b7..a7e422a7b 100644 --- a/po/es.po +++ b/po/es.po @@ -762,7 +762,7 @@ msgstr "Creado/a" #: db_tracking.php:87 tbl_tracking.php:589 msgid "Updated" -msgstr "" +msgstr "Actualizado" #: db_tracking.php:88 libraries/common.lib.php:1330 #: libraries/server_links.inc.php:50 server_processlist.php:58 From 7dc95cee0515648ed29ff53a997505f261be4c03 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:16:34 +0200 Subject: [PATCH 499/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a7e422a7b..2b84b77cb 100644 --- a/po/es.po +++ b/po/es.po @@ -779,7 +779,7 @@ msgstr "Acción" #: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" -msgstr "" +msgstr "Borrar los datos de seguimiento para esta tabla" #: db_tracking.php:118 tbl_tracking.php:542 tbl_tracking.php:600 #: tbl_tracking.php:607 From 5a9f25c24296106d7d778a5f56b2901747a62c15 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:16:46 +0200 Subject: [PATCH 500/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 2b84b77cb..706fedf8f 100644 --- a/po/es.po +++ b/po/es.po @@ -784,7 +784,7 @@ msgstr "Borrar los datos de seguimiento para esta tabla" #: db_tracking.php:118 tbl_tracking.php:542 tbl_tracking.php:600 #: tbl_tracking.php:607 msgid "active" -msgstr "" +msgstr "activo/a" #: db_tracking.php:120 tbl_tracking.php:544 tbl_tracking.php:602 #: tbl_tracking.php:604 From a94c8b404bd0edcad8b0dc960c2b78d482317fbc Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:16:52 +0200 Subject: [PATCH 501/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 706fedf8f..eb419f85f 100644 --- a/po/es.po +++ b/po/es.po @@ -789,7 +789,7 @@ msgstr "activo/a" #: db_tracking.php:120 tbl_tracking.php:544 tbl_tracking.php:602 #: tbl_tracking.php:604 msgid "not active" -msgstr "" +msgstr "no activo/a" #: db_tracking.php:133 #, fuzzy From 60b9d93493238b259a86b8238e021aefafa1f4b8 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:16:57 +0200 Subject: [PATCH 502/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index eb419f85f..73da2ffab 100644 --- a/po/es.po +++ b/po/es.po @@ -792,9 +792,8 @@ msgid "not active" msgstr "no activo/a" #: db_tracking.php:133 -#, fuzzy msgid "Versions" -msgstr "Persa" +msgstr "Versiones" #: db_tracking.php:134 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" From 942af4f349b2f4a6780ab53b11b35a1c9580c61c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:17:05 +0200 Subject: [PATCH 503/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 73da2ffab..d6c1628e6 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:16+0200\n" +"PO-Revision-Date: 2010-11-27 15:17+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -797,7 +797,7 @@ msgstr "Versiones" #: db_tracking.php:134 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" -msgstr "" +msgstr "Informe de seguimiento" #: db_tracking.php:135 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy From 0ca2cbc061769aaf72a6791bb829d2a750a570bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:17:14 +0200 Subject: [PATCH 504/732] Translation update done using Pootle. --- po/lt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 5f6ae8a22..ebd0b1ce8 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-25 21:33+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-11-27 15:17+0200\n" +"Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -410,7 +410,7 @@ msgstr "Pasirinkite bent vieną stulpelį išvedimui" #: db_qbe.php:182 msgid "Switch to" -msgstr "" +msgstr "Pereiti į" #: db_qbe.php:186 msgid "visual builder" From 06c00fb1e8726c4a5f6017711e144463a15b4c32 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:17:24 +0200 Subject: [PATCH 505/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index d6c1628e6..22b8c7e9f 100644 --- a/po/es.po +++ b/po/es.po @@ -800,9 +800,8 @@ msgid "Tracking report" msgstr "Informe de seguimiento" #: db_tracking.php:135 tbl_tracking.php:245 tbl_tracking.php:618 -#, fuzzy msgid "Structure snapshot" -msgstr "Únicamente la estructura " +msgstr "Instantánea de la estructura" #: db_tracking.php:164 #, fuzzy From b5aeb400592d7dbc59434ee11a440f91c560b06c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:17:36 +0200 Subject: [PATCH 506/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 22b8c7e9f..0e1c6e918 100644 --- a/po/es.po +++ b/po/es.po @@ -804,9 +804,8 @@ msgid "Structure snapshot" msgstr "Instantánea de la estructura" #: db_tracking.php:164 -#, fuzzy msgid "Untracked tables" -msgstr "Saltarse las tablas bloqueadas" +msgstr "Tablas sin seguimiento" #: db_tracking.php:184 db_tracking.php:186 tbl_structure.php:619 #: tbl_structure.php:621 From b045d9443ee0cca487a747eba26f6a71e6e6b4ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:17:54 +0200 Subject: [PATCH 507/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index ebd0b1ce8..87875bc0a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -2560,10 +2560,9 @@ msgid "Table caption" msgstr "Lentelės antraštė" #: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 -#, fuzzy #| msgid "Include table caption" msgid "Continued table caption" -msgstr "Įterpti lentelės antraštę" +msgstr "Pratęsta lentelės antraštė" #: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 From 9a00d8c438f8e16fffa98646f200e54058e5a59e Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:18:31 +0200 Subject: [PATCH 508/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 0e1c6e918..ee2463eda 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:17+0200\n" +"PO-Revision-Date: 2010-11-27 15:18+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -809,9 +809,8 @@ msgstr "Tablas sin seguimiento" #: db_tracking.php:184 db_tracking.php:186 tbl_structure.php:619 #: tbl_structure.php:621 -#, fuzzy msgid "Track table" -msgstr "Revisar la tabla" +msgstr "Hacer seguimiento a la tabla" #: db_tracking.php:212 #, fuzzy From 541db9826367373b36bcb8d251292d6e38eb56cd Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:18:52 +0200 Subject: [PATCH 509/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index ee2463eda..0ec40dbcb 100644 --- a/po/es.po +++ b/po/es.po @@ -813,9 +813,8 @@ msgid "Track table" msgstr "Hacer seguimiento a la tabla" #: db_tracking.php:212 -#, fuzzy msgid "Database Log" -msgstr "Base de datos" +msgstr "Log de la base de datos" #: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format From 2955b785ea7c05e2e2047007d6ec0f347e5e4ac1 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:19:09 +0200 Subject: [PATCH 510/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0ec40dbcb..4b9bb5e33 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:18+0200\n" +"PO-Revision-Date: 2010-11-27 15:19+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -819,7 +819,7 @@ msgstr "Log de la base de datos" #: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" -msgstr "" +msgstr "Valores para la columna \"%s\"" #: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." From 8381c0269517ea5f4c5ef3cb1e5c6241ba2a2259 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:19:31 +0200 Subject: [PATCH 511/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 4b9bb5e33..2ba42d395 100644 --- a/po/es.po +++ b/po/es.po @@ -823,7 +823,7 @@ msgstr "Valores para la columna \"%s\"" #: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." -msgstr "" +msgstr "Insertar cada valor en un campo separado." #: export.php:73 msgid "Selected export type has to be saved in file!" From 8737c229c364b61e3eba5c9ee9bce22aebbcda31 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:19:44 +0200 Subject: [PATCH 512/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 2ba42d395..a8eab1f83 100644 --- a/po/es.po +++ b/po/es.po @@ -943,7 +943,7 @@ msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." #: server_synchronize.php:737 server_synchronize.php:765 #: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" -msgstr "" +msgstr "Clic para seleccionar" #: js/messages.php:26 msgid "Click to unselect" From e7ad9169ddd46af5fa64eb757a1da6676801de0c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:19:54 +0200 Subject: [PATCH 513/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a8eab1f83..b60fea779 100644 --- a/po/es.po +++ b/po/es.po @@ -947,7 +947,7 @@ msgstr "Clic para seleccionar" #: js/messages.php:26 msgid "Click to unselect" -msgstr "" +msgstr "Clic para deseleccionar" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:156 msgid "\"DROP DATABASE\" statements are disabled." From bc47945a4d9f35dd9fb1bdc0e12e52567f46a864 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:21:01 +0200 Subject: [PATCH 514/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index b60fea779..194b2e02b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:19+0200\n" +"PO-Revision-Date: 2010-11-27 15:21+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -966,10 +966,9 @@ msgid "Dropping Event" msgstr "" #: js/messages.php:33 -#, fuzzy #| msgid "Procedures" msgid "Dropping Procedure" -msgstr "Procedimientos" +msgstr "Procedimiento de eliminación" #: js/messages.php:35 #, fuzzy From 62502ac6a50b20c75ab8fb6ab7af048924186526 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:21:45 +0200 Subject: [PATCH 515/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 194b2e02b..7285548dc 100644 --- a/po/es.po +++ b/po/es.po @@ -968,7 +968,7 @@ msgstr "" #: js/messages.php:33 #| msgid "Procedures" msgid "Dropping Procedure" -msgstr "Procedimiento de eliminación" +msgstr "Eliminando procedimiento" #: js/messages.php:35 #, fuzzy From cb16df02b2d462615b8b5fdff2e25290c0b2941a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:21:55 +0200 Subject: [PATCH 516/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 7285548dc..2697e7884 100644 --- a/po/es.po +++ b/po/es.po @@ -971,10 +971,9 @@ msgid "Dropping Procedure" msgstr "Eliminando procedimiento" #: js/messages.php:35 -#, fuzzy #| msgid "Allows inserting and replacing data." msgid "Deleting tracking data" -msgstr "Permite insertar y reemplazar datos." +msgstr "Borrando los datos de seguimiento" #: js/messages.php:36 msgid "Dropping Primary Key/Index" From 120562d2aac1eca73e58fb09cf04a522a3b6228d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:22:17 +0200 Subject: [PATCH 517/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2697e7884..eaf5be011 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:21+0200\n" +"PO-Revision-Date: 2010-11-27 15:22+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -977,7 +977,7 @@ msgstr "Borrando los datos de seguimiento" #: js/messages.php:36 msgid "Dropping Primary Key/Index" -msgstr "" +msgstr "Borrando Claves Primarias/Índice" #: js/messages.php:37 msgid "This operation could take a long time. Proceed anyway?" From 090f2fdc17dac3efb477dcc1e225062e17085997 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:22:36 +0200 Subject: [PATCH 518/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index eaf5be011..16055f225 100644 --- a/po/es.po +++ b/po/es.po @@ -981,7 +981,7 @@ msgstr "Borrando Claves Primarias/Índice" #: js/messages.php:37 msgid "This operation could take a long time. Proceed anyway?" -msgstr "Esta operación podría tomar algún tiempo. ¿Proceder de todas formas?" +msgstr "Esta operación podría llevar algún tiempo. ¿Proceder de todas formas?" #: js/messages.php:40 msgid "You are about to DISABLE a BLOB Repository!" From 5f368af6dc0eb715f3fb221d4bbf082a0c9d99d3 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:22:51 +0200 Subject: [PATCH 519/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 16055f225..7fdf3b80c 100644 --- a/po/es.po +++ b/po/es.po @@ -985,7 +985,7 @@ msgstr "Esta operación podría llevar algún tiempo. ¿Proceder de todas formas #: js/messages.php:40 msgid "You are about to DISABLE a BLOB Repository!" -msgstr "¡Está a punto de DESHABILITAR un repositorio BLOB!" +msgstr "¡Está a punto de DESHABILITAR un repositorio de BLOBs!" #: js/messages.php:41 #, php-format From 40ad2d38a8eef5f32779217cff8ed684fafbb542 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:23:05 +0200 Subject: [PATCH 520/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 7fdf3b80c..a26810270 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:22+0200\n" +"PO-Revision-Date: 2010-11-27 15:23+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From bc1078d4ebc712e010387a11b77dc69f8f922856 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:23:41 +0200 Subject: [PATCH 521/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a26810270..e0d8ac8d1 100644 --- a/po/es.po +++ b/po/es.po @@ -1025,9 +1025,8 @@ msgid "Add a New User" msgstr "Agregar un nuevo usuario" #: js/messages.php:53 -#, fuzzy msgid "Create User" -msgstr "Crear relación" +msgstr "Crear usuario" #: js/messages.php:54 #, fuzzy From dd16c5f6f810a346877ab6494ae3624921dae232 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:24:10 +0200 Subject: [PATCH 522/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index e0d8ac8d1..dad505cfe 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:23+0200\n" +"PO-Revision-Date: 2010-11-27 15:24+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1019,7 +1019,6 @@ msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" #: js/messages.php:52 -#, fuzzy #| msgid "Add a new User" msgid "Add a New User" msgstr "Agregar un nuevo usuario" From 99090569320b8a4d4823667593931299f2aed316 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:24:36 +0200 Subject: [PATCH 523/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index dad505cfe..9e60d27d0 100644 --- a/po/es.po +++ b/po/es.po @@ -1028,10 +1028,9 @@ msgid "Create User" msgstr "Crear usuario" #: js/messages.php:54 -#, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" -msgstr "Cargar los privilegios nuevamente" +msgstr "Recargando Privilegios" #: js/messages.php:55 #, fuzzy From eaab6b0dc27a911d35c4f867cb5d17278841fc92 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:24:56 +0200 Subject: [PATCH 524/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 9e60d27d0..828a41f68 100644 --- a/po/es.po +++ b/po/es.po @@ -1033,10 +1033,9 @@ msgid "Reloading Privileges" msgstr "Recargando Privilegios" #: js/messages.php:55 -#, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" -msgstr "Eliminar a los usuarios seleccionados" +msgstr "Eliminando los usuarios seleccionados" #: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" From b670a2754eefb738a4b1155cd367a8c1d44ae0c1 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:25:01 +0200 Subject: [PATCH 525/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 828a41f68..cffe0748b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:24+0200\n" +"PO-Revision-Date: 2010-11-27 15:25+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1039,7 +1039,7 @@ msgstr "Eliminando los usuarios seleccionados" #: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" -msgstr "" +msgstr "Cerrar" #: js/messages.php:60 pmd_general.php:390 pmd_general.php:427 #: pmd_general.php:547 pmd_general.php:595 pmd_general.php:671 From 94cbb9d666451c20db90b39a15b974cb8538cce3 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:25:12 +0200 Subject: [PATCH 526/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index cffe0748b..b62daa9ba 100644 --- a/po/es.po +++ b/po/es.po @@ -1048,10 +1048,9 @@ msgid "Cancel" msgstr "Cancelar" #: js/messages.php:63 -#, fuzzy #| msgid "Load" msgid "Loading" -msgstr "Cargar" +msgstr "Cargando" #: js/messages.php:64 #, fuzzy From 35a778c0ac4ecc2c5dff776c0b722d7148e4d584 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:25:22 +0200 Subject: [PATCH 527/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b62daa9ba..c081a7e1c 100644 --- a/po/es.po +++ b/po/es.po @@ -1053,10 +1053,9 @@ msgid "Loading" msgstr "Cargando" #: js/messages.php:64 -#, fuzzy #| msgid "Processes" msgid "Processing Request" -msgstr "Procesos" +msgstr "Procesando la petición" #: js/messages.php:65 msgid "Error in Processing Request" From 46417783ef40c6b14d2d8995197df08f775ae00b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:25:31 +0200 Subject: [PATCH 528/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c081a7e1c..fe1c7b9fe 100644 --- a/po/es.po +++ b/po/es.po @@ -1055,7 +1055,7 @@ msgstr "Cargando" #: js/messages.php:64 #| msgid "Processes" msgid "Processing Request" -msgstr "Procesando la petición" +msgstr "Procesando Petición" #: js/messages.php:65 msgid "Error in Processing Request" From 41b1b050d8e71c5d3dfd41c98ee563d4a49dae7d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:25:47 +0200 Subject: [PATCH 529/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index fe1c7b9fe..c85c87a67 100644 --- a/po/es.po +++ b/po/es.po @@ -1059,7 +1059,7 @@ msgstr "Procesando Petición" #: js/messages.php:65 msgid "Error in Processing Request" -msgstr "" +msgstr "Error al Procesar la Petición" #: js/messages.php:66 msgid "Dropping Column" From 9345381ce668fbed71a2a87dd8336fc517914e22 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:25:57 +0200 Subject: [PATCH 530/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c85c87a67..0c669094d 100644 --- a/po/es.po +++ b/po/es.po @@ -1063,7 +1063,7 @@ msgstr "Error al Procesar la Petición" #: js/messages.php:66 msgid "Dropping Column" -msgstr "" +msgstr "Eliminando Columna" #: js/messages.php:67 msgid "Adding Primary Key" From 63b8dcb6abe6083f6f1550e7d9b791ae2d88e5de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:26:01 +0200 Subject: [PATCH 531/732] Translation update done using Pootle. --- po/lt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 87875bc0a..8db7d64c3 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:17+0200\n" +"PO-Revision-Date: 2010-11-27 15:26+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -2806,10 +2806,9 @@ msgid "Settings that didn't fit enywhere else" msgstr "Kiti nustatymai" #: libraries/config/messages.inc.php:187 -#, fuzzy #| msgid "Page number:" msgid "Page titles" -msgstr "Puslapis:" +msgstr "Puslapių pavadinimai" #: libraries/config/messages.inc.php:188 msgid "" From 21d289024f95da618e720551867d196586c32be6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:26:07 +0200 Subject: [PATCH 532/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0c669094d..2addd18e5 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:25+0200\n" +"PO-Revision-Date: 2010-11-27 15:26+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1067,7 +1067,7 @@ msgstr "Eliminando Columna" #: js/messages.php:67 msgid "Adding Primary Key" -msgstr "" +msgstr "Añadiendo Clave Primaria" #: js/messages.php:68 libraries/relation.lib.php:81 pmd_general.php:388 #: pmd_general.php:545 pmd_general.php:593 pmd_general.php:669 From f0c82ff2bd4691755874e9e396edd15784784e81 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:26:33 +0200 Subject: [PATCH 533/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2addd18e5..5714c14e1 100644 --- a/po/es.po +++ b/po/es.po @@ -1076,10 +1076,9 @@ msgid "OK" msgstr "OK" #: js/messages.php:71 -#, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" -msgstr "Cambiar el nombre de la base de datos a" +msgstr "Renombrando Bases de Datos" #: js/messages.php:72 #, fuzzy From ef109f956a399aab183aa632a423f1c3a491531b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:26:48 +0200 Subject: [PATCH 534/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5714c14e1..40a700413 100644 --- a/po/es.po +++ b/po/es.po @@ -1081,10 +1081,9 @@ msgid "Renaming Databases" msgstr "Renombrando Bases de Datos" #: js/messages.php:72 -#, fuzzy #| msgid "Rename database to" msgid "Reload Database" -msgstr "Cambiar el nombre de la base de datos a" +msgstr "Recargar Base de Datos" #: js/messages.php:73 #, fuzzy From df3eddfe2f5bba89360839ea82a9a92211e8a642 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:26:59 +0200 Subject: [PATCH 535/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 40a700413..64aed26b6 100644 --- a/po/es.po +++ b/po/es.po @@ -1086,10 +1086,9 @@ msgid "Reload Database" msgstr "Recargar Base de Datos" #: js/messages.php:73 -#, fuzzy #| msgid "Copy database to" msgid "Copying Database" -msgstr "Copiar la base de datos a" +msgstr "Copiando Base de Datos" #: js/messages.php:74 #, fuzzy From 065c55f2fd6b1c3d2f0864ff299c6965798a6223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:27:06 +0200 Subject: [PATCH 536/732] Translation update done using Pootle. --- po/lt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 8db7d64c3..f202cc35a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:26+0200\n" +"PO-Revision-Date: 2010-11-27 15:27+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3109,10 +3109,9 @@ msgid "Display servers selection" msgstr "Rodyti serverių pasirinkimą" #: libraries/config/messages.inc.php:267 -#, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" -msgstr "Rodyti duombazes medyje" +msgstr "Rodyti lentelių filtrą" #: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" From a4d83fc0d023fc824ac0f39d665a82e6a4297858 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:27:07 +0200 Subject: [PATCH 537/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 64aed26b6..a6f3fb41c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:26+0200\n" +"PO-Revision-Date: 2010-11-27 15:27+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1091,10 +1091,9 @@ msgid "Copying Database" msgstr "Copiando Base de Datos" #: js/messages.php:74 -#, fuzzy #| msgid "Charset" msgid "Changing Charset" -msgstr "Juego de caracteres" +msgstr "Cambiando el Juego de caracteres" #: js/messages.php:75 #, fuzzy From 80e02ae91379db5a41c6868fab60d91ab89477f6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:27:16 +0200 Subject: [PATCH 538/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index a6f3fb41c..342100bf1 100644 --- a/po/es.po +++ b/po/es.po @@ -1096,7 +1096,6 @@ msgid "Changing Charset" msgstr "Cambiando el Juego de caracteres" #: js/messages.php:75 -#, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "La tabla debe tener al menos un campo." From e086ce8ec8e30694310d4b04586593ccc3647af5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:27:23 +0200 Subject: [PATCH 539/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index 342100bf1..5c6ebc67c 100644 --- a/po/es.po +++ b/po/es.po @@ -1101,7 +1101,6 @@ msgid "Table must have at least one column" msgstr "La tabla debe tener al menos un campo." #: js/messages.php:76 -#, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Crear tabla" From 5682ecb44aad3e5a155e2aef84e041bcaa44e282 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:27:31 +0200 Subject: [PATCH 540/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5c6ebc67c..1d674b5c9 100644 --- a/po/es.po +++ b/po/es.po @@ -1106,10 +1106,9 @@ msgid "Create Table" msgstr "Crear tabla" #: js/messages.php:81 -#, fuzzy #| msgid "Search" msgid "Searching" -msgstr "Buscar" +msgstr "Buscando" #: js/messages.php:84 #, fuzzy From 4b07158e9effe8a5e2c86ab518cb766c42dcd39f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:27:40 +0200 Subject: [PATCH 541/732] Translation update done using Pootle. --- po/lt.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index f202cc35a..fbd11026b 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3189,12 +3189,10 @@ msgid "Light tabs" msgstr "Lengvos kortelės" #: libraries/config/messages.inc.php:285 -#, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" -msgstr "" -"Didžiausias leistinas simbolių kiekis naudojamas SQL užklausai parodyti" +msgstr "Didžiausias rodomas simbolių kiekis ne skaitiniuose stulpeliuose" #: libraries/config/messages.inc.php:286 msgid "Limit column characters" From 3bfef9d7a36a97ec42c514805da21f21006fbde7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:28:06 +0200 Subject: [PATCH 542/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 1d674b5c9..e0f858a83 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:27+0200\n" +"PO-Revision-Date: 2010-11-27 15:28+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1111,10 +1111,9 @@ msgid "Searching" msgstr "Buscando" #: js/messages.php:84 -#, fuzzy #| msgid "SQL Query box" msgid "Hide query box" -msgstr "Ventana de consultas SQL" +msgstr "Ocultar ventana de consultas SQL" #: js/messages.php:85 #, fuzzy From c476abff25d0487b551219e7ea6262d673b0d693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:28:14 +0200 Subject: [PATCH 543/732] Translation update done using Pootle. --- po/lt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index fbd11026b..9800ef1af 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:27+0200\n" +"PO-Revision-Date: 2010-11-27 15:28+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3248,10 +3248,9 @@ msgid "Login cookie validity" msgstr "Prisijungimo slapuko galiojimas" #: libraries/config/messages.inc.php:295 -#, fuzzy #| msgid "Double size of textarea for LONGTEXT fields" msgid "Double size of textarea for LONGTEXT columns" -msgstr "Padvigubinti dydį LONGTEXT'o textarea laukelių" +msgstr "Padvigubinti LONGTEXT laukelių dydį" #: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" From da99f0d7434e44994f49bb4fee9941536b87dc99 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:28:19 +0200 Subject: [PATCH 544/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index e0f858a83..ad9630da5 100644 --- a/po/es.po +++ b/po/es.po @@ -1116,10 +1116,9 @@ msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" #: js/messages.php:85 -#, fuzzy #| msgid "SQL Query box" msgid "Show query box" -msgstr "Ventana de consultas SQL" +msgstr "Mostrar ventana de consultas SQL" #: js/messages.php:86 #, fuzzy From bb3fc32bac7317b0c5d816affd92ddabfc901b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:28:41 +0200 Subject: [PATCH 545/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 9800ef1af..2e964de57 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3559,9 +3559,8 @@ msgid "Column information table" msgstr "" #: libraries/config/messages.inc.php:366 -#, fuzzy msgid "Compress connection to MySQL server" -msgstr "Nepavyko prisijungti prie MySQL serverio" +msgstr "Naudoti suspaudimą jungiantis prie MySQL serverio" #: libraries/config/messages.inc.php:367 #, fuzzy From 0fd4decf90995e9833a94449d8c29616cb4de071 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:28:45 +0200 Subject: [PATCH 546/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index ad9630da5..f471e57bc 100644 --- a/po/es.po +++ b/po/es.po @@ -1121,10 +1121,9 @@ msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" #: js/messages.php:86 -#, fuzzy #| msgid "Engines" msgid "Inline Edit" -msgstr "Motores" +msgstr "Editar en línea" #: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 From a65baf3423f86c20961913c6df26e383818c6d0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:28:58 +0200 Subject: [PATCH 547/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 2e964de57..95a3ef4ad 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3563,9 +3563,8 @@ msgid "Compress connection to MySQL server" msgstr "Naudoti suspaudimą jungiantis prie MySQL serverio" #: libraries/config/messages.inc.php:367 -#, fuzzy msgid "Compress connection" -msgstr "Naudoti SSL susijungimą" +msgstr "Naudoti suspaustą susijungimą" #: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" From 3e9c72708c8007d54af58d505403505b437c2e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:29:06 +0200 Subject: [PATCH 548/732] Translation update done using Pootle. --- po/lt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 95a3ef4ad..643c76204 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:28+0200\n" +"PO-Revision-Date: 2010-11-27 15:29+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3703,10 +3703,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:397 -#, fuzzy #| msgid "database name" msgid "Database name" -msgstr "duomenų bazės vardas" +msgstr "Duomenų bazės vardas" #: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" From dc73d4093f1a37a143d27a4ecec02b87df551e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:29:21 +0200 Subject: [PATCH 549/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 643c76204..215e0f0db 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3817,10 +3817,9 @@ msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" #: libraries/config/messages.inc.php:422 -#, fuzzy #| msgid "Statements" msgid "Statements to track" -msgstr "Parametrai" +msgstr "Sekamos užklausos" #: libraries/config/messages.inc.php:423 msgid "" From 42a3cbc3e400e0fbdcc0e6407fd01cb7c470cc51 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:29:22 +0200 Subject: [PATCH 550/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index f471e57bc..651845b64 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:28+0200\n" +"PO-Revision-Date: 2010-11-27 15:29+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1132,7 +1132,7 @@ msgstr "Ignorar" #: js/messages.php:92 msgid "Select referenced key" -msgstr "Seleccione la llave de referencia" +msgstr "Seleccionar la clave referenciada" #: js/messages.php:93 msgid "Select Foreign Key" From 22357f28d604d2e98d4ddea64ee2e0e74b6d10d0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:29:48 +0200 Subject: [PATCH 551/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 651845b64..0b6a09bad 100644 --- a/po/es.po +++ b/po/es.po @@ -1136,7 +1136,7 @@ msgstr "Seleccionar la clave referenciada" #: js/messages.php:93 msgid "Select Foreign Key" -msgstr "Seleccione la llave extranjera (foreign key)" +msgstr "Seleccione la clave foránea (foreign key)" #: js/messages.php:94 msgid "Please select the primary key or a unique key" From 2a333d4a2ab190dd7236a303e0d5b22166c1a8ed Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:29:58 +0200 Subject: [PATCH 552/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 0b6a09bad..0c292b908 100644 --- a/po/es.po +++ b/po/es.po @@ -1132,7 +1132,7 @@ msgstr "Ignorar" #: js/messages.php:92 msgid "Select referenced key" -msgstr "Seleccionar la clave referenciada" +msgstr "Seleccione la clave referenciada" #: js/messages.php:93 msgid "Select Foreign Key" From 5aa5fa70ad371af24f6f4eda322d9a749f804fb6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:30:01 +0200 Subject: [PATCH 553/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 0c292b908..aed713d7f 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:29+0200\n" +"PO-Revision-Date: 2010-11-27 15:30+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From 1d6df22e0f036ca85f4ea9f04d9d278f31826430 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:30:45 +0200 Subject: [PATCH 554/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index aed713d7f..08b1f6cc7 100644 --- a/po/es.po +++ b/po/es.po @@ -1143,7 +1143,6 @@ msgid "Please select the primary key or a unique key" msgstr "Por favor, seleccione la clave primaria o una clave única" #: js/messages.php:95 pmd_general.php:89 tbl_relation.php:545 -#, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Elegir el campo a mostrar" From a5ed2eef16c7737ac923fb32a25996d4a69e6b7c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:31:00 +0200 Subject: [PATCH 555/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 08b1f6cc7..1755dd257 100644 --- a/po/es.po +++ b/po/es.po @@ -1149,7 +1149,7 @@ msgstr "Elegir el campo a mostrar" #: js/messages.php:98 msgid "Add an option for column " -msgstr "" +msgstr "Añadir una opción para la columna" #: js/messages.php:101 #, fuzzy From 2116d6836d6ed9bf95bbfdf242e59328597ec378 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:31:07 +0200 Subject: [PATCH 556/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 1755dd257..51af79555 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:30+0200\n" +"PO-Revision-Date: 2010-11-27 15:31+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1152,10 +1152,9 @@ msgid "Add an option for column " msgstr "Añadir una opción para la columna" #: js/messages.php:101 -#, fuzzy #| msgid "Generate Password" msgid "Generate password" -msgstr "Generar la contraseña" +msgstr "Generar contraseña" #: js/messages.php:102 libraries/replication_gui.lib.php:365 msgid "Generate" From 1948f28c52d547f39216d666001c1f918facc55f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:31:07 +0200 Subject: [PATCH 557/732] Translation update done using Pootle. --- po/lt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 215e0f0db..338128ac4 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:29+0200\n" +"PO-Revision-Date: 2010-11-27 15:31+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3862,9 +3862,8 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:432 -#, fuzzy msgid "Verbose check" -msgstr "Versijos patikrinimas" +msgstr "" #: libraries/config/messages.inc.php:433 msgid "" From 31f6b31a734633291eb078cf0dfb6bdb9c0f8168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:31:13 +0200 Subject: [PATCH 558/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 338128ac4..b5a20167e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4144,10 +4144,9 @@ msgid "ZIP" msgstr "ZIP" #: libraries/config/setup.forms.php:41 -#, fuzzy #| msgid "Authenticating..." msgid "Config authentication" -msgstr "Nustatomas tapatumas..." +msgstr "" #: libraries/config/setup.forms.php:45 #, fuzzy From 19821f98eba8d35f238ceddb5447d3a32832a5ed Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:31:18 +0200 Subject: [PATCH 559/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 51af79555..96004ca31 100644 --- a/po/es.po +++ b/po/es.po @@ -1161,10 +1161,9 @@ msgid "Generate" msgstr "Generar" #: js/messages.php:103 -#, fuzzy #| msgid "Change password" msgid "Change Password" -msgstr "Cambio de contraseña" +msgstr "Cambar contraseña" #: js/messages.php:106 #, fuzzy From a5396d12ef68c72d2ea2de28c3b707b63ea1116c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:31:27 +0200 Subject: [PATCH 560/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 96004ca31..0898690ba 100644 --- a/po/es.po +++ b/po/es.po @@ -1166,10 +1166,9 @@ msgid "Change Password" msgstr "Cambar contraseña" #: js/messages.php:106 -#, fuzzy #| msgid "Mon" msgid "More" -msgstr "Lun" +msgstr "Más" #. l10n: Display text for calendar close link #: js/messages.php:116 From 2e2212e870686a4504f96ff3ff5d1ba99ca64846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:31:34 +0200 Subject: [PATCH 561/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index b5a20167e..3a2496cfc 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4149,10 +4149,9 @@ msgid "Config authentication" msgstr "" #: libraries/config/setup.forms.php:45 -#, fuzzy #| msgid "Authenticating..." msgid "Cookie authentication" -msgstr "Nustatomas tapatumas..." +msgstr "Autentifikacija \"sausainiukais\"" #: libraries/config/setup.forms.php:48 #, fuzzy From 0601bbe3dc56877de8bf810d8a4215984016b982 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:31:43 +0200 Subject: [PATCH 562/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0898690ba..f0b9274c3 100644 --- a/po/es.po +++ b/po/es.po @@ -1172,10 +1172,9 @@ msgstr "Más" #. l10n: Display text for calendar close link #: js/messages.php:116 -#, fuzzy #| msgid "Donate" msgid "Done" -msgstr "Donación" +msgstr "Terminado" #. l10n: Display text for previous month link in calendar #: js/messages.php:118 From 217e777201f722f4c2730c014d38406a12345858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:31:49 +0200 Subject: [PATCH 563/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 3a2496cfc..87d60429b 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4154,10 +4154,9 @@ msgid "Cookie authentication" msgstr "Autentifikacija \"sausainiukais\"" #: libraries/config/setup.forms.php:48 -#, fuzzy #| msgid "Authenticating..." msgid "HTTP authentication" -msgstr "Nustatomas tapatumas..." +msgstr "HTTP autentifikacija" #: libraries/config/setup.forms.php:51 #, fuzzy From 772931bb2f60221a2cdb9db6efa9efdcb8ae45b2 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:31:52 +0200 Subject: [PATCH 564/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index f0b9274c3..8591a30f5 100644 --- a/po/es.po +++ b/po/es.po @@ -1178,7 +1178,6 @@ msgstr "Terminado" #. l10n: Display text for previous month link in calendar #: js/messages.php:118 -#, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Previo" From 4efb083e94b11b26b6a380169813af9cd2b18f56 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:04 +0200 Subject: [PATCH 565/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8591a30f5..8edc36a57 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:31+0200\n" +"PO-Revision-Date: 2010-11-27 15:32+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1188,7 +1188,7 @@ msgstr "Previo" #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:893 msgid "Next" -msgstr "Próxima" +msgstr "Siguiente" #. l10n: Display text for current month link in calendar #: js/messages.php:122 From a8a1741acf877a681d039e33a4f786407eb24cef Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:11 +0200 Subject: [PATCH 566/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8edc36a57..96b2b044c 100644 --- a/po/es.po +++ b/po/es.po @@ -1192,10 +1192,9 @@ msgstr "Siguiente" #. l10n: Display text for current month link in calendar #: js/messages.php:122 -#, fuzzy #| msgid "Total" msgid "Today" -msgstr "Total" +msgstr "Hoy" #: js/messages.php:125 #, fuzzy From 274e8d6da2e84f65ecda40667b39b2a3880e90e0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:19 +0200 Subject: [PATCH 567/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 96b2b044c..a7219f3ec 100644 --- a/po/es.po +++ b/po/es.po @@ -1197,10 +1197,9 @@ msgid "Today" msgstr "Hoy" #: js/messages.php:125 -#, fuzzy #| msgid "Binary" msgid "January" -msgstr " Binario " +msgstr "Enero" #: js/messages.php:126 msgid "February" From 1aab1bf27d2ea4ba2ae790d62bc6c4f6fe618c1e Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:27 +0200 Subject: [PATCH 568/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a7219f3ec..44a23bf2b 100644 --- a/po/es.po +++ b/po/es.po @@ -1203,7 +1203,7 @@ msgstr "Enero" #: js/messages.php:126 msgid "February" -msgstr "" +msgstr "Febrero" #: js/messages.php:127 #, fuzzy From 8320536030e3e982613690edeb520adc90d82893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:32:35 +0200 Subject: [PATCH 569/732] Translation update done using Pootle. --- po/lt.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 87d60429b..e51e006e0 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:31+0200\n" +"PO-Revision-Date: 2010-11-27 15:32+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -4159,10 +4159,9 @@ msgid "HTTP authentication" msgstr "HTTP autentifikacija" #: libraries/config/setup.forms.php:51 -#, fuzzy #| msgid "Authenticating..." msgid "Signon authentication" -msgstr "Nustatomas tapatumas..." +msgstr "" #: libraries/config/setup.forms.php:238 #: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 From ff9cc305662f17a7747fd63aa1ee51332205e1d7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:36 +0200 Subject: [PATCH 570/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 44a23bf2b..010e4d4bf 100644 --- a/po/es.po +++ b/po/es.po @@ -1206,10 +1206,9 @@ msgid "February" msgstr "Febrero" #: js/messages.php:127 -#, fuzzy #| msgid "Mar" msgid "March" -msgstr "Mar" +msgstr "Marzo" #: js/messages.php:128 #, fuzzy From bd5a9935154139c5e4c9290e5cfda436ff2f60ae Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:41 +0200 Subject: [PATCH 571/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 010e4d4bf..2adb512b9 100644 --- a/po/es.po +++ b/po/es.po @@ -1211,10 +1211,9 @@ msgid "March" msgstr "Marzo" #: js/messages.php:128 -#, fuzzy #| msgid "Apr" msgid "April" -msgstr "Abr" +msgstr "Abril" #: js/messages.php:129 msgid "May" From 9a22d3c17cd813f7ee90f7381db93f660ccc358c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:45 +0200 Subject: [PATCH 572/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 2adb512b9..7f06f6e3d 100644 --- a/po/es.po +++ b/po/es.po @@ -1217,7 +1217,7 @@ msgstr "Abril" #: js/messages.php:129 msgid "May" -msgstr "May" +msgstr "Mayo" #: js/messages.php:130 #, fuzzy From f8a8e2562207ed51b77ee93b50c45745c6ae4532 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:50 +0200 Subject: [PATCH 573/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 7f06f6e3d..609d81a07 100644 --- a/po/es.po +++ b/po/es.po @@ -1220,10 +1220,9 @@ msgid "May" msgstr "Mayo" #: js/messages.php:130 -#, fuzzy #| msgid "Jun" msgid "June" -msgstr "Jun" +msgstr "Junio" #: js/messages.php:131 #, fuzzy From 06a2a93bc378fca639ea1aa2b18276887cb6d687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:32:58 +0200 Subject: [PATCH 574/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index e51e006e0..284bb1220 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4196,10 +4196,9 @@ msgstr "" #: libraries/config/setup.forms.php:264 #: libraries/config/user_preferences.forms.php:167 -#, fuzzy #| msgid "Customization" msgid "Custom" -msgstr "Adaptavimas" +msgstr "" #: libraries/config/setup.forms.php:285 #: libraries/config/user_preferences.forms.php:187 From 27e2b9fa3030b19fcbb7913b9c4dee30d50dff3e Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:32:59 +0200 Subject: [PATCH 575/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 609d81a07..caf52a7c3 100644 --- a/po/es.po +++ b/po/es.po @@ -1225,10 +1225,9 @@ msgid "June" msgstr "Junio" #: js/messages.php:131 -#, fuzzy #| msgid "Jul" msgid "July" -msgstr "Jul" +msgstr "Julio" #: js/messages.php:132 #, fuzzy From 36daf7d4390e4f57434ab380d4565dc32be10ba8 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:33:04 +0200 Subject: [PATCH 576/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index caf52a7c3..c5ad29bca 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:32+0200\n" +"PO-Revision-Date: 2010-11-27 15:33+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1230,10 +1230,9 @@ msgid "July" msgstr "Julio" #: js/messages.php:132 -#, fuzzy #| msgid "Aug" msgid "August" -msgstr "Ago" +msgstr "Agosto" #: js/messages.php:133 msgid "September" From c102bbb3bc440a318ef08cb7dd00b905b3006d9c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:33:17 +0200 Subject: [PATCH 577/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c5ad29bca..5fd707b9b 100644 --- a/po/es.po +++ b/po/es.po @@ -1236,7 +1236,7 @@ msgstr "Agosto" #: js/messages.php:133 msgid "September" -msgstr "" +msgstr "Septiembre" #: js/messages.php:134 #, fuzzy From fbb578f369add029713c2d2b7de04e858d616946 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:33:23 +0200 Subject: [PATCH 578/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5fd707b9b..ecaa047ef 100644 --- a/po/es.po +++ b/po/es.po @@ -1239,10 +1239,9 @@ msgid "September" msgstr "Septiembre" #: js/messages.php:134 -#, fuzzy #| msgid "Oct" msgid "October" -msgstr "Oct" +msgstr "Octubre" #: js/messages.php:135 msgid "November" From 93646e996b96d2dc21b646d7fe3c9f76bb58296c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:33:29 +0200 Subject: [PATCH 579/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index ecaa047ef..3a190b5ea 100644 --- a/po/es.po +++ b/po/es.po @@ -1245,7 +1245,7 @@ msgstr "Octubre" #: js/messages.php:135 msgid "November" -msgstr "" +msgstr "Noviembre" #: js/messages.php:136 msgid "December" From 391adfc6663991136be861342cdeb5d91966f422 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:33:34 +0200 Subject: [PATCH 580/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 3a190b5ea..765b8c5d9 100644 --- a/po/es.po +++ b/po/es.po @@ -1249,7 +1249,7 @@ msgstr "Noviembre" #: js/messages.php:136 msgid "December" -msgstr "" +msgstr "Diciembre" #. l10n: Short month name #: js/messages.php:140 libraries/common.lib.php:1545 From ef3dba6f30fc9b5f316a476d2117bd59fa24a58d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:33:47 +0200 Subject: [PATCH 581/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index 765b8c5d9..9351e98e4 100644 --- a/po/es.po +++ b/po/es.po @@ -1273,7 +1273,6 @@ msgstr "Abr" #. l10n: Short month name #: js/messages.php:148 libraries/common.lib.php:1553 -#, fuzzy #| msgid "May" msgctxt "Short month name" msgid "May" From 7c4e92da8547c96bf63f0e3f7c9cc3367f4d1b41 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:00 +0200 Subject: [PATCH 582/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 9351e98e4..4f465815e 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:33+0200\n" +"PO-Revision-Date: 2010-11-27 15:34+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From 74d31b50e73b181309dd41a87ab421c860771e5e Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:13 +0200 Subject: [PATCH 583/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 4f465815e..6ae5aafe4 100644 --- a/po/es.po +++ b/po/es.po @@ -1314,10 +1314,9 @@ msgid "Dec" msgstr "Dic" #: js/messages.php:165 -#, fuzzy #| msgid "Sun" msgid "Sunday" -msgstr "Dom" +msgstr "Domingo" #: js/messages.php:166 #, fuzzy From f02628bef21018a8777403713a35dbf757da01de Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:18 +0200 Subject: [PATCH 584/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 6ae5aafe4..f3628313e 100644 --- a/po/es.po +++ b/po/es.po @@ -1319,10 +1319,9 @@ msgid "Sunday" msgstr "Domingo" #: js/messages.php:166 -#, fuzzy #| msgid "Mon" msgid "Monday" -msgstr "Lun" +msgstr "Lunes" #: js/messages.php:167 #, fuzzy From b88f27f4b0a8c3d95132755d3db8a0cea0064232 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:23 +0200 Subject: [PATCH 585/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index f3628313e..cf565e0e9 100644 --- a/po/es.po +++ b/po/es.po @@ -1324,10 +1324,9 @@ msgid "Monday" msgstr "Lunes" #: js/messages.php:167 -#, fuzzy #| msgid "Tue" msgid "Tuesday" -msgstr "Mar" +msgstr "Martes" #: js/messages.php:168 msgid "Wednesday" From d9c3421e7eff441e7629173ad1f2e941ce20bb12 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:35 +0200 Subject: [PATCH 586/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index cf565e0e9..178628dbf 100644 --- a/po/es.po +++ b/po/es.po @@ -1330,7 +1330,7 @@ msgstr "Martes" #: js/messages.php:168 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: js/messages.php:169 msgid "Thursday" From 5e48197d25a0cd026c8fb799214ea1994b8d12da Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:41 +0200 Subject: [PATCH 587/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 178628dbf..8f41a57bc 100644 --- a/po/es.po +++ b/po/es.po @@ -1334,7 +1334,7 @@ msgstr "Miércoles" #: js/messages.php:169 msgid "Thursday" -msgstr "" +msgstr "Jueves" #: js/messages.php:170 #, fuzzy From 25695c3cf0b14602a78cefd6d931e7fe5cb927ae Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:50 +0200 Subject: [PATCH 588/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8f41a57bc..efb729882 100644 --- a/po/es.po +++ b/po/es.po @@ -1337,10 +1337,9 @@ msgid "Thursday" msgstr "Jueves" #: js/messages.php:170 -#, fuzzy #| msgid "Fri" msgid "Friday" -msgstr "Vie" +msgstr "Viernes" #: js/messages.php:171 msgid "Saturday" From e4fa6a92c0b29a679bd717a7a440c427352a5c62 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:34:56 +0200 Subject: [PATCH 589/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index efb729882..a620f7d56 100644 --- a/po/es.po +++ b/po/es.po @@ -1343,7 +1343,7 @@ msgstr "Viernes" #: js/messages.php:171 msgid "Saturday" -msgstr "" +msgstr "Sábado" #. l10n: Short week day name #: js/messages.php:175 libraries/common.lib.php:1570 From 3d7ad3c61723e85e6ef878d65bfad4926d72584f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:02 +0200 Subject: [PATCH 590/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a620f7d56..00d7f0ef0 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:34+0200\n" +"PO-Revision-Date: 2010-11-27 15:35+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From 415ebe297513004b725e0845d1873cc5b610f7f5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:24 +0200 Subject: [PATCH 591/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 00d7f0ef0..46053c625 100644 --- a/po/es.po +++ b/po/es.po @@ -1382,10 +1382,9 @@ msgstr "Sab" #. l10n: Minimal week day name #: js/messages.php:191 -#, fuzzy #| msgid "Sun" msgid "Su" -msgstr "Dom" +msgstr "Do" #. l10n: Minimal week day name #: js/messages.php:193 From def6f42d3a36fcf18c14f060d5a529b55840bf71 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:30 +0200 Subject: [PATCH 592/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 46053c625..1868ee55e 100644 --- a/po/es.po +++ b/po/es.po @@ -1388,10 +1388,9 @@ msgstr "Do" #. l10n: Minimal week day name #: js/messages.php:193 -#, fuzzy #| msgid "Mon" msgid "Mo" -msgstr "Lun" +msgstr "Lu" #. l10n: Minimal week day name #: js/messages.php:195 From a310c63064bebd59ec3ab5b61fa707290951e193 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:35 +0200 Subject: [PATCH 593/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1868ee55e..b82d48eba 100644 --- a/po/es.po +++ b/po/es.po @@ -1394,10 +1394,9 @@ msgstr "Lu" #. l10n: Minimal week day name #: js/messages.php:195 -#, fuzzy #| msgid "Tue" msgid "Tu" -msgstr "Mar" +msgstr "Ma" #. l10n: Minimal week day name #: js/messages.php:197 From d600a773d71dff1c25833c0dcfb44a65d6d4237d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:39 +0200 Subject: [PATCH 594/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b82d48eba..bf447527e 100644 --- a/po/es.po +++ b/po/es.po @@ -1400,10 +1400,9 @@ msgstr "Ma" #. l10n: Minimal week day name #: js/messages.php:197 -#, fuzzy #| msgid "Wed" msgid "We" -msgstr "Mie" +msgstr "Mi" #. l10n: Minimal week day name #: js/messages.php:199 From 109177af869cc6f05b0e38ebd3791ded187624f7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:47 +0200 Subject: [PATCH 595/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index bf447527e..5c8b3609d 100644 --- a/po/es.po +++ b/po/es.po @@ -1406,10 +1406,9 @@ msgstr "Mi" #. l10n: Minimal week day name #: js/messages.php:199 -#, fuzzy #| msgid "Thu" msgid "Th" -msgstr "Jue" +msgstr "Ju" #. l10n: Minimal week day name #: js/messages.php:201 From 657fe9a822c3ab99b1aa1158d8698c89ebd54339 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:35:55 +0200 Subject: [PATCH 596/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5c8b3609d..70eae944b 100644 --- a/po/es.po +++ b/po/es.po @@ -1412,10 +1412,9 @@ msgstr "Ju" #. l10n: Minimal week day name #: js/messages.php:201 -#, fuzzy #| msgid "Fri" msgid "Fr" -msgstr "Vie" +msgstr "Vi" #. l10n: Minimal week day name #: js/messages.php:203 From 94a14be7b5895e0d95b3515c7826ceb39d54396c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:36:00 +0200 Subject: [PATCH 597/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 70eae944b..787a0a01e 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:35+0200\n" +"PO-Revision-Date: 2010-11-27 15:36+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1418,10 +1418,9 @@ msgstr "Vi" #. l10n: Minimal week day name #: js/messages.php:203 -#, fuzzy #| msgid "Sat" msgid "Sa" -msgstr "Sab" +msgstr "Sa" #. l10n: Column header for week of the year in calendar #: js/messages.php:205 From 005abe11dd96caadad3b473e2a841a78d817a6e6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:36:20 +0200 Subject: [PATCH 598/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 787a0a01e..72a6d5e86 100644 --- a/po/es.po +++ b/po/es.po @@ -1424,10 +1424,9 @@ msgstr "Sa" #. l10n: Column header for week of the year in calendar #: js/messages.php:205 -#, fuzzy #| msgid "Wiki" msgid "Wk" -msgstr "Wiki" +msgstr "Sem" #: js/messages.php:207 msgid "Hour" From 1be3f1fe06d8a863946e2a9cfe3c6b41ced41f1d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:36:25 +0200 Subject: [PATCH 599/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 72a6d5e86..f4898f2f0 100644 --- a/po/es.po +++ b/po/es.po @@ -1430,7 +1430,7 @@ msgstr "Sem" #: js/messages.php:207 msgid "Hour" -msgstr "" +msgstr "Hora" #: js/messages.php:208 #, fuzzy From 45dda960e77ff9084b8589f1847f8c4464584ec7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:36:35 +0200 Subject: [PATCH 600/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index f4898f2f0..692bf64bf 100644 --- a/po/es.po +++ b/po/es.po @@ -1433,10 +1433,9 @@ msgid "Hour" msgstr "Hora" #: js/messages.php:208 -#, fuzzy #| msgid "in use" msgid "Minute" -msgstr "en uso" +msgstr "Minuto" #: js/messages.php:209 #, fuzzy From 2d606604597b5f8a6cc1b7db877e14926b2c8945 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:36:49 +0200 Subject: [PATCH 601/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 692bf64bf..13f816a6b 100644 --- a/po/es.po +++ b/po/es.po @@ -1438,10 +1438,9 @@ msgid "Minute" msgstr "Minuto" #: js/messages.php:209 -#, fuzzy #| msgid "per second" msgid "Second" -msgstr "por segundo" +msgstr "Segundo" #: libraries/Config.class.php:1190 tbl_chart.php:159 msgid "Font size" From a3761797aeb6c36fec854694ee4308fabb9abb6c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:36:57 +0200 Subject: [PATCH 602/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 13f816a6b..542b9aef0 100644 --- a/po/es.po +++ b/po/es.po @@ -1444,7 +1444,7 @@ msgstr "Segundo" #: libraries/Config.class.php:1190 tbl_chart.php:159 msgid "Font size" -msgstr "Tamaño del font" +msgstr "Tamaño de fuente" #: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." From 48eecc45a4f395900348020b260cfe5abf56ea34 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:37:22 +0200 Subject: [PATCH 603/732] Translation update done using Pootle. --- po/es.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 542b9aef0..b86820ad9 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:36+0200\n" +"PO-Revision-Date: 2010-11-27 15:37+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1449,8 +1449,8 @@ msgstr "Tamaño de fuente" #: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -"El archivo que intentó cargar excede la directiva upload_max_filesize en php." -"ini." +"El archivo que intentó subir excede la directiva upload_max_filesize en " +"php.ini." #: libraries/File.class.php:318 msgid "" From 90e322fbacd7c713129fe6926da4a0c6c39ccc07 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:37:36 +0200 Subject: [PATCH 604/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b86820ad9..38d1d0af3 100644 --- a/po/es.po +++ b/po/es.po @@ -1457,7 +1457,7 @@ msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -"El archivo que intentó cargar excede la directiva MAX_FILE_SIZE especificada " +"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." #: libraries/File.class.php:321 From 3f2c0bc5a7ea23f9c1fe3cf51353a0c89f101ab7 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:37:54 +0200 Subject: [PATCH 605/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 38d1d0af3..84e16f53e 100644 --- a/po/es.po +++ b/po/es.po @@ -1462,7 +1462,7 @@ msgstr "" #: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." -msgstr "El archivo que intentó cargar no alcanzó el 100%." +msgstr "El archivo que intentó subir no alcanzó el 100%." #: libraries/File.class.php:324 msgid "Missing a temporary folder." From 240a90851797c4b4d4ace0fbe493ed670210c2ff Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:38:04 +0200 Subject: [PATCH 606/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 84e16f53e..059f0082b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:37+0200\n" +"PO-Revision-Date: 2010-11-27 15:38+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1466,7 +1466,7 @@ msgstr "El archivo que intentó subir no alcanzó el 100%." #: libraries/File.class.php:324 msgid "Missing a temporary folder." -msgstr "No existe una carpeta temporal." +msgstr "Falta una carpeta temporal." #: libraries/File.class.php:327 msgid "Failed to write file to disk." From a5d9cd65e2fb9b5e044c9ecc5cbd38a8e78d7ba9 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:38:16 +0200 Subject: [PATCH 607/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 059f0082b..4d39e78e1 100644 --- a/po/es.po +++ b/po/es.po @@ -1470,7 +1470,7 @@ msgstr "Falta una carpeta temporal." #: libraries/File.class.php:327 msgid "Failed to write file to disk." -msgstr "No fue posible grabar el archivo al disco." +msgstr "No fue posible grabar el archivo a disco." #: libraries/File.class.php:330 msgid "File upload stopped by extension." From c2ce2286e8b087f2f2ba7e956b206718a9eb6b0f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:38:30 +0200 Subject: [PATCH 608/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 4d39e78e1..c86d9fa3c 100644 --- a/po/es.po +++ b/po/es.po @@ -1474,7 +1474,7 @@ msgstr "No fue posible grabar el archivo a disco." #: libraries/File.class.php:330 msgid "File upload stopped by extension." -msgstr "La carga del archivo fue detenida por extensión." +msgstr "La carga del archivo fue detenida por su extensión." #: libraries/File.class.php:333 msgid "Unknown error in file upload." From d804d43a8ecf61707466bcf84f8f0262aa63b6ec Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:38:48 +0200 Subject: [PATCH 609/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c86d9fa3c..0d8985d47 100644 --- a/po/es.po +++ b/po/es.po @@ -1474,7 +1474,7 @@ msgstr "No fue posible grabar el archivo a disco." #: libraries/File.class.php:330 msgid "File upload stopped by extension." -msgstr "La carga del archivo fue detenida por su extensión." +msgstr "La subida del archivo fue detenida por su extensión." #: libraries/File.class.php:333 msgid "Unknown error in file upload." From b93329a4cc72c51d09c6cf7f9911290d94f67f6a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:39:03 +0200 Subject: [PATCH 610/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0d8985d47..cc3d9703c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:38+0200\n" +"PO-Revision-Date: 2010-11-27 15:39+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1478,7 +1478,7 @@ msgstr "La subida del archivo fue detenida por su extensión." #: libraries/File.class.php:333 msgid "Unknown error in file upload." -msgstr "Error desconocido durante la carga del archivo." +msgstr "Error desconocido al subir el archivo." #: libraries/File.class.php:624 msgid "" From e580c451482435271247f29051f267f57a43c52a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:39:15 +0200 Subject: [PATCH 611/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index cc3d9703c..58887e1a6 100644 --- a/po/es.po +++ b/po/es.po @@ -1484,7 +1484,7 @@ msgstr "Error desconocido al subir el archivo." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Se detectó un error al trasladar el archivo cargado, ver FAQ 1.11" +msgstr "Se detectó un error al subir el archivo cargado, ver FAQ 1.11" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" From d64e41fece3f16ab5db56d16c03163a0c28e034b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:39:31 +0200 Subject: [PATCH 612/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 58887e1a6..1b5ab4929 100644 --- a/po/es.po +++ b/po/es.po @@ -1484,7 +1484,7 @@ msgstr "Error desconocido al subir el archivo." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Se detectó un error al subir el archivo cargado, ver FAQ 1.11" +msgstr "Se detectó un error al mover el archivo subido, ver FAQ 1.11" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" From d1ab4ff98c8386211acc923b9b37265df25ba4f0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:39:43 +0200 Subject: [PATCH 613/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1b5ab4929..213cb1c3a 100644 --- a/po/es.po +++ b/po/es.po @@ -1488,7 +1488,7 @@ msgstr "Se detectó un error al mover el archivo subido, ver FAQ 1.11" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" -msgstr "¡No se ha definido el índice!" +msgstr "¡No se ha definido ningún índice!" #: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40 #: tbl_tracking.php:310 From d1e79599696373bedd2d83661d83768512b7934b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:39:59 +0200 Subject: [PATCH 614/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 213cb1c3a..3e30f1de2 100644 --- a/po/es.po +++ b/po/es.po @@ -1504,7 +1504,7 @@ msgstr "Único" #: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" -msgstr "Empacado" +msgstr "Empaquetado" #: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" From 08bfab33827451c41f97ebf546cb5b3da83f5dc3 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:40:03 +0200 Subject: [PATCH 615/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 3e30f1de2..b6cbee5c3 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:39+0200\n" +"PO-Revision-Date: 2010-11-27 15:40+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From ba70f98a42cfd5f48ee530c49a07eabbb76123f6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:41:45 +0200 Subject: [PATCH 616/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index b6cbee5c3..c21b47557 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:40+0200\n" +"PO-Revision-Date: 2010-11-27 15:41+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -99,10 +99,9 @@ msgid "No blob streaming server configured!" msgstr "No hay configurado ningun servidor de streaming de blobs!" #: bs_disp_as_mime_type.php:35 -#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" -msgstr "No se pudieron obtener las cabeceras" +msgstr "Fallo al obtener las cabeceras" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From bb665b1426a89894d92ae3c8b3673e67f1ab6ba1 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:41:52 +0200 Subject: [PATCH 617/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index c21b47557..8958d3c10 100644 --- a/po/es.po +++ b/po/es.po @@ -131,7 +131,6 @@ msgstr "Comentarios de la tabla" #: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 -#, fuzzy #| msgid "Column names" msgid "Column" msgstr "Columna" From ee81a70a9f97678db05cf099948f3b273b2453d6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:42:24 +0200 Subject: [PATCH 618/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8958d3c10..0dcbbcad1 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:41+0200\n" +"PO-Revision-Date: 2010-11-27 15:42+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -961,7 +961,7 @@ msgstr "¡Está a punto de DESTRUIR una base de datos completa!" #: js/messages.php:32 msgid "Dropping Event" -msgstr "" +msgstr "Eliminando evento" #: js/messages.php:33 #| msgid "Procedures" From c569d855f76f1b91728a9a252853d0058b2b7c1b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:43:18 +0200 Subject: [PATCH 619/732] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 0dcbbcad1..e84c467b4 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:42+0200\n" +"PO-Revision-Date: 2010-11-27 15:43+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1727,6 +1727,8 @@ msgstr "Las \"cookies\" deben estar habilitadas." msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" +"El inicio de sesión sin contraseña está prohibido por la configuración (ver " +"AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 From 0e2199705735d324edba4cf8849f98befcbccc20 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 15:43:34 +0200 Subject: [PATCH 620/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e84c467b4..b3424c805 100644 --- a/po/es.po +++ b/po/es.po @@ -1769,7 +1769,7 @@ msgstr "Autenticando..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" -msgstr "" +msgstr "error PBMS" #: libraries/blobstreaming.lib.php:267 #, fuzzy From 70af4e1b5576354e055d3269e2d15cc8fa93975a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 15:45:52 +0200 Subject: [PATCH 621/732] Translation update done using Pootle. --- po/lt.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/lt.po b/po/lt.po index 284bb1220..018b16de6 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:32+0200\n" +"PO-Revision-Date: 2010-11-27 15:45+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -4573,7 +4573,6 @@ msgstr "" "išsiuntimo bus tęsiama nuo %d." #: libraries/display_import.lib.php:221 -#, fuzzy #| msgid "" #| "Allow the interruption of an import in case the script detects it is " #| "close to the PHP timeout limit. This might be good way to import large " @@ -4583,9 +4582,9 @@ msgid "" "to the PHP timeout limit. (This might be good way to import large files, " "however it can break transactions.)" msgstr "" -"Leisti sustabdyti importavimą jei skriptas nustato, kad priartėta prie laiko " -"limito. Gali būti naudinga importuojant didelius failus, tačiau gali " -"sugadinti transakcijas." +"Leisti sustabdyti importavimą jei skriptas nustato, kad priartėta prie PHP " +"laiko limito. Gali būti naudinga importuojant didelius failus, tačiau " +"gali sugadinti transakcijas." #: libraries/display_import.lib.php:228 msgid "Number of rows to skip, starting from the first row:" From 9c155f67e44647b08a94440ee54d70b411705406 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:04:49 +0200 Subject: [PATCH 622/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index b3424c805..01aad932a 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:43+0200\n" +"PO-Revision-Date: 2010-11-27 16:04+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1772,10 +1772,9 @@ msgid "PBMS error" msgstr "error PBMS" #: libraries/blobstreaming.lib.php:267 -#, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" -msgstr "Cotejamiento de las conexiones MySQL" +msgstr "Falló la conexión PBMS:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" From 209fc84012726c67ae23efd93306a01a610a6629 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:05:28 +0200 Subject: [PATCH 623/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 01aad932a..7babc64fc 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:04+0200\n" +"PO-Revision-Date: 2010-11-27 16:05+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1778,7 +1778,7 @@ msgstr "Falló la conexión PBMS:" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "" +msgstr "Fallo al obtener la información del BLOB PBMS:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" From 44ab505fdbeaa362ef47eb08d9f70229f254683c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:06:00 +0200 Subject: [PATCH 624/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 7babc64fc..df5442289 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:05+0200\n" +"PO-Revision-Date: 2010-11-27 16:06+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1782,7 +1782,7 @@ msgstr "Fallo al obtener la información del BLOB PBMS:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "" +msgstr "Fallo en get BLOB Content-Type:" #: libraries/blobstreaming.lib.php:347 msgid "View image" From c1aa472a811a1fd32f511218e14d11d6326dfad2 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:06:16 +0200 Subject: [PATCH 625/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index df5442289..dd9c7d06a 100644 --- a/po/es.po +++ b/po/es.po @@ -1803,7 +1803,7 @@ msgstr "Descargar archivo" #: libraries/blobstreaming.lib.php:421 #, php-format msgid "Could not open file: %s" -msgstr "" +msgstr "No se pudo abrir el archivo: %s" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 From ce6339ee59813f288a57d8ad41cf2684f9fbacc8 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:06:34 +0200 Subject: [PATCH 626/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index dd9c7d06a..3b893db31 100644 --- a/po/es.po +++ b/po/es.po @@ -1836,9 +1836,8 @@ msgid "Overhead" msgstr "Residuo a depurar" #: libraries/build_html_for_db.lib.php:93 -#, fuzzy msgid "Jump to database" -msgstr "No hay bases de datos" +msgstr "Saltar a la base de datos" #: libraries/build_html_for_db.lib.php:130 #, fuzzy From 2ec6a08e41af92feaf10fd1aafc24a6cc81a1dcb Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:06:49 +0200 Subject: [PATCH 627/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 3b893db31..2c7c688b8 100644 --- a/po/es.po +++ b/po/es.po @@ -1840,9 +1840,8 @@ msgid "Jump to database" msgstr "Saltar a la base de datos" #: libraries/build_html_for_db.lib.php:130 -#, fuzzy msgid "Not replicated" -msgstr "Configuración del servidor" +msgstr "No replicado" #: libraries/build_html_for_db.lib.php:136 #, fuzzy From 15f3b7ad53796785bafb562f81e3441e10dc9860 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:06:59 +0200 Subject: [PATCH 628/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2c7c688b8..155d7e2c8 100644 --- a/po/es.po +++ b/po/es.po @@ -1844,10 +1844,9 @@ msgid "Not replicated" msgstr "No replicado" #: libraries/build_html_for_db.lib.php:136 -#, fuzzy #| msgid "Replication" msgid "Replicated" -msgstr "Replicación" +msgstr "Replicado" #: libraries/build_html_for_db.lib.php:150 #, php-format From a05139186af588aca91cdd4de78043df4dcdffa5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:07:10 +0200 Subject: [PATCH 629/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 155d7e2c8..133dfd197 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:06+0200\n" +"PO-Revision-Date: 2010-11-27 16:07+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1841,7 +1841,7 @@ msgstr "Saltar a la base de datos" #: libraries/build_html_for_db.lib.php:130 msgid "Not replicated" -msgstr "No replicado" +msgstr "Sin replicar" #: libraries/build_html_for_db.lib.php:136 #| msgid "Replication" From 1238ee98a4a034d6f971cf7ec27168564eb62429 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:07:16 +0200 Subject: [PATCH 630/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 133dfd197..c508e6e08 100644 --- a/po/es.po +++ b/po/es.po @@ -1846,7 +1846,7 @@ msgstr "Sin replicar" #: libraries/build_html_for_db.lib.php:136 #| msgid "Replication" msgid "Replicated" -msgstr "Replicado" +msgstr "Replicado/a" #: libraries/build_html_for_db.lib.php:150 #, php-format From 76f8b336982fea2faabab5c4e592a0fa8e9f7418 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:07:28 +0200 Subject: [PATCH 631/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c508e6e08..9ebc321dd 100644 --- a/po/es.po +++ b/po/es.po @@ -1851,7 +1851,7 @@ msgstr "Replicado/a" #: libraries/build_html_for_db.lib.php:150 #, php-format msgid "Check privileges for database "%s"." -msgstr "Revisar los privilegios para la base de datos "%s"." +msgstr "Comprobar los privilegios para la base de datos "%s"." #: libraries/build_html_for_db.lib.php:153 msgid "Check Privileges" From fc355a7039fe03c8e42bcc208db04a68b1f85131 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:07:39 +0200 Subject: [PATCH 632/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 9ebc321dd..1b2832144 100644 --- a/po/es.po +++ b/po/es.po @@ -1855,7 +1855,7 @@ msgstr "Comprobar los privilegios para la base de datos "%s"." #: libraries/build_html_for_db.lib.php:153 msgid "Check Privileges" -msgstr "Revisar los privilegios" +msgstr "Comprobar los privilegios" #: libraries/chart.lib.php:40 #, fuzzy From 887213814dbdf590b7a8d0dc41804d411868681d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:07:52 +0200 Subject: [PATCH 633/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1b2832144..57018618c 100644 --- a/po/es.po +++ b/po/es.po @@ -1858,10 +1858,9 @@ msgid "Check Privileges" msgstr "Comprobar los privilegios" #: libraries/chart.lib.php:40 -#, fuzzy #| msgid "Show statistics" msgid "Query statistics" -msgstr "Mostrar estadísticas" +msgstr "Estadísticas de Consulta" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" From 58c1ab9a6b0bdf657972f36ce4e8716045764b6f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:08:20 +0200 Subject: [PATCH 634/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 57018618c..ba8f4ff3b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:07+0200\n" +"PO-Revision-Date: 2010-11-27 16:08+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1864,7 +1864,7 @@ msgstr "Estadísticas de Consulta" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" -msgstr "" +msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)" #: libraries/chart.lib.php:83 #, fuzzy From 1f2a5220fff915be993db22205593b103f0a9f5f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:08:31 +0200 Subject: [PATCH 635/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index ba8f4ff3b..1bb0de085 100644 --- a/po/es.po +++ b/po/es.po @@ -1867,10 +1867,9 @@ msgid "Query execution time comparison (in microseconds)" msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)" #: libraries/chart.lib.php:83 -#, fuzzy #| msgid "Query results operations" msgid "Query results" -msgstr "Operaciones sobre los resultados de la consulta" +msgstr "Resultados de la Consulta" #: libraries/chart.lib.php:109 msgid "No data found for the chart." From 5e050c4e7394d8c36d9a8251b794ab31d16b23fe Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:08:48 +0200 Subject: [PATCH 636/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1bb0de085..995c3fe43 100644 --- a/po/es.po +++ b/po/es.po @@ -1873,7 +1873,7 @@ msgstr "Resultados de la Consulta" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "" +msgstr "No se encontraron datos para el gráfico." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." From d3a67ead4e1179c1c66e4cb3ff17dda0e93fcd19 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:09:05 +0200 Subject: [PATCH 637/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 995c3fe43..1b436648b 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:08+0200\n" +"PO-Revision-Date: 2010-11-27 16:09+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1877,7 +1877,7 @@ msgstr "No se encontraron datos para el gráfico." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "" +msgstr "Se necesita la extensión GD para los gráficos." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." From 9adf458dbeb1e534f5790c8acf165058d3a11e19 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:09:17 +0200 Subject: [PATCH 638/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1b436648b..b6ee1ea93 100644 --- a/po/es.po +++ b/po/es.po @@ -1873,7 +1873,7 @@ msgstr "Resultados de la Consulta" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "No se encontraron datos para el gráfico." +msgstr "No se encontraron datos para la gráfica." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." From dde82036422eddda0cd8efe8b4f8456201708ff4 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:09:25 +0200 Subject: [PATCH 639/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b6ee1ea93..aa3c641cb 100644 --- a/po/es.po +++ b/po/es.po @@ -1877,7 +1877,7 @@ msgstr "No se encontraron datos para la gráfica." #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "Se necesita la extensión GD para los gráficos." +msgstr "Se necesita la extensión GD para las gráficas." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." From 6e4d3acda6c212968a8008055fb6b0c087990090 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:10:12 +0200 Subject: [PATCH 640/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index aa3c641cb..e3c561b60 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:09+0200\n" +"PO-Revision-Date: 2010-11-27 16:10+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1881,7 +1881,7 @@ msgstr "Se necesita la extensión GD para las gráficas." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "" +msgstr "Se necesita el encoder JSON para las sugerencias en las gráficas" #: libraries/common.inc.php:571 msgid "" From 81425f938bb0b3941e443186142a7b3112674323 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:10:57 +0200 Subject: [PATCH 641/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e3c561b60..1777a7d24 100644 --- a/po/es.po +++ b/po/es.po @@ -1881,7 +1881,7 @@ msgstr "Se necesita la extensión GD para las gráficas." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "Se necesita el encoder JSON para las sugerencias en las gráficas" +msgstr "Se necesita el encoder JSON para los indicadores en las gráficas." #: libraries/common.inc.php:571 msgid "" From 81e248c97f7f2bb9c018a152b4f27ae3e5b0b0f5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:11:43 +0200 Subject: [PATCH 642/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1777a7d24..5767f8349 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:10+0200\n" +"PO-Revision-Date: 2010-11-27 16:11+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1881,7 +1881,7 @@ msgstr "Se necesita la extensión GD para las gráficas." #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "Se necesita el encoder JSON para los indicadores en las gráficas." +msgstr "Se necesita el encoder JSON para los globos de ayuda en las gráficas." #: libraries/common.inc.php:571 msgid "" From f6bf61f1ebf17f1b79b52d7d4c6a345263417b49 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:12:09 +0200 Subject: [PATCH 643/732] Translation update done using Pootle. --- po/es.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 5767f8349..6748613e3 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:11+0200\n" +"PO-Revision-Date: 2010-11-27 16:12+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1900,10 +1900,10 @@ msgstr "" "sitio.
Si recibe una página en blanco, todo está correcto." #: libraries/common.inc.php:582 -#, fuzzy, php-format +#, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" -msgstr "No fue posible cargar la configuración predeterminada desde: \"%1$s\"" +msgstr "No se pudo cargar la configuración predeterminada desde: \"%1$s\"" #: libraries/common.inc.php:587 msgid "" From 931ee5e0f907127fef1efb6d77856c25763024fb Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:12:19 +0200 Subject: [PATCH 644/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 6748613e3..8a24badd4 100644 --- a/po/es.po +++ b/po/es.po @@ -1910,8 +1910,8 @@ msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -"El contenido de $cfg['PmaAbsoluteUri'] ¡DEBE constar en config.inc." -"php!" +"El contenido de $cfg['PmaAbsoluteUri'] ¡DEBE constar en " +"config.inc.php!" #: libraries/common.inc.php:617 #, fuzzy, php-format From 99e74c929e5e689fbe9bee138a518e3ac890e09c Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:12:39 +0200 Subject: [PATCH 645/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 8a24badd4..191adc819 100644 --- a/po/es.po +++ b/po/es.po @@ -1914,7 +1914,7 @@ msgstr "" "config.inc.php!" #: libraries/common.inc.php:617 -#, fuzzy, php-format +#, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "No es válido el índice del servidor: \"%s\"" From 03f5b4805c9195d69783f8ffa756615c7fc2819a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:14:02 +0200 Subject: [PATCH 646/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 191adc819..dde747af9 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:12+0200\n" +"PO-Revision-Date: 2010-11-27 16:14+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1933,7 +1933,7 @@ msgstr "Servidor" #: libraries/common.inc.php:822 msgid "Invalid authentication method set in configuration:" -msgstr "El método de autenticación no es válido en la configuración actual:" +msgstr "Método de autenticación no válido diefinido en la configuración:" #: libraries/common.inc.php:926 #, php-format From d785a0e8588b0fd4d546c353ed4ce456ce558e28 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:14:25 +0200 Subject: [PATCH 647/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index dde747af9..d566c0def 100644 --- a/po/es.po +++ b/po/es.po @@ -1943,7 +1943,7 @@ msgstr "Usted debería actualizar su %s a la versión %s o más reciente." #: libraries/common.lib.php:145 #, php-format msgid "Max: %s%s" -msgstr "Tamaño máximo: %s%s" +msgstr "Máximo: %s%s" #. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:407 From fafe733af617277eb4397a9578d9c351c89fcbca Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:15:13 +0200 Subject: [PATCH 648/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index d566c0def..a2e202330 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:14+0200\n" +"PO-Revision-Date: 2010-11-27 16:15+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1977,10 +1977,9 @@ msgid "MySQL said: " msgstr "MySQL ha dicho: " #: libraries/common.lib.php:1078 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" -msgstr "No pudo conectarse con un servidor MySQL" +msgstr "No pudo conectarse a un validador de SQL!" #: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" From 59af3dd72579290e3552120eb7d797641eb55c3d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:15:33 +0200 Subject: [PATCH 649/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a2e202330..bc4607ec2 100644 --- a/po/es.po +++ b/po/es.po @@ -1983,7 +1983,7 @@ msgstr "No pudo conectarse a un validador de SQL!" #: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" -msgstr "Explicar el SQL" +msgstr "Explicar (Explain) SQL" #: libraries/common.lib.php:1122 msgid "Skip Explain SQL" From df0e42af84a24e6d1b8733843835817d9d35e551 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:16:00 +0200 Subject: [PATCH 650/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index bc4607ec2..4159354f1 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:15+0200\n" +"PO-Revision-Date: 2010-11-27 16:16+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -1983,7 +1983,7 @@ msgstr "No pudo conectarse a un validador de SQL!" #: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" -msgstr "Explicar (Explain) SQL" +msgstr "Explicar SQL (Explain)" #: libraries/common.lib.php:1122 msgid "Skip Explain SQL" From 183b14c66b483608fc4c3262fe3d894a00a851f5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:16:17 +0200 Subject: [PATCH 651/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 4159354f1..e6903f6f2 100644 --- a/po/es.po +++ b/po/es.po @@ -1987,7 +1987,7 @@ msgstr "Explicar SQL (Explain)" #: libraries/common.lib.php:1122 msgid "Skip Explain SQL" -msgstr "Salir de la explicación del SQL" +msgstr "Saltar la explicación del SQL (Explain)" #: libraries/common.lib.php:1156 msgid "Without PHP Code" From 3e27abf381b202fd5a2878cda880147da3760faa Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:16:42 +0200 Subject: [PATCH 652/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e6903f6f2..c77216cf3 100644 --- a/po/es.po +++ b/po/es.po @@ -2004,7 +2004,7 @@ msgstr "Actualizar" #: libraries/common.lib.php:1186 msgid "Skip Validate SQL" -msgstr "Salir de la validación del SQL" +msgstr "Saltar la validación del SQL" #: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" From 2a21d8626c2547e82bde445b01323573523e1bba Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:16:53 +0200 Subject: [PATCH 653/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index c77216cf3..77f377ee1 100644 --- a/po/es.po +++ b/po/es.po @@ -2008,7 +2008,7 @@ msgstr "Saltar la validación del SQL" #: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" -msgstr "Validar el SQL" +msgstr "Validar SQL" #: libraries/common.lib.php:1244 msgid "Inline edit of this query" From 84f044b66f2e6df136f470bad73d50c7e5839c99 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:17:00 +0200 Subject: [PATCH 654/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 77f377ee1..9f4004fab 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:16+0200\n" +"PO-Revision-Date: 2010-11-27 16:17+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2004,7 +2004,7 @@ msgstr "Actualizar" #: libraries/common.lib.php:1186 msgid "Skip Validate SQL" -msgstr "Saltar la validación del SQL" +msgstr "Saltar la validación de SQL" #: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" From d8d340a49281e9de2305eaf8072667be620a94bb Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:17:21 +0200 Subject: [PATCH 655/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 9f4004fab..88e1736f2 100644 --- a/po/es.po +++ b/po/es.po @@ -2012,7 +2012,7 @@ msgstr "Validar SQL" #: libraries/common.lib.php:1244 msgid "Inline edit of this query" -msgstr "" +msgstr "Edición en linea de esta consulta" #: libraries/common.lib.php:1246 #, fuzzy From 79e6a7bb1dafdd3c5bc5db12db74209ae8fd1704 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:17:32 +0200 Subject: [PATCH 656/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 88e1736f2..11d931616 100644 --- a/po/es.po +++ b/po/es.po @@ -2015,10 +2015,9 @@ msgid "Inline edit of this query" msgstr "Edición en linea de esta consulta" #: libraries/common.lib.php:1246 -#, fuzzy #| msgid "Engines" msgid "Inline" -msgstr "Motores" +msgstr "En línea" #: libraries/common.lib.php:1310 libraries/common.lib.php:1326 msgid "Profiling" From ad172b04643b52e25d579f8e3d9c63648ed18f86 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:17:49 +0200 Subject: [PATCH 657/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 11d931616..32dd35007 100644 --- a/po/es.po +++ b/po/es.po @@ -2021,7 +2021,7 @@ msgstr "En línea" #: libraries/common.lib.php:1310 libraries/common.lib.php:1326 msgid "Profiling" -msgstr "Perfil/Perfilamiento" +msgstr "Perfilando" #: libraries/common.lib.php:1331 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 From cef06fe2eda6b245a9ecc28ad70755be5820be35 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:18:10 +0200 Subject: [PATCH 658/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 32dd35007..1d26f23f6 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:17+0200\n" +"PO-Revision-Date: 2010-11-27 16:18+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From dace29e5e8ff989e70a212a7d488b05ec0f622bb Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:19:01 +0200 Subject: [PATCH 659/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1d26f23f6..221d1d2d8 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:18+0200\n" +"PO-Revision-Date: 2010-11-27 16:19+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From 7962a4ff9fec32156292695b7274dbc4e95daab6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:19:29 +0200 Subject: [PATCH 660/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 221d1d2d8..f3cfba7f8 100644 --- a/po/es.po +++ b/po/es.po @@ -2139,7 +2139,7 @@ msgstr "Operaciones" #: libraries/common.lib.php:2957 msgid "Browse your computer:" -msgstr "" +msgstr "Buscar en su ordenador:" #: libraries/common.lib.php:2970 #, fuzzy, php-format From 828e23be01abafb52db7fefeea7d84072a8a50f5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:19:58 +0200 Subject: [PATCH 661/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index f3cfba7f8..c58004468 100644 --- a/po/es.po +++ b/po/es.po @@ -2142,10 +2142,10 @@ msgid "Browse your computer:" msgstr "Buscar en su ordenador:" #: libraries/common.lib.php:2970 -#, fuzzy, php-format +#, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" -msgstr "directorio en el servidor web para subir los archivos" +msgstr "Seleccionar directorio en el servidor web para subir los archivos" #: libraries/common.lib.php:2982 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 From bf8d5035302d87bb39e413041354ae74e4227b2d Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:20:17 +0200 Subject: [PATCH 662/732] Translation update done using Pootle. --- po/es.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index c58004468..767da4b1f 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:19+0200\n" +"PO-Revision-Date: 2010-11-27 16:20+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2145,7 +2145,8 @@ msgstr "Buscar en su ordenador:" #, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" -msgstr "Seleccionar directorio en el servidor web para subir los archivos" +msgstr "" +"Seleccionar directorio en el servidor web para subir los archivos %s:" #: libraries/common.lib.php:2982 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 From 89c7989f950dbad66eedf1dc647d912fde0703e0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:20:59 +0200 Subject: [PATCH 663/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 767da4b1f..faea9999a 100644 --- a/po/es.po +++ b/po/es.po @@ -2152,7 +2152,7 @@ msgstr "" #: tbl_change.php:925 msgid "The directory you set for upload work cannot be reached" msgstr "" -"No está disponible el directorio que usted habilitó para subir las tareas" +"No se puede acceder al directorio que seleccionó para subir los archivos" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From e35ce850d0caf4b33b1103e3cbb4c9d2e8f5d61a Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:21:08 +0200 Subject: [PATCH 664/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index faea9999a..d043a64be 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:20+0200\n" +"PO-Revision-Date: 2010-11-27 16:21+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From d38ef4092abe2e0b8f1a310ba9b587184dccf1a6 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:21:16 +0200 Subject: [PATCH 665/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index d043a64be..e18deb81f 100644 --- a/po/es.po +++ b/po/es.po @@ -2158,9 +2158,8 @@ msgstr "" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 -#, fuzzy msgid "structure" -msgstr "Estructura" +msgstr "estructura" #: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From 070a644a1840b2165fd4ee1963dc3b954a5356c5 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:21:22 +0200 Subject: [PATCH 666/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e18deb81f..9fe28f1cb 100644 --- a/po/es.po +++ b/po/es.po @@ -2165,7 +2165,7 @@ msgstr "estructura" #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" -msgstr "" +msgstr "datos" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 From d8dfd5de4f630f85f2eeeeb6aceeb687d440f867 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:21:30 +0200 Subject: [PATCH 667/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 9fe28f1cb..44baffd04 100644 --- a/po/es.po +++ b/po/es.po @@ -2170,10 +2170,9 @@ msgstr "datos" #: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#, fuzzy #| msgid "Structure and data" msgid "structure and data" -msgstr "Estructura y datos" +msgstr "estructura y datos" #: libraries/config.values.php:99 libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options to configure" From ea9d80b944446cab00dacadef627dfb3787ea6dd Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:22:10 +0200 Subject: [PATCH 668/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 44baffd04..52a909c35 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:21+0200\n" +"PO-Revision-Date: 2010-11-27 16:22+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2176,7 +2176,7 @@ msgstr "estructura y datos" #: libraries/config.values.php:99 libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "Rápido - mostrar solo el mínimo de opciones a configurar" #: libraries/config.values.php:100 libraries/display_export.lib.php:129 msgid "Custom - display all possible options to configure" From 2650ce2b821f6e09650525f764c2ce7dce730452 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:22:50 +0200 Subject: [PATCH 669/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 52a909c35..15deecea6 100644 --- a/po/es.po +++ b/po/es.po @@ -2180,7 +2180,7 @@ msgstr "Rápido - mostrar solo el mínimo de opciones a configurar" #: libraries/config.values.php:100 libraries/display_export.lib.php:129 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "Personalizado - mostrar todas las opciones de configuración posibles" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" From 7e0dd1a65dc91f3241dbdecfcb3d5a1f086f454f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:23:13 +0200 Subject: [PATCH 670/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 15deecea6..d63e57b37 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:22+0200\n" +"PO-Revision-Date: 2010-11-27 16:23+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2176,7 +2176,7 @@ msgstr "estructura y datos" #: libraries/config.values.php:99 libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options to configure" -msgstr "Rápido - mostrar solo el mínimo de opciones a configurar" +msgstr "Rápido - mostrar solo el mínimo de opciones de configuración" #: libraries/config.values.php:100 libraries/display_export.lib.php:129 msgid "Custom - display all possible options to configure" From 364ad7881bd4f3951949ca6ec6637d6c1f3100dd Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:24:02 +0200 Subject: [PATCH 671/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index d63e57b37..2c7bf7742 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:23+0200\n" +"PO-Revision-Date: 2010-11-27 16:24+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2184,7 +2184,7 @@ msgstr "Personalizado - mostrar todas las opciones de configuración posibles" #: libraries/config.values.php:101 msgid "Custom - like above, but without the quick/custom choice" -msgstr "" +msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado" #: libraries/config.values.php:119 #, fuzzy From b74d9dabd860e4efbb7cee234e32b369370b48ba Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:24:17 +0200 Subject: [PATCH 672/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2c7bf7742..43478968d 100644 --- a/po/es.po +++ b/po/es.po @@ -2187,10 +2187,9 @@ msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado" #: libraries/config.values.php:119 -#, fuzzy #| msgid "Complete inserts" msgid "complete inserts" -msgstr "Completar los INSERTS" +msgstr "completar los INSERTS" #: libraries/config.values.php:120 #, fuzzy From e49beaa0c6028d5b3121e705767d6a4bc2ffc2da Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:24:22 +0200 Subject: [PATCH 673/732] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index 43478968d..3fefe00a3 100644 --- a/po/es.po +++ b/po/es.po @@ -2192,7 +2192,6 @@ msgid "complete inserts" msgstr "completar los INSERTS" #: libraries/config.values.php:120 -#, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "INSERTs extendidos" From 5cf4c4a2b0f29fe7b26db565b006bbe01ddca729 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:24:31 +0200 Subject: [PATCH 674/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 3fefe00a3..716af7239 100644 --- a/po/es.po +++ b/po/es.po @@ -2198,7 +2198,7 @@ msgstr "INSERTs extendidos" #: libraries/config.values.php:121 msgid "both of the above" -msgstr "" +msgstr "todo lo anterior" #: libraries/config.values.php:122 msgid "neither of the above" From 1714ea367a12f16852a0668f6a8a902f97cfb691 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:24:40 +0200 Subject: [PATCH 675/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 716af7239..880a202b7 100644 --- a/po/es.po +++ b/po/es.po @@ -2202,7 +2202,7 @@ msgstr "todo lo anterior" #: libraries/config.values.php:122 msgid "neither of the above" -msgstr "" +msgstr "ninguno de los anteriores" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:416 From 518a39300bda3b2b0c099980f0051afaaef2f248 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:24:56 +0200 Subject: [PATCH 676/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 880a202b7..1f14e54a6 100644 --- a/po/es.po +++ b/po/es.po @@ -2212,7 +2212,7 @@ msgstr "No es un número positivo" #: libraries/config/FormDisplay.class.php:84 #: libraries/config/validate.lib.php:429 msgid "Not a non-negative number" -msgstr "No es un número no negativo" +msgstr "No es un número no-negativo" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:403 From 7873730b53d5a4f61ed4aa8e881e13f0c9b349f8 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:25:03 +0200 Subject: [PATCH 677/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1f14e54a6..5a90f3636 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:24+0200\n" +"PO-Revision-Date: 2010-11-27 16:25+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From e3d01952f8acc104e569a2ae22cb2d9dbb7ea2c9 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:25:20 +0200 Subject: [PATCH 678/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 5a90f3636..e93406eed 100644 --- a/po/es.po +++ b/po/es.po @@ -2229,7 +2229,7 @@ msgstr "Valor incorrecto" #: libraries/config/validate.lib.php:458 #, php-format msgid "Value must be equal or lower than %s" -msgstr "" +msgstr "El valor debe ser igual o menor que %s" #: libraries/config/FormDisplay.class.php:535 #, php-format From fb6e96b35b0dd505442f7fdddc6968760ea9142f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:25:32 +0200 Subject: [PATCH 679/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index e93406eed..b24455590 100644 --- a/po/es.po +++ b/po/es.po @@ -2238,10 +2238,9 @@ msgstr "Faltan datos para %s" #: libraries/config/FormDisplay.class.php:727 #: libraries/config/FormDisplay.class.php:731 -#, fuzzy #| msgid "Variable" msgid "unavailable" -msgstr "Variable" +msgstr "no disponible" #: libraries/config/FormDisplay.class.php:728 #: libraries/config/FormDisplay.class.php:732 From 5c6de927da207e2a06f909c8172f6752ee5d4f6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 16:25:40 +0200 Subject: [PATCH 680/732] Translation update done using Pootle. --- po/lt.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 018b16de6..cd96f8221 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 15:45+0200\n" +"PO-Revision-Date: 2010-11-27 16:25+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -4644,7 +4644,6 @@ msgid "Options" msgstr "Nustatymai" #: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 -#, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Tekstus rodyti dalinai" From 91c5685657d07d4cdfd1aef34278640d247ddbce Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:25:48 +0200 Subject: [PATCH 681/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b24455590..a77272858 100644 --- a/po/es.po +++ b/po/es.po @@ -2246,7 +2246,7 @@ msgstr "no disponible" #: libraries/config/FormDisplay.class.php:732 #, php-format msgid "\"%s\" requires %s extension" -msgstr "" +msgstr "\"%s\" requiere la extensión %s" #: libraries/config/FormDisplay.class.php:746 #, php-format From cf0c0fc33ad698b0261aacf89f5dc6ee6df5273b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 16:25:53 +0200 Subject: [PATCH 682/732] Translation update done using Pootle. --- po/lt.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index cd96f8221..44c7413c3 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4649,7 +4649,6 @@ msgid "Partial texts" msgstr "Tekstus rodyti dalinai" #: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 -#, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tekstus rodyti pilnai" From 1cfea18639b65a1c4d34b61297facd12af1355cd Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:26:14 +0200 Subject: [PATCH 683/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a77272858..f51ebe2ab 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:25+0200\n" +"PO-Revision-Date: 2010-11-27 16:26+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2251,7 +2251,7 @@ msgstr "\"%s\" requiere la extensión %s" #: libraries/config/FormDisplay.class.php:746 #, php-format msgid "import will not work, missing function (%s)" -msgstr "" +msgstr "la importación no funcionará, falta una función (%s)" #: libraries/config/FormDisplay.class.php:750 #, php-format From 09d3f7f270e53cf00133812bfb0c8830162186cf Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:26:31 +0200 Subject: [PATCH 684/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index f51ebe2ab..96fd55f01 100644 --- a/po/es.po +++ b/po/es.po @@ -2256,7 +2256,7 @@ msgstr "la importación no funcionará, falta una función (%s)" #: libraries/config/FormDisplay.class.php:750 #, php-format msgid "export will not work, missing function (%s)" -msgstr "" +msgstr "la exportación no funcionará, falta una función (%s)" #: libraries/config/FormDisplay.class.php:757 msgid "SQL Validator is disabled" From bbcd6769dbcdbdebc325d0d9bd1d98f4d489576f Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:26:48 +0200 Subject: [PATCH 685/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 96fd55f01..31793a5bb 100644 --- a/po/es.po +++ b/po/es.po @@ -2260,7 +2260,7 @@ msgstr "la exportación no funcionará, falta una función (%s)" #: libraries/config/FormDisplay.class.php:757 msgid "SQL Validator is disabled" -msgstr "" +msgstr "El validador de SQL está desactivado" #: libraries/config/FormDisplay.class.php:764 #, fuzzy From 57efa475cdaa46dd2c5ca6a91b5279b7ffc146f1 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:27:03 +0200 Subject: [PATCH 686/732] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 31793a5bb..b33c91677 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:26+0200\n" +"PO-Revision-Date: 2010-11-27 16:27+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2263,10 +2263,9 @@ msgid "SQL Validator is disabled" msgstr "El validador de SQL está desactivado" #: libraries/config/FormDisplay.class.php:764 -#, fuzzy #| msgid "PHP extension to use" msgid "SOAP extension not found" -msgstr "extensión PHP para usar" +msgstr "extensión SOAP no encontrada" #: libraries/config/FormDisplay.class.php:772 #, fuzzy, php-format From 0d455da7752dbb0b2dd0c7ddd620c3073ec0f610 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:27:13 +0200 Subject: [PATCH 687/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b33c91677..f6e5e1bb9 100644 --- a/po/es.po +++ b/po/es.po @@ -2268,10 +2268,10 @@ msgid "SOAP extension not found" msgstr "extensión SOAP no encontrada" #: libraries/config/FormDisplay.class.php:772 -#, fuzzy, php-format +#, php-format #| msgid "Maximum tables" msgid "maximum %s" -msgstr "Número máximo de tablas" +msgstr "máximo %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" From 985439da708f86fb5c751cca5a53fc2c8dc51b16 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:27:50 +0200 Subject: [PATCH 688/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index f6e5e1bb9..d1990ce43 100644 --- a/po/es.po +++ b/po/es.po @@ -2275,7 +2275,7 @@ msgstr "máximo %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "" +msgstr "Esta opción está deshabilitada, no se aplicará a su configuración" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:83 #: libraries/relation.lib.php:90 pmd_relation_new.php:68 From 9943fc949a6f67997183ccc13c5659b464fca892 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:28:08 +0200 Subject: [PATCH 689/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index d1990ce43..00af8e717 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:27+0200\n" +"PO-Revision-Date: 2010-11-27 16:28+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2285,7 +2285,7 @@ msgstr "Deshabilitado" #: libraries/config/FormDisplay.tpl.php:248 #, php-format msgid "Set value: %s" -msgstr "Fijar el valor: %s" +msgstr "Valor establecido: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:347 From 3f8a10286ad60033431b53cef8d7669fb1bacb18 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:28:28 +0200 Subject: [PATCH 690/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 00af8e717..84e4a4baf 100644 --- a/po/es.po +++ b/po/es.po @@ -2290,7 +2290,7 @@ msgstr "Valor establecido: %s" #: libraries/config/FormDisplay.tpl.php:253 #: libraries/config/messages.inc.php:347 msgid "Restore default value" -msgstr "Restaurar los valores predeterminados" +msgstr "Restaurar valor predeterminado" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" From addc388523628aa1328f5eca5b26a524bb42fef3 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:28:42 +0200 Subject: [PATCH 691/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 84e4a4baf..814ea995b 100644 --- a/po/es.po +++ b/po/es.po @@ -2294,7 +2294,7 @@ msgstr "Restaurar valor predeterminado" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "" +msgstr "Permitir a los usuarios personalizar este valor" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 From e660facbe630a0f2f2519d80161afc46ef7c25a0 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:28:59 +0200 Subject: [PATCH 692/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 814ea995b..1aa095ed6 100644 --- a/po/es.po +++ b/po/es.po @@ -2302,7 +2302,7 @@ msgstr "Permitir a los usuarios personalizar este valor" #: setup/frames/index.inc.php:215 tbl_change.php:1029 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" -msgstr "Grabar" +msgstr "Guardar" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:140 From 8c1bbaeb90958a3a1ea1e2a63730c96f057ca508 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:29:03 +0200 Subject: [PATCH 693/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 1aa095ed6..317d00bf9 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:28+0200\n" +"PO-Revision-Date: 2010-11-27 16:29+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" From d9c72f899f5bb1dc0236e1621f27bbeb5ce89310 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:30:04 +0200 Subject: [PATCH 694/732] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 317d00bf9..e3ccabf28 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:29+0200\n" +"PO-Revision-Date: 2010-11-27 16:30+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2314,6 +2314,9 @@ msgstr "Reiniciar" msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" +"Si el usuario habilitado puede elegir cualquier servidor MySQL en el " +"formulario de inicio de sesión para la autenticación con cookies (cookie " +"auth)" #: libraries/config/messages.inc.php:18 msgid "Allow login to any MySQL server" From 7d5cb2f203117071c7ca0315d2e8ed3a01131295 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:30:13 +0200 Subject: [PATCH 695/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e3ccabf28..93ee82f5e 100644 --- a/po/es.po +++ b/po/es.po @@ -2320,7 +2320,7 @@ msgstr "" #: libraries/config/messages.inc.php:18 msgid "Allow login to any MySQL server" -msgstr "Permitir el login a cualquier servidor MySQL" +msgstr "Permitir el login en cualquier servidor MySQL" #: libraries/config/messages.inc.php:19 msgid "" From 48a4328f88d15f880ae2c31dacc26c55a483a0aa Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:31:59 +0200 Subject: [PATCH 696/732] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 93ee82f5e..2b2ea2c94 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:30+0200\n" +"PO-Revision-Date: 2010-11-27 16:31+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2328,6 +2328,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Habilitar esto permite que una página en un dominio distinto llame a " +"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de " +"seguridad[strong] que permite ataques de cross-frame scripting" #: libraries/config/messages.inc.php:20 msgid "Allow third party framing" From a0820a77d2e243d30bf3e68bc8f9dcaec2a3f985 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:32:21 +0200 Subject: [PATCH 697/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 2b2ea2c94..a5b36e3ea 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:31+0200\n" +"PO-Revision-Date: 2010-11-27 16:32+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2334,7 +2334,7 @@ msgstr "" #: libraries/config/messages.inc.php:20 msgid "Allow third party framing" -msgstr "" +msgstr "Permitir framing de terceros" #: libraries/config/messages.inc.php:21 msgid "Show "Drop database" link to normal users" From 4bf206c9f7e7e6ec2aa25aa30a8250061d854e10 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:33:19 +0200 Subject: [PATCH 698/732] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a5b36e3ea..58cc65921 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:32+0200\n" +"PO-Revision-Date: 2010-11-27 16:33+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2346,6 +2346,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Passphrase secreta que se usa para encriptar las cookies en la autenticación " +"con [kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:23 msgid "Blowfish secret" From 84f71d36bcdad673ff81e785580cdf8f481fa119 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:33:34 +0200 Subject: [PATCH 699/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 58cc65921..756055f60 100644 --- a/po/es.po +++ b/po/es.po @@ -2355,7 +2355,7 @@ msgstr "Secreto Blowfish" #: libraries/config/messages.inc.php:24 msgid "Highlight selected rows" -msgstr "" +msgstr "Resaltar las filas seleccionadas" #: libraries/config/messages.inc.php:25 msgid "Row marker" From 805b0cdff62c27cea7c446fb3febe255f57ead09 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:33:41 +0200 Subject: [PATCH 700/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 756055f60..362b8bb5e 100644 --- a/po/es.po +++ b/po/es.po @@ -2359,7 +2359,7 @@ msgstr "Resaltar las filas seleccionadas" #: libraries/config/messages.inc.php:25 msgid "Row marker" -msgstr "" +msgstr "Marcador de fila" #: libraries/config/messages.inc.php:26 msgid "Highlight row pointed by the mouse cursor" From 1924741e737afaf722d2efda45017bcfef98b904 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:33:59 +0200 Subject: [PATCH 701/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 362b8bb5e..48ccc4657 100644 --- a/po/es.po +++ b/po/es.po @@ -2363,7 +2363,7 @@ msgstr "Marcador de fila" #: libraries/config/messages.inc.php:26 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Resaltar las filas señaladas por el cursor del ratón" #: libraries/config/messages.inc.php:27 msgid "Highlight pointer" From 51044db26a58260b9b7d7974b4289c54c6b0be76 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:34:07 +0200 Subject: [PATCH 702/732] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 48ccc4657..b0859ee31 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:33+0200\n" +"PO-Revision-Date: 2010-11-27 16:34+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2367,7 +2367,7 @@ msgstr "Resaltar las filas señaladas por el cursor del ratón" #: libraries/config/messages.inc.php:27 msgid "Highlight pointer" -msgstr "" +msgstr "Resaltar puntero" #: libraries/config/messages.inc.php:28 msgid "" From 431ab6acf71f4a9818220a2df0e0980ee6ec190b Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:34:24 +0200 Subject: [PATCH 703/732] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b0859ee31..aab5dd2cb 100644 --- a/po/es.po +++ b/po/es.po @@ -2374,7 +2374,7 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"Habilite la compresión [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] para " +"Habilitar la compresión [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] para " "las operaciones de importación y exportación" #: libraries/config/messages.inc.php:29 From ad89619003b4f922f3c7efbe4116db3de4122a93 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:35:18 +0200 Subject: [PATCH 704/732] Translation update done using Pootle. --- po/es.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/es.po b/po/es.po index aab5dd2cb..79cd240de 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:34+0200\n" +"PO-Revision-Date: 2010-11-27 16:35+0200\n" "Last-Translator: \n" "Language-Team: spanish \n" "Language: es\n" @@ -2382,7 +2382,6 @@ msgid "Bzip2" msgstr "Bzip2" #: libraries/config/messages.inc.php:30 -#, fuzzy #| msgid "" #| "Defines which type of editing controls should be used for CHAR and " #| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]" @@ -2392,9 +2391,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" -"Define cuál tipo de control de edición se debe usar para los campos CHAR y " -"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud de input, [kbd]" -"textarea[/kbd] - permite líneas nuevas en los campos" +"Define qué tipo de control de edición se debe usar para los campos CHAR y " +"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud del input, " +"[kbd]textarea[/kbd] - permite líneas nuevas en los campos" #: libraries/config/messages.inc.php:31 #, fuzzy From 879f39e2047856384036b003848d46bd0d8223a1 Mon Sep 17 00:00:00 2001 From: davidbl06 Date: Sat, 27 Nov 2010 16:35:44 +0200 Subject: [PATCH 705/732] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 79cd240de..5e462da9b 100644 --- a/po/es.po +++ b/po/es.po @@ -2396,10 +2396,9 @@ msgstr "" "[kbd]textarea[/kbd] - permite líneas nuevas en los campos" #: libraries/config/messages.inc.php:31 -#, fuzzy #| msgid "CHAR fields editing" msgid "CHAR columns editing" -msgstr "Edición de campos CHAR" +msgstr "Edición de columnas CHAR" #: libraries/config/messages.inc.php:32 msgid "Number of columns for CHAR/VARCHAR textareas" From 76a32850a84f21629bb1be291ffab363198f554b Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:42:11 +0200 Subject: [PATCH 706/732] Translation update done using Pootle. --- po/lt.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/lt.po b/po/lt.po index 44c7413c3..bdfb951ff 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 16:25+0200\n" -"Last-Translator: Rytis Slatkevičius \n" +"PO-Revision-Date: 2010-11-27 18:42+0200\n" +"Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -6567,10 +6567,9 @@ msgstr "" "(nutylint: ...)." #: libraries/user_preferences.inc.php:32 -#, fuzzy #| msgid "Other core settings" msgid "Manage your settings" -msgstr "Kiti branduolio nustatymai" +msgstr "Keiskite savo nustatymus" #: libraries/user_preferences.inc.php:47 prefs_manage.php:291 msgid "Configuration has been saved" From 3db561ff7761904d9bac8826a187f203e4111c15 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:42:56 +0200 Subject: [PATCH 707/732] Translation update done using Pootle. --- po/lt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index bdfb951ff..a01687c73 100644 --- a/po/lt.po +++ b/po/lt.po @@ -2726,7 +2726,7 @@ msgstr "Galimybės" #: libraries/config/messages.inc.php:163 msgid "General" -msgstr "Bendrinis" +msgstr "Bendra" #: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" From fe851334f45c56063be7dbf6472747f868d8ed06 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:43:16 +0200 Subject: [PATCH 708/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index a01687c73..b6a5be14e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:42+0200\n" +"PO-Revision-Date: 2010-11-27 18:43+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3676,7 +3676,7 @@ msgstr "" #: libraries/config/messages.inc.php:391 msgid "Show only listed databases" -msgstr "" +msgstr "Rodyti tik šias duomenų bazes" #: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" From 5a260dde356ae3cbc39db0e17f96e145544f8cf4 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:47:24 +0200 Subject: [PATCH 709/732] Translation update done using Pootle. --- po/lt.po | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index b6a5be14e..cc8283420 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:43+0200\n" +"PO-Revision-Date: 2010-11-27 18:47+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3673,6 +3673,12 @@ msgid "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." msgstr "" +"Jūs galite naudoti MySQL pakaitos simbolius (% ir _), naudokite \\, jei " +"norite juos naudoti, tokius kokie yra, pvz. naudokite [kbd]'mano\\_db'[/kbd], " +"bet ne [kbd]'mano_db'[/kbd]. Naudodami šį nustatymą, jis taip pat galite " +"surikiuoti duomenų bazių sąrašą, tiesiog nurodykite jas norima tvarka ir " +"pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės " +"tvarka." #: libraries/config/messages.inc.php:391 msgid "Show only listed databases" From 01d503718f768d9a7e218d7d00c0e9774e485a32 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:48:12 +0200 Subject: [PATCH 710/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index cc8283420..4ad4c2c22 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:47+0200\n" +"PO-Revision-Date: 2010-11-27 18:48+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3629,7 +3629,7 @@ msgstr "Naudoti PHP išplėtimą" #: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" -msgstr "" +msgstr "Slėpti duomenų bazės, atitinkančias standartines išraiškas (PCRE)" #: libraries/config/messages.inc.php:382 msgid "Hide databases" From 6d98c181ee1ca2f0f04709c04f8d42522946072c Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:49:11 +0200 Subject: [PATCH 711/732] Translation update done using Pootle. --- po/lt.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index 4ad4c2c22..d2d746c81 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:48+0200\n" +"PO-Revision-Date: 2010-11-27 18:49+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3640,6 +3640,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" +"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: " +"[kbd]pma_history[/kbd]" #: libraries/config/messages.inc.php:384 msgid "SQL query history table" From f31614405f99f2729b1184201eea13c312cb9906 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:49:19 +0200 Subject: [PATCH 712/732] Translation update done using Pootle. --- po/lt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index d2d746c81..a11ab8919 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3645,7 +3645,7 @@ msgstr "" #: libraries/config/messages.inc.php:384 msgid "SQL query history table" -msgstr "SQL užklausų istorijos lentelė" +msgstr "SQL užklausų žurnalo lentelė" #: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" From a213d6ce18175715cf77defcb39c7e9819a5fad2 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:49:58 +0200 Subject: [PATCH 713/732] Translation update done using Pootle. --- po/lt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index a11ab8919..f6cc5b811 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3649,7 +3649,7 @@ msgstr "SQL užklausų žurnalo lentelė" #: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" -msgstr "" +msgstr "Kompiuterio, kuriame veikia MySQL serveris, pavadinimas" #: libraries/config/messages.inc.php:386 msgid "Server hostname" From 6fcfa50e7a382be3c625891476ee09bc27d0746f Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:58:07 +0200 Subject: [PATCH 714/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index f6cc5b811..c2b79cd0c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:49+0200\n" +"PO-Revision-Date: 2010-11-27 18:58+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3871,7 +3871,7 @@ msgstr "" #: libraries/config/messages.inc.php:432 msgid "Verbose check" -msgstr "" +msgstr "Išplėstinis patikrinimas" #: libraries/config/messages.inc.php:433 msgid "" From 753a7791120c0aaa6f350fd164a8749004186998 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 18:59:15 +0200 Subject: [PATCH 715/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index c2b79cd0c..77b5937da 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:58+0200\n" +"PO-Revision-Date: 2010-11-27 18:59+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -4159,7 +4159,7 @@ msgstr "" #: libraries/config/setup.forms.php:45 #| msgid "Authenticating..." msgid "Cookie authentication" -msgstr "Autentifikacija \"sausainiukais\"" +msgstr "Autentifikavimas slapukais" #: libraries/config/setup.forms.php:48 #| msgid "Authenticating..." From 9830f48951bde9abebf3dce1f3b18643876a956d Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 19:01:03 +0200 Subject: [PATCH 716/732] Translation update done using Pootle. --- po/lt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 77b5937da..9910cf0b7 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 18:59+0200\n" +"PO-Revision-Date: 2010-11-27 19:01+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -5247,8 +5247,8 @@ msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" -"Išvesti detales (įtraukiant tokią info kaip eksporto timestamp, PHP " -"versiją ir serverio versiją)" +"Išvesti detales (įtraukiant tokią info kaip eksporto eksportavimo laiką, " +"PHP versiją ir serverio versiją)" #: libraries/export/sql.php:35 msgid "Additional custom header comment (\\n splits lines):" From fe2afc3a4979f140ab285a9973e0f9f10e0f4637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:05:25 +0200 Subject: [PATCH 717/732] Translation update done using Pootle. --- po/lt.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 9910cf0b7..f2ef92eec 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:01+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-11-27 19:05+0200\n" +"Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -1608,6 +1608,7 @@ msgstr "" "skriptu%2$s, kad sukurtumėte failą." #: libraries/auth/config.auth.lib.php:115 +#, fuzzy msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " From 77e5364b5609aae528c81566d1fa416d219ec603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:05:54 +0200 Subject: [PATCH 718/732] Translation update done using Pootle. --- po/lt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index f2ef92eec..680ed9fa2 100644 --- a/po/lt.po +++ b/po/lt.po @@ -5254,7 +5254,7 @@ msgstr "" #: libraries/export/sql.php:35 msgid "Additional custom header comment (\\n splits lines):" msgstr "" -"Įterpti savo komentarą į antraštės sritį (eilutėms atskirti naudokite \n" +"Įterpti komentarą į antraštės sritį (eilutėms atskirti naudokite \n" "):" #: libraries/export/sql.php:37 From b93874facbd28635809b9c5d6ef3e5a39fc3ca22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:06:54 +0200 Subject: [PATCH 719/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 680ed9fa2..a5d922a4c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:05+0200\n" +"PO-Revision-Date: 2010-11-27 19:06+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -2600,7 +2600,7 @@ msgstr "Atsiminti failo vardo šabloną" #: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" -msgstr "" +msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" #: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 From b50e5b7bcbfa8f73d4f494174dc49535b84b43a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:07:24 +0200 Subject: [PATCH 720/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index a5d922a4c..3055e1a49 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:06+0200\n" +"PO-Revision-Date: 2010-11-27 19:07+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -2885,7 +2885,7 @@ msgstr "" #: libraries/config/messages.inc.php:201 msgid "Changes tracking" -msgstr "" +msgstr "Pakeitimų sekimas" #: libraries/config/messages.inc.php:202 msgid "" From f11f39743c8f1581285b8218158071a0cd904277 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 19:07:32 +0200 Subject: [PATCH 721/732] Translation update done using Pootle. --- po/lt.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index 3055e1a49..c9f8afce0 100644 --- a/po/lt.po +++ b/po/lt.po @@ -5,7 +5,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" "PO-Revision-Date: 2010-11-27 19:07+0200\n" -"Last-Translator: Rytis Slatkevičius \n" +"Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -2817,6 +2817,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" +"Nurodykite naršyklės pavadinimo juostos tekstą. Pasinaudokite " +"[a@Documentation.html#cfg_TitleTable]dokumentacija[/a] magiškiesiems " +"tekstams, kurie bus paversti specialiomis reikšmėmis." #: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 From bbbbef172f5dbba42e7621939b70717c9e15876f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:07:45 +0200 Subject: [PATCH 722/732] Translation update done using Pootle. --- po/lt.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index c9f8afce0..581d1b21a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -5,7 +5,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" "PO-Revision-Date: 2010-11-27 19:07+0200\n" -"Last-Translator: \n" +"Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -2895,6 +2895,8 @@ msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" +"Sekti duomenų bazėje atliktus pakeitimus. Reikia phpMyAdmin nustatymų " +"saugyklos." #: libraries/config/messages.inc.php:203 msgid "Customize export options" From 7695e661fd4b53b1a0cacf8a6f830f749cda7713 Mon Sep 17 00:00:00 2001 From: "edgaras.janusauskas" Date: Sat, 27 Nov 2010 19:08:11 +0200 Subject: [PATCH 723/732] Translation update done using Pootle. --- po/lt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 581d1b21a..b6cad8fea 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:07+0200\n" -"Last-Translator: Rytis Slatkevičius \n" +"PO-Revision-Date: 2010-11-27 19:08+0200\n" +"Last-Translator: \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -4092,7 +4092,7 @@ msgstr "Naršyklės lango pavadinimas kai serveris yra pasirinktas" #: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" -msgstr "Naršyklės lango pavadinimas kai lentelė yra pasirinkta" +msgstr "Naršyklės lango pavadinimas, kai pasirinkta lentelė" #: libraries/config/messages.inc.php:485 msgid "" From 3cc825636842af895a1ee2b213a8caab10e487ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:08:25 +0200 Subject: [PATCH 724/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index b6cad8fea..1e58afb88 100644 --- a/po/lt.po +++ b/po/lt.po @@ -5,7 +5,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" "PO-Revision-Date: 2010-11-27 19:08+0200\n" -"Last-Translator: \n" +"Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -3025,7 +3025,7 @@ msgstr "Dalinis importas: leisti pertrauktis" #: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "Nenutraukti įvykus INSERT klaidai" #: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 From 9ad1db43058e2bd6c0629c9e42cb91312332e4cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:09:43 +0200 Subject: [PATCH 725/732] Translation update done using Pootle. --- po/lt.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/lt.po b/po/lt.po index 1e58afb88..6cddf2b09 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:08+0200\n" +"PO-Revision-Date: 2010-11-27 19:09+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3392,6 +3392,9 @@ msgid "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" +"Išjungti standartinį perspėjimą kuris rodomas duomenų bazės struktūros " +"puslapyje, kai neįmanoma rasti phpMyAdmin nustatytų saugyklai reikalingų " +"lentelių" #: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" From 96e45259dce70cafe2b7e7dde0e24bce4978d7ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 19:10:54 +0200 Subject: [PATCH 726/732] Translation update done using Pootle. --- po/lt.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/lt.po b/po/lt.po index 6cddf2b09..92ec8e985 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:09+0200\n" +"PO-Revision-Date: 2010-11-27 19:10+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3413,7 +3413,6 @@ msgid "Protect binary columns" msgstr "Apsaugoti dvejetainius stulpelius" #: libraries/config/messages.inc.php:330 -#, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " #| "this utilizes JS-routines to display query history (lost by window close)." @@ -3422,9 +3421,9 @@ msgid "" "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -"Įjungti jeigu norite DB-paremtą užklausų istoriją (reikalauja pmadb). Jeigu " -"išjungta, naudoja JS-programas rodyti užklausų istoriją (prarandamos " -"uždarius langą)." +"Įjunkite, jeigu norite naudoti duomenų baze paremtą užklausų istoriją " +"(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja " +"JavaScript užklausų istorijai rodyti (prarandama uždarius langą)." #: libraries/config/messages.inc.php:331 msgid "Permanent query history" From cb698004251e5ac983f17ce2a4450e8d84e088c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 22:08:54 +0200 Subject: [PATCH 727/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 92ec8e985..436f85a5b 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 19:10+0200\n" +"PO-Revision-Date: 2010-11-27 22:08+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3544,7 +3544,7 @@ msgstr "" #: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" -msgstr "" +msgstr "Autentifikacijos tipas" #: libraries/config/messages.inc.php:362 msgid "" From bb915a9547c43560fff94ae525cb3a464f6a4f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 22:10:12 +0200 Subject: [PATCH 728/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 436f85a5b..3ed152383 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 22:08+0200\n" +"PO-Revision-Date: 2010-11-27 22:10+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3696,7 +3696,7 @@ msgstr "Rodyti tik šias duomenų bazes" #: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" -msgstr "" +msgstr "Palikite tuščią, jei nenaudojate autentifikacijos pagal nustatymus" #: libraries/config/messages.inc.php:393 msgid "Password for config auth" From 243df6b11ecd2928a6b65edd50616ba4eaa51973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 22:10:58 +0200 Subject: [PATCH 729/732] Translation update done using Pootle. --- po/lt.po | 3 +++ 1 file changed, 3 insertions(+) diff --git a/po/lt.po b/po/lt.po index 3ed152383..6cfe48f71 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3754,6 +3754,9 @@ msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" +"Žiūrėkite " +"[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentifikacijos " +"tipus[/a] dėl pavyzdžių" #: libraries/config/messages.inc.php:405 msgid "Signon session name" From f85b7b47a315b46b8376d2fcc90bb85097024396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 22:11:31 +0200 Subject: [PATCH 730/732] Translation update done using Pootle. --- po/lt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lt.po b/po/lt.po index 6cfe48f71..522b17859 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 22:10+0200\n" +"PO-Revision-Date: 2010-11-27 22:11+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -3768,7 +3768,7 @@ msgstr "Prisijungimo adresas" #: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" -msgstr "" +msgstr "Prievadas, kurio klausosi MySQL serveris, palikite tuščią įprastiniam" #: libraries/config/messages.inc.php:408 msgid "Server socket" From e2f1d1b85d224342f483d064249827c3aea782ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 22:15:56 +0200 Subject: [PATCH 731/732] Translation update done using Pootle. --- po/lt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 522b17859..162984cf6 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 22:11+0200\n" +"PO-Revision-Date: 2010-11-27 22:15+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -7714,8 +7714,8 @@ msgid "" "should see a message informing you, that this server is configured as " "master" msgstr "" -"Kai tik paleisite iš naujo MySQL serverį, prašome paspausi mygtuką Eiti. Po " -"to, Jūs turite pamatyti informacinę žinutę, kad šis serveris yra " +"Kai iš naujo paleisite MySQL serverį, prašome paspausti mygtuką Vykdyti. Po " +"to turėtumėte pamatyti informacinę žinutę, kad šis serveris yra " "sukonfigūruotas kaip pagrindinis (master)." #: server_replication.php:291 From b4dcbc060ca1fa42eb3bba1d2871b9a0eef6a830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C3=84=C2=8Dius?= Date: Sat, 27 Nov 2010 22:17:08 +0200 Subject: [PATCH 732/732] Translation update done using Pootle. --- po/lt.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/lt.po b/po/lt.po index 162984cf6..03b582224 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-11-20 07:34-0500\n" -"PO-Revision-Date: 2010-11-27 22:15+0200\n" +"PO-Revision-Date: 2010-11-27 22:17+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: lithuanian \n" "Language: lt\n" @@ -5899,8 +5899,9 @@ msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -"Įsitikinkite, kad server-id yra unikalus Jūsų konfigūraciniame faile (my." -"cnf). Jei ne tada prašome įdėti sekančią eilutę į [mysqld] skiltį:" +"Įsitikinkite, kad serverio identifikacinis numeris yra unikalus jūsų " +"nustatymų faile (my.cnf). Jei ne, tada įterpkite šią eilutę į [mysqld] " +"skiltį:" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254