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

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22130-g0b16d69
by Marc Delisle 02 Nov '11
by Marc Delisle 02 Nov '11
02 Nov '11
The branch, master has been updated
via 0b16d690d2e0119f5a5f80661701d3d4913f20b5 (commit)
via d22fae4201f299d4f3fcac1ac4bc136a422c5d26 (commit)
from 0ac705dc92fb7858d5697761882e35eff599bc8a (commit)
- Log -----------------------------------------------------------------
commit 0b16d690d2e0119f5a5f80661701d3d4913f20b5
Merge: 0ac705d d22fae4
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 12:41:13 2011 -0400
Fix merge conflicts
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/sqlparser.data.php | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d830787..2eb1eb0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -63,6 +63,7 @@ phpMyAdmin - ChangeLog
- bug #3430377 [interface] Deleted search results remain visible
- bug #3428627 [import] ODS import ignores memory limits
- bug #3426836 [interface] Visual column separation
+- bug #3428065 [parser] TRUE not recognized by parser
3.4.7.0 (2011-10-23)
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false
diff --git a/libraries/sqlparser.data.php b/libraries/sqlparser.data.php
index 9829c3a..0a86784 100644
--- a/libraries/sqlparser.data.php
+++ b/libraries/sqlparser.data.php
@@ -641,6 +641,7 @@ $PMA_SQPdata_reserved_word = array (
'TO',
'TRAILING',
'TRANSACTIONAL', // 5.1 ?
+ 'TRUE',
'TRUNCATE',
'TYPE',
'TYPES',
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_7-11-gd22fae4
by Marc Delisle 02 Nov '11
by Marc Delisle 02 Nov '11
02 Nov '11
The branch, QA_3_4 has been updated
via d22fae4201f299d4f3fcac1ac4bc136a422c5d26 (commit)
from 0b24e6943505fad97e7fba3263bf863cdb7c01dd (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/sqlparser.data.php | 3 ++-
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8a3bba9..e59ea1b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@ phpMyAdmin - ChangeLog
- bug #3430377 [interface] Deleted search results remain visible
- bug #3428627 [import] ODS import ignores memory limits
- bug #3426836 [interface] Visual column separation
+- bug #3428065 [parser] TRUE not recognized by parser
3.4.7.0 (2011-10-23)
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false
diff --git a/libraries/sqlparser.data.php b/libraries/sqlparser.data.php
index c7dacc6..9f2ea12 100644
--- a/libraries/sqlparser.data.php
+++ b/libraries/sqlparser.data.php
@@ -657,6 +657,7 @@ $PMA_SQPdata_reserved_word = array (
'TO',
'TRAILING',
'TRANSACTIONAL', // 5.1 ?
+ 'TRUE',
'TRUNCATE',
'TYPE',
'TYPES',
@@ -684,7 +685,7 @@ $PMA_SQPdata_reserved_word = array (
*
* @global integer MySQL reserved words count
*/
-$PMA_SQPdata_reserved_word_cnt = 287;
+$PMA_SQPdata_reserved_word_cnt = 288;
/**
* words forbidden to be used as column or table name wihtout quotes
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22128-g0ac705d
by Michal Čihař 02 Nov '11
by Michal Čihař 02 Nov '11
02 Nov '11
The branch, master has been updated
via 0ac705dc92fb7858d5697761882e35eff599bc8a (commit)
via 42600f277139bb896293a29d2bb426d650860364 (commit)
via 1d1df3776d7b73a35e807b86157e46b34214917b (commit)
via 878dbf05854ce216daf995963ff3c24356f3a941 (commit)
via d732736c2b59372a870f4f368a48c8134606942d (commit)
via 696ffa9199b0fb9e768046d71b3931ad4b8d21e2 (commit)
via a8f9bb76c62083d3425762956e6b154f74de2189 (commit)
via 952a52dbcab682295c2c11326cb4563b5e054c2d (commit)
via 8db5d9e4796474839c7a8a6be474e227a0ba4f55 (commit)
via 4bcc706f88f676b05cba22eaea67eaf05178d229 (commit)
via a59976350d1382c18189d4adfcac860190afc90e (commit)
via 318345fe87528141c25c684333cbd4bc226be558 (commit)
via 5797ec527c71ef2f8be23b40cc1a8810d8a737ee (commit)
via b7aff85956f905e4557385e5ddbc1408cf13be0b (commit)
via ce6002b4a5114cd91a7c7da23950b1ac93923762 (commit)
via 5c2d6948bc87500584f725f00b887a9ab0bcf263 (commit)
via afa28372ef2bf36f50469a5696098ae1c6ef6a2a (commit)
via 45c40519d320c282f5824fcabfea1831364765d8 (commit)
via 39b1310f72867c8942908c3b6c994a1b054ffeb3 (commit)
via 5f1a423104df5ab50b3aecb05d646b81950daf2b (commit)
via 79bee9427106efcb15487afadd707b3b6b881f60 (commit)
via 170ea727971a8b639d905edc5f17de3a4ae7ca6b (commit)
via 9fcc402d2e55348693437ab5d0e8409d8f45d819 (commit)
via 1a2b135994f7a6c08b87ae87fca28b8555318728 (commit)
via 3ebf8e95236459ddbc307fc2fb8ffc609b16db32 (commit)
via b69be060b356214c360aad5c59c2de89ab6ed66a (commit)
via ab17a6e1626cbca02187985baa912d0670045c0a (commit)
via 811b52ea0352cf1541dc0a9424685fd2043cc7fa (commit)
via 39b7d33bc3c74b058327be1bfefbd3d2343ad5f5 (commit)
via eb40cd26d613b1f3c72a9c517497ca7389742938 (commit)
via d87821c07b93cfdd348419acff1dbe0b3e2e3a17 (commit)
via 9b47be826a3678a023a019b1016f70173682586d (commit)
via af937e28cf52df8b72cb48a018408c1f67203cf4 (commit)
via 85989ae04a96cc92c86a85e80dcccaa5c56d92d2 (commit)
via 95967fe1c47c5824a438871a21861b5d2c446717 (commit)
via cce62362841513dcede43b9d5ffdeebcc66f1eea (commit)
via 3a6d5846a1a58fad47861c55e6e64b0047728708 (commit)
via ed94f47d74ef1ee179a3814cb3c8169b4e37d657 (commit)
via ad9f1fdc976c2d2ff312a98436c3563b7820b169 (commit)
via 4f278fd90a77bbc04a68de708210e9b9a60c1d32 (commit)
via d0bd9d9213816dd1e79179ad87c7c65aaa5bb2d3 (commit)
via c9503c77dbda1fcd646debf137a7f9155c811755 (commit)
via 94fae70dda357f407a01c6e4c72a8f02bf903496 (commit)
via db49975090111eb9855e00871953d3200ae1892b (commit)
from 6a5af526bb2c3a0a138b2255bb67381d379f4311 (commit)
- Log -----------------------------------------------------------------
commit 0ac705dc92fb7858d5697761882e35eff599bc8a
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 17:59:35 2011 +0200
Translation update done using Pootle.
commit 42600f277139bb896293a29d2bb426d650860364
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 17:59:10 2011 +0200
Translation update done using Pootle.
commit 1d1df3776d7b73a35e807b86157e46b34214917b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 17:38:51 2011 +0200
Translation update done using Pootle.
commit 878dbf05854ce216daf995963ff3c24356f3a941
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 17:09:56 2011 +0200
Translation update done using Pootle.
commit d732736c2b59372a870f4f368a48c8134606942d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:53:49 2011 +0200
Translation update done using Pootle.
commit 696ffa9199b0fb9e768046d71b3931ad4b8d21e2
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:53:34 2011 +0200
Translation update done using Pootle.
commit a8f9bb76c62083d3425762956e6b154f74de2189
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:45:41 2011 +0200
Translation update done using Pootle.
commit 952a52dbcab682295c2c11326cb4563b5e054c2d
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:45:22 2011 +0200
Translation update done using Pootle.
commit 8db5d9e4796474839c7a8a6be474e227a0ba4f55
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:43:55 2011 +0200
Translation update done using Pootle.
commit 4bcc706f88f676b05cba22eaea67eaf05178d229
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:42:02 2011 +0200
Translation update done using Pootle.
commit a59976350d1382c18189d4adfcac860190afc90e
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:39:54 2011 +0200
Translation update done using Pootle.
commit 318345fe87528141c25c684333cbd4bc226be558
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:37:23 2011 +0200
Translation update done using Pootle.
commit 5797ec527c71ef2f8be23b40cc1a8810d8a737ee
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:37:04 2011 +0200
Translation update done using Pootle.
commit b7aff85956f905e4557385e5ddbc1408cf13be0b
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:36:30 2011 +0200
Translation update done using Pootle.
commit ce6002b4a5114cd91a7c7da23950b1ac93923762
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:31:48 2011 +0200
Translation update done using Pootle.
commit 5c2d6948bc87500584f725f00b887a9ab0bcf263
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 16:23:45 2011 +0200
Translation update done using Pootle.
commit afa28372ef2bf36f50469a5696098ae1c6ef6a2a
Merge: 45c4051 6a5af52
Author: Pootle server <pootle(a)cihar.com>
Date: Wed Nov 2 14:40:12 2011 +0100
Merge remote-tracking branch 'origin/master'
commit 45c40519d320c282f5824fcabfea1831364765d8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:58:04 2011 +0200
Translation update done using Pootle.
commit 39b1310f72867c8942908c3b6c994a1b054ffeb3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:57:14 2011 +0200
Translation update done using Pootle.
commit 5f1a423104df5ab50b3aecb05d646b81950daf2b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:56:31 2011 +0200
Translation update done using Pootle.
commit 79bee9427106efcb15487afadd707b3b6b881f60
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:56:01 2011 +0200
Translation update done using Pootle.
commit 170ea727971a8b639d905edc5f17de3a4ae7ca6b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:55:45 2011 +0200
Translation update done using Pootle.
commit 9fcc402d2e55348693437ab5d0e8409d8f45d819
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:55:20 2011 +0200
Translation update done using Pootle.
commit 1a2b135994f7a6c08b87ae87fca28b8555318728
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:54:39 2011 +0200
Translation update done using Pootle.
commit 3ebf8e95236459ddbc307fc2fb8ffc609b16db32
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:54:23 2011 +0200
Translation update done using Pootle.
commit b69be060b356214c360aad5c59c2de89ab6ed66a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:52:27 2011 +0200
Translation update done using Pootle.
commit ab17a6e1626cbca02187985baa912d0670045c0a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:51:40 2011 +0200
Translation update done using Pootle.
commit 811b52ea0352cf1541dc0a9424685fd2043cc7fa
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:50:52 2011 +0200
Translation update done using Pootle.
commit 39b7d33bc3c74b058327be1bfefbd3d2343ad5f5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:49:17 2011 +0200
Translation update done using Pootle.
commit eb40cd26d613b1f3c72a9c517497ca7389742938
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:48:34 2011 +0200
Translation update done using Pootle.
commit d87821c07b93cfdd348419acff1dbe0b3e2e3a17
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:48:11 2011 +0200
Translation update done using Pootle.
commit 9b47be826a3678a023a019b1016f70173682586d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:45:04 2011 +0200
Translation update done using Pootle.
commit af937e28cf52df8b72cb48a018408c1f67203cf4
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:44:46 2011 +0200
Translation update done using Pootle.
commit 85989ae04a96cc92c86a85e80dcccaa5c56d92d2
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:44:32 2011 +0200
Translation update done using Pootle.
commit 95967fe1c47c5824a438871a21861b5d2c446717
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:44:13 2011 +0200
Translation update done using Pootle.
commit cce62362841513dcede43b9d5ffdeebcc66f1eea
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:43:15 2011 +0200
Translation update done using Pootle.
commit 3a6d5846a1a58fad47861c55e6e64b0047728708
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:42:56 2011 +0200
Translation update done using Pootle.
commit ed94f47d74ef1ee179a3814cb3c8169b4e37d657
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 11:42:08 2011 +0200
Translation update done using Pootle.
commit ad9f1fdc976c2d2ff312a98436c3563b7820b169
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Wed Nov 2 11:41:45 2011 +0200
Translation update done using Pootle.
commit 4f278fd90a77bbc04a68de708210e9b9a60c1d32
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 11:17:20 2011 +0200
Translation update done using Pootle.
commit d0bd9d9213816dd1e79179ad87c7c65aaa5bb2d3
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 11:17:11 2011 +0200
Translation update done using Pootle.
commit c9503c77dbda1fcd646debf137a7f9155c811755
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 11:15:29 2011 +0200
Translation update done using Pootle.
commit 94fae70dda357f407a01c6e4c72a8f02bf903496
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Nov 2 11:15:07 2011 +0200
Translation update done using Pootle.
commit db49975090111eb9855e00871953d3200ae1892b
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Wed Nov 2 11:14:36 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/fr.po | 57 +++++++++++++++++++++++++++-----------------------
po/sl.po | 8 ++++--
po/tr.po | 70 ++++++++++++++++++++++++++++++-------------------------------
3 files changed, 70 insertions(+), 65 deletions(-)
diff --git a/po/fr.po b/po/fr.po
index e775eab..2f072f3 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-10-26 17:07+0200\n"
+"PO-Revision-Date: 2011-11-02 11:57+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
"Language: fr\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:326
#: libraries/display_tbl.lib.php:358 server_privileges.php:1673
@@ -807,10 +807,9 @@ msgid "ENUM/SET editor"
msgstr "Éditeur ENUM/SET"
#: enum_editor.php:28 js/messages.php:246
-#, fuzzy
#| msgid "Values for the column \"%s\""
msgid "Values for a new column"
-msgstr "Valeurs pour la colonne «%s»"
+msgstr "Valeurs pour une nouvelle colonne"
#: enum_editor.php:30 js/messages.php:245
#, fuzzy, php-format
@@ -825,10 +824,9 @@ msgid "Enter each value in a separate field"
msgstr "Saisir chaque valeur dans un champ séparé."
#: enum_editor.php:121
-#, fuzzy
#| msgid "+ Add a value"
msgid "Add a value"
-msgstr "+ Ajouter une valeur"
+msgstr "Ajouter une valeur"
#: enum_editor.php:127 gis_data_editor.php:317
msgid "Output"
@@ -1745,10 +1743,10 @@ msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "La définition d'une fonction doit comporter un énoncé RETURN!"
#: js/messages.php:248
-#, fuzzy, php-format
+#, php-format
#| msgid "+ Add a value"
msgid "Add %d value(s)"
-msgstr "+ Ajouter une valeur"
+msgstr "Ajouter %d valeur(s)"
#: js/messages.php:251
msgid ""
@@ -3280,24 +3278,26 @@ msgid ""
"Defines the minimum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Définit la taille minimum des champs de saisie générés pour les colonnes "
+"CHAR et VARCHAR"
#: libraries/config/messages.inc.php:35
-#, fuzzy
#| msgid "Customize text input fields"
msgid "Minimum size for input field"
-msgstr "Personnaliser les champs de saisie"
+msgstr "Taille minimum des champs de saisie"
#: libraries/config/messages.inc.php:36
msgid ""
"Defines the maximum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Définit la taille maximum des champs de saisie générés pour les colonnes "
+"CHAR et VARCHAR"
#: libraries/config/messages.inc.php:37
-#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum size for input field"
-msgstr "Taille maximum pour les fichiers de tri temporaires"
+msgstr "Taille maximum pour les champs de saisie"
#: libraries/config/messages.inc.php:38
msgid "Number of columns for CHAR/VARCHAR textareas"
@@ -4623,12 +4623,13 @@ msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
+"Un serveur alternatif pour le stockage des configurations; laisser vide pour "
+"utiliser le serveur déjà défini"
#: libraries/config/messages.inc.php:386
-#, fuzzy
#| msgid "Control user"
msgid "Control host"
-msgstr "Utilisateur de contrôle"
+msgstr "Serveur de contrôle"
#: libraries/config/messages.inc.php:387
msgid "Count tables when showing database list"
@@ -12786,66 +12787,70 @@ msgstr ""
"par heure"
#: po/advisory_rules.php:185
-#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used open files limit"
-msgstr "Format du fichier d'importation"
+msgstr "Pourcentage du nombre de fichiers ouverts"
#: po/advisory_rules.php:186
msgid ""
"The number of open files is approaching the max number of open files. You "
"may get a \\\"Too many open files\\\" error."
-msgstr ""
+msgstr "Le nombre de fichiers ouverts s'approche du maximum."
#: po/advisory_rules.php:187 po/advisory_rules.php:192
msgid ""
"Consider increasing {open_files_limit}, and check the error log when "
"restarting after changing open_files_limit."
msgstr ""
+"Veuillez augmenter {open_files_limit}, et vérifier le journal des erreurs "
+"après avoir redémarré."
#: po/advisory_rules.php:188
#, php-format
msgid ""
"The number of opened files is at %s%% of the limit. It should be below 85%%"
msgstr ""
+"Le nombre de fichiers ouvert est à %s%% de la limite. Ce nombre devrait être "
+"sous 85%%"
#: po/advisory_rules.php:190
-#, fuzzy
#| msgid "Format of imported file"
msgid "Rate of open files"
-msgstr "Format du fichier d'importation"
+msgstr "Taux d'ouverture de fichiers"
#: po/advisory_rules.php:191
-#, fuzzy
#| msgid "The number of pending log file fsyncs."
msgid "The rate of opening files is high."
-msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
+msgstr "Le taux d'ouverture de fichiers est élevé."
#: po/advisory_rules.php:193
#, php-format
msgid "Opened files rate: %s, this value should be less than 5 per hour"
msgstr ""
+"Taux d'ouverture de fichiers : %s, cette valeur devrait être moins de 5 à "
+"l'heure"
#: po/advisory_rules.php:195
-#, fuzzy, php-format
+#, php-format
#| msgid "Create table on database %s"
msgid "Immediate table locks %%"
-msgstr "Créer une nouvelle table sur la base %s"
+msgstr "Pourcentage de verrouillage de tables"
#: po/advisory_rules.php:196 po/advisory_rules.php:201
-#, fuzzy
#| msgid "The number of times that a table lock was acquired immediately."
msgid "Too many table locks were not granted immediately."
-msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement."
+msgstr "Trop de verrous de table n'ont pas été acquis immédiatement."
#: po/advisory_rules.php:197 po/advisory_rules.php:202
msgid "Optimize queries and/or use InnoDB to reduce lock wait."
msgstr ""
+"Optimisez les requêtes ou passez à InnoDB pour réduire le temps d'attente de "
+"verrous."
#: po/advisory_rules.php:198
#, php-format
msgid "Immediate table locks: %s%%, this value should be above 95%%"
-msgstr ""
+msgstr "Verrous de table immédiats: %s%%, cette valeur devrait dépasser 95%%"
#: po/advisory_rules.php:200
msgid "Table lock wait rate"
diff --git a/po/sl.po b/po/sl.po
index f67bb18..e3c8cc5 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-11-02 00:48+0200\n"
+"PO-Revision-Date: 2011-11-02 17:59+0200\n"
"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
"Language: sl\n"
@@ -4589,16 +4589,18 @@ msgid "Control user"
msgstr "Krmilni uporabnik"
#: libraries/config/messages.inc.php:385
+#, fuzzy
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
+"Nadomestni gostitelj, ki ima shrambo konfiguracije; pustite prazno, če "
+"želite uporabiti že opredeljen gostitelj"
#: libraries/config/messages.inc.php:386
-#, fuzzy
#| msgid "Control user"
msgid "Control host"
-msgstr "Krmilni uporabnik"
+msgstr "Krmilni gostitelj"
#: libraries/config/messages.inc.php:387
msgid "Count tables when showing database list"
diff --git a/po/tr.po b/po/tr.po
index f0d96a7..0346177 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-10-25 13:16+0200\n"
+"PO-Revision-Date: 2011-11-02 17:09+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
"Language: tr\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:326
#: libraries/display_tbl.lib.php:358 server_privileges.php:1673
@@ -799,31 +799,28 @@ msgstr "Veritabanı Günlüğü"
#: enum_editor.php:23 js/messages.php:244
#: libraries/rte/rte_routines.lib.php:690
msgid "ENUM/SET editor"
-msgstr "ENUM/SET düzenleyicisi"
+msgstr "ENUM/SET düzenleyci"
#: enum_editor.php:28 js/messages.php:246
-#, fuzzy
#| msgid "Values for the column \"%s\""
msgid "Values for a new column"
-msgstr "\"%s\" sütunu için değerler"
+msgstr "Yeni bir sütun için değerler"
#: enum_editor.php:30 js/messages.php:245
-#, fuzzy, php-format
+#, php-format
#| msgid "Values for the column \"%s\""
msgid "Values for column %s"
-msgstr "\"%s\" sütunu için değerler"
+msgstr "%s sütunu için değerler"
#: enum_editor.php:34 js/messages.php:247
-#, fuzzy
#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
-msgstr "Her bir değeri ayrı alana girin."
+msgstr "Her bir değeri ayrı alana girin"
#: enum_editor.php:121
-#, fuzzy
#| msgid "+ Add a value"
msgid "Add a value"
-msgstr "+ Bir değer ekle"
+msgstr "Bir değer ekle"
#: enum_editor.php:127 gis_data_editor.php:317
msgid "Output"
@@ -1735,10 +1732,10 @@ msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!"
#: js/messages.php:248
-#, fuzzy, php-format
+#, php-format
#| msgid "+ Add a value"
msgid "Add %d value(s)"
-msgstr "+ Bir değer ekle"
+msgstr "%d değer ekle"
#: js/messages.php:251
msgid ""
@@ -3260,24 +3257,26 @@ msgid ""
"Defines the minimum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"CHAR ve VARCHAR sütunları için oluşturulmuş en az boyut girdi alanlarını "
+"tanımlar"
#: libraries/config/messages.inc.php:35
-#, fuzzy
#| msgid "Customize text input fields"
msgid "Minimum size for input field"
-msgstr "Metin giriş alanlarını özelleştirir"
+msgstr "Girdi alanı için en az boyut"
#: libraries/config/messages.inc.php:36
msgid ""
"Defines the maximum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"CHAR ve VARCHAR sütunları için oluşturulmuş en fazla boyut girdi alanlarını "
+"tanımlar"
#: libraries/config/messages.inc.php:37
-#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum size for input field"
-msgstr "Geçici sıralama dosyaları için en fazla boyut"
+msgstr "Girdi alanı için en fazla boyut"
#: libraries/config/messages.inc.php:38
msgid "Number of columns for CHAR/VARCHAR textareas"
@@ -3935,7 +3934,7 @@ msgstr "Metin alanları"
#: libraries/config/messages.inc.php:229
msgid "Customize text input fields"
-msgstr "Metin giriş alanlarını özelleştirir"
+msgstr "Metin girdi alanlarını özelleştirir"
#: libraries/config/messages.inc.php:230 libraries/export/texytext.php:18
msgid "Texy! text"
@@ -4601,12 +4600,13 @@ msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
+"Yapılandırma depolamasını tutmak için alternatif anamakine; zaten "
+"tanımlanmış anamakineyi kullanmak için boş bırakın"
#: libraries/config/messages.inc.php:386
-#, fuzzy
#| msgid "Control user"
msgid "Control host"
-msgstr "Denetim kullanıcısı"
+msgstr "Denetim anamakinesi"
#: libraries/config/messages.inc.php:387
msgid "Count tables when showing database list"
@@ -6542,9 +6542,7 @@ msgstr ""
#: libraries/export/sql.php:45
msgid "Additional custom header comment (\\n splits lines):"
-msgstr ""
-"İlave özel başlık yorumu (\n"
-" satırları böler):"
+msgstr "İlave özel başlık yorumu (\\n satırları böler):"
#: libraries/export/sql.php:50
msgid ""
@@ -6812,12 +6810,12 @@ msgstr ""
#: libraries/import/csv.php:190 libraries/import/csv.php:437
#, php-format
msgid "Invalid format of CSV input on line %d."
-msgstr "CSV girişinin %d. satırında geçersiz biçim."
+msgstr "%d. satırında CSV girdisinin geçersiz biçimi."
#: libraries/import/csv.php:325
#, php-format
msgid "Invalid column count in CSV input on line %d."
-msgstr "CSV girişinde %d. satırda geçersiz sütun sayısı."
+msgstr "CSV girdisinde %d. satırda geçersiz sütun sayısı."
#: libraries/import/docsql.php:28
msgid "DocSQL"
@@ -8014,7 +8012,7 @@ msgstr ""
"aşağıdaki MySQL sunucu hata çıktısı, sorunu teşhis etmenizde ayrıca size "
"yardımcı olabilir. Eğer hala sorunlarınız varsa ya da komut satırı arabirimi "
"başarılı olduğunda ayrıştırıcı başarısızsa, lütfen sorunlara neden olan SQL "
-"sorgu girişinizi tek bir sorguya indirgeyin ve aşağıdaki CUT bölümü içindeki "
+"sorgu girdinizi tek bir sorguya indirgeyin ve aşağıdaki CUT bölümü içindeki "
"veri yığını ile birlikte hata raporunu gönderin:"
#: libraries/sqlparser.lib.php:177
@@ -8254,15 +8252,15 @@ msgid ""
"(Default 1)."
msgstr ""
"SADECE LINUX: Harici bir uygulama çalıştırır ve sütun verisini standart "
-"giriş yoluyla besler. Uygulamanın standart çıktısı döner. Düzgün HTML kodu "
-"baskısı için varsayılan düzenlidir. Güvenlik nedeniyle libraries/"
-"transformations/text_plain__external.inc.php dosyasını elle düzenlemeli ve "
-"olmasını istediğiniz araçları listelemelisiniz. İlk seçenek kullanmak "
-"istediğiniz program sayısı ve ikinci seçenek program için parametrelerdir. "
-"Üçüncü seçenek, eğer 1'e ayarlanırsa, htmlspecialchars() işlevi kullanılarak "
-"çıktıyı dönüştürecektir (Varsayılan 1). Dördüncü seçenek, eğer 1'e "
-"ayarlanırsa, sözcük kaydırma korunacak ve tüm çıktı tek bir satırda "
-"görünecektir (Varsayılan 1)."
+"girdi yoluyla besler. Uygulamanın standart çıktısı döner. Düzgün HTML kodu "
+"baskısı için varsayılan düzenlidir. Güvenlik nedeniyle "
+"libraries/transformations/text_plain__external.inc.php dosyasını elle "
+"düzenlemeli ve olmasını istediğiniz araçları listelemelisiniz. İlk seçenek "
+"kullanmak istediğiniz program sayısı ve ikinci seçenek program için "
+"parametrelerdir. Üçüncü seçenek, eğer 1'e ayarlanırsa, htmlspecialchars() "
+"işlevi kullanılarak çıktıyı dönüştürecektir (Varsayılan 1). Dördüncü "
+"seçenek, eğer 1'e ayarlanırsa, sözcük kaydırma korunacak ve tüm çıktı tek "
+"bir satırda görünecektir (Varsayılan 1)."
#: libraries/transformations/text_plain__formatted.inc.php:10
msgid ""
@@ -9823,7 +9821,7 @@ msgid ""
msgstr ""
"İfadeler çalıştırılırken sunucu tarafından disk üzerindeki geçici tablo "
"sayıları otomatik olarak oluşturuldu. Eğer Created_tmp_disk_tables değeri "
-"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına "
+"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına "
"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz."
#: server_status.php:1297
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22084-g6a5af52
by Marc Delisle 02 Nov '11
by Marc Delisle 02 Nov '11
02 Nov '11
The branch, master has been updated
via 6a5af526bb2c3a0a138b2255bb67381d379f4311 (commit)
via 0b24e6943505fad97e7fba3263bf863cdb7c01dd (commit)
from aabc89141a3348ff3ca93719625e15d70784ead4 (commit)
- Log -----------------------------------------------------------------
commit 6a5af526bb2c3a0a138b2255bb67381d379f4311
Merge: aabc891 0b24e69
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 2 07:42:59 2011 -0400
Fix merge conflicts
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
themes/pmahomme/css/theme_right.css.php | 8 ++++++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 682b45b..d830787 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -62,6 +62,7 @@ phpMyAdmin - ChangeLog
- bug #3427256 [interface] no links to browse/empty views and tables
- bug #3430377 [interface] Deleted search results remain visible
- bug #3428627 [import] ODS import ignores memory limits
+- bug #3426836 [interface] Visual column separation
3.4.7.0 (2011-10-23)
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index 324f661..30edd54 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -57,7 +57,6 @@ h2 {
h2 img{display:none;}
h2 a img{display:inline;}
-
.data,
.data_full_width {
margin: 0 0 12px 0;
@@ -67,6 +66,10 @@ h2 a img{display:inline;}
width: 100%;
}
+#table_results td.data {
+border-right: 1px solid #444444;
+}
+
h3 {
font-weight: bold;
}
@@ -367,9 +370,10 @@ table tr.odd th,
}
/* even items 2,4,6,8,... */
+/* (tested on CRTs and ACLs) */
table tr.even th,
.even {
- background: #f3f3f3;
+ background: #DFDFDF;
<?php echo $_SESSION['PMA_Theme']->getCssIEClearFilter(); ?>
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_7-10-g0b24e69
by Marc Delisle 02 Nov '11
by Marc Delisle 02 Nov '11
02 Nov '11
The branch, QA_3_4 has been updated
via 0b24e6943505fad97e7fba3263bf863cdb7c01dd (commit)
from e2cb83aa24e1b750af2a4f83cfdfa9cab043988b (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
themes/pmahomme/css/theme_right.css.php | 6 +++++-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f852519..8a3bba9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@ phpMyAdmin - ChangeLog
- bug #3427256 [interface] no links to browse/empty views and tables
- bug #3430377 [interface] Deleted search results remain visible
- bug #3428627 [import] ODS import ignores memory limits
+- bug #3426836 [interface] Visual column separation
3.4.7.0 (2011-10-23)
- bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index fba2f23..048791a 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -65,7 +65,10 @@ h2 a img{display:inline;}
.data{
margin: 0 0 12px 0;
+}
+#table_results td.data {
+border-right: 1px solid #444444;
}
h3 {
@@ -372,9 +375,10 @@ table tr.odd th,
}
/* even items 2,4,6,8,... */
+/* (tested on CRTs and ACLs) */
table tr.even th,
.even {
- background: #f3f3f3;
+ background: #DFDFDF;
}
/* odd table rows 1,3,5,7,... */
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22082-gaabc891
by Michal Čihař 02 Nov '11
by Michal Čihař 02 Nov '11
02 Nov '11
The branch, master has been updated
via aabc89141a3348ff3ca93719625e15d70784ead4 (commit)
via 0d6852c4dc572bb78c33e5ef95f7415e341e7188 (commit)
via 63f9de8e9fbbfc8ea6a17cc902535e086fd2d64c (commit)
via 7426ddcd352dd209639df3a41b5abf5703833b73 (commit)
via 776fd8d57201325d190866eceeb0101d6da4608e (commit)
via 16bb26d55772b3fff7c90d032a6d43d1f57d5469 (commit)
via 3aa403e18a9db67a2ae779caf1e8d3f086903655 (commit)
via 7b55613b232b3212c509cd91dc8a54f4b2e3e342 (commit)
via 6d7d3be824216a697c7302f20f92a31da47369c4 (commit)
via 8d35c130fcaeb52d6b18ac72bde6829ded157a23 (commit)
via 2f15982e190f6b6f046e80807a9cbeca639146fc (commit)
via fdf51c969d55d552b317abd3d77b49bae165ca18 (commit)
via 51447a3ed0ebeb14cd93d098ba8a931c6e33c741 (commit)
via b47c42680d7a9785fdc381e575bf254d34430e0a (commit)
via fb3e1888487d3a86066c5f94784ac9f2bd88732c (commit)
via 49232cd56865d5d60b5207cb75fdf791cf1be93e (commit)
via 2274e2d64dcc28dad0a66260e0ab07e98be8f4c9 (commit)
via d1d87bffb5610a6f7af611bfb2c8be9918b2d576 (commit)
via c888a893ecfbb8f0715ccecf5d25396f480d6a54 (commit)
via 3c083943ee78227633b97f525dc62346ef64224a (commit)
via 5ff20344364d380a5eb44ab5766a904d06f9cae1 (commit)
via 91638871e8127bc098de806b5077fefa5d2ad758 (commit)
via 0c2d69303368ee5206f1ed77456efc8f4c4eb566 (commit)
via 7717d75803fc1ebdda2bb0c1edb6aa6bdea6a59c (commit)
via 4a88a63e90692656c718f68c71090973017675b9 (commit)
via e54b253e202efab401f9b7d012cb3a2c1bacdf07 (commit)
via 878c1f82dbd7ac29ed9368d2e7170b5208684a8a (commit)
via f6f68fc4ca376f02236251b5208b0f2173bf7625 (commit)
via 17bc4aaa164c106c840d18f2b2af85b3472deae3 (commit)
via ae09d06f3143eb7df5dc6d0671ca0e2cb3707bb9 (commit)
via 92c31806ac5c18d84f3f6557bb2cc0be26e24afc (commit)
via 5a6add53b69849ed22c845fa0af95ba06a59abd5 (commit)
via a2f3d2b25a92662584d26ad354ea2c6bc17c72e6 (commit)
from 96ec57c7b39093df498910b90a7cd7f8e79f2ffa (commit)
- Log -----------------------------------------------------------------
commit aabc89141a3348ff3ca93719625e15d70784ead4
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 00:48:35 2011 +0200
Translation update done using Pootle.
commit 0d6852c4dc572bb78c33e5ef95f7415e341e7188
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 00:48:02 2011 +0200
Translation update done using Pootle.
commit 63f9de8e9fbbfc8ea6a17cc902535e086fd2d64c
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 00:47:27 2011 +0200
Translation update done using Pootle.
commit 7426ddcd352dd209639df3a41b5abf5703833b73
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 00:47:19 2011 +0200
Translation update done using Pootle.
commit 776fd8d57201325d190866eceeb0101d6da4608e
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 00:46:26 2011 +0200
Translation update done using Pootle.
commit 16bb26d55772b3fff7c90d032a6d43d1f57d5469
Author: Domen <dbc334(a)gmail.com>
Date: Wed Nov 2 00:46:15 2011 +0200
Translation update done using Pootle.
commit 3aa403e18a9db67a2ae779caf1e8d3f086903655
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:40:32 2011 +0200
Translation update done using Pootle.
commit 7b55613b232b3212c509cd91dc8a54f4b2e3e342
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:39:07 2011 +0200
Translation update done using Pootle.
commit 6d7d3be824216a697c7302f20f92a31da47369c4
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:38:23 2011 +0200
Translation update done using Pootle.
commit 8d35c130fcaeb52d6b18ac72bde6829ded157a23
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:37:32 2011 +0200
Translation update done using Pootle.
commit 2f15982e190f6b6f046e80807a9cbeca639146fc
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:35:10 2011 +0200
Translation update done using Pootle.
commit fdf51c969d55d552b317abd3d77b49bae165ca18
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:34:47 2011 +0200
Translation update done using Pootle.
commit 51447a3ed0ebeb14cd93d098ba8a931c6e33c741
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:33:58 2011 +0200
Translation update done using Pootle.
commit b47c42680d7a9785fdc381e575bf254d34430e0a
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:33:31 2011 +0200
Translation update done using Pootle.
commit fb3e1888487d3a86066c5f94784ac9f2bd88732c
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:31:25 2011 +0200
Translation update done using Pootle.
commit 49232cd56865d5d60b5207cb75fdf791cf1be93e
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:30:38 2011 +0200
Translation update done using Pootle.
commit 2274e2d64dcc28dad0a66260e0ab07e98be8f4c9
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:30:26 2011 +0200
Translation update done using Pootle.
commit d1d87bffb5610a6f7af611bfb2c8be9918b2d576
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:29:49 2011 +0200
Translation update done using Pootle.
commit c888a893ecfbb8f0715ccecf5d25396f480d6a54
Author: ProUser <stefan(a)inkopsforum.se>
Date: Tue Nov 1 22:29:18 2011 +0200
Translation update done using Pootle.
commit 3c083943ee78227633b97f525dc62346ef64224a
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Tue Nov 1 22:28:44 2011 +0200
Translation update done using Pootle.
commit 5ff20344364d380a5eb44ab5766a904d06f9cae1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:25:53 2011 +0200
Translation update done using Pootle.
commit 91638871e8127bc098de806b5077fefa5d2ad758
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:25:42 2011 +0200
Translation update done using Pootle.
commit 0c2d69303368ee5206f1ed77456efc8f4c4eb566
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:24:43 2011 +0200
Translation update done using Pootle.
commit 7717d75803fc1ebdda2bb0c1edb6aa6bdea6a59c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:24:28 2011 +0200
Translation update done using Pootle.
commit 4a88a63e90692656c718f68c71090973017675b9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:24:11 2011 +0200
Translation update done using Pootle.
commit e54b253e202efab401f9b7d012cb3a2c1bacdf07
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:23:59 2011 +0200
Translation update done using Pootle.
commit 878c1f82dbd7ac29ed9368d2e7170b5208684a8a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:23:32 2011 +0200
Translation update done using Pootle.
commit f6f68fc4ca376f02236251b5208b0f2173bf7625
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:22:42 2011 +0200
Translation update done using Pootle.
commit 17bc4aaa164c106c840d18f2b2af85b3472deae3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:22:37 2011 +0200
Translation update done using Pootle.
commit ae09d06f3143eb7df5dc6d0671ca0e2cb3707bb9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:22:20 2011 +0200
Translation update done using Pootle.
commit 92c31806ac5c18d84f3f6557bb2cc0be26e24afc
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:22:08 2011 +0200
Translation update done using Pootle.
commit 5a6add53b69849ed22c845fa0af95ba06a59abd5
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Tue Nov 1 18:21:55 2011 +0200
Translation update done using Pootle.
commit a2f3d2b25a92662584d26ad354ea2c6bc17c72e6
Author: Pootle server <noreply(a)l10n.cihar.com>
Date: Tue Nov 1 18:21:40 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 39 +++++++++++++++++++--------------------
po/sl.po | 23 +++++++++++++----------
po/sv.po | 48 ++++++++++++++++++++++++------------------------
3 files changed, 56 insertions(+), 54 deletions(-)
diff --git a/po/es.po b/po/es.po
index 6e95585..5e7c1a1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-10-26 18:08+0200\n"
+"PO-Revision-Date: 2011-11-01 18:25+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
"Language: es\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:326
#: libraries/display_tbl.lib.php:358 server_privileges.php:1673
@@ -808,31 +808,28 @@ msgstr "Registro de la base de datos"
#: enum_editor.php:23 js/messages.php:244
#: libraries/rte/rte_routines.lib.php:690
msgid "ENUM/SET editor"
-msgstr "editor de ENUM/SET"
+msgstr "Editor de ENUM/SET"
#: enum_editor.php:28 js/messages.php:246
-#, fuzzy
#| msgid "Values for the column \"%s\""
msgid "Values for a new column"
-msgstr "Valores para la columna \"%s\""
+msgstr "Valores para una nueva columna"
#: enum_editor.php:30 js/messages.php:245
-#, fuzzy, php-format
+#, php-format
#| msgid "Values for the column \"%s\""
msgid "Values for column %s"
-msgstr "Valores para la columna \"%s\""
+msgstr "Valores para la columna %s"
#: enum_editor.php:34 js/messages.php:247
-#, fuzzy
#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
-msgstr "Insertar cada valor en un campo separado."
+msgstr "Ingresar cada valor en un campo separado"
#: enum_editor.php:121
-#, fuzzy
#| msgid "+ Add a value"
msgid "Add a value"
-msgstr "+ Agregar un valor"
+msgstr "Agregar un valor"
#: enum_editor.php:127 gis_data_editor.php:317
msgid "Output"
@@ -1754,10 +1751,10 @@ msgstr ""
"¡La definición de una función almacenada debe contener una sentencia RETURN!"
#: js/messages.php:248
-#, fuzzy, php-format
+#, php-format
#| msgid "+ Add a value"
msgid "Add %d value(s)"
-msgstr "+ Agregar un valor"
+msgstr "Agregar %d valor(es)"
#: js/messages.php:251
msgid ""
@@ -3299,25 +3296,26 @@ msgid ""
"Defines the minimum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Define el tamaño mínimo de los campos de entrada para columnas CHAR y "
+"VARCHAR"
#: libraries/config/messages.inc.php:35
-#, fuzzy
#| msgid "Customize text input fields"
msgid "Minimum size for input field"
-msgstr "Personalizar los campos de entrada de texto"
+msgstr "Tamaño mínimo para campos de entrada"
#: libraries/config/messages.inc.php:36
msgid ""
"Defines the maximum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Define el tamaño máximo de los campos de entrada para columnas CHAR y "
+"VARCHAR"
#: libraries/config/messages.inc.php:37
-#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum size for input field"
-msgstr ""
-"Tamaño máximo para los archivos temporales generados durante la organización"
+msgstr "Tamaño máximo para campos de entrada"
#: libraries/config/messages.inc.php:38
msgid "Number of columns for CHAR/VARCHAR textareas"
@@ -4655,12 +4653,13 @@ msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
+"Alternativa para guardar el almacenamiento de configuración; deje vacío para "
+"utilizar el ya definido"
#: libraries/config/messages.inc.php:386
-#, fuzzy
#| msgid "Control user"
msgid "Control host"
-msgstr "Controlar al usuario"
+msgstr "Anfitrión de control"
#: libraries/config/messages.inc.php:387
msgid "Count tables when showing database list"
diff --git a/po/sl.po b/po/sl.po
index 84665a6..f67bb18 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-11-01 13:19+0200\n"
+"PO-Revision-Date: 2011-11-02 00:48+0200\n"
"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:326
@@ -3259,6 +3259,8 @@ msgid ""
"Defines the minimum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Določa najmanjšo velikost vnosnih polj, ustvarjenih za stolpce CHAR in "
+"VARCHAR"
#: libraries/config/messages.inc.php:35
msgid "Minimum size for input field"
@@ -3269,6 +3271,8 @@ msgid ""
"Defines the maximum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Določa največjo velikost vnosnih polj, ustvarjenih za stolpce CHAR in "
+"VARCHAR"
#: libraries/config/messages.inc.php:37
msgid "Maximum size for input field"
@@ -5398,18 +5402,19 @@ msgid "possible deep recursion attack"
msgstr "možen napad globoke rekurzije"
#: libraries/database_interface.lib.php:1764
-#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
+msgstr ""
+"Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno "
+"konfigurirana)."
#: libraries/database_interface.lib.php:1766
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
-msgstr "Strežnik se ne odziva"
+msgstr "Strežnik se ne odziva."
#: libraries/database_interface.lib.php:1774
msgid "Details..."
@@ -7859,10 +7864,9 @@ msgid "Current Server"
msgstr "Trenutni strežnik"
#: libraries/server_links.inc.php:60
-#, fuzzy
#| msgid "User"
msgid "Users"
-msgstr "Uporabnik"
+msgstr "Uporabniki"
#: libraries/server_links.inc.php:79 server_synchronize.php:1154
#: server_synchronize.php:1162
@@ -11457,10 +11461,9 @@ msgid "Check referential integrity:"
msgstr "Preveri referenčno integriteto:"
#: tbl_printview.php:72
-#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
-msgstr "Pokaži tabele"
+msgstr "Prikazovanje tabel"
#: tbl_printview.php:269 tbl_structure.php:762
msgid "Space usage"
diff --git a/po/sv.po b/po/sv.po
index 3ba5ef0..6be0e78 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-10-12 23:15+0200\n"
-"Last-Translator: <stefan(a)inkopsforum.se>\n"
+"PO-Revision-Date: 2011-11-01 22:40+0200\n"
+"Last-Translator: ProUser <stefan(a)inkopsforum.se>\n"
"Language-Team: swedish <sv(a)li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Pootle 2.1.6\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:326
#: libraries/display_tbl.lib.php:358 server_privileges.php:1673
@@ -800,31 +800,28 @@ msgstr "Databas logg"
#: enum_editor.php:23 js/messages.php:244
#: libraries/rte/rte_routines.lib.php:690
msgid "ENUM/SET editor"
-msgstr ""
+msgstr "ENUM/SET editor"
#: enum_editor.php:28 js/messages.php:246
-#, fuzzy
#| msgid "Values for the column \"%s\""
msgid "Values for a new column"
-msgstr "Värden för kolumn \"%s\""
+msgstr "Värden för ny kolumn"
#: enum_editor.php:30 js/messages.php:245
-#, fuzzy, php-format
+#, php-format
#| msgid "Values for the column \"%s\""
msgid "Values for column %s"
-msgstr "Värden för kolumn \"%s\""
+msgstr "Värden för kolumn %s"
#: enum_editor.php:34 js/messages.php:247
-#, fuzzy
#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
-msgstr "Mata in varje värde i ett eget fält."
+msgstr "Mata in varje värde i separata fält"
#: enum_editor.php:121
-#, fuzzy
#| msgid "+ Add a value"
msgid "Add a value"
-msgstr "+ Lägg till ett värde"
+msgstr "Lägg till ett värde"
#: enum_editor.php:127 gis_data_editor.php:317
msgid "Output"
@@ -1732,10 +1729,10 @@ msgstr ""
"Definitionen av en sparad funktion måste innehålla en RETURN-programsats!"
#: js/messages.php:248
-#, fuzzy, php-format
+#, php-format
#| msgid "+ Add a value"
msgid "Add %d value(s)"
-msgstr "+ Lägg till ett värde"
+msgstr "Lägg till %d värde(n)"
#: js/messages.php:251
msgid ""
@@ -3252,24 +3249,26 @@ msgid ""
"Defines the minimum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Definierar minsta storlek för inmatningsfält skapade för CHAR och VARCHAR "
+"kolumner"
#: libraries/config/messages.inc.php:35
-#, fuzzy
#| msgid "Customize text input fields"
msgid "Minimum size for input field"
-msgstr "Anpassa textfält"
+msgstr "Minsta storlek för inmatningsfält"
#: libraries/config/messages.inc.php:36
msgid ""
"Defines the maximum size for input fields generated for CHAR and VARCHAR "
"columns"
msgstr ""
+"Anger den maximala storleken för inmatningsfält skapade för CHAR och VARCHAR "
+"kolumner"
#: libraries/config/messages.inc.php:37
-#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum size for input field"
-msgstr "Maximal storlek för temporära sorteringsfiler"
+msgstr "Maximal storlek för inmatningsfält"
#: libraries/config/messages.inc.php:38
msgid "Number of columns for CHAR/VARCHAR textareas"
@@ -4581,12 +4580,13 @@ msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
+"En alternativt värd för att hålla konfiguratione lagring, lämna tomt för att "
+"använda den aktuella värden"
#: libraries/config/messages.inc.php:386
-#, fuzzy
#| msgid "Control user"
msgid "Control host"
-msgstr "Kontrollanvändare"
+msgstr "Kontroll värd"
#: libraries/config/messages.inc.php:387
msgid "Count tables when showing database list"
@@ -5390,12 +5390,13 @@ msgid "possible deep recursion attack"
msgstr "möjlig djupgående rekursiv attack"
#: libraries/database_interface.lib.php:1764
-#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
+msgstr ""
+"Servern svarar inte (eller den lokala serverns socket är inte korrekt "
+"konfigurerad)."
#: libraries/database_interface.lib.php:1766
#, fuzzy
@@ -11424,10 +11425,9 @@ msgid "Check referential integrity:"
msgstr "Kontrollera referensintegritet:"
#: tbl_printview.php:72
-#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
-msgstr "Visa tabeller"
+msgstr "Visar tabeller"
#: tbl_printview.php:269 tbl_structure.php:762
msgid "Space usage"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22049-g96ec57c
by Michal Čihař 01 Nov '11
by Michal Čihař 01 Nov '11
01 Nov '11
The branch, master has been updated
via 96ec57c7b39093df498910b90a7cd7f8e79f2ffa (commit)
via be9faa3a31af4d9f924b088b747e295603e61f73 (commit)
via 8f4d88f3c265aed30dd94afea644232913ada6c6 (commit)
via ce11e15ee33e7d951b5635e12e089470d83efef6 (commit)
via 33d8cff55d29ae9be7995b96bd86161c148c732d (commit)
via 7caa32933aaa16c191627a807b89d11457cc2b5a (commit)
via 7eda49ded6580975d85e8948c869b7bd088d0d93 (commit)
via 114074a6ccb525fd06df6c836817a69f5f3b65e4 (commit)
via 8eb98edc9e34e19aaecfe3eedf1ad4e6f94c661a (commit)
via be21ca0565712eb9a785df6e7f2014cdc5111a22 (commit)
from cf90abf82c33c26230702818750eab5937bf63e3 (commit)
- Log -----------------------------------------------------------------
commit 96ec57c7b39093df498910b90a7cd7f8e79f2ffa
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:49:56 2011 +0200
Translation update done using Pootle.
commit be9faa3a31af4d9f924b088b747e295603e61f73
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:49:46 2011 +0200
Translation update done using Pootle.
commit 8f4d88f3c265aed30dd94afea644232913ada6c6
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:49:18 2011 +0200
Translation update done using Pootle.
commit ce11e15ee33e7d951b5635e12e089470d83efef6
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:48:31 2011 +0200
Translation update done using Pootle.
commit 33d8cff55d29ae9be7995b96bd86161c148c732d
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:47:06 2011 +0200
Translation update done using Pootle.
commit 7caa32933aaa16c191627a807b89d11457cc2b5a
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:46:24 2011 +0200
Translation update done using Pootle.
commit 7eda49ded6580975d85e8948c869b7bd088d0d93
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:46:24 2011 +0200
Translation update done using Pootle.
commit 114074a6ccb525fd06df6c836817a69f5f3b65e4
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:40:28 2011 +0200
Translation update done using Pootle.
commit 8eb98edc9e34e19aaecfe3eedf1ad4e6f94c661a
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:39:20 2011 +0200
Translation update done using Pootle.
commit be21ca0565712eb9a785df6e7f2014cdc5111a22
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:38:03 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 21 ++++++++++++---------
1 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index a6e32bf..65885eb 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-11-01 13:34+0100\n"
-"PO-Revision-Date: 2011-11-01 14:29+0200\n"
+"PO-Revision-Date: 2011-11-01 14:49+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"Language: cs\n"
@@ -1805,7 +1805,7 @@ msgstr "Klikněte na odkaz pro obnovení zvětšení pro návrat do původního
#: js/messages.php:281
msgid "Click a data point to view and possibly edit the data row."
-msgstr ""
+msgstr "Klikněte na datový bod pro zobrazení a případnou úpravu řádky."
#: js/messages.php:283
msgid "The plot can be resized by dragging it along the bottom right corner."
@@ -2437,6 +2437,8 @@ msgid ""
"after you refresh this page. Please check if the table structure has been "
"changed."
msgstr ""
+"Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení "
+"stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky."
#: libraries/Theme.class.php:145
#, php-format
@@ -2590,7 +2592,7 @@ msgstr "Authentizuji..."
#: libraries/blobstreaming.lib.php:272
msgid "PBMS error"
-msgstr "Chyba PDMS"
+msgstr "Chyba PBMS"
#: libraries/blobstreaming.lib.php:306
msgid "PBMS connection failed:"
@@ -6068,7 +6070,8 @@ msgid ""
"TABLE or when creating indexes with CREATE INDEX or ALTER TABLE."
msgstr ""
"Paměť, která je alokována při řazení MyISAM indexů během jejich vytváření "
-"příkazem CREATE INDEX nebo opravování příkazem ALTER TABLE."
+"příkazem CREATE INDEX nebo ALTER TABLE nebo opravování příkazem REPAIR "
+"TABLE."
#: libraries/engines/pbms.lib.php:30
msgid "Garbage Threshold"
@@ -7686,7 +7689,7 @@ msgstr "Tato stránka neobsahuje žádné tabulky!"
#: libraries/schema/Export_Relation_Schema.class.php:228
msgid "SCHEMA ERROR: "
-msgstr "Chyba při vytváření schéma: "
+msgstr "Chyba při vytváření schématu: "
#: libraries/schema/Pdf_Relation_Schema.class.php:858
#: libraries/schema/Pdf_Relation_Schema.class.php:1171
@@ -11784,9 +11787,11 @@ msgid "Percentage of slow queries"
msgstr "Procento pomalých dotazů"
#: po/advisory_rules.php:16
+#, fuzzy
msgid ""
"There is a lot of slow queries compared to the overall amount of Queries."
msgstr ""
+"Server provedl hodně pomalých dotazů v porovnání s celkovým počtem dotazů."
#: po/advisory_rules.php:17 po/advisory_rules.php:22
msgid ""
@@ -11800,10 +11805,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: po/advisory_rules.php:20
-#, fuzzy
#| msgid "Flush query cache"
msgid "Slow query rate"
-msgstr "Vyprázdnit vyrovnávací paměť dotazů"
+msgstr "Četnost pomalých dotazů"
#: po/advisory_rules.php:21
msgid ""
@@ -11818,10 +11822,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:25
-#, fuzzy
#| msgid "SQL queries"
msgid "Long query time"
-msgstr "SQL dotazy"
+msgstr "Doba pomalých dotazů"
#: po/advisory_rules.php:26
msgid ""
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22038-g3e566e5
by Michal Čihař 01 Nov '11
by Michal Čihař 01 Nov '11
01 Nov '11
The branch, master has been updated
via 3e566e54633fe04faa0b1341ff88eca3a21405a7 (commit)
via 5cc87e20e0302d6a01e6eca3ccb5dc6d4b6733d8 (commit)
via c88dee558bd42fbceda43a675f75dd3d6df27bbc (commit)
via 7c33ff3f5f2765c7fcaa3d6848f54b429271138f (commit)
via f9be0f9784bb64436b48953a56710d8eec985726 (commit)
via a516853b81b92acb4c0bb1b9044866bee4ae1b72 (commit)
via d299192043bce17f054bc649dcfe1aa6d1db866b (commit)
via e91b996f5dbe7b32724e9e039698082627d2f4e0 (commit)
via 8a72539013bdf13cfded8edc1cf783909b848572 (commit)
via de99ca275356371bede3512ce6c77125bd32c6e9 (commit)
via 5157908cd022ccb0fe3b0cd7737944e3a47b94cb (commit)
via d4a0f85a58d29c87e62ee7b19b059f613ecae09d (commit)
via a420d80c4e3e603a0c5229b2fdc570385f02efd9 (commit)
via d562da85c9f1cf8de22001dfce4cd486d1f8e83d (commit)
via 22aaa0d50cb98920ed37707e6eb9648064e32b0c (commit)
from af42ed27bda567130af8ba129eb99c5a8698818f (commit)
- Log -----------------------------------------------------------------
commit 3e566e54633fe04faa0b1341ff88eca3a21405a7
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Nov 1 13:31:13 2011 +0100
Update header
commit 5cc87e20e0302d6a01e6eca3ccb5dc6d4b6733d8
Merge: af42ed2 c88dee5
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Nov 1 13:30:50 2011 +0100
Merge remote-tracking branch 'pootle/master'
commit c88dee558bd42fbceda43a675f75dd3d6df27bbc
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:30:36 2011 +0200
Translation update done using Pootle.
commit 7c33ff3f5f2765c7fcaa3d6848f54b429271138f
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:29:33 2011 +0200
Translation update done using Pootle.
commit f9be0f9784bb64436b48953a56710d8eec985726
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:28:43 2011 +0200
Translation update done using Pootle.
commit a516853b81b92acb4c0bb1b9044866bee4ae1b72
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:27:58 2011 +0200
Translation update done using Pootle.
commit d299192043bce17f054bc649dcfe1aa6d1db866b
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:27:07 2011 +0200
Translation update done using Pootle.
commit e91b996f5dbe7b32724e9e039698082627d2f4e0
Author: Balázs Úr <urbalazs(a)gmail.com>
Date: Tue Nov 1 14:26:54 2011 +0200
Translation update done using Pootle.
commit 8a72539013bdf13cfded8edc1cf783909b848572
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:26:36 2011 +0200
Translation update done using Pootle.
commit de99ca275356371bede3512ce6c77125bd32c6e9
Author: Balázs Úr <urbalazs(a)gmail.com>
Date: Tue Nov 1 14:26:35 2011 +0200
Translation update done using Pootle.
commit 5157908cd022ccb0fe3b0cd7737944e3a47b94cb
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Nov 1 14:25:46 2011 +0200
Translation update done using Pootle.
commit d4a0f85a58d29c87e62ee7b19b059f613ecae09d
Author: Balázs Úr <urbalazs(a)gmail.com>
Date: Tue Nov 1 14:21:20 2011 +0200
Translation update done using Pootle.
commit a420d80c4e3e603a0c5229b2fdc570385f02efd9
Author: Balázs Úr <urbalazs(a)gmail.com>
Date: Tue Nov 1 14:18:12 2011 +0200
Translation update done using Pootle.
commit d562da85c9f1cf8de22001dfce4cd486d1f8e83d
Author: Balázs Úr <urbalazs(a)gmail.com>
Date: Tue Nov 1 14:16:56 2011 +0200
Translation update done using Pootle.
commit 22aaa0d50cb98920ed37707e6eb9648064e32b0c
Author: Balázs Úr <urbalazs(a)gmail.com>
Date: Tue Nov 1 14:16:01 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 22 +++++++++++++++++-----
po/hu.po | 20 +++++++++++++-------
2 files changed, 30 insertions(+), 12 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index eb5044d..c67e137 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,5 +1,3 @@
-# Automatically generated <>, 2010.
-# Michal <michal(a)cihar.com>, 2010.
# Michal Čihař <michal(a)cihar.com>, 2010, 2011.
#
msgid ""
@@ -7,7 +5,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-30 05:35-0400\n"
-"PO-Revision-Date: 2011-11-01 12:54+0200\n"
+"PO-Revision-Date: 2011-11-01 14:29+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"Language: cs\n"
@@ -1504,6 +1502,9 @@ msgid ""
"However only the SQL query itself has been used as a grouping criteria, so "
"the other attributes of queries, such as start time, may differ."
msgstr ""
+"Tento sloupec ukazuje množství stejných dotazů, které jsou seskupeny "
+"dohromady. K seskupení byl však použit jen SQL dotaz, takže další vlastnosti "
+"dotazů, jako například čas jeho spuštění, se mohou lišit."
#: js/messages.php:166
msgid ""
@@ -1511,6 +1512,8 @@ msgid ""
"same table are also being grouped together, disregarding of the inserted "
"data."
msgstr ""
+"Vzhledem k tomu, že bylo zvoleno seskupení dotazů INSERT, jsou tyto dotazy "
+"pro jednu tabulku sloučeny dohromady, bez ohledu na skutečně vkládaná data."
#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
@@ -1800,7 +1803,7 @@ msgstr "Kliknutím a táhnutím myší se můžete po grafu pohybovat."
#: js/messages.php:279
msgid "Click reset zoom link to come back to original state."
-msgstr ""
+msgstr "Klikněte na odkaz pro obnovení zvětšení pro návrat do původního stavu."
#: js/messages.php:281
msgid "Click a data point to view and possibly edit the data row."
@@ -4569,7 +4572,7 @@ msgstr "Kontrolní uživatel"
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
-msgstr ""
+msgstr "Jiný server na kterém bude umístěno úložiště nastavení phpMyAdmina"
#: libraries/config/messages.inc.php:386
#| msgid "Control user"
@@ -9575,6 +9578,9 @@ msgid ""
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
+"Prosím uvědomte si si však, že tento systém poskytuje doporučení na základě "
+"jednoduchých výpočtů a základních pravidel, která nemusí nutně platit pro "
+"váš systém."
#: server_status.php:904
msgid ""
@@ -9582,6 +9588,9 @@ msgid ""
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
+"Než změníte některá z nastavení, ujistěte se, že víte, co chcete změnit "
+"(čtením dokumentace) a jak případně vrátit změny zpět. Špatné nastavení může "
+"mít velmi negativní vliv na výkon serveru."
#: server_status.php:906
msgid ""
@@ -9589,6 +9598,9 @@ msgid ""
"time, observe or benchmark your database, and undo the change if there was "
"no clearly measurable improvement."
msgstr ""
+"Nejlepší způsob jak vyladit váš systém je měnit pouze jedno nastavení a "
+"sledovat výsledky případně provést zátěžové testy. Pokud nedošlo ke "
+"znatelnému zlepšení, můžete nastavení vrátit zpět."
#. l10n: Questions is the name of a MySQL Status variable
#: server_status.php:928
diff --git a/po/hu.po b/po/hu.po
index 9ddf434..beb13ae 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-24 17:47+0200\n"
-"PO-Revision-Date: 2011-11-01 14:14+0200\n"
+"PO-Revision-Date: 2011-11-01 14:26+0200\n"
"Last-Translator: Balázs Úr <urbalazs(a)gmail.com>\n"
"Language-Team: hungarian <hu(a)li.org>\n"
"Language: hu\n"
@@ -3129,7 +3129,7 @@ msgstr "A <tt>$cfg['PmaAbsoluteUri']</tt> utasítás értékét a konfiguráció
#: libraries/common.inc.php:640
#, php-format
msgid "Invalid server index: %s"
-msgstr "Érvénytelen szerverindex: \"%s\""
+msgstr "Érvénytelen szerverindex: %s"
#: libraries/common.inc.php:647
#, php-format
@@ -3304,7 +3304,7 @@ msgstr "EiB"
#: libraries/common.lib.php:1627
msgctxt "Short week day name"
msgid "Sun"
-msgstr "V"
+msgstr "Vas"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
#: libraries/common.lib.php:1643
@@ -3662,7 +3662,10 @@ msgstr "Bármilyen MySQL-szerverre történő bejelentkezés engedélyezése"
#: libraries/config/messages.inc.php:21
msgid "Enabling this allows a page located on a different domain to call phpMyAdmin inside a frame, and is a potential [strong]security hole[/strong] allowing cross-frame scripting attacks"
-msgstr "Ezt engedélyezve egy másik domain-on lévő oldal meg tudja hívni a phpMyAdmin-t egy kereten belül, és ez egy potenciális [strong]biztonsági rés[/strong], ami lehetővé teszi a \"cross-frame scripting\" támadásokat"
+msgstr ""
+"Ezt engedélyezve egy másik domain-on lévő oldal meg tudja hívni a "
+"phpMyAdmin-t egy kereten belül, és ez egy potenciális [strong]biztonsági "
+"rés[/strong], ami lehetővé teszi a cross-frame scripting támadásokat"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
@@ -5014,10 +5017,9 @@ msgid "This configuration make sure that we only keep N (N = MaxTableUiprefs) ne
msgstr ""
#: libraries/config/messages.inc.php:397
-#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "A táblalistában megjelenítendő táblák száma"
+msgstr "A \"table_uiprefs\" táblába elmentett maximális rekordok száma"
#: libraries/config/messages.inc.php:398
msgid "Try to connect without password"
@@ -8644,7 +8646,11 @@ msgstr "Változások listája"
#: main.php:249
msgid "Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole by setting a password for user 'root'."
-msgstr "A konfigurációs fájl olyan beállításokat (jelszó nélküli root hozzáférés) tartalmaz, melyek megegyeznek az alapértelmezett MySQL jogosult fiókéval. A MySQL szerver most ezzel az alapbeállítással fut, behatolásra nyitott. Javítsa ezt a biztonsági rést."
+msgstr ""
+"A konfigurációs fájl olyan beállításokat tartalmaz (jelszó nélküli root "
+"hozzáférés), amelyek megegyeznek az alapértelmezett MySQL jogosult fiókéval. "
+"A MySQL szerver most ezzel az alapbeállítással fut, behatolásra nyitott, "
+"ezért javítsa ezt a biztonsági rést a 'root' felhasználónak adott jelszóval."
#: main.php:257
msgid "You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause some data to be corrupted!"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7-22023-gaf42ed2
by Michal Čihař 01 Nov '11
by Michal Čihař 01 Nov '11
01 Nov '11
The branch, master has been updated
via af42ed27bda567130af8ba129eb99c5a8698818f (commit)
via e2cb83aa24e1b750af2a4f83cfdfa9cab043988b (commit)
from e16a3915f2d3bcd5d7af26451d2e003f21b416e5 (commit)
- Log -----------------------------------------------------------------
commit af42ed27bda567130af8ba129eb99c5a8698818f
Merge: e16a391 e2cb83a
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Nov 1 13:18:25 2011 +0100
Merge remote-tracking branch 'origin/QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_7-9-ge2cb83a
by Michal Čihař 01 Nov '11
by Michal Čihař 01 Nov '11
01 Nov '11
The branch, QA_3_4 has been updated
via e2cb83aa24e1b750af2a4f83cfdfa9cab043988b (commit)
from a691fce64ca56c90d0d4b9af525a785d95eabd6b (commit)
- Log -----------------------------------------------------------------
commit e2cb83aa24e1b750af2a4f83cfdfa9cab043988b
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Nov 1 13:16:53 2011 +0100
Update translations from master
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 2 +-
po/ar.po | 2 +-
po/az.po | 2 +-
po/be.po | 2 +-
po/be(a)latin.po | 2 +-
po/bg.po | 16 +++++-----
po/bn.po | 2 +-
po/br.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/cy.po | 2 +-
po/da.po | 2 +-
po/de.po | 2 +-
po/el.po | 2 +-
po/en_GB.po | 2 +-
po/es.po | 2 +-
po/et.po | 2 +-
po/eu.po | 53 ++++++++++++++++++-------------
po/fa.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/gl.po | 2 +-
po/he.po | 2 +-
po/hi.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 95 ++++++++++++++++++++++++++++++++++++++++----------------
po/id.po | 2 +-
po/it.po | 2 +-
po/ja.po | 2 +-
po/ka.po | 2 +-
po/ko.po | 2 +-
po/lt.po | 2 +-
po/lv.po | 2 +-
po/mk.po | 2 +-
po/ml.po | 2 +-
po/mn.po | 2 +-
po/ms.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 2 +-
po/pl.po | 2 +-
po/pt.po | 2 +-
po/pt_BR.po | 2 +-
po/ro.po | 4 +-
po/ru.po | 2 +-
po/si.po | 2 +-
po/sk.po | 2 +-
po/sl.po | 2 +-
po/sq.po | 2 +-
po/sr.po | 2 +-
po/sr(a)latin.po | 2 +-
po/sv.po | 2 +-
po/ta.po | 2 +-
po/te.po | 2 +-
po/th.po | 2 +-
po/tr.po | 2 +-
po/tt.po | 2 +-
po/ug.po | 2 +-
po/uk.po | 2 +-
po/ur.po | 2 +-
po/uz.po | 2 +-
po/uz(a)latin.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
64 files changed, 169 insertions(+), 119 deletions(-)
diff --git a/po/af.po b/po/af.po
index eaec6ec..dd7e3b5 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
diff --git a/po/ar.po b/po/ar.po
index 66c10c9..826bfed 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
diff --git a/po/az.po b/po/az.po
index 27757c3..127733d 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
diff --git a/po/be.po b/po/be.po
index 3e63938..1479c8f 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 0af0310..656f933 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
diff --git a/po/bg.po b/po/bg.po
index 5dee1d4..0dadff3 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-22 12:51+0200\n"
@@ -4193,7 +4193,7 @@ msgstr "CSV за MS Excel данни"
#: libraries/config/user_preferences.forms.php:239
#: libraries/export/htmlword.php:17
msgid "Microsoft Word 2000"
-msgstr ""
+msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:346
#: libraries/config/user_preferences.forms.php:248 libraries/export/odt.php:21
@@ -6820,7 +6820,7 @@ msgstr "Покажи всички"
#: pmd_general.php:141
msgid "Hide/Show Tables with no relation"
-msgstr ""
+msgstr "Показване/скриване таблици без релации"
#: pmd_general.php:181
#, fuzzy
@@ -9273,7 +9273,7 @@ msgstr "Заявление"
#: tbl_printview.php:377 tbl_structure.php:834
msgid "static"
-msgstr ""
+msgstr "статичен"
#: tbl_printview.php:379 tbl_structure.php:836
msgid "dynamic"
@@ -9511,7 +9511,7 @@ msgstr "Версия"
#: tbl_tracking.php:640
#, php-format
msgid "Deactivate tracking for %s.%s"
-msgstr ""
+msgstr "Изключване проследяването за %s.%s"
#: tbl_tracking.php:642
msgid "Deactivate now"
@@ -9520,7 +9520,7 @@ msgstr "Деактивиране сега"
#: tbl_tracking.php:653
#, php-format
msgid "Activate tracking for %s.%s"
-msgstr ""
+msgstr "Включване проследяването за %s.%s"
#: tbl_tracking.php:655
msgid "Activate now"
@@ -9533,11 +9533,11 @@ msgstr "Създаване на версия %s от %s.%s"
#: tbl_tracking.php:672
msgid "Track these data definition statements:"
-msgstr ""
+msgstr "Проследяване следните изрази за дефиниране на данни"
#: tbl_tracking.php:680
msgid "Track these data manipulation statements:"
-msgstr ""
+msgstr "Проследяване следните изрази за манипулиране на данни"
#: tbl_tracking.php:688
#, fuzzy
diff --git a/po/bn.po b/po/bn.po
index 6c8eb47..98394ea 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
diff --git a/po/br.po b/po/br.po
index a47a222..e3dfe9f 100644
--- a/po/br.po
+++ b/po/br.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-07-02 22:10+0200\n"
diff --git a/po/bs.po b/po/bs.po
index 34bb0ac..fc66516 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/ca.po b/po/ca.po
index 3f46db1..53ecba4 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
diff --git a/po/cs.po b/po/cs.po
index 3fd0a83..2ce082d 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/cy.po b/po/cy.po
index 03af559..0eb721c 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
diff --git a/po/da.po b/po/da.po
index 66e1507..f66dea5 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
diff --git a/po/de.po b/po/de.po
index 4fa3e3c..f75a2d7 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
diff --git a/po/el.po b/po/el.po
index dd06b6d..84a471e 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-05 11:15+0200\n"
diff --git a/po/en_GB.po b/po/en_GB.po
index 66f06b4..b2d3192 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-10 16:24+0200\n"
diff --git a/po/es.po b/po/es.po
index 82a9fa0..ef7a1de 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-02 11:10+0200\n"
diff --git a/po/et.po b/po/et.po
index a665761..7382be4 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
diff --git a/po/eu.po b/po/eu.po
index 5f96bc0..0532f31 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
@@ -95,23 +95,28 @@ msgstr "Erabili balio hau"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
+#, fuzzy
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Ez dago blob streaming zerbitzaria konfiguraturik!"
#: bs_disp_as_mime_type.php:35
+#, fuzzy
msgid "Failed to fetch headers"
-msgstr ""
+msgstr "Akatsa goiburuak bilatzerakoan"
#: bs_disp_as_mime_type.php:41
+#, fuzzy
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Akatsa kompo esteka zabaltzerakoan"
#: changelog.php:32 license.php:28
-#, php-format
+#, fuzzy, php-format
msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"%s filtxategia ez dago eskuragarri sisteman, joan www.phpmyadmin.net "
+"informazio gehiagorako"
#: db_create.php:58
#, fuzzy, php-format
@@ -638,7 +643,7 @@ msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:137
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
msgid "View"
-msgstr ""
+msgstr "Ikusipegia"
#: db_structure.php:444 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
@@ -652,9 +657,9 @@ msgid "Sum"
msgstr "Gehiketa"
#: db_structure.php:455 libraries/StorageEngine.class.php:351
-#, php-format
+#, fuzzy, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr ""
+msgstr "%s da MySQL zerbitzarian lehenetsitako biltegiratzeko mota."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2217 libraries/display_tbl.lib.php:2222
@@ -746,7 +751,7 @@ msgstr "Datu-basea"
#: db_tracking.php:86
msgid "Last version"
-msgstr ""
+msgstr "Azken bertsioa"
#: db_tracking.php:87 tbl_tracking.php:589
#, fuzzy
@@ -755,7 +760,7 @@ msgstr "Sortu"
#: db_tracking.php:88 tbl_tracking.php:590
msgid "Updated"
-msgstr ""
+msgstr "Eguneratua"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
@@ -776,11 +781,11 @@ msgstr ""
#: db_tracking.php:119 tbl_tracking.php:543 tbl_tracking.php:601
msgid "active"
-msgstr ""
+msgstr "Aktibo"
#: db_tracking.php:121 tbl_tracking.php:545 tbl_tracking.php:603
msgid "not active"
-msgstr ""
+msgstr "Ez aktibo"
#: db_tracking.php:134
#, fuzzy
@@ -821,12 +826,13 @@ msgid "Enter each value in a separate field."
msgstr ""
#: enum_editor.php:57
+#, fuzzy
msgid "+ Restart insertion and add a new value"
-msgstr ""
+msgstr "+ Berriz hasi txertatzen eta gehitu balio berria"
#: enum_editor.php:67
msgid "Output"
-msgstr ""
+msgstr "Irteera"
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
@@ -896,18 +902,19 @@ msgid "The bookmark has been deleted."
msgstr "Gordetako kontsulta ezabatu da."
#: import.php:400
+#, fuzzy
msgid "Showing bookmark"
-msgstr ""
+msgstr "Erakutsi laster-markak"
#: import.php:402 sql.php:885
-#, php-format
+#, fuzzy, php-format
msgid "Bookmark %s created"
-msgstr ""
+msgstr "%s laster-marka sortu da"
#: import.php:408 import.php:414
#, php-format
msgid "Import has been successfully finished, %d queries executed."
-msgstr ""
+msgstr "Inportatzea zuzen burutu da, %d kontsulta exekutatuta_."
#: import.php:423
msgid ""
@@ -944,7 +951,7 @@ msgstr ""
#: server_synchronize.php:734 server_synchronize.php:762
#: server_synchronize.php:790 server_synchronize.php:802
msgid "Click to select"
-msgstr ""
+msgstr "Egin klik hautatzeko"
#: js/messages.php:26
msgid "Click to unselect"
@@ -978,12 +985,14 @@ msgid "Deleting tracking data"
msgstr "Datuak txertatu eta ordezkatzea baimentzen du."
#: js/messages.php:36
+#, fuzzy
msgid "Dropping Primary Key/Index"
-msgstr ""
+msgstr "Ezabatu Giltza nagusi/Indizea"
#: js/messages.php:37
+#, fuzzy
msgid "This operation could take a long time. Proceed anyway?"
-msgstr ""
+msgstr "Eragiketa honek luze jo lezake. Jarraitu nahi?"
#: js/messages.php:40
msgid "You are about to DISABLE a BLOB Repository!"
@@ -1044,7 +1053,7 @@ msgstr "Hautatutako erabiltzaileak baztertu"
#: js/messages.php:56 libraries/tbl_properties.inc.php:792
#: tbl_tracking.php:246 tbl_tracking.php:374
msgid "Close"
-msgstr ""
+msgstr "Itxi"
#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
diff --git a/po/fa.po b/po/fa.po
index ff3652a..fd23feb 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
diff --git a/po/fi.po b/po/fi.po
index 5f8c034..099b180 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
diff --git a/po/fr.po b/po/fr.po
index 52cfa13..72759c6 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-10 19:23+0200\n"
diff --git a/po/gl.po b/po/gl.po
index 9848a68..986f478 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
diff --git a/po/he.po b/po/he.po
index 25f74cf..2922095 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
diff --git a/po/hi.po b/po/hi.po
index a748d8d..42364d7 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-24 00:23+0200\n"
diff --git a/po/hr.po b/po/hr.po
index 1e9d274..128117e 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
diff --git a/po/hu.po b/po/hu.po
index 89f4d3a..5071e4a 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-05-05 12:49+0200\n"
@@ -2675,7 +2675,7 @@ msgstr "SQL kompatibilitási mód"
#: libraries/config/messages.inc.php:120 libraries/export/sql.php:111
msgid "<code>CREATE TABLE</code> options:"
-msgstr ""
+msgstr "<code>CREATE TABLE</code> beállítások:"
#: libraries/config/messages.inc.php:121
msgid "Creation/Update/Check dates"
@@ -4825,13 +4825,15 @@ msgstr "Importálandó fájl"
#: libraries/display_import.lib.php:156
#, php-format
msgid "File may be compressed (%s) or uncompressed."
-msgstr ""
+msgstr "A fájl lehet tömörített (%s) vagy tömörítetlen."
#: libraries/display_import.lib.php:158
msgid ""
"A compressed file's name must end in <b>.[format].[compression]</b>. "
"Example: <b>.sql.zip</b>"
msgstr ""
+"A tömörített fájl nevének <b>.[formátum].[tömörítés]</b> végződésűnek kell "
+"lennie. Például: <b>.sql.zip</b>"
#: libraries/display_import.lib.php:178
msgid "File uploads are not allowed on this server."
@@ -4874,7 +4876,7 @@ msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma"
#: libraries/display_import.lib.php:250
msgid "Format-Specific Options:"
-msgstr ""
+msgstr "Formátum specifikus beállítások:"
#: libraries/display_select_lang.lib.php:44
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
@@ -4966,7 +4968,7 @@ msgstr "Böngésző átalakítása"
#: libraries/display_tbl.lib.php:1218
msgid "Copy"
-msgstr ""
+msgstr "Másolás"
#: libraries/display_tbl.lib.php:1233 libraries/display_tbl.lib.php:1245
msgid "The row has been deleted"
@@ -5610,7 +5612,7 @@ msgstr "PHP verzió"
#: libraries/export/mediawiki.php:15
msgid "MediaWiki Table"
-msgstr ""
+msgstr "MediaWiki tábla"
#: libraries/export/pdf.php:17
msgid "PDF"
@@ -5628,13 +5630,15 @@ msgstr "A jelentés címe"
#: libraries/export/php_array.php:16
msgid "PHP array"
-msgstr ""
+msgstr "PHP tömb"
#: libraries/export/sql.php:33
msgid ""
"Display comments <i>(includes info such as export timestamp, PHP version, "
"and server version)</i>"
msgstr ""
+"Megjegyzések megjelenítése <i>(olyan információk, mint az exportálás "
+"időbélyege, a PHP verziója és a szerver verziója)</i>"
#: libraries/export/sql.php:35
#, fuzzy
@@ -5647,11 +5651,15 @@ msgid ""
"Include a timestamp of when databases were created, last updated, and last "
"checked"
msgstr ""
+"Tartalmazza azokat az időbélyegeket, amikor az adatbázis létrejött, utoljára "
+"frissült és utoljára ellenőrizve lett"
#: libraries/export/sql.php:65
msgid ""
"Database system or older MySQL server to maximize output compatibility with:"
msgstr ""
+"Adatbázis rendszer vagy régebbi MySQL szerver a kimenet kompatibilitásának "
+"maximalizálása ezzel:"
#: libraries/export/sql.php:72 libraries/export/sql.php:105
#: libraries/export/sql.php:107
@@ -5674,19 +5682,19 @@ msgstr ""
#: libraries/export/sql.php:136
msgid "Instead of <code>INSERT</code> statements, use:"
-msgstr ""
+msgstr "Az <code>INSERT</code> utasítás helyett használjon:"
#: libraries/export/sql.php:138
msgid "<code>INSERT DELAYED</code> statements"
-msgstr ""
+msgstr "<code>INSERT DELAYED</code> utasítások"
#: libraries/export/sql.php:140
msgid "<code>INSERT IGNORE</code> statements"
-msgstr ""
+msgstr "<code>INSERT IGNORE</code> utasítások"
#: libraries/export/sql.php:147
msgid "Function to use when dumping data:"
-msgstr ""
+msgstr "Adatkiíráskor használt függvények:"
#: libraries/export/sql.php:151
msgid "Syntax to use when inserting data:"
@@ -5698,6 +5706,9 @@ msgid ""
" Example: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES "
"(1,2,3)</code>"
msgstr ""
+"tartalmazza az oszlopneveket minden <code>INSERT</code> utasítás <br /> "
+" Példa: <code>INSERT INTO tbl_name (col_A,col_B,col_C) "
+"VALUES (1,2,3)</code>"
#: libraries/export/sql.php:155
msgid ""
@@ -5705,30 +5716,41 @@ msgid ""
" Example: <code>INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), "
"(7,8,9)</code>"
msgstr ""
+"több sor beszúrása minden <code>INSERT</code> utasításba<br /> "
+" Példa: <code>INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)</"
+"code>"
#: libraries/export/sql.php:156
msgid ""
"both of the above<br /> Example: <code>INSERT INTO "
"tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)</code>"
msgstr ""
+"mindkettő a fentiek közül<br /> Példa: <code>INSERT "
+"INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)</code>"
#: libraries/export/sql.php:157
msgid ""
"neither of the above<br /> Example: <code>INSERT INTO "
"tbl_name VALUES (1,2,3)</code>"
msgstr ""
+"egyik sem a fentiek közül<br /> Példa: <code>INSERT "
+"INTO tbl_name VALUES (1,2,3)</code>"
#: libraries/export/sql.php:167
msgid ""
"Dump binary columns in hexadecimal notation <i>(for example, \"abc\" becomes "
"0x616263)</i>"
msgstr ""
+"Bináris oszlopok kiírása hexadecimális átírással <i>(például, \"abc\" "
+"helyett 0x616263)</i>"
#: libraries/export/sql.php:171
msgid ""
"Dump TIMESTAMP columns in UTC <i>(enables TIMESTAMP columns to be dumped and "
"reloaded between servers in different time zones)</i>"
msgstr ""
+"A TIMESTAMP oszlopok kiírása UTC-ben <i>(engedélyezi a TIMESTAMP oszlopok "
+"kiírását és újratölti a különböző időzónában lévő szerverek között)</i>"
#: libraries/export/sql.php:209 libraries/export/xml.php:34
msgid "Procedures"
@@ -5773,7 +5795,7 @@ msgstr "XML"
#: libraries/export/xml.php:30
msgid "Object creation options (all are recommended)"
-msgstr ""
+msgstr "Objektum-létrehozási beállítások (mindegyik javasolt)"
#: libraries/export/xml.php:40
#, fuzzy
@@ -5844,6 +5866,8 @@ msgid ""
"The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>"
msgstr ""
+"A fájl első sora tartalmazza a tábla oszlopneveit <i>(ha ez nincs "
+"kiválasztva, az első sor az adat része lesz)</i>"
#: libraries/import/csv.php:39
msgid ""
@@ -5903,10 +5927,12 @@ msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!"
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>"
msgstr ""
+"Százalékos értékek importálása pontos tizedestörtként <i>(pl. 12.00% "
+"helyett .12)</i>"
#: libraries/import/ods.php:29
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
-msgstr ""
+msgstr "Valuták importálása <i>(pl. $5.00 helyett 5.00)</i>"
#: libraries/import/sql.php:32
#, fuzzy
@@ -6201,30 +6227,36 @@ msgstr "SQL-előzmények"
#: libraries/relation.lib.php:147
msgid "User preferences"
-msgstr ""
+msgstr "Felhasználói beállítások"
#: libraries/relation.lib.php:151
msgid "Quick steps to setup advanced features:"
-msgstr ""
+msgstr "Gyors lépések a haladó funkciók beállításához:"
#: libraries/relation.lib.php:153
msgid ""
"Create the needed tables with the <code>script/create_tables.sql</code>."
msgstr ""
+"Hozza létre a kívánt táblákat a <code>script/create_tables.sql</code> "
+"használatával."
#: libraries/relation.lib.php:154
msgid "Create a pma user and give access to these tables."
msgstr ""
+"Hozzon létre egy pma felhasználót és adjon hozzáférést ezekhez a táblákhoz."
#: libraries/relation.lib.php:155
msgid ""
"Enable advanced features in configuration file (<code>config.inc.php</"
"code>), for example by starting from <code>config.sample.inc.php</code>."
msgstr ""
+"Engedélyezze a haladó funkciókat a beállító fájlban (<code>config.inc.php</"
+"code>), például induljon ki a <code>config.sample.inc.php</code> fájlból."
#: libraries/relation.lib.php:156
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
+"Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez."
#: libraries/relation.lib.php:1175
msgid "no description"
@@ -6362,7 +6394,7 @@ msgstr "A(z) %s fájl nem tartalmaz semmilyen kulcsazonosítót"
#: libraries/schema/Export_Relation_Schema.class.php:207
msgid "SCHEMA ERROR: "
-msgstr ""
+msgstr "SÉMA HIBA: "
#: libraries/schema/Pdf_Relation_Schema.class.php:877
#: libraries/schema/Pdf_Relation_Schema.class.php:1118
@@ -6552,7 +6584,7 @@ msgstr "Új szerver"
#: libraries/server_synchronize.lib.php:1344
msgid "Difference"
-msgstr ""
+msgstr "Különbség"
#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1118
#, fuzzy
@@ -6768,7 +6800,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:371
msgid "ENUM or SET data too long?"
-msgstr ""
+msgstr "ENUM vagy SET adat túl nagy?"
#: libraries/tbl_properties.inc.php:373
msgid "Get more editing space"
@@ -7030,6 +7062,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
+"A beállításai csak a jelenlegi munkamenethez lesznek elmentve. A végleges "
+"tároláshoz szükséges a %sphpMyAdmin beállítás tároló%s."
#: libraries/user_preferences.lib.php:142
#, fuzzy
@@ -7222,6 +7256,9 @@ msgid ""
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
+"A JavaScript támogatás hiányzik vagy le van tiltva a böngészőben, ezért "
+"néhány phpMyAdmin funkcionalitás hiányozni fog. Például a navigációs keret "
+"nem fog automatikusan frissülni."
#: main.php:331
#, php-format
@@ -7417,7 +7454,7 @@ msgstr "A(z) %1$s tábla elkészült."
#: pmd_pdf.php:37
msgid "Page creation failed"
-msgstr ""
+msgstr "Az oldal létrehozása meghiúsult"
#: pmd_pdf.php:89
#, fuzzy
@@ -7500,11 +7537,11 @@ msgstr ""
#: prefs_manage.php:112
msgid "Configuration contains incorrect data for some fields."
-msgstr ""
+msgstr "A beállítás rossz adatot tartalmaz néhány mezőben."
#: prefs_manage.php:128
msgid "Do you want to import remaining settings?"
-msgstr ""
+msgstr "Szeretné importálni a megmaradt beállításokat?"
#: prefs_manage.php:225 prefs_manage.php:251
msgid "Saved on: @DATE@"
@@ -7522,7 +7559,7 @@ msgstr "Importálás a böngészőből"
#: prefs_manage.php:248
msgid "Settings will be imported from your browser's local storage."
-msgstr ""
+msgstr "A beállítások a böngészője helyi tárolójából lesznek importálva."
#: prefs_manage.php:254
#, fuzzy
@@ -7532,7 +7569,7 @@ msgstr "Egyéb alapbeállítások"
#: prefs_manage.php:258 prefs_manage.php:312
msgid "This feature is not supported by your web browser"
-msgstr ""
+msgstr "Az ön web böngészője nem támogatja ezt a szolgáltatást"
#: prefs_manage.php:263
#, fuzzy
@@ -7546,22 +7583,26 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
+"További beállításokat állíthat be a config.inc.php modosításával, pl. "
+"%sBeállító parancsfájl%s használatával."
#: prefs_manage.php:302
msgid "Save to browser's storage"
-msgstr ""
+msgstr "Mentés a böngésző tárolójába"
#: prefs_manage.php:306
msgid "Settings will be saved in your browser's local storage."
-msgstr ""
+msgstr "A beállítások a böngészője helyi tárolójába lesznek mentve."
#: prefs_manage.php:308
msgid "Existing settings will be overwritten!"
-msgstr ""
+msgstr "A meglévő beállítások felülíródnak!"
#: prefs_manage.php:323
msgid "You can reset all your settings and restore them to default values."
msgstr ""
+"Alaphelyzetbe állíthatja az összes beállítását és visszaállíthatja azokat az "
+"alapértelmezett értékekre."
#: querywindow.php:93
msgid "Import files"
@@ -9165,7 +9206,7 @@ msgstr "Nézet szerkezete"
#: server_synchronize.php:420 server_synchronize.php:863
msgid "Data Difference"
-msgstr ""
+msgstr "Adatkülönbség"
#: server_synchronize.php:425 server_synchronize.php:868
msgid "Add column(s)"
diff --git a/po/id.po b/po/id.po
index e544cd3..4198ee4 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
diff --git a/po/it.po b/po/it.po
index 798b614..488298d 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-05 14:27+0200\n"
diff --git a/po/ja.po b/po/ja.po
index 5834858..676b419 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-05-05 11:38+0200\n"
diff --git a/po/ka.po b/po/ka.po
index a10c457..fd25b5a 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
diff --git a/po/ko.po b/po/ko.po
index 91da7de..6007848 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
diff --git a/po/lt.po b/po/lt.po
index a320cbb..a3a8daf 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
diff --git a/po/lv.po b/po/lv.po
index 8a2f5d4..1810279 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
diff --git a/po/mk.po b/po/mk.po
index 7aba17b..66d2fee 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
diff --git a/po/ml.po b/po/ml.po
index fb12ba5..13fe780 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -3,7 +3,7 @@
# This file is distributed under the same license as the phpMyAdmin package.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/mn.po b/po/mn.po
index d3567f7..e64e264 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
diff --git a/po/ms.po b/po/ms.po
index a75bcc5..d256d6f 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
diff --git a/po/nb.po b/po/nb.po
index d94eb70..22b5307 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
diff --git a/po/nl.po b/po/nl.po
index 0b63c7f..2268c56 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-16 20:18+0200\n"
diff --git a/po/pl.po b/po/pl.po
index f3d2a06..fe81bcd 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
diff --git a/po/pt.po b/po/pt.po
index 1fa8a6a..a53d8ef 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 2d05d94..154d6b1 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-14 17:44+0200\n"
diff --git a/po/ro.po b/po/ro.po
index daf13c4..8df7f70 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
@@ -97,7 +97,7 @@ msgstr "Folosește această valoare"
#: 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 "Nici un server de streaming aglomerat nu a fost configurat!"
#: bs_disp_as_mime_type.php:35
#, fuzzy
diff --git a/po/ru.po b/po/ru.po
index e8cb0a1..0b6eac4 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-13 21:17+0200\n"
diff --git a/po/si.po b/po/si.po
index eb59166..f7e29c2 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-05-04 14:56+0200\n"
diff --git a/po/sk.po b/po/sk.po
index 5fe4596..bab233c 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
diff --git a/po/sl.po b/po/sl.po
index 8aa1bcb..1b22603 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-24 22:38+0200\n"
diff --git a/po/sq.po b/po/sq.po
index 4353ceb..904de0b 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
diff --git a/po/sr.po b/po/sr.po
index 008157b..967e007 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 2053fd6..4656025 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
diff --git a/po/sv.po b/po/sv.po
index 23c2200..0d5555c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-02-16 21:42+0200\n"
diff --git a/po/ta.po b/po/ta.po
index 3ee7147..897151d 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
diff --git a/po/te.po b/po/te.po
index 9b0f4e2..b6e31e3 100644
--- a/po/te.po
+++ b/po/te.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
diff --git a/po/th.po b/po/th.po
index d75e282..2f99797 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
diff --git a/po/tr.po b/po/tr.po
index 076883c..bb25dbb 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-17 19:11+0200\n"
diff --git a/po/tt.po b/po/tt.po
index b26519d..a71a452 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
diff --git a/po/ug.po b/po/ug.po
index acaf125..787d793 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
diff --git a/po/uk.po b/po/uk.po
index 91e457a..c79afcd 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-12-28 22:26+0200\n"
diff --git a/po/ur.po b/po/ur.po
index 83fd683..ad07264 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
diff --git a/po/uz.po b/po/uz.po
index d666d5d..6022af9 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 01a9094..8d96a43 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 304d0b9..a4d7900 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-03-04 09:47+0200\n"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 6096617..e03674c 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.7-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.8-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-10-06 09:23+0200\n"
"PO-Revision-Date: 2011-05-31 09:47+0800\n"
hooks/post-receive
--
phpMyAdmin
1
0