Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 9 participants
- 39110 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-356-g0515e1b
by Piotr Przybylski 16 Feb '11
by Piotr Przybylski 16 Feb '11
16 Feb '11
The branch, master has been updated
via 0515e1b03ed5dcf055efffb75aa5f42a26969e94 (commit)
from 3e3f5f64fb36bba7e924374f1a386d96ba7e67f5 (commit)
- Log -----------------------------------------------------------------
commit 0515e1b03ed5dcf055efffb75aa5f42a26969e94
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Wed Feb 16 21:51:53 2011 +0100
store userprefs using JSON instead of serialized PHP array
-----------------------------------------------------------------------
Summary of changes:
libraries/user_preferences.lib.php | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/libraries/user_preferences.lib.php b/libraries/user_preferences.lib.php
index bf84b25..6c48116 100644
--- a/libraries/user_preferences.lib.php
+++ b/libraries/user_preferences.lib.php
@@ -68,8 +68,9 @@ function PMA_load_userprefs()
FROM ' . $query_table . '
WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\'';
$row = PMA_DBI_fetch_single_row($query, 'ASSOC', $GLOBALS['controllink']);
+
return array(
- 'config_data' => $row ? unserialize($row['config_data']) : array(),
+ 'config_data' => $row ? (array)json_decode($row['config_data']) : array(),
'mtime' => $row ? $row['ts'] : time(),
'type' => 'db');
}
@@ -122,7 +123,7 @@ function PMA_save_userprefs(array $config_array)
WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\'';
$has_config = PMA_DBI_fetch_value($query, 0, 0, $GLOBALS['controllink']);
- $config_data = serialize($config_array);
+ $config_data = json_encode($config_array);
if ($has_config) {
$query = '
UPDATE ' . $query_table . '
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-355-g3e3f5f6
by Marc Delisle 16 Feb '11
by Marc Delisle 16 Feb '11
16 Feb '11
The branch, master has been updated
via 3e3f5f64fb36bba7e924374f1a386d96ba7e67f5 (commit)
from e6a6883798b76581f76e2d8bff57fd4fdec6c944 (commit)
- Log -----------------------------------------------------------------
commit 3e3f5f64fb36bba7e924374f1a386d96ba7e67f5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Feb 16 12:40:02 2011 -0500
Link is too near the rest of the text
-----------------------------------------------------------------------
Summary of changes:
querywindow.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/querywindow.php b/querywindow.php
index 86af6c0..0b92ad8 100644
--- a/querywindow.php
+++ b/querywindow.php
@@ -115,10 +115,10 @@ if ($GLOBALS['cfg']['PropertiesIconic']) {
. '" />';
if ('both' === $GLOBALS['cfg']['PropertiesIconic']) {
- $titles['Change'] .= __('Change');
+ $titles['Change'] .= __('Change') . ' ';
}
} else {
- $titles['Change'] = __('Change');
+ $titles['Change'] = __('Change') . ' ';
}
$url_query = PMA_generate_common_url($db, $table);
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. 1dea153466960c33a6c5c5dc3026f8b1b66fcfcc
by Marc Delisle 16 Feb '11
by Marc Delisle 16 Feb '11
16 Feb '11
The branch, master has been updated
via 1dea153466960c33a6c5c5dc3026f8b1b66fcfcc (commit)
from 13dfe0b65d42b145cca008408c043c345c5e91dd (commit)
- Log -----------------------------------------------------------------
commit 1dea153466960c33a6c5c5dc3026f8b1b66fcfcc
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Feb 16 12:30:56 2011 -0500
Update PMASA-2010-9 and PMASA-2010-10
-----------------------------------------------------------------------
Summary of changes:
templates/security/PMASA-2010-10 | 8 +++++++-
templates/security/PMASA-2010-9 | 8 +++++++-
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/templates/security/PMASA-2010-10 b/templates/security/PMASA-2010-10
index 5eac814..9a0f957 100644
--- a/templates/security/PMASA-2010-10
+++ b/templates/security/PMASA-2010-10
@@ -8,6 +8,10 @@ PMASA-2010-10
2010-12-07
</py:def>
+<py:def function="announcement_updated">
+2010-02-16
+</py:def>
+
<py:def function="announcement_summary">
Possible information disclosure.
</py:def>
@@ -32,7 +36,9 @@ All versions prior to 3.4.0-beta1.
</py:def>
<py:def function="announcement_solution">
-Upgrade to phpMyAdmin 3.4.0-beta1 or newer or apply patch listed below.
+Upgrade to phpMyAdmin 3.4.0-beta1 or newer or apply patch listed below. Due
+to its minor impact, a fix will be included in the next regular release
+which is 3.3.10.
</py:def>
<!--! Links to reporter etc, do not forget to escape & to & -->
diff --git a/templates/security/PMASA-2010-9 b/templates/security/PMASA-2010-9
index 3bc51d6..bf61792 100644
--- a/templates/security/PMASA-2010-9
+++ b/templates/security/PMASA-2010-9
@@ -8,6 +8,10 @@ PMASA-2010-9
2010-12-07
</py:def>
+<py:def function="announcement_updated">
+2010-02-16
+</py:def>
+
<py:def function="announcement_summary">
Unvalidated input on error page.
</py:def>
@@ -27,7 +31,9 @@ All versions prior to 3.4.0-beta1.
</py:def>
<py:def function="announcement_solution">
-Upgrade to phpMyAdmin 3.4.0-beta1 or newer or apply patch listed below.
+Upgrade to phpMyAdmin 3.4.0-beta1 or newer or apply patch listed below. Due
+to its minor impact, a fix will be included in the next regular release
+which is 3.3.10.
</py:def>
<!--! Links to reporter etc, do not forget to escape & to & -->
hooks/post-receive
--
phpMyAdmin website
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-354-ge6a6883
by Michal Čihař 16 Feb '11
by Michal Čihař 16 Feb '11
16 Feb '11
The branch, master has been updated
via e6a6883798b76581f76e2d8bff57fd4fdec6c944 (commit)
via 3888fb652d6df78d1ddc273384577f708a7582f3 (commit)
via d361fae0d138460dfee93152a2734e96fc0a332a (commit)
via aee87adabac52c6b6d9474432039d1f3289b7b68 (commit)
via 0322e03a24430d68fa100d9ff00a7ee8a35b5bb7 (commit)
via 65bd104eb91ce19da6a4702f6ace98f99fb7ba15 (commit)
via a9cf2a562904d55f7f4de32c432ccd67eba48c4c (commit)
via b605c36d8a289bcbe98ba0bfe3662982c136e0f8 (commit)
via 6de87915b98a6895198c187febf7cea278f755c2 (commit)
via 6b5ae8ccc75e7e85e54f4b3084b64fe4c9b73884 (commit)
via d616b28ac107dcbed8d51fdf59c7748ae41f357b (commit)
via 8e66f692ed44734c599951301f6781ae6efbaf5c (commit)
via d3a65310b3550a3eb918691169bb9345a138b07c (commit)
via fa6f4e5caf0e1488f9e88576d2a6841c0016c57d (commit)
via 29b21c9850cabb154149c44714201c3505ceaf79 (commit)
via 873b5d0169164fc544e5f0f6cb3f333cfff7e0d8 (commit)
via ed59f774647e850b60b0bd8db408f8d6ea06a955 (commit)
via 57c5d124fd3590f0e384b188677d1350eaf111fd (commit)
via 98579db078d37d1100a25f2694aa8b8f80adebfd (commit)
via 691c34b9f11700b3b76e2165d898e015dc2938da (commit)
via 9ec1de03585aa0b1acc94ee8a43b0a88f96a5d93 (commit)
via 995d91def65d6dec766bafc0759d6daf3dfa12b8 (commit)
via 28e5c6359d9f986833eca24b28fada618e4adc86 (commit)
via b4b967ab009308eb2f9c30d1feb6e8120c60ebee (commit)
from e675572c9070cba4e16599bac1b2f7283af8af85 (commit)
- Log -----------------------------------------------------------------
commit e6a6883798b76581f76e2d8bff57fd4fdec6c944
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:04:55 2011 +0200
Translation update done using Pootle.
commit 3888fb652d6df78d1ddc273384577f708a7582f3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:04:48 2011 +0200
Translation update done using Pootle.
commit d361fae0d138460dfee93152a2734e96fc0a332a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:04:47 2011 +0200
Translation update done using Pootle.
commit aee87adabac52c6b6d9474432039d1f3289b7b68
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:04:19 2011 +0200
Translation update done using Pootle.
commit 0322e03a24430d68fa100d9ff00a7ee8a35b5bb7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:04:00 2011 +0200
Translation update done using Pootle.
commit 65bd104eb91ce19da6a4702f6ace98f99fb7ba15
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:03:38 2011 +0200
Translation update done using Pootle.
commit a9cf2a562904d55f7f4de32c432ccd67eba48c4c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:03:20 2011 +0200
Translation update done using Pootle.
commit b605c36d8a289bcbe98ba0bfe3662982c136e0f8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:02:49 2011 +0200
Translation update done using Pootle.
commit 6de87915b98a6895198c187febf7cea278f755c2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:02:36 2011 +0200
Translation update done using Pootle.
commit 6b5ae8ccc75e7e85e54f4b3084b64fe4c9b73884
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:01:46 2011 +0200
Translation update done using Pootle.
commit d616b28ac107dcbed8d51fdf59c7748ae41f357b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:01:20 2011 +0200
Translation update done using Pootle.
commit 8e66f692ed44734c599951301f6781ae6efbaf5c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:01:07 2011 +0200
Translation update done using Pootle.
commit d3a65310b3550a3eb918691169bb9345a138b07c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:00:57 2011 +0200
Translation update done using Pootle.
commit fa6f4e5caf0e1488f9e88576d2a6841c0016c57d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 19:00:31 2011 +0200
Translation update done using Pootle.
commit 29b21c9850cabb154149c44714201c3505ceaf79
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:59:48 2011 +0200
Translation update done using Pootle.
commit 873b5d0169164fc544e5f0f6cb3f333cfff7e0d8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:59:35 2011 +0200
Translation update done using Pootle.
commit ed59f774647e850b60b0bd8db408f8d6ea06a955
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:58:22 2011 +0200
Translation update done using Pootle.
commit 57c5d124fd3590f0e384b188677d1350eaf111fd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:57:02 2011 +0200
Translation update done using Pootle.
commit 98579db078d37d1100a25f2694aa8b8f80adebfd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:56:33 2011 +0200
Translation update done using Pootle.
commit 691c34b9f11700b3b76e2165d898e015dc2938da
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:55:48 2011 +0200
Translation update done using Pootle.
commit 9ec1de03585aa0b1acc94ee8a43b0a88f96a5d93
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:55:15 2011 +0200
Translation update done using Pootle.
commit 995d91def65d6dec766bafc0759d6daf3dfa12b8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:54:53 2011 +0200
Translation update done using Pootle.
commit 28e5c6359d9f986833eca24b28fada618e4adc86
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:54:17 2011 +0200
Translation update done using Pootle.
commit b4b967ab009308eb2f9c30d1feb6e8120c60ebee
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:53:54 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 53 ++++++++++++++++++++++++++++-------------------------
1 files changed, 28 insertions(+), 25 deletions(-)
diff --git a/po/es.po b/po/es.po
index dcca84e..cf26c3c 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-10 14:02+0100\n"
-"PO-Revision-Date: 2011-02-16 18:53+0200\n"
+"PO-Revision-Date: 2011-02-16 19:04+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
"Language: es\n"
@@ -2326,7 +2326,7 @@ msgstr ""
#: libraries/config/messages.inc.php:20
msgid "Allow login to any MySQL server"
-msgstr "Permitir el login en cualquier servidor MySQL"
+msgstr "Permitir el inicio de sesión en cualquier servidor MySQL"
#: libraries/config/messages.inc.php:21
msgid ""
@@ -3039,8 +3039,8 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
-"Si quiere usar el servicio de Validación de SQL, debería saber que [stong]"
-"todas las declaraciones SQL son almacenadas de forma anónima para uso "
+"Si quiere usar el servicio de Validación de SQL, debería saber que "
+"[stong]todas las sentencias SQL son almacenadas de forma anónima para uso "
"estadístico[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
"Validator[/a], Copyright 2002 Upright Database Technology.Todos los derechos "
"reservados.[/em]"
@@ -3103,11 +3103,11 @@ msgid ""
"if one of the queries failed"
msgstr ""
"De estar activado, phpMyAdmin continúa computando consultas con múltiples "
-"enunciados incluso si falló una de las consultas"
+"sentencias incluso si falló una de las consultas"
#: libraries/config/messages.inc.php:233
msgid "Ignore multiple statement errors"
-msgstr "Ignore errores múltiples en los enunciados"
+msgstr "Ignorar errores en sentencias múltiples"
#: libraries/config/messages.inc.php:234
msgid ""
@@ -3261,7 +3261,7 @@ msgstr "URL a la que apuntará el logotipo del cuadro de navegación"
#: libraries/config/messages.inc.php:280
msgid "Logo link URL"
-msgstr "Logo enlace URL"
+msgstr "URL para enlace del logo"
#: libraries/config/messages.inc.php:281
msgid ""
@@ -3273,7 +3273,7 @@ msgstr ""
#: libraries/config/messages.inc.php:282
msgid "Logo link target"
-msgstr "Logo enlace objetivo"
+msgstr "Objetivo para enlace del logo"
#: libraries/config/messages.inc.php:283
msgid "Highlight server under the mouse cursor"
@@ -3316,14 +3316,14 @@ msgstr ""
#: libraries/config/messages.inc.php:290
msgid "Delete all cookies on logout"
-msgstr "Eliminar todas las cookies al salir"
+msgstr "Eliminar todas las cookies al finalizar sesión"
#: libraries/config/messages.inc.php:291
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-"Define si el login anterior se debe recordar o no en la modalidad "
+"Define si el inicio de sesión anterior se debe recordar o no en la modalidad "
"autenticación mediante cookie"
#: libraries/config/messages.inc.php:292
@@ -3344,15 +3344,17 @@ msgstr ""
#: libraries/config/messages.inc.php:294
msgid "Login cookie store"
-msgstr "Almacenamiento de cookies de Login"
+msgstr "Almacenamiento de cookies de inicio de sesión"
#: libraries/config/messages.inc.php:295
msgid "Define how long (in seconds) a login cookie is valid"
-msgstr "Define cuánto dura (en segundos) un cookie de login, como válido"
+msgstr ""
+"Define por cuánto tiempo (en segundos) es válido un cookie de inicio de "
+"sesión"
#: libraries/config/messages.inc.php:296
msgid "Login cookie validity"
-msgstr "Validez del cookie usado para el Login"
+msgstr "Validez del cookie usado para el inicio de sesión"
#: libraries/config/messages.inc.php:297
msgid "Double size of textarea for LONGTEXT columns"
@@ -3620,11 +3622,11 @@ msgstr "Reglas de autorización del Host"
#: libraries/config/messages.inc.php:357
msgid "Allow logins without a password"
-msgstr "Permitir identificación sin contraseña"
+msgstr "Permitir inicio de sesión sin contraseña"
#: libraries/config/messages.inc.php:358
msgid "Allow root login"
-msgstr "Permitir el login como root"
+msgstr "Permitir el inicio de sesión como root"
#: libraries/config/messages.inc.php:359
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
@@ -3981,7 +3983,7 @@ msgstr ""
#: libraries/config/messages.inc.php:425
msgid "Statements to track"
-msgstr "Sentencias a rastrear"
+msgstr "Sentencias a hacer seguimiento"
#: libraries/config/messages.inc.php:426
msgid ""
@@ -4331,10 +4333,9 @@ msgstr ""
"sentencias. Ver libraries/import.lib.php para saber el valor predeterminado "
"de la cantidad de sentencias que puede tener una consulta."
-# "statement" translates to "consulta" and "verbose" to "detallado"
#: libraries/config/messages.inc.php:497
msgid "Verbose multiple statements"
-msgstr "Opción detallada para múltiples consultas"
+msgstr "Opción detallada para múltiples sentencias"
#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
msgid "Check for latest version"
@@ -7118,9 +7119,9 @@ msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-"El almacenamiento de la cookie de sesión es menor que la validez de la "
-"cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes de lo "
-"configurado en phpMyAdmin."
+"El almacenamiento de la cookie de inicio de sesión es menor que la validez "
+"de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes "
+"de lo configurado en phpMyAdmin."
#: main.php:292
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
@@ -7811,6 +7812,7 @@ msgstr ""
"Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el "
"límite."
+# It is talking about the user account not the act of logging in
#: server_privileges.php:715
msgid "Login Information"
msgstr "Información de la cuenta"
@@ -7947,6 +7949,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr "Añadir privilegios a esta tabla"
+# Login refers to the user account not the act of logging in
#: server_privileges.php:2100
msgid "Change Login Information / Copy User"
msgstr "Cambiar la información de la cuenta / Copiar el usuario"
@@ -8242,7 +8245,7 @@ msgid ""
"based instead of disk-based."
msgstr ""
"El número de tablas temporales en el disco que fueron creados "
-"automáticamente por el servidor mientras ejecuta los enunciados. Si las "
+"automáticamente por el servidor mientras ejecuta las sentencias. Si las "
"tablas Created_tmp_disk_tables es grande, puede incrementar el valor de "
"tmp_table_size para hacer que las tablas temporales se basen en memoria en "
"lugar de basarse en disco."
@@ -8256,8 +8259,8 @@ msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-"El número de tablas temporales in-memory creadas automáticamente por el "
-"servidor mientras se ejecutaban los enunciados."
+"El número de tablas temporales en memoria creadas automáticamente por el "
+"servidor mientras se ejecutaban las sentencias."
#: server_status.php:51
msgid ""
@@ -8281,7 +8284,7 @@ msgstr "El número de filas INSERT DELAYED escritas."
#: server_status.php:54
msgid "The number of executed FLUSH statements."
-msgstr "El número de enunciados FLUSH ejecutados."
+msgstr "El número de sentencias FLUSH ejecutadas."
#: server_status.php:55
msgid "The number of internal COMMIT statements."
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-330-ge675572
by Michal Čihař 16 Feb '11
by Michal Čihař 16 Feb '11
16 Feb '11
The branch, master has been updated
via e675572c9070cba4e16599bac1b2f7283af8af85 (commit)
via 5f00c8f7b69abc928d785b4e25b3586bcd258689 (commit)
via 9bdb73025c4411a523a88fb1fd5d457a32a880ac (commit)
via 9f3ce90a3bd684c1fc58f87a774211592c01e1da (commit)
via 4c02e160ea4bfc6a0bbfb1b6a14189b25a49bc04 (commit)
via 4aed2a03c4136b23a155e59f7bea7a8930ff9993 (commit)
via b64469a805859c806667c46b3f6da3d719a5b707 (commit)
via ce1cb79f017217d5c6a954194738fb27e70af6da (commit)
via d8aad9e8f11bdbedca6ee921cb7c3e337452e1f9 (commit)
via 3335dfb10b97e8c9b8bce2edca98d4ea3cdbe11b (commit)
via 93c1bc98b404029ce160577dbb8d8f4bdbc4e332 (commit)
via 61a877af5f1edce7ead90c111793464f55b7e319 (commit)
via e7699c2a3ef62198aaf1c7573062c21fa9eb8f89 (commit)
via 3dd1de767c4122774ea5956b5b710b335d7ae7af (commit)
via bd2afdf94bbfff9e82dc7d7728d0108124ad7602 (commit)
via 11624f7ffa820c14670839836c55422a86cb45fd (commit)
via ed792bba11eea22f2727ea749388976e9af3f888 (commit)
via a2d4e89e0088fe14981ff97c27744933dd837fc8 (commit)
via b99b48394cd237cdcda23a868eb688327272acc9 (commit)
via 11a1da5bbbb173b7ed0d68189869472a90090497 (commit)
via 218655d2daeba0074df3b75e1a55a414a075333d (commit)
via facb28eece58673f560d8d48a104ddf95783fa3d (commit)
via 110cb6957d10334c914a9f7faa736e29e4c56239 (commit)
via 34f12b10e34d8fad080cdb496ab957e34d546488 (commit)
via 4b5ba650b11cb91920d6002ea99c49773a00348e (commit)
via bf3daf4f8bb453bcc9b56f95fce746b794a5ef53 (commit)
via 72e36b23ee033d64f2b25ad52f991c0c2ded9069 (commit)
via 17b0b748f6fcc5d0e4c98c72df6535df936e443d (commit)
via 09e937bbe455acfdc21675d8cd79d15d7de37217 (commit)
from 3f88ed0cadf2088792021e0d6ce346720560604c (commit)
- Log -----------------------------------------------------------------
commit e675572c9070cba4e16599bac1b2f7283af8af85
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:53:37 2011 +0200
Translation update done using Pootle.
commit 5f00c8f7b69abc928d785b4e25b3586bcd258689
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:53:12 2011 +0200
Translation update done using Pootle.
commit 9bdb73025c4411a523a88fb1fd5d457a32a880ac
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:53:03 2011 +0200
Translation update done using Pootle.
commit 9f3ce90a3bd684c1fc58f87a774211592c01e1da
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:52:38 2011 +0200
Translation update done using Pootle.
commit 4c02e160ea4bfc6a0bbfb1b6a14189b25a49bc04
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:52:28 2011 +0200
Translation update done using Pootle.
commit 4aed2a03c4136b23a155e59f7bea7a8930ff9993
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:52:20 2011 +0200
Translation update done using Pootle.
commit b64469a805859c806667c46b3f6da3d719a5b707
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:52:13 2011 +0200
Translation update done using Pootle.
commit ce1cb79f017217d5c6a954194738fb27e70af6da
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:52:05 2011 +0200
Translation update done using Pootle.
commit d8aad9e8f11bdbedca6ee921cb7c3e337452e1f9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:51:27 2011 +0200
Translation update done using Pootle.
commit 3335dfb10b97e8c9b8bce2edca98d4ea3cdbe11b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:50:33 2011 +0200
Translation update done using Pootle.
commit 93c1bc98b404029ce160577dbb8d8f4bdbc4e332
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:48:39 2011 +0200
Translation update done using Pootle.
commit 61a877af5f1edce7ead90c111793464f55b7e319
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:48:17 2011 +0200
Translation update done using Pootle.
commit e7699c2a3ef62198aaf1c7573062c21fa9eb8f89
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:48:04 2011 +0200
Translation update done using Pootle.
commit 3dd1de767c4122774ea5956b5b710b335d7ae7af
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:47:00 2011 +0200
Translation update done using Pootle.
commit bd2afdf94bbfff9e82dc7d7728d0108124ad7602
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:46:29 2011 +0200
Translation update done using Pootle.
commit 11624f7ffa820c14670839836c55422a86cb45fd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:46:08 2011 +0200
Translation update done using Pootle.
commit ed792bba11eea22f2727ea749388976e9af3f888
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:45:43 2011 +0200
Translation update done using Pootle.
commit a2d4e89e0088fe14981ff97c27744933dd837fc8
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:45:27 2011 +0200
Translation update done using Pootle.
commit b99b48394cd237cdcda23a868eb688327272acc9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:45:05 2011 +0200
Translation update done using Pootle.
commit 11a1da5bbbb173b7ed0d68189869472a90090497
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:44:27 2011 +0200
Translation update done using Pootle.
commit 218655d2daeba0074df3b75e1a55a414a075333d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:44:13 2011 +0200
Translation update done using Pootle.
commit facb28eece58673f560d8d48a104ddf95783fa3d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:43:58 2011 +0200
Translation update done using Pootle.
commit 110cb6957d10334c914a9f7faa736e29e4c56239
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:43:41 2011 +0200
Translation update done using Pootle.
commit 34f12b10e34d8fad080cdb496ab957e34d546488
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:43:10 2011 +0200
Translation update done using Pootle.
commit 4b5ba650b11cb91920d6002ea99c49773a00348e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:42:34 2011 +0200
Translation update done using Pootle.
commit bf3daf4f8bb453bcc9b56f95fce746b794a5ef53
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:42:20 2011 +0200
Translation update done using Pootle.
commit 72e36b23ee033d64f2b25ad52f991c0c2ded9069
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:42:02 2011 +0200
Translation update done using Pootle.
commit 17b0b748f6fcc5d0e4c98c72df6535df936e443d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:41:23 2011 +0200
Translation update done using Pootle.
commit 09e937bbe455acfdc21675d8cd79d15d7de37217
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:41:13 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 92 +++++++++++++++++++++++++++++++------------------------------
1 files changed, 47 insertions(+), 45 deletions(-)
diff --git a/po/es.po b/po/es.po
index 71d420a..dcca84e 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-10 14:02+0100\n"
-"PO-Revision-Date: 2011-02-16 18:39+0200\n"
+"PO-Revision-Date: 2011-02-16 18:53+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
"Language: es\n"
@@ -811,7 +811,7 @@ msgstr "Hacer seguimiento a la tabla"
#: db_tracking.php:229
msgid "Database Log"
-msgstr "Log de la base de datos"
+msgstr "Registro de la base de datos"
#: enum_editor.php:21 libraries/tbl_properties.inc.php:794
#, php-format
@@ -961,7 +961,7 @@ msgstr "Clic para deseleccionar"
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:159
msgid "\"DROP DATABASE\" statements are disabled."
-msgstr "Los enunciados \"DROP DATABASE\" están desactivados."
+msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
#: js/messages.php:30 libraries/mult_submits.inc.php:258 sql.php:257
msgid "Do you really want to "
@@ -7125,7 +7125,7 @@ msgstr ""
#: main.php:292
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-"El archivo de configuración ahora necesita salvoconducto (una frase secreta) "
+"El archivo de configuración ahora necesita una frase secreta "
"(blowfish_secret)."
#: main.php:300
@@ -7380,7 +7380,7 @@ msgstr "Error: no se añadió la relación."
#: pmd_relation_new.php:62
msgid "FOREIGN KEY relation added"
-msgstr "Se añadió una relación FOREIGN KEY"
+msgstr "Se añadió una relación CLAVE FORÁNEA"
#: pmd_relation_new.php:84
msgid "Internal relation added"
@@ -8225,9 +8225,9 @@ msgid ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
msgstr ""
-"El número de transacciones que usaron el cache de log binario temporal pero "
-"que excedieron el valor del binlog_cache_size y usaron un archivo temporal "
-"para almacenar los enunciados de la transacción."
+"El número de transacciones que usaron el cache temporal de registros "
+"binarios pero que excedieron el valor del binlog_cache_size y usaron un "
+"archivo temporal para almacenar las sentencias de la transacción."
#: server_status.php:47
msgid "The number of transactions that used the temporary binary log cache."
@@ -8265,7 +8265,7 @@ msgid ""
"(probably duplicate key)."
msgstr ""
"El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún "
-"error (probablemente una llave duplicada)."
+"error (probablemente una clave duplicada)."
#: server_status.php:52
msgid ""
@@ -8318,9 +8318,9 @@ msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
msgstr ""
-"El número de solicitudes hechas para leer una fila basado en una llave. Si "
+"El número de solicitudes hechas para leer una fila basado en una clave. Si "
"este valor es alto, es una buena indicación de que sus consultas y tablas "
-"están indizadas apropiadamente."
+"están indexadas apropiadamente."
#: server_status.php:60
msgid ""
@@ -8328,7 +8328,7 @@ msgid ""
"incremented if you are querying an index column with a range constraint or "
"if you are doing an index scan."
msgstr ""
-"El número de solicitudes hechas para leer la siguiente fila en un orden "
+"El número de solicitudes hechas para leer la siguiente fila en un orden de "
"clave. Este se incrementa si usted está consultando una columna índice con "
"un limitante de rango o si usted está haciendo un escaneo del índice."
@@ -8337,9 +8337,9 @@ msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
msgstr ""
-"El número de solicitudes hechas para leer la fila previa en un orden clave. "
-"Este método de lectura se usa principalmente para optimizar a ORDER BY ... "
-"DESC."
+"El número de solicitudes hechas para leer la fila previa en un orden de "
+"clave. Este método de lectura se usa principalmente para optimizar a ORDER "
+"BY ... DESC."
#: server_status.php:62
msgid ""
@@ -8352,7 +8352,7 @@ msgstr ""
"fija. Este es alto si usted está haciendo muchas consultas que requieren el "
"reordenamiento del resultado. Usted probablemente tiene muchas consultas que "
"requieren que MySQL escanee tablas enteras o usted debe tener vínculos "
-"(joins) que no usan las llaves de manera apropiada."
+"(joins) que no usan las claves de manera apropiada."
#: server_status.php:63
msgid ""
@@ -8526,27 +8526,27 @@ msgstr ""
#: server_status.php:91
msgid "The number of log write requests."
-msgstr "El número de solicitudes de escritura al log."
+msgstr "El número de solicitudes de escritura al registro."
#: server_status.php:92
msgid "The number of physical writes to the log file."
-msgstr "El número de escrituras físicas al archivo log."
+msgstr "El número de escrituras físicas al archivo de registro."
#: server_status.php:93
msgid "The number of fsync() writes done to the log file."
-msgstr "El número de escrituras fsyncs hechas al archivo log."
+msgstr "El número de escrituras fsyncs hechas al archivo de registro."
#: server_status.php:94
msgid "The number of pending log file fsyncs."
-msgstr "El número de fsyncs pendientes al archivo log."
+msgstr "El número de fsyncs pendientes al archivo de registro."
#: server_status.php:95
msgid "Pending log file writes."
-msgstr "Escrituras pendientes al archivo log."
+msgstr "Escrituras pendientes al archivo de registro."
#: server_status.php:96
msgid "The number of bytes written to the log file."
-msgstr "El número de bytes escritos al archivo log."
+msgstr "El número de bytes escritos al archivo de registro."
#: server_status.php:97
msgid "The number of pages created."
@@ -8611,16 +8611,17 @@ msgid ""
"The number of key blocks in the key cache that have changed but haven't yet "
"been flushed to disk. It used to be known as Not_flushed_key_blocks."
msgstr ""
-"El número de key blocks en el key cache que han cambiado pero que aún no han "
-"sido vaciados al disco. Antes se conocía como Not_flushed_key_blocks."
+"El número de bloques clave en el caché de claves que han cambiado pero que "
+"aún no han sido volcados al disco. Antes se conocía como "
+"Not_flushed_key_blocks."
#: server_status.php:111
msgid ""
"The number of unused blocks in the key cache. You can use this value to "
"determine how much of the key cache is in use."
msgstr ""
-"El número de bloques sin usar en el key cache. Puede usar este valor para "
-"determinar cuánto del key cache está en uso."
+"El número de bloques sin usar en el caché de claves. Puede usar este valor "
+"para determinar cuánto del caché de claves está en uso."
#: server_status.php:112
msgid ""
@@ -8628,13 +8629,13 @@ msgid ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
msgstr ""
-"El número de bloques usados en el key cache. Este valor es un marcador de "
-"desbordamiento que indica el número máximo de bloques que algún momento se "
-"llegaron a usar."
+"El número de bloques usados en el caché de claves. Este valor es un marcador "
+"de desbordamiento que indica el número máximo de bloques que algún momento "
+"se llegaron a usar."
#: server_status.php:113
msgid "The number of requests to read a key block from the cache."
-msgstr "El número de solicitudes para leer un key block desde el cache."
+msgstr "El número de solicitudes para leer un bloque de clave desde el caché."
#: server_status.php:114
msgid ""
@@ -8642,18 +8643,18 @@ msgid ""
"then your key_buffer_size value is probably too small. The cache miss rate "
"can be calculated as Key_reads/Key_read_requests."
msgstr ""
-"El número de lecturas físicas del key block desde el disco. Si el Key_reads "
-"es grande, entonces el valor key_buffer_size probablemente es demasiado "
-"pequeño. La tasa de fallos en el cache puede calcularse como Key_reads/"
-"Key_read_requests."
+"El número de lecturas físicas del bloque de claves desde el disco. Si "
+"Key_reads es grande, entonces el valor key_buffer_size probablemente sea "
+"demasiado pequeño. La tasa de fallos en el caché puede calcularse como "
+"Key_reads/Key_read_requests."
#: server_status.php:115
msgid "The number of requests to write a key block to the cache."
-msgstr "El número de solicitudes para escribir un key block al cache."
+msgstr "El número de solicitudes para escribir un bloque de claves a la caché."
#: server_status.php:116
msgid "The number of physical writes of a key block to disk."
-msgstr "El número de escrituras físicas a un key block al disco."
+msgstr "El número de escrituras físicas de un bloque de claves al disco."
#: server_status.php:117
msgid ""
@@ -8766,8 +8767,8 @@ msgid ""
"The number of joins without keys that check for key usage after each row. "
"(If this is not 0, you should carefully check the indexes of your tables.)"
msgstr ""
-"El número de vínculos (joins) sin keys que revisan el uso de key luego de "
-"cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
+"El número de vínculos (joins) sin claves que revisan el uso de claves luego "
+"de cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
"cuidadosamente.)"
#: server_status.php:136
@@ -8912,7 +8913,7 @@ msgstr "Delayed inserts"
#: server_status.php:381
msgid "Key cache"
-msgstr "Cache principal"
+msgstr "Caché de claves"
#: server_status.php:382
msgid "Joins"
@@ -9391,8 +9392,8 @@ msgid ""
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-"Usted no tuvo un juego secreto blowfish y ha activado la autenticación por "
-"cookie, así que una llave se generó automáticamente para usted. Se usa para "
+"Usted no tuvo un conjunto secreto blowfish y ha activado la autenticación "
+"por cookie, así que una clave fue generada automáticamente. Se usa para "
"encriptar cookies; no necesita recordarla."
#: setup/lib/index.lib.php:253
@@ -9826,8 +9827,8 @@ msgstr "Tipo de índice :"
msgid ""
"(\"PRIMARY\" <b>must</b> be the name of and <b>only of</b> a primary key!)"
msgstr ""
-"(\"PRIMARY\" <b>exclusivamente debe</b> ser el nombre de ¡una clave "
-"primaria!)"
+"(\"PRIMARY\" <b>debe</b> ser el nombre <b>exclusivamente</b> de una clave "
+"primaria)"
#: tbl_indexes.php:249
#, php-format
@@ -10000,7 +10001,8 @@ msgstr " Tamaño de la fila "
#, php-format
msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
-"Ocurrió un error al crear la llave extranjera en %1$s (revise los data types)"
+"Ocurrió un error al crear la clave foránea en %1$s (revise los tipos de "
+"dato)"
#: tbl_relation.php:402
msgid "Internal relation"
@@ -10079,7 +10081,7 @@ msgstr "Se ha eliminado la columna %s"
#: tbl_structure.php:408 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
-msgstr "Se añadió una clave primaria en %s"
+msgstr "Se agregó una clave primaria en %s"
#: tbl_structure.php:423 tbl_structure.php:438 tbl_structure.php:453
#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-301-g3f88ed0
by Michal Čihař 16 Feb '11
by Michal Čihař 16 Feb '11
16 Feb '11
The branch, master has been updated
via 3f88ed0cadf2088792021e0d6ce346720560604c (commit)
from e3c6f10ad5ebbe6161928891408a9ae34b50c5d2 (commit)
- Log -----------------------------------------------------------------
commit 3f88ed0cadf2088792021e0d6ce346720560604c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:39:36 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/po/es.po b/po/es.po
index 16a2da9..71d420a 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-10 14:02+0100\n"
-"PO-Revision-Date: 2011-02-16 18:38+0200\n"
+"PO-Revision-Date: 2011-02-16 18:39+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
"Language: es\n"
@@ -4885,7 +4885,7 @@ msgstr "en modo %s y repetir los encabezados cada %s celdas"
#: libraries/display_tbl.lib.php:510
msgid "Sort by key"
-msgstr "Organizar según la clave"
+msgstr "Ordenar según la clave"
#: libraries/display_tbl.lib.php:557 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-300-ge3c6f10
by Michal Čihař 16 Feb '11
by Michal Čihař 16 Feb '11
16 Feb '11
The branch, master has been updated
via e3c6f10ad5ebbe6161928891408a9ae34b50c5d2 (commit)
via bab79f37e40281b3ec50118d249c13bcbc7b7da3 (commit)
via 627a730fc541eabe57e6e041075fc7ee216b0511 (commit)
from 008d1b81a11d1bd7af2630aaa86aee2bd6e7cb3a (commit)
- Log -----------------------------------------------------------------
commit e3c6f10ad5ebbe6161928891408a9ae34b50c5d2
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:38:25 2011 +0200
Translation update done using Pootle.
commit bab79f37e40281b3ec50118d249c13bcbc7b7da3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:37:52 2011 +0200
Translation update done using Pootle.
commit 627a730fc541eabe57e6e041075fc7ee216b0511
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:32:20 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/po/es.po b/po/es.po
index 4f2a267..16a2da9 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-10 14:02+0100\n"
-"PO-Revision-Date: 2011-02-16 18:32+0200\n"
+"PO-Revision-Date: 2011-02-16 18:38+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
"Language: es\n"
@@ -2759,7 +2759,7 @@ msgstr ""
#: libraries/config/messages.inc.php:148
msgid "Foreign key dropdown order"
-msgstr "Orden de despliegue de las llaves extranjeras"
+msgstr "Orden de despliegue de las claves foráneas"
#: libraries/config/messages.inc.php:149
msgid "A dropdown will be used if fewer items are present"
@@ -2767,7 +2767,7 @@ msgstr "Se usará un menú dropdown si hay menos ítems presentes"
#: libraries/config/messages.inc.php:150
msgid "Foreign key limit"
-msgstr "Límite de las llaves extranjeras"
+msgstr "Límite de las claves foráneas"
#: libraries/config/messages.inc.php:151
msgid "Browse mode"
@@ -5397,11 +5397,11 @@ msgid ""
"value of this variable can be increased to increase the total amount of data "
"that can be stored in the database."
msgstr ""
-"El tamaño máximo de una archivo de registro de datos. El predeterminado es "
+"El tamaño máximo de un archivo de registro de datos. El predeterminado es "
"64MB. PBXT puede crear un máximo de 32000 registros de datos, que son "
-"utilizados por todas las tablas. Por tanto, esta variable se puede "
-"incrementar para incrementar la cantidad total de datos que se pueden "
-"almacenar en la base de datos."
+"utilizados por todas las tablas. Por lo tanto, esta variable se puede "
+"incrementar para aumentar la cantidad total de datos que se pueden almacenar "
+"en la base de datos."
#: libraries/engines/pbxt.lib.php:57
msgid "Garbage threshold"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-297-g008d1b8
by Michal Čihař 16 Feb '11
by Michal Čihař 16 Feb '11
16 Feb '11
The branch, master has been updated
via 008d1b81a11d1bd7af2630aaa86aee2bd6e7cb3a (commit)
via 88b766253b8b87615dc5907e919b8bf890e48b99 (commit)
via a5c783865e3b933919ef89ba421f9ae5a1187f55 (commit)
via 9e7f39cf8442afb58bf2920ea7d06fdb2e0f0281 (commit)
via 2193f477356de2b7a391c1dffcc9122d75f0abcd (commit)
via 7f94383c4dac142940d11b376d4ad67ee292e746 (commit)
via 57e30778188841fbd1a6fce2ea72902107b4de79 (commit)
via a28eddcd8f5dbcc191dfb82128dde44da0ae3a85 (commit)
via 99c7e41686f69cd92211694f8da752c184a54ab3 (commit)
via 77e3df45b5c5bf78cf5c45d2a1a202c2fee3e119 (commit)
via e9a8c1bb48a7161696695a404235160120130241 (commit)
via a01e182e76dfd1f92509fdccca1baa1a706fe12e (commit)
via fe161141aa022c48ef7f347b8e18e3f1f7e2ee89 (commit)
via 85dad78eef1299615139877099262ed018a1c9b4 (commit)
via 76e619e34dabd6f2be0c18450c2941f176273865 (commit)
via 2cc316442361f73e29d054384496b0c41f979683 (commit)
via bc4a7339822f329159632a98f2ef0d662f33cfd0 (commit)
via 59b37573a02ce8d88ed03741a55e8f2441b81221 (commit)
via 7ecf76a1e9330b445bf451a5d64b831208f7fab9 (commit)
via 77b1ba7ca9ee780a421a894321a2aee2a3e3cc8d (commit)
via 38fdbad6dbbdaaca1a3293527c1a2f00d07b4dd7 (commit)
via 47264b8e14bdafb5b6890edc5e4edff1a865b6c3 (commit)
via 934cc95f1c475d4be6e111f683a2d871c0407d25 (commit)
via 6a6b9efd96217be224ff2a26b7ae895520065c34 (commit)
via 639d15da9bfbd38c8513bfbc4e23ce1eed9b641f (commit)
via 28db54bf781fe7936cf55816cec84649a248855c (commit)
via 8650caeb91cf57632fbea5b83bdbc2d4a21b6cbe (commit)
via 5935c09a2a8f387c9bb6a26b1e8c169e61971712 (commit)
via 902289b9df4f8b7997a27f8180a85c9807d35854 (commit)
via f469907f917c7a31621564bcd85c5287291f0f98 (commit)
via 657b53df74ee8d217532b882ed8ac7e05e1128f4 (commit)
via f10954d806590466b87e933427e526ecd77f97a1 (commit)
via 0838e64fd9611dd456a01f668621f65156c9a148 (commit)
via 955aa55d43f423b3a02eba6f4ec979937554a299 (commit)
via 6a04eee1aaa5a88aa6677e8365c2a5e73cde183d (commit)
via 312c3cd9dd54d6f86d5efed53ea5b6a6751ca1bb (commit)
via 61c648796da7fa4bbf8b304e010ef58ed2663b93 (commit)
via d74b672d0f48ca4f7169cebc6ae32cfa760eae38 (commit)
via 1e855778fe70bf10e3137fb8dc73faa7221791ee (commit)
via f1c7d9c7002ea7906440f8c0917cf279995bf616 (commit)
via cb1b5d5d97ecd6d1311f31079397764bc2ee954f (commit)
via dd3690964c517bfd0ada461e2645e0fa59b5a482 (commit)
via 899a68fd7c8ee9f50793de56e16409fa4eccb829 (commit)
via 2a0fc92d4492989727fcea604eb93cf7f51eab3b (commit)
via 0a16c3393072600883be7c8c1671c38997bcb09e (commit)
via bcb75c5da79cf7d06d5e198da218dafb5e93b94c (commit)
via cb741b0510191ddca9561449aca0b33a5061708e (commit)
via 0e3ee2ced1cf99fbf5f2b2c564759d62676bf628 (commit)
via 59f1c0435d84e6055202a6d9995a14ebd6cb2df6 (commit)
via 9e81b774c1437f6ecd469af6020dc49e45a2045b (commit)
via fe7fe96354893aea2d6ec3412a3e52c982a1ad1e (commit)
via a70032c359c9f5e8d4d4581934b98e9bf91cb787 (commit)
via 7b7bd36118208b2980e6cc6f5eff2ecd65820236 (commit)
via 30a64ff15cc439f07814418f93dc379190dede4c (commit)
via 863277db2458ef499cfe2b4faa5b375a9cebf98b (commit)
via d60cadf8573b6b4e03b9491ba829be88e9e5cffd (commit)
via aea0ebb0399904cd7a2bdf70aa5844fa66287e82 (commit)
via 0e3996f64260f17edf1232ce7c2b04c33ae349ff (commit)
via 1d45e852de4c32093994a3e2d281c19eec2adf4e (commit)
via 46ecab548a7dcf9cb56229f4e59c7d83b3747bde (commit)
via 9b68354329a70242ff3116a564517f8b5e25bc2d (commit)
via d522004300b2908ddd8b7e1a43ced8141a2b472a (commit)
via 0439417460a370a68bc1bba7902fed36e48a7a58 (commit)
via e64b4b12136923c21838adfb0faa8da33420dfde (commit)
via 2e14a15abc4fa62deb1fbc2334ea753620cb7926 (commit)
via ba54c21e72258402a721a1ace4aaa8abd95aece7 (commit)
via 9ddc47e636eeb89fae73c84d9227ed6a09af9571 (commit)
via 089b89a8f2ba5059d009554bf1978db96b0bafb3 (commit)
from aeeec72b2baecb5d7c82294a8f6b1addaf26c8e8 (commit)
- Log -----------------------------------------------------------------
commit 008d1b81a11d1bd7af2630aaa86aee2bd6e7cb3a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:32:06 2011 +0200
Translation update done using Pootle.
commit 88b766253b8b87615dc5907e919b8bf890e48b99
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:31:51 2011 +0200
Translation update done using Pootle.
commit a5c783865e3b933919ef89ba421f9ae5a1187f55
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:26:51 2011 +0200
Translation update done using Pootle.
commit 9e7f39cf8442afb58bf2920ea7d06fdb2e0f0281
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:26:26 2011 +0200
Translation update done using Pootle.
commit 2193f477356de2b7a391c1dffcc9122d75f0abcd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:23:39 2011 +0200
Translation update done using Pootle.
commit 7f94383c4dac142940d11b376d4ad67ee292e746
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:23:30 2011 +0200
Translation update done using Pootle.
commit 57e30778188841fbd1a6fce2ea72902107b4de79
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:22:59 2011 +0200
Translation update done using Pootle.
commit a28eddcd8f5dbcc191dfb82128dde44da0ae3a85
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:22:49 2011 +0200
Translation update done using Pootle.
commit 99c7e41686f69cd92211694f8da752c184a54ab3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:18:11 2011 +0200
Translation update done using Pootle.
commit 77e3df45b5c5bf78cf5c45d2a1a202c2fee3e119
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:17:12 2011 +0200
Translation update done using Pootle.
commit e9a8c1bb48a7161696695a404235160120130241
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:16:46 2011 +0200
Translation update done using Pootle.
commit a01e182e76dfd1f92509fdccca1baa1a706fe12e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:16:26 2011 +0200
Translation update done using Pootle.
commit fe161141aa022c48ef7f347b8e18e3f1f7e2ee89
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:16:14 2011 +0200
Translation update done using Pootle.
commit 85dad78eef1299615139877099262ed018a1c9b4
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:16:03 2011 +0200
Translation update done using Pootle.
commit 76e619e34dabd6f2be0c18450c2941f176273865
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:15:45 2011 +0200
Translation update done using Pootle.
commit 2cc316442361f73e29d054384496b0c41f979683
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:15:11 2011 +0200
Translation update done using Pootle.
commit bc4a7339822f329159632a98f2ef0d662f33cfd0
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:13:50 2011 +0200
Translation update done using Pootle.
commit 59b37573a02ce8d88ed03741a55e8f2441b81221
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:13:28 2011 +0200
Translation update done using Pootle.
commit 7ecf76a1e9330b445bf451a5d64b831208f7fab9
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:13:11 2011 +0200
Translation update done using Pootle.
commit 77b1ba7ca9ee780a421a894321a2aee2a3e3cc8d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:12:31 2011 +0200
Translation update done using Pootle.
commit 38fdbad6dbbdaaca1a3293527c1a2f00d07b4dd7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:12:18 2011 +0200
Translation update done using Pootle.
commit 47264b8e14bdafb5b6890edc5e4edff1a865b6c3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:10:45 2011 +0200
Translation update done using Pootle.
commit 934cc95f1c475d4be6e111f683a2d871c0407d25
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:09:41 2011 +0200
Translation update done using Pootle.
commit 6a6b9efd96217be224ff2a26b7ae895520065c34
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:08:36 2011 +0200
Translation update done using Pootle.
commit 639d15da9bfbd38c8513bfbc4e23ce1eed9b641f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:06:10 2011 +0200
Translation update done using Pootle.
commit 28db54bf781fe7936cf55816cec84649a248855c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:06:01 2011 +0200
Translation update done using Pootle.
commit 8650caeb91cf57632fbea5b83bdbc2d4a21b6cbe
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:06:00 2011 +0200
Translation update done using Pootle.
commit 5935c09a2a8f387c9bb6a26b1e8c169e61971712
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:05:21 2011 +0200
Translation update done using Pootle.
commit 902289b9df4f8b7997a27f8180a85c9807d35854
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:05:12 2011 +0200
Translation update done using Pootle.
commit f469907f917c7a31621564bcd85c5287291f0f98
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:04:54 2011 +0200
Translation update done using Pootle.
commit 657b53df74ee8d217532b882ed8ac7e05e1128f4
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:04:45 2011 +0200
Translation update done using Pootle.
commit f10954d806590466b87e933427e526ecd77f97a1
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:04:05 2011 +0200
Translation update done using Pootle.
commit 0838e64fd9611dd456a01f668621f65156c9a148
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:03:28 2011 +0200
Translation update done using Pootle.
commit 955aa55d43f423b3a02eba6f4ec979937554a299
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:02:55 2011 +0200
Translation update done using Pootle.
commit 6a04eee1aaa5a88aa6677e8365c2a5e73cde183d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:02:18 2011 +0200
Translation update done using Pootle.
commit 312c3cd9dd54d6f86d5efed53ea5b6a6751ca1bb
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:02:08 2011 +0200
Translation update done using Pootle.
commit 61c648796da7fa4bbf8b304e010ef58ed2663b93
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:01:46 2011 +0200
Translation update done using Pootle.
commit d74b672d0f48ca4f7169cebc6ae32cfa760eae38
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:01:31 2011 +0200
Translation update done using Pootle.
commit 1e855778fe70bf10e3137fb8dc73faa7221791ee
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:00:59 2011 +0200
Translation update done using Pootle.
commit f1c7d9c7002ea7906440f8c0917cf279995bf616
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:00:43 2011 +0200
Translation update done using Pootle.
commit cb1b5d5d97ecd6d1311f31079397764bc2ee954f
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:00:19 2011 +0200
Translation update done using Pootle.
commit dd3690964c517bfd0ada461e2645e0fa59b5a482
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 18:00:10 2011 +0200
Translation update done using Pootle.
commit 899a68fd7c8ee9f50793de56e16409fa4eccb829
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:59:48 2011 +0200
Translation update done using Pootle.
commit 2a0fc92d4492989727fcea604eb93cf7f51eab3b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:59:26 2011 +0200
Translation update done using Pootle.
commit 0a16c3393072600883be7c8c1671c38997bcb09e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:59:19 2011 +0200
Translation update done using Pootle.
commit bcb75c5da79cf7d06d5e198da218dafb5e93b94c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:58:46 2011 +0200
Translation update done using Pootle.
commit cb741b0510191ddca9561449aca0b33a5061708e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:58:26 2011 +0200
Translation update done using Pootle.
commit 0e3ee2ced1cf99fbf5f2b2c564759d62676bf628
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:58:06 2011 +0200
Translation update done using Pootle.
commit 59f1c0435d84e6055202a6d9995a14ebd6cb2df6
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:57:59 2011 +0200
Translation update done using Pootle.
commit 9e81b774c1437f6ecd469af6020dc49e45a2045b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:57:48 2011 +0200
Translation update done using Pootle.
commit fe7fe96354893aea2d6ec3412a3e52c982a1ad1e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:56:59 2011 +0200
Translation update done using Pootle.
commit a70032c359c9f5e8d4d4581934b98e9bf91cb787
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:56:48 2011 +0200
Translation update done using Pootle.
commit 7b7bd36118208b2980e6cc6f5eff2ecd65820236
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:56:30 2011 +0200
Translation update done using Pootle.
commit 30a64ff15cc439f07814418f93dc379190dede4c
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:55:52 2011 +0200
Translation update done using Pootle.
commit 863277db2458ef499cfe2b4faa5b375a9cebf98b
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:54:43 2011 +0200
Translation update done using Pootle.
commit d60cadf8573b6b4e03b9491ba829be88e9e5cffd
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:54:33 2011 +0200
Translation update done using Pootle.
commit aea0ebb0399904cd7a2bdf70aa5844fa66287e82
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:51:33 2011 +0200
Translation update done using Pootle.
commit 0e3996f64260f17edf1232ce7c2b04c33ae349ff
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:50:38 2011 +0200
Translation update done using Pootle.
commit 1d45e852de4c32093994a3e2d281c19eec2adf4e
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:49:46 2011 +0200
Translation update done using Pootle.
commit 46ecab548a7dcf9cb56229f4e59c7d83b3747bde
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:49:27 2011 +0200
Translation update done using Pootle.
commit 9b68354329a70242ff3116a564517f8b5e25bc2d
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:49:07 2011 +0200
Translation update done using Pootle.
commit d522004300b2908ddd8b7e1a43ced8141a2b472a
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:48:45 2011 +0200
Translation update done using Pootle.
commit 0439417460a370a68bc1bba7902fed36e48a7a58
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:47:39 2011 +0200
Translation update done using Pootle.
commit e64b4b12136923c21838adfb0faa8da33420dfde
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:47:28 2011 +0200
Translation update done using Pootle.
commit 2e14a15abc4fa62deb1fbc2334ea753620cb7926
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:46:25 2011 +0200
Translation update done using Pootle.
commit ba54c21e72258402a721a1ace4aaa8abd95aece7
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:46:15 2011 +0200
Translation update done using Pootle.
commit 9ddc47e636eeb89fae73c84d9227ed6a09af9571
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:45:58 2011 +0200
Translation update done using Pootle.
commit 089b89a8f2ba5059d009554bf1978db96b0bafb3
Author: Matías Bellone <matiasbellone(a)gmail.com>
Date: Wed Feb 16 17:45:48 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/es.po | 195 ++++++++++++++++++++++++++++++-------------------------------
1 files changed, 96 insertions(+), 99 deletions(-)
diff --git a/po/es.po b/po/es.po
index d2c5325..4f2a267 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-10 14:02+0100\n"
-"PO-Revision-Date: 2011-02-11 05:50+0200\n"
+"PO-Revision-Date: 2011-02-16 18:32+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
"Language: es\n"
@@ -112,7 +112,7 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
-"El archivo %s no está disponible en este sistema, favor de visitar "
+"El archivo %s no está disponible en este sistema, por favor visite "
"www.phpmyadmin.net para más información."
#: db_create.php:58
@@ -530,7 +530,7 @@ msgstr "como expresión regular"
#: db_search.php:229
#, php-format
msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Resultados de la búsqueda para «<i>%s</i>» %s:"
+msgstr "Resultados de la búsqueda para \"<i>%s</i>\" %s:"
# singular: %s resultado en la tabla <i>%s</i>
# plural: %s resultados en la tabla <i>%s</i>
@@ -578,7 +578,7 @@ msgstr "Buscar en la base de datos"
#: db_search.php:298
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Palabra(s) o valor(es) a buscar (comodín: «%»):"
+msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
#: db_search.php:303
msgid "Find:"
@@ -586,7 +586,7 @@ msgstr "Encontrado:"
#: db_search.php:307 db_search.php:308
msgid "Words are separated by a space character (\" \")."
-msgstr "Las palabras están separadas por un espacio (« »)."
+msgstr "Las palabras están separadas por un espacio (\" \")."
#: db_search.php:321
msgid "Inside table(s):"
@@ -629,7 +629,7 @@ msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-"Esta vista tiene al menos este número de filas. Por favor, refiérase a la %"
+"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
"sdocumentation%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -816,7 +816,7 @@ msgstr "Log de la base de datos"
#: enum_editor.php:21 libraries/tbl_properties.inc.php:794
#, php-format
msgid "Values for the column \"%s\""
-msgstr "Valores para la columna «%s»"
+msgstr "Valores para la columna \"%s\""
#: enum_editor.php:22 libraries/tbl_properties.inc.php:795
msgid "Enter each value in a separate field."
@@ -832,11 +832,11 @@ msgstr "Salida"
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
-msgstr "Copia y pega los valores unidos en el campo «Longitud/Valores»"
+msgstr "Copia y pega los valores unidos en el campo \"Longitud/Valores\""
#: export.php:73
msgid "Selected export type has to be saved in file!"
-msgstr "El formato de exportación seleccionado ¡debe grabarse en el archivo!"
+msgstr "¡El formato de exportación seleccionado debe grabarse en el archivo!"
#: export.php:164 export.php:189 export.php:662
#, php-format
@@ -894,7 +894,7 @@ msgid ""
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
msgstr ""
-"No se recibieron datos para importar. O no se envió el nombre del archivo, o "
+"No se recibieron datos para importar. O no se envió el nombre del archivo o "
"el tamaño del archivo excedió el máximo permitido por su configuración PHP. "
"Ver [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
@@ -928,7 +928,7 @@ msgid ""
"file and import will resume."
msgstr ""
"Se ha agotado el tiempo de ejecución del script; si desea completar la "
-"importación, por favor, reenvíe el mismo archivo y la importación continuará."
+"importación por favor reenvíe el mismo archivo y la importación continuará."
#: import.php:424
msgid ""
@@ -961,7 +961,7 @@ msgstr "Clic para deseleccionar"
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:159
msgid "\"DROP DATABASE\" statements are disabled."
-msgstr "Los enunciados «DROP DATABASE» están desactivados."
+msgstr "Los enunciados \"DROP DATABASE\" están desactivados."
#: js/messages.php:30 libraries/mult_submits.inc.php:258 sql.php:257
msgid "Do you really want to "
@@ -1142,7 +1142,7 @@ msgstr "Seleccione la clave foránea (foreign key)"
#: js/messages.php:98
msgid "Please select the primary key or a unique key"
-msgstr "Por favor, seleccione la clave primaria o una clave única"
+msgstr "Por favor seleccione la clave primaria o una clave única"
#: js/messages.php:99 pmd_general.php:88 tbl_relation.php:545
msgid "Choose column to display"
@@ -1461,7 +1461,7 @@ msgstr "No fue posible grabar el archivo a disco."
#: libraries/File.class.php:325
msgid "File upload stopped by extension."
-msgstr "La subida del archivo fue detenida por su extensión."
+msgstr "La subida del archivo fue detenida por extensión."
#: libraries/File.class.php:328
msgid "Unknown error in file upload."
@@ -1658,7 +1658,7 @@ msgid ""
"%1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
-"configuración. Utilice %1$ssetup script%2$s para crear uno."
+"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1740,7 +1740,7 @@ msgstr ""
#: libraries/auth/swekey/swekey.auth.lib.php:118
#, php-format
msgid "File %s does not contain any key id"
-msgstr "El archivo %s no contiene ninguna Id de llave"
+msgstr "El archivo %s no contiene ningún id de clave "
#: libraries/auth/swekey/swekey.auth.lib.php:157
#: libraries/auth/swekey/swekey.auth.lib.php:180
@@ -1749,7 +1749,7 @@ msgstr "La autenticación de hardware fracasó"
#: libraries/auth/swekey/swekey.auth.lib.php:166
msgid "No valid authentication key plugged"
-msgstr "No se ha conectado una llave de autenticación válida"
+msgstr "No se ha conectado una clave de autenticación válida"
#: libraries/auth/swekey/swekey.auth.lib.php:202
msgid "Authenticating..."
@@ -1880,9 +1880,9 @@ msgid ""
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
"is fine."
msgstr ""
-"¡phpMyAdmin no puede leer el fichero de configuración!<br />Esto puede "
+"¡phpMyAdmin no puede leer el archivo de configuración!<br />Esto puede "
"suceder si php encuentra un error sintáctico en él o bien php no puede "
-"encontrar el fichero.<br />Intente acceder al fichero de configuración "
+"encontrar el archivo.<br />Intente acceder al archivo de configuración "
"directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de "
"error que reciba. En muchas ocasiones falta una coma o punto y coma en algún "
"sitio.<br />Si recibe una página en blanco, todo está correcto."
@@ -1890,26 +1890,26 @@ msgstr ""
#: libraries/common.inc.php:587
#, php-format
msgid "Could not load default configuration from: %1$s"
-msgstr "No se pudo cargar la configuración predeterminada desde: «%1$s»"
+msgstr "No se pudo cargar la configuración predeterminada desde: %1$s"
#: libraries/common.inc.php:592
msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!"
msgstr ""
-"El contenido de <tt>$cfg['PmaAbsoluteUri']</tt> ¡DEBE constar en config.inc."
-"php!"
+"¡El contenido de <tt>$cfg['PmaAbsoluteUri']</tt> DEBE estar definido en el "
+"archivo de configuración config.inc.php!"
#: libraries/common.inc.php:622
#, php-format
msgid "Invalid server index: %s"
-msgstr "No es válido el índice del servidor: «%s»"
+msgstr "Índice de servidor inválido: %s"
#: libraries/common.inc.php:629
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-"El nombre del host no es válido para el servidor %1$s. Por favor, revise su "
+"El nombre del host no es válido para el servidor %1$s. Por favor revise su "
"configuración."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
@@ -1919,7 +1919,7 @@ msgstr "Servidor"
#: libraries/common.inc.php:826
msgid "Invalid authentication method set in configuration:"
-msgstr "Método de autenticación no válido diefinido en la configuración:"
+msgstr "Método de autenticación no válido definido en la configuración:"
#: libraries/common.inc.php:929
#, php-format
@@ -2244,7 +2244,7 @@ msgstr "no disponible"
#: libraries/config/FormDisplay.class.php:732
#, php-format
msgid "\"%s\" requires %s extension"
-msgstr "«%s» requiere la extensión %s"
+msgstr "\"%s\" requiere la extensión %s"
#: libraries/config/FormDisplay.class.php:746
#, php-format
@@ -2561,7 +2561,7 @@ msgstr "Enviar (genera un archivo descargable)"
#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:236
msgid "Character set of the file"
-msgstr "Juego de caracteres del archivo"
+msgstr "Conjunto de caracteres del archivo"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
#: tbl_printview.php:373 tbl_structure.php:829
@@ -2709,11 +2709,11 @@ msgstr "Fechas de creación/actualización/revisión"
#: libraries/config/messages.inc.php:122
msgid "Use delayed inserts"
-msgstr "Usar «inserts» con retraso"
+msgstr "Utilizar inserciones con retraso"
#: libraries/config/messages.inc.php:123 libraries/export/sql.php:53
msgid "Disable foreign key checks"
-msgstr "Deshabilitar la revisión de las llaves extranjeras (foreign keys)"
+msgstr "Deshabilitar la revisión de las claves foráneas (foreign keys)"
#: libraries/config/messages.inc.php:126
msgid "Use hexadecimal for BLOB"
@@ -2753,8 +2753,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
-"Orden en el que se agrupa el contenido de una caja desplegable de llaves "
-"extranjeras; [kbd]content[/kbd] son los datos referidos, [kbd]id[/kbd] es el "
+"Orden en el que se agrupa el contenido de una caja desplegable de claves "
+"foráneas; [kbd]content[/kbd] son los datos referidos, [kbd]id[/kbd] es el "
"valor clave"
#: libraries/config/messages.inc.php:148
@@ -3532,15 +3532,15 @@ msgstr ""
#: libraries/config/messages.inc.php:334
msgid "Permanent query history"
-msgstr "Bitácora permanente de consultas"
+msgstr "Histórico permanente de consultas"
#: libraries/config/messages.inc.php:336
msgid "How many queries are kept in history"
-msgstr "Cuántas consultas se guardan en la bitácora"
+msgstr "Cuántas consultas se guardan en el histórico"
#: libraries/config/messages.inc.php:337
msgid "Query history length"
-msgstr "Longitud de la bitácora de consultas"
+msgstr "Longitud del histórico de consultas"
#: libraries/config/messages.inc.php:338
msgid "Tab displayed when opening a new query window"
@@ -3569,7 +3569,7 @@ msgstr "Anchura de ventana de consulta"
#: libraries/config/messages.inc.php:344
msgid "Select which functions will be used for character set conversion"
msgstr ""
-"Seleccione cuáles funciones se usarán para la conversión del juego de "
+"Seleccione cuáles funciones se usarán para la conversión del conjunto de "
"caracteres"
#: libraries/config/messages.inc.php:345
@@ -3643,8 +3643,8 @@ msgid ""
"swekey.conf)"
msgstr ""
"La ruta para el archivo para [a@http://swekey.com]autenticación con el "
-"dispositivo SweKey[/a] (no localizado en su carpeta de documentos; sugiere: /"
-"etc/swekey.conf)"
+"dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor "
+"sugerido: /etc/swekey.conf)"
#: libraries/config/messages.inc.php:362
msgid "SweKey config file"
@@ -4061,10 +4061,9 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-"Favor de notar que no tiene efecto en el modo de autenticación [kbd]config[/"
-"kbd] debido a que la contraseña está incluída en el archivo de "
-"configuración; esto no limita la capacidad de ejecutar la misma orden "
-"directamente"
+"Note que no tiene efecto en el modo de autenticación [kbd]config[/kbd] "
+"debido a que la contraseña está incluída en el archivo de configuración; "
+"esto no limita la capacidad de ejecutar la misma orden directamente"
#: libraries/config/messages.inc.php:441
msgid "Show password change form"
@@ -4604,8 +4603,7 @@ msgstr "Número de columnas"
#: libraries/display_export.lib.php:35
msgid "Could not load export plugins, please check your installation!"
msgstr ""
-"No se cargaron los plugins de exportación. Por favor, ¡revise su "
-"instalación!"
+"No se cargaron los plugins de exportación. Por favor revise su instalación."
#: libraries/display_export.lib.php:87
msgid "Exporting databases from the current server"
@@ -4614,12 +4612,12 @@ msgstr "Exportar bases de datos del servidor actual"
#: libraries/display_export.lib.php:89
#, php-format
msgid "Exporting tables from \"%s\" database"
-msgstr "Exportando tablas de la base de datos «%s»"
+msgstr "Exportando tablas de la base de datos \"%s\""
#: libraries/display_export.lib.php:91
#, php-format
msgid "Exporting rows from \"%s\" table"
-msgstr "Exportando filas de la tabla «%s»"
+msgstr "Exportando filas de la tabla \"%s\""
#: libraries/display_export.lib.php:97
#| msgid "Export type"
@@ -4712,7 +4710,7 @@ msgstr "usar esto para exportaciones futuras"
#: libraries/display_export.lib.php:281 libraries/display_import.lib.php:188
#: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:516
msgid "Character set of the file:"
-msgstr "Juego de caracteres del archivo:"
+msgstr "Conjunto de caracteres del archivo:"
#: libraries/display_export.lib.php:309
msgid "Compression:"
@@ -4773,14 +4771,14 @@ msgstr ""
#: libraries/display_import.lib.php:76
msgid "The file is being processed, please be patient."
-msgstr "El archivo está siendo procesado, favor de ser paciente."
+msgstr "El archivo está siendo procesado, por favor sea paciente."
#: libraries/display_import.lib.php:98
msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
msgstr ""
-"Favor de ser paciente, el archivo está siendo cargado. Los detalles de la "
+"Por favor sea paciente, el archivo está siendo cargado. Los detalles de la "
"carga no están disponibles."
#: libraries/display_import.lib.php:129
@@ -4790,12 +4788,12 @@ msgstr "Importando al servidor actual"
#: libraries/display_import.lib.php:131
#, php-format
msgid "Importing into the database \"%s\""
-msgstr "Importando en la base de datos «%s»"
+msgstr "Importando en la base de datos \"%s\""
#: libraries/display_import.lib.php:133
#, php-format
msgid "Importing into the table \"%s\""
-msgstr "Importando en la tabla «%s»"
+msgstr "Importando en la tabla \"%s\""
#: libraries/display_import.lib.php:139
msgid "File to Import:"
@@ -5165,8 +5163,8 @@ msgid ""
"method."
msgstr ""
"Si el archivo temporal usado para la generación rápida de índices MyISAM "
-"fuese mayor que el uso del key cache por la cantidad especificada aquí, "
-"preferir el método key cache."
+"fuese mayor que el uso del caché de claves por la cantidad especificada "
+"aquí, preferir el método de caché de claves."
#: libraries/engines/myisam.lib.php:41
msgid "Repair threads"
@@ -5178,8 +5176,8 @@ msgid ""
"parallel (each index in its own thread) during the repair by sorting process."
msgstr ""
"Si este valor es superior a 1, se generan en paralelo los índices de las "
-"tablas MyISAM (cada índice con su propio proceso) durante el proceso "
-"«Reparar mediante ordenado»."
+"tablas MyISAM (cada índice con su propio proceso) durante el proceso de "
+"reparación mediante ordenado."
#: libraries/engines/myisam.lib.php:46
msgid "Sort buffer size"
@@ -5341,28 +5339,28 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:32
msgid "Log cache size"
-msgstr "Tamaño del caché de la bitácora"
+msgstr "Tamaño del caché de registro"
#: libraries/engines/pbxt.lib.php:33
msgid ""
"The amount of memory allocated to the transaction log cache used to cache on "
"transaction log data. The default is 16MB."
msgstr ""
-"La cantidad de memoria asignada al caché de la bitácora de transacciones "
-"utilizado para hacer el caché de los datos de la bitácora de transacciones. "
-"El valor predeterminado es 16MB."
+"La cantidad de memoria asignada al caché de registro de transacciones "
+"utilizado para hacer el caché de los datos de los registros de "
+"transacciones. El valor predeterminado es 16MB."
#: libraries/engines/pbxt.lib.php:37
msgid "Log file threshold"
-msgstr "Umbral del archivo bitácora"
+msgstr "Umbral del archivo de registro"
#: libraries/engines/pbxt.lib.php:38
msgid ""
"The size of a transaction log before rollover, and a new log is created. The "
"default value is 16MB."
msgstr ""
-"El tamaño de la bitácora de transacciones antes del rollover, y se crea una "
-"nueva bitácora. El valor predeterminado es 16MB."
+"El tamaño del registro de transacciones antes del cambio y creación de un "
+"nuevo registro. El valor predeterminado es 16MB."
#: libraries/engines/pbxt.lib.php:42
msgid "Transaction buffer size"
@@ -5385,12 +5383,12 @@ msgid ""
"The amount of data written to the transaction log before a checkpoint is "
"performed. The default value is 24MB."
msgstr ""
-"La cantidad de datos escritos a la bitácora de transacciones antes de hacer "
-"un punto de revisión. El valor predeterminado es 24MB."
+"La cantidad de datos escritos al registro de transacciones antes de hacer un "
+"punto de revisión. El valor predeterminado es 24MB."
#: libraries/engines/pbxt.lib.php:52
msgid "Data log threshold"
-msgstr "Umbral de la bitácora de datos"
+msgstr "Umbral del registro de datos"
#: libraries/engines/pbxt.lib.php:53
msgid ""
@@ -5399,8 +5397,8 @@ msgid ""
"value of this variable can be increased to increase the total amount of data "
"that can be stored in the database."
msgstr ""
-"El tamaño máximo de una bitácora de archivo de datos. El predeterminado es "
-"64MB. PBXT puede crear un máximo de 32000 bitácoras de datos, que son "
+"El tamaño máximo de una archivo de registro de datos. El predeterminado es "
+"64MB. PBXT puede crear un máximo de 32000 registros de datos, que son "
"utilizados por todas las tablas. Por tanto, esta variable se puede "
"incrementar para incrementar la cantidad total de datos que se pueden "
"almacenar en la base de datos."
@@ -5414,7 +5412,7 @@ msgid ""
"The percentage of garbage in a data log file before it is compacted. This is "
"a value between 1 and 99. The default is 50."
msgstr ""
-"El porcentaje de chatarra en un archivo bitácora de datos antes de ser "
+"El porcentaje de chatarra en un archivo de registro de datos antes de ser "
"compactado. Este es un valor entre 1 y 99. El valor predeterminado es 50."
#: libraries/engines/pbxt.lib.php:62
@@ -5821,12 +5819,12 @@ msgstr "Ver los contenidos de una estructura pulsando en su nombre"
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-"Cambie cualquiera de sus opciones pulsando el enlace de «Opciones» "
+"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
"correspondiente"
#: libraries/import.lib.php:1144
msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edite su estructura siguiendo el enlace «Estructura»"
+msgstr "Edite su estructura siguiendo el enlace \"Estructura\""
#: libraries/import.lib.php:1147
msgid "Go to database"
@@ -6217,8 +6215,7 @@ msgstr "Mostrando los comentarios de la columna"
msgid ""
"Please see the documentation on how to update your column_comments table"
msgstr ""
-"Para actualizar su tabla Columna_comentarios (Column_comments), por favor "
-"revise la documentación"
+"Para actualizar su tabla column_comments, por favor revise la documentación"
#: libraries/relation.lib.php:131 libraries/sql_query_form.lib.php:410
msgid "Bookmarked SQL query"
@@ -6653,17 +6650,17 @@ msgid ""
"please reduce your SQL query input to the single query that causes problems, "
"and submit a bug report with the data chunk in the CUT section below:"
msgstr ""
-"Hay la posibilidad de que usted haya encontrado un error en el intérprete de "
-"SQL. Por favor examine cuidadosamente su consulta, y verifique que las "
+"Existe la posibilidad que usted haya encontrado un error en el intérprete de "
+"SQL. Por favor examine cuidadosamente su consulta y verifique que las "
"comillas están siendo usadas adecuadamente y hacen juego. Otra posible causa "
-"del fallo es que usted este subiendo un archivo con datos binarios por fuera "
-"del área de texto delimitado. Intente su consulta en la interfaz de comandos "
-"de MySQL. La salida generada por el servidor de MySQL, de existir, aparece "
-"abajo, en cuyo caso puede ayudar a diagnosticar el problema. Si aún tiene "
+"del fallo es que esté subiendo un archivo con datos binarios por fuera del "
+"área de texto delimitado con comillas. Intente su consulta en la interfaz de "
+"comandos de MySQL. La salida generada por el servidor de MySQL, de existir, "
+"aparece abajo y puede ayudar a diagnosticar el problema. Si aún tiene "
"problemas o el intérprete falla en tanto que en la interfaz de comandos "
"funciona, por favor reduzca la salida de su consulta de SQL a la consulta "
-"que genera el problema, y envíe un reporte de error con la cadena de datos "
-"en la sección de CORTE indicada abajo:"
+"que genera el problema y envíe un reporte de error con la cadena de datos en "
+"la sección de CORTE indicada abajo:"
#: libraries/sqlparser.lib.php:171
msgid "BEGIN CUT"
@@ -6726,17 +6723,17 @@ msgid ""
"a single quote (\"'\") amongst those values, precede it with a backslash "
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-"Si el tipo de campo es «enum» o «set», introduzca los valores usando este "
-"formato: «a»,«b»,«c»...<br />Si alguna vez necesita poner una barra invertida"
-"(«\\») o una comilla simple («'») entre esos valores, añada una barra "
-"invertida. (Por ejemplo «\\\\xyz» o «a\\'b»)."
+"Si el tipo de campo es \"enum\" o \"set\", introduzca los valores usando este "
+"formato: 'a','b','c'...<br />Si alguna vez necesita poner una barra "
+"invertida (\"\\\") o una comilla simple (\"'\") entre esos valores, añada una "
+"barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')."
#: libraries/tbl_properties.inc.php:105
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-"Para valores predeterminados, introduzca solamente un valor, sin caracteres "
+"Para valores predeterminados, introduzca sólamente un valor sin caracteres "
"de escape ni comillas, usando este formato: a"
#: libraries/tbl_properties.inc.php:135
@@ -6761,9 +6758,9 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
"Introduzca los valores para las opciones de transformación usando este "
-"formato: «a»,«b»,«c»...<br />Si alguna vez requiere insertar una barra "
-"invertida («\\») o comilla sencilla («'») entre esos valores, añada una "
-"barra invertida (por ejemplo «\\\\xyz» o «a\\'b»)."
+"formato: 'a',100,b,'c'...<br />Si alguna vez requiere insertar una barra "
+"invertida (\"\\\") o comilla sencilla (\"'\") entre esos valores, añada una barra "
+"invertida (por ejemplo '\\\\xyz' o 'a\\'b')."
#: libraries/tbl_properties.inc.php:371
msgid "ENUM or SET data too long?"
@@ -7137,8 +7134,8 @@ msgid ""
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-"El directorio [code]config[/code], utilizado por el script de instalación, "
-"aún existe en el directorio phpMyAdmin. Deberías de eliminarlo una vez que "
+"El directorio [code]config[/code], utilizado por el script de configuración, "
+"aún existe en el directorio phpMyAdmin. Deberías eliminarlo una vez que "
"phpMyAdmin fue configurado."
#: main.php:309
@@ -7176,8 +7173,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation"
-"%s para posibles ajustes."
+"El servidor está utilizando Suhosin. Por favor refiérase a la %"
+"sdocumentación%s para posibles ajustes."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1187
msgid "No databases"
@@ -7533,7 +7530,7 @@ msgstr "Información"
#: server_collations.php:39
msgid "Character Sets and Collations"
-msgstr "Juego de caracteres y sus cotejamientos"
+msgstr "Conjunto de caracteres y sus cotejamientos"
#: server_databases.php:64
msgid "No databases selected."
@@ -8120,8 +8117,8 @@ msgid ""
"Now, add the following lines at the end of [mysqld] section in your my.cnf "
"and please restart the MySQL server afterwards."
msgstr ""
-"Ahora agrega las siguientes líneas al final de la sección [mysqld] del "
-"archivo my.cnf y luego reinicia el servidor MySQL."
+"Ahora agregue las siguientes líneas al final de la sección [mysqld] del "
+"archivo my.cnf y luego reinicie el servidor MySQL."
# See translation string 4
#: server_replication.php:228
@@ -8130,7 +8127,7 @@ msgid ""
"should see a message informing you, that this server <b>is</b> configured as "
"master"
msgstr ""
-"Una vez reiniciado el servidor MySQL, pulsa el botón \"Continuar\". A "
+"Una vez reiniciado el servidor MySQL, pulse el botón \"Continuar\". A "
"continuación deberás ver un mensaje informando que el servidor <b>está</b> "
"configurado como maestro"
@@ -10159,7 +10156,7 @@ msgid ""
"ensure that you have the privileges to do so."
msgstr ""
"Puedes ejecutar el volcado creando y utilizando una base de datos temporal. "
-"Por favor, asegúrate de tener los privilegios para poder hacerlo."
+"Por favor asegúrate de tener los privilegios para poder hacerlo."
#: tbl_tracking.php:216
msgid "Comment out these two lines if you do not need them."
@@ -10167,7 +10164,7 @@ msgstr "Comenta estas dos líneas si no las necesitas."
#: tbl_tracking.php:225
msgid "SQL statements exported. Please copy the dump or execute it."
-msgstr "Sentencias SQL exportadas. Por favor, copia el volcado o ejecútalo."
+msgstr "Sentencias SQL exportadas. Por favor copia el volcado o ejecútalo."
#: tbl_tracking.php:256
#, php-format
@@ -10265,8 +10262,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"No existe soporte para Diseños personalizados (Themes), por favor, revise su "
-"configuración y/o sus temas en el directorio %s."
+"No existe soporte para temas; por favor revise su configuración y/o sus "
+"temas en el directorio %s."
#: themes.php:41
msgid "Get more themes!"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-229-gaeeec72
by Dieter Adriaenssens 16 Feb '11
by Dieter Adriaenssens 16 Feb '11
16 Feb '11
The branch, master has been updated
via aeeec72b2baecb5d7c82294a8f6b1addaf26c8e8 (commit)
from 1585f89f2b22ec6ab4e1a6559b4f7a803b8f0efd (commit)
- Log -----------------------------------------------------------------
commit aeeec72b2baecb5d7c82294a8f6b1addaf26c8e8
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Wed Feb 16 09:43:17 2011 +0100
fix Dutch translation
-----------------------------------------------------------------------
Summary of changes:
po/nl.po | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/po/nl.po b/po/nl.po
index 3f63611..023995e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1178,7 +1178,7 @@ msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:115
msgid ", latest stable version:"
-msgstr " , meest recente versie :"
+msgstr ", meest recente versie:"
#. l10n: Display text for calendar close link
#: js/messages.php:130
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-228-g1585f89
by Dieter Adriaenssens 16 Feb '11
by Dieter Adriaenssens 16 Feb '11
16 Feb '11
The branch, master has been updated
via 1585f89f2b22ec6ab4e1a6559b4f7a803b8f0efd (commit)
from 29eca5a8940a457e657e319048e0edb42f04b850 (commit)
- Log -----------------------------------------------------------------
commit 1585f89f2b22ec6ab4e1a6559b4f7a803b8f0efd
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Wed Feb 16 09:35:16 2011 +0100
fix Dutch translation
-----------------------------------------------------------------------
Summary of changes:
po/nl.po | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/po/nl.po b/po/nl.po
index 0383999..3f63611 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -5567,8 +5567,7 @@ msgstr ""
#: libraries/export/sql.php:35
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
-"Voeg een commentaar toe in de header (\n"
-" om regels af te breken):"
+"Voeg een commentaar toe in de header (\\n om regels af te breken):"
#: libraries/export/sql.php:37
msgid ""
hooks/post-receive
--
phpMyAdmin
1
0