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
November 2011
- 7 participants
- 156 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7_1-23832-g5e090e3
by Dieter Adriaenssens 30 Nov '11
by Dieter Adriaenssens 30 Nov '11
30 Nov '11
The branch, master has been updated
via 5e090e38649092be27844dbcb8d5508843286d94 (commit)
via 04a26c3cfdb4be64afff95c92c2c323b55532685 (commit)
via e82584aaeebd041b55e68820d0e87db93b280060 (commit)
from f9981e99e148de3fc24a9d8f68f48394c8dc2233 (commit)
- Log -----------------------------------------------------------------
commit 5e090e38649092be27844dbcb8d5508843286d94
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Wed Nov 30 17:12:26 2011 +0100
coding style : multiline function calls
commit 04a26c3cfdb4be64afff95c92c2c323b55532685
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Wed Nov 30 16:48:57 2011 +0100
typo
commit e82584aaeebd041b55e68820d0e87db93b280060
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Wed Nov 30 16:36:37 2011 +0100
coding style : use lower case constant false
-----------------------------------------------------------------------
Summary of changes:
libraries/database_interface.lib.php | 4 +-
main.php | 81 +++++++++++++++++++++++++--------
tbl_create.php | 27 ++++++++---
3 files changed, 82 insertions(+), 30 deletions(-)
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index 2dea06b..c356b90 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -1194,7 +1194,7 @@ function PMA_DBI_postConnect($link, $is_controluser = false)
PMA_cacheGet('PMA_MYSQL_INT_VERSION', true)
);
define(
- 'PMA_MYSQL_MAJOR_VERSION',\
+ 'PMA_MYSQL_MAJOR_VERSION',
PMA_cacheGet('PMA_MYSQL_MAJOR_VERSION', true)
);
define(
@@ -1767,7 +1767,7 @@ function PMA_DBI_formatError($error_number, $error_message)
$error .= ' - ' . $error_message;
$error .= '<br />' . __('The server is not responding.');
} elseif ($error_number == 1005) {
- if (strpos($error_message, 'errno: 13') !== FALSE) {
+ if (strpos($error_message, 'errno: 13') !== false) {
$error .= ' - ' . $error_message;
$error .= '<br />' . __('Please check privileges of directory containing database.');
} else {
diff --git a/main.php b/main.php
index f0fd68f..e918482 100644
--- a/main.php
+++ b/main.php
@@ -90,8 +90,16 @@ if ($server > 0
} else {
$conditional_class = null;
}
- PMA_printListItem(__('Change password'), 'li_change_password',
- './user_password.php?' . $common_url_query, null, null, 'change_password_anchor', null, $conditional_class);
+ PMA_printListItem(
+ __('Change password'),
+ 'li_change_password',
+ './user_password.php?' . $common_url_query,
+ null,
+ null,
+ 'change_password_anchor',
+ null,
+ $conditional_class
+ );
}
} // end if
echo ' <li id="li_select_mysql_collation">';
@@ -141,8 +149,11 @@ echo '</ul>';
if ($server > 0) {
echo '<ul>';
- echo PMA_printListItem(__('More settings'), 'li_user_preferences',
- './prefs_manage.php?' . $common_url_query);
+ echo PMA_printListItem(
+ __('More settings'),
+ 'li_user_preferences',
+ './prefs_manage.php?' . $common_url_query
+ );
echo '</ul>';
}
@@ -160,10 +171,14 @@ if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
PMA_printListItem(__('Server') . ': ' . $server_info, 'li_server_info');
PMA_printListItem(__('Software') . ': ' . PMA_getServerType(), 'li_server_type');
PMA_printListItem(__('Software version') . ': ' . PMA_MYSQL_STR_VERSION . ' - ' . PMA_MYSQL_VERSION_COMMENT, 'li_server_version');
- PMA_printListItem(__('Protocol version') . ': ' . PMA_DBI_get_proto_info(),
- 'li_mysql_proto');
- PMA_printListItem(__('User') . ': ' . htmlspecialchars($mysql_cur_user_and_host),
- 'li_user_info');
+ PMA_printListItem(
+ __('Protocol version') . ': ' . PMA_DBI_get_proto_info(),
+ 'li_mysql_proto'
+ );
+ PMA_printListItem(
+ __('User') . ': ' . htmlspecialchars($mysql_cur_user_and_host),
+ 'li_user_info'
+ );
echo ' <li id="li_select_mysql_charset">';
echo ' ' . __('Server charset') . ': '
@@ -186,14 +201,19 @@ if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
if ($server > 0) {
$client_version_str = PMA_DBI_get_client_info();
if (preg_match('#\d+\.\d+\.\d+#', $client_version_str)
- && in_array($GLOBALS['cfg']['Server']['extension'], array('mysql', 'mysqli'))) {
+ && in_array($GLOBALS['cfg']['Server']['extension'], array('mysql', 'mysqli'))
+ ) {
$client_version_str = 'libmysql - ' . $client_version_str;
}
- PMA_printListItem(__('Database client version') . ': ' . $client_version_str,
- 'li_mysql_client_version');
- PMA_printListItem(__('PHP extension') . ': ' . $GLOBALS['cfg']['Server']['extension']. ' '
+ PMA_printListItem(
+ __('Database client version') . ': ' . $client_version_str,
+ 'li_mysql_client_version'
+ );
+ PMA_printListItem(
+ __('PHP extension') . ': ' . $GLOBALS['cfg']['Server']['extension']. ' '
. PMA_showPHPDocu('book.' . $GLOBALS['cfg']['Server']['extension'] . '.php'),
- 'li_used_php_extension');
+ 'li_used_php_extension'
+ );
}
}
@@ -330,10 +350,20 @@ echo '</noscript>';
if (function_exists('PMA_DBI_get_client_info') && !PMA_DRIZZLE) {
$_client_info = PMA_DBI_get_client_info();
if ($server > 0 && strpos($_client_info, 'mysqlnd') === false && substr(PMA_MYSQL_CLIENT_API, 0, 3) != substr(PMA_MYSQL_INT_VERSION, 0, 3)) {
- trigger_error(PMA_sanitize(sprintf(__('Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'),
- $_client_info,
- substr(PMA_MYSQL_STR_VERSION, 0, strpos(PMA_MYSQL_STR_VERSION . '-', '-')))),
- E_USER_NOTICE);
+ trigger_error(
+ PMA_sanitize(
+ sprintf(
+ __('Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'),
+ $_client_info,
+ substr(
+ PMA_MYSQL_STR_VERSION,
+ 0,
+ strpos(PMA_MYSQL_STR_VERSION . '-', '-')
+ )
+ )
+ ),
+ E_USER_NOTICE
+ );
}
unset($_client_info);
}
@@ -341,9 +371,20 @@ if (function_exists('PMA_DBI_get_client_info') && !PMA_DRIZZLE) {
/**
* Warning about Suhosin
*/
-if ($cfg['SuhosinDisableWarning'] == false && @ini_get('suhosin.request.max_value_length')) {
- trigger_error(PMA_sanitize(sprintf(__('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'), '[a@./Documentation.html#faq1_38@_blank]', '[/a]')), E_USER_WARNING);
- }
+if ($cfg['SuhosinDisableWarning'] == false
+ && @ini_get('suhosin.request.max_value_length')
+) {
+ trigger_error(
+ PMA_sanitize(
+ sprintf(
+ __('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
+ '[a@./Documentation.html#faq1_38@_blank]',
+ '[/a]'
+ )
+ ),
+ E_USER_WARNING
+ );
+}
/**
* Warning about mcrypt.
diff --git a/tbl_create.php b/tbl_create.php
index 9397b87..ae42d75 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -27,8 +27,12 @@ if (strlen($db) == 0) {
*/
if (PMA_DBI_get_columns($db, $table)) {
// table exists already
- PMA_mysqlDie(sprintf(__('Table %s already exists!'), htmlspecialchars($table)), '',
- '', 'db_structure.php?' . PMA_generate_common_url($db));
+ PMA_mysqlDie(
+ sprintf(__('Table %s already exists!'), htmlspecialchars($table)),
+ '',
+ '',
+ 'db_structure.php?' . PMA_generate_common_url($db)
+ );
}
$err_url = 'tbl_create.php?' . PMA_generate_common_url($db, $table);
@@ -47,8 +51,12 @@ if (isset($_REQUEST['submit_num_fields'])) {
* Selects the database to work with
*/
if (!PMA_DBI_select_db($db)) {
- PMA_mysqlDie(sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($db)),
- '', '', 'main.php');
+ PMA_mysqlDie(
+ sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($db)),
+ '',
+ '',
+ 'main.php'
+ );
}
/**
@@ -100,7 +108,8 @@ if (isset($_REQUEST['do_save_data'])) {
? $_REQUEST['field_comments'][$i]
: '',
$field_primary,
- $i);
+ $i
+ );
$query .= ', ';
$sql_query .= $query;
@@ -206,9 +215,11 @@ if (isset($_REQUEST['do_save_data'])) {
foreach ($_REQUEST['field_mimetype'] as $fieldindex => $mimetype) {
if (isset($_REQUEST['field_name'][$fieldindex])
&& strlen($_REQUEST['field_name'][$fieldindex])) {
- PMA_setMIME($db, $table, $_REQUEST['field_name'][$fieldindex], $mimetype,
- $_REQUEST['field_transformation'][$fieldindex],
- $_REQUEST['field_transformation_options'][$fieldindex]);
+ PMA_setMIME(
+ $db, $table, $_REQUEST['field_name'][$fieldindex], $mimetype,
+ $_REQUEST['field_transformation'][$fieldindex],
+ $_REQUEST['field_transformation_options'][$fieldindex]
+ );
}
}
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7_1-23829-gf9981e9
by Michal Čihař 30 Nov '11
by Michal Čihař 30 Nov '11
30 Nov '11
The branch, master has been updated
via f9981e99e148de3fc24a9d8f68f48394c8dc2233 (commit)
from bf04276c877db44a44e28f5a642919107bef8e6f (commit)
- Log -----------------------------------------------------------------
commit f9981e99e148de3fc24a9d8f68f48394c8dc2233
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Nov 30 15:27:10 2011 +0100
Cleanup po fils
-----------------------------------------------------------------------
Summary of changes:
po/ar.po | 1 -
po/ca.po | 1 -
po/fi.po | 1 -
po/gl.po | 1 -
po/hi.po | 1 -
po/it.po | 1 -
po/ka.po | 1 -
po/lt.po | 1 -
po/nb.po | 1 -
po/nl.po | 1 -
po/si.po | 1 -
po/sk.po | 1 -
po/ur.po | 1 -
po/uz.po | 1 -
po/uz(a)latin.po | 1 -
po/zh_CN.po | 1 -
po/zh_TW.po | 1 -
17 files changed, 0 insertions(+), 17 deletions(-)
diff --git a/po/ar.po b/po/ar.po
index 0805c50..87cab19 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -12736,7 +12736,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of recently used tables; set 0 to disable"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
diff --git a/po/ca.po b/po/ca.po
index adc3579..8dbd02e 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -13387,7 +13387,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Màxim nombre de taules mostrades a la llista"
diff --git a/po/fi.po b/po/fi.po
index b183e62..0992ae5 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -13670,7 +13670,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
diff --git a/po/gl.po b/po/gl.po
index 3d02dc3..83a6742 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -13949,7 +13949,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
diff --git a/po/hi.po b/po/hi.po
index 4d6ee57..0800180 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -12800,7 +12800,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
diff --git a/po/it.po b/po/it.po
index 498a595..e853c9e 100644
--- a/po/it.po
+++ b/po/it.po
@@ -13235,7 +13235,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Il massimo numero di tabelle da visualizzare nella lista di tabelle"
diff --git a/po/ka.po b/po/ka.po
index 9362a64..c9623ac 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -13721,7 +13721,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Maximum number of tables displayed in table list"
diff --git a/po/lt.po b/po/lt.po
index 767a9e3..77fed8f 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -12829,7 +12829,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše"
diff --git a/po/nb.po b/po/nb.po
index f48f749..786b1ca 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -13462,7 +13462,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Maks antall tabeller vist i tabellista"
diff --git a/po/nl.po b/po/nl.po
index 864e747..fdcf414 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -13386,7 +13386,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Het maximum aantal tabellen dat wordt getoond in de tabellen lijst"
diff --git a/po/si.po b/po/si.po
index d13da18..c96d733 100644
--- a/po/si.po
+++ b/po/si.po
@@ -12915,7 +12915,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "වගු ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු වගු ගණන"
diff --git a/po/sk.po b/po/sk.po
index 28a9ff7..845b2d9 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -13046,7 +13046,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Maximálny počet tabuliek zobrazených v zozname tabuliek"
diff --git a/po/ur.po b/po/ur.po
index 0fa05d4..518c026 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -12723,7 +12723,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد"
diff --git a/po/uz.po b/po/uz.po
index 0a0b1c1..75bd418 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -13969,7 +13969,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index e8bb936..0f0de61 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -14032,7 +14032,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 2b99aaf..8658e4b 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -12664,7 +12664,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "在数据表列表中最多显示的数据表个数"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 234fa33..c27b98a 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -12875,7 +12875,6 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
-#~| msgid "Maximum number of tables displayed in table list"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "在資料表列資料表中最多顯示的資料表個數"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7_1-23828-gbf04276
by Michal Čihař 30 Nov '11
by Michal Čihař 30 Nov '11
30 Nov '11
The branch, master has been updated
via bf04276c877db44a44e28f5a642919107bef8e6f (commit)
via e448774704c7d4dec641802ed1ebddd86adc7b44 (commit)
from b7d4ed88b5100611bdff1bad2702a4b04f6e41a6 (commit)
- Log -----------------------------------------------------------------
commit bf04276c877db44a44e28f5a642919107bef8e6f
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Nov 30 14:22:23 2011 +0100
Update po files
commit e448774704c7d4dec641802ed1ebddd86adc7b44
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Wed Nov 30 14:17:39 2011 +0100
Improve description of MaxTableUiprefs
-----------------------------------------------------------------------
Summary of changes:
libraries/config/messages.inc.php | 4 ++--
po/af.po | 12 ++++++------
po/ar.po | 21 ++++++++++++---------
po/az.po | 12 ++++++------
po/be.po | 12 ++++++------
po/be(a)latin.po | 12 ++++++------
po/bg.po | 17 ++++++++++-------
po/bn.po | 12 ++++++------
po/br.po | 12 ++++++------
po/bs.po | 12 ++++++------
po/ca.po | 17 +++++++++++------
po/cs.po | 19 ++++++++++++-------
po/cy.po | 12 ++++++------
po/da.po | 28 +++++++++++++++++++---------
po/de.po | 19 ++++++++++++-------
po/el.po | 30 ++++++++++++++++++++----------
po/en_GB.po | 28 +++++++++++++++++++---------
po/es.po | 30 ++++++++++++++++++++----------
po/et.po | 12 ++++++------
po/eu.po | 12 ++++++------
po/fa.po | 12 ++++++------
po/fi.po | 17 +++++++++++------
po/fr.po | 28 +++++++++++++++++++---------
po/gl.po | 17 +++++++++++------
po/he.po | 12 ++++++------
po/hi.po | 17 +++++++++++------
po/hr.po | 12 ++++++------
po/hu.po | 19 ++++++++++++-------
po/id.po | 16 +++++++++-------
po/it.po | 17 +++++++++++------
po/ja.po | 19 ++++++++++++-------
po/ka.po | 17 +++++++++++------
po/ko.po | 12 ++++++------
po/lt.po | 17 +++++++++++------
po/lv.po | 12 ++++++------
po/mk.po | 12 ++++++------
po/ml.po | 12 ++++++------
po/mn.po | 12 ++++++------
po/ms.po | 12 ++++++------
po/nb.po | 17 +++++++++++------
po/nl.po | 17 +++++++++++------
po/phpmyadmin.pot | 12 ++++++------
po/pl.po | 19 ++++++++++++-------
po/pt.po | 12 ++++++------
po/pt_BR.po | 19 ++++++++++++-------
po/ro.po | 12 ++++++------
po/ru.po | 30 ++++++++++++++++++++----------
po/si.po | 17 +++++++++++------
po/sk.po | 17 +++++++++++------
po/sl.po | 29 ++++++++++++++++++++---------
po/sq.po | 12 ++++++------
po/sr.po | 12 ++++++------
po/sr(a)latin.po | 12 ++++++------
po/sv.po | 30 ++++++++++++++++++++----------
po/ta.po | 12 ++++++------
po/te.po | 12 ++++++------
po/th.po | 12 ++++++------
po/tr.po | 30 ++++++++++++++++++++----------
po/tt.po | 12 ++++++------
po/ug.po | 12 ++++++------
po/uk.po | 12 ++++++------
po/ur.po | 17 +++++++++++------
po/uz.po | 17 +++++++++++------
po/uz(a)latin.po | 17 +++++++++++------
po/zh_CN.po | 17 +++++++++++------
po/zh_TW.po | 17 +++++++++++------
66 files changed, 644 insertions(+), 435 deletions(-)
diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php
index 35a8392..cb4b1a5 100644
--- a/libraries/config/messages.inc.php
+++ b/libraries/config/messages.inc.php
@@ -399,8 +399,8 @@ $strConfigServers_history_name = __('SQL query history table');
$strConfigServers_host_desc = __('Hostname where MySQL server is running');
$strConfigServers_host_name = __('Server hostname');
$strConfigServers_LogoutURL_name = __('Logout URL');
-$strConfigServers_MaxTableUiprefs_desc = __('This configuration make sure that we only keep N (N = MaxTableUiprefs) newest record in "table_uiprefs" and automatically delete older records');
-$strConfigServers_MaxTableUiprefs_name = __('Maximum number of records saved in "table_uiprefs" table');
+$strConfigServers_MaxTableUiprefs_desc = __('Limits number of table preferences which are stored in database, the oldest records are automatically removed');
+$strConfigServers_MaxTableUiprefs_name = __('Maximal number of table preferences to store');
$strConfigServers_nopassword_desc = __('Try to connect without password');
$strConfigServers_nopassword_name = __('Connect without password');
$strConfigServers_only_db_desc = __('You can use MySQL wildcard characters (% and _), escape them if you want to use their literal instances, i.e. use [kbd]\'my\_db\'[/kbd] and not [kbd]\'my_db\'[/kbd]. Using this option you can sort database list, just enter their names in order and use [kbd]*[/kbd] at the end to show the rest in alphabetical order.');
diff --git a/po/af.po b/po/af.po
index 324c080..1cd6cc5 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Soek"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2358,7 +2358,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr ""
@@ -4755,12 +4755,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/ar.po b/po/ar.po
index e60ea03..0805c50 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-09-24 21:48+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10(a)windowslive.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "بحث"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2224,7 +2224,7 @@ msgstr "ملف الإعدادت (%s) غير قابل للقراءة."
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينبغى أن يكون قابل للكتابة!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "حجم الخط"
@@ -4582,15 +4582,13 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-#, fuzzy
-#| msgid "Maximum number of recently used tables; set 0 to disable"
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
+msgid "Maximal number of table preferences to store"
+msgstr ""
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -12737,6 +12735,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Maximum number of recently used tables; set 0 to disable"
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
+
#~ msgid "Click to unselect"
#~ msgstr "إضغط لإلغاء الإختيار"
diff --git a/po/az.po b/po/az.po
index 1a941ad..608db30 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "Axtarış"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2385,7 +2385,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr ""
@@ -4821,12 +4821,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/be.po b/po/be.po
index 7b1e194..19667ee 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -48,7 +48,7 @@ msgstr "Пошук"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2425,7 +2425,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Памер шрыфта"
@@ -4919,12 +4919,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 4c49292..eb9188b 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -50,7 +50,7 @@ msgstr "Pošuk"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2437,7 +2437,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Pamier šryfta"
@@ -4903,12 +4903,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/bg.po b/po/bg.po
index 750d2e9..6dee1c1 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-23 17:58+0200\n"
"Last-Translator: any anonymous user <>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Търсене"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2219,7 +2219,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Размер шрифт"
@@ -4570,13 +4570,13 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Максимален брой записи в таблица \"table_uiprefs\""
+msgid "Maximal number of table preferences to store"
+msgstr ""
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -12353,6 +12353,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Максимален брой записи в таблица \"table_uiprefs\""
+
#~ msgid "Click to unselect"
#~ msgstr "Щракване за отмяна на избора"
diff --git a/po/bn.po b/po/bn.po
index c5c1883..33e742e 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "খুঁজুন"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2409,7 +2409,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "ফন্ট এর আকার"
@@ -4887,12 +4887,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/br.po b/po/br.po
index b4e3261..d2e2398 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-10-13 17:20+0200\n"
"Last-Translator: Fulup <fulup.jakez(a)ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -53,7 +53,7 @@ msgstr "Klask"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2242,7 +2242,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Ment an destenn"
@@ -4648,12 +4648,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/bs.po b/po/bs.po
index d158608..87df73f 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -48,7 +48,7 @@ msgstr "Pretraživanje"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2379,7 +2379,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr ""
@@ -4811,12 +4811,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/ca.po b/po/ca.po
index 5878718..adc3579 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Cerca"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2339,7 +2339,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Tamany de lletra"
@@ -4832,14 +4832,14 @@ msgstr "URL de desconnexió"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr "Màxim nombre de taules mostrades a la llista"
#: libraries/config/messages.inc.php:404
@@ -13386,6 +13386,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Maximum number of tables displayed in table list"
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Màxim nombre de taules mostrades a la llista"
+
#~ msgid "Click to unselect"
#~ msgstr "Clica per deseleccionar"
diff --git a/po/cs.po b/po/cs.po
index 7bacd1e..381588f 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-23 11:40+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -50,7 +50,7 @@ msgstr "Vyhledávání"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2220,7 +2220,7 @@ msgstr ""
"Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný "
"pro všechny!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Velikost písma"
@@ -4656,13 +4656,15 @@ msgstr "URL pro odhlášení"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Nejvyšší počet záznamů uložený v tabulkce „table_uiprefs“"
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -12864,6 +12866,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Nejvyšší počet záznamů uložený v tabulkce „table_uiprefs“"
+
#~ msgid "Click to unselect"
#~ msgstr "Klikněte pro zrušení výběru"
diff --git a/po/cy.po b/po/cy.po
index c129c27..c8b0e48 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies(a)tiscali.co.uk>\n"
"Language-Team: Welsh <cy(a)li.org>\n"
@@ -52,7 +52,7 @@ msgstr "Chwilio"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2359,7 +2359,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Maint ffont"
@@ -4793,12 +4793,12 @@ msgstr "URL allgofnodi"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/da.po b/po/da.po
index c40a6c5..1ed6e98 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-09-25 23:05+0200\n"
"Last-Translator: Jørgen Thomsen <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Søg"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2247,7 +2247,7 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Forkerte rettigheder på konfigurationsfil. Må ikke være skrivbar af alle!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Skriftstørrelse"
@@ -4697,15 +4697,15 @@ msgstr "Log ud URL"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
-"Denne konfiguration sikrer, at vi kun beholder de N (N = MaxTableUiprefs) "
-"nyeste rækker i \"table_uiprefs\" og automatisk sletter ældre rækker"
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Maksimalt antal rækker gemt i tabellen \"table_uiprefs\""
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Maksimalt antal tabeller vist i tabellisten"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13150,6 +13150,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert er sat til 0"
+#~ msgid ""
+#~ "This configuration make sure that we only keep N (N = MaxTableUiprefs) "
+#~ "newest record in \"table_uiprefs\" and automatically delete older records"
+#~ msgstr ""
+#~ "Denne konfiguration sikrer, at vi kun beholder de N (N = MaxTableUiprefs) "
+#~ "nyeste rækker i \"table_uiprefs\" og automatisk sletter ældre rækker"
+
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Maksimalt antal rækker gemt i tabellen \"table_uiprefs\""
+
#~ msgid "Click to unselect"
#~ msgstr "Klik for at fravælge"
diff --git a/po/de.po b/po/de.po
index 3152f05..7f39b3e 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-10 17:41+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: german <de(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Suche"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2268,7 +2268,7 @@ msgstr ""
"Falsche Zugriffsrechte auf die Konfigurationdaten. Die Datei sollte nicht "
"für alle lesbar sein!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Schriftgröße"
@@ -4736,13 +4736,15 @@ msgstr "Logout URL"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Maximale Anzahl der Einträge in der Tabelle \"table_uiprefs\""
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13149,6 +13151,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Maximale Anzahl der Einträge in der Tabelle \"table_uiprefs\""
+
#~ msgid "Click to unselect"
#~ msgstr "Zum Abwählen anklicken"
diff --git a/po/el.po b/po/el.po
index 76e11ef3c..b710067 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-10-06 21:35+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p(a)yahoo.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Αναζήτηση"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2259,7 +2259,7 @@ msgstr ""
"Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά "
"εγγράψιμο!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Μέγεθος γραμματοσειράς"
@@ -4739,16 +4739,15 @@ msgstr "Διεύθυνση URL αποσύνδεσης"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
-"Αυτη η ρύθμιση διασφαλίζει ότι διατηρούνται N (N = MaxTableUiprefs) νέες "
-"εγγραφές στο «table_uiprefs» και αυτόματα διαγράφονται παλαιές εγγραφές"
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr ""
-"Μέγιστος αριθμός εγγραφών που αποθηκεύονται στον πίνακα «table_uiprefs»"
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13185,6 +13184,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid ""
+#~ "This configuration make sure that we only keep N (N = MaxTableUiprefs) "
+#~ "newest record in \"table_uiprefs\" and automatically delete older records"
+#~ msgstr ""
+#~ "Αυτη η ρύθμιση διασφαλίζει ότι διατηρούνται N (N = MaxTableUiprefs) νέες "
+#~ "εγγραφές στο «table_uiprefs» και αυτόματα διαγράφονται παλαιές εγγραφές"
+
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr ""
+#~ "Μέγιστος αριθμός εγγραφών που αποθηκεύονται στον πίνακα «table_uiprefs»"
+
#~ msgid "Click to unselect"
#~ msgstr "Πατήστε για απεπιλογή"
diff --git a/po/en_GB.po b/po/en_GB.po
index 993ec6a..3be1bf2 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-24 03:52+0200\n"
"Last-Translator: dannybeckett <daniel.beckett(a)gmail.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Search"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2216,7 +2216,7 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Wrong permissions on configuration file, should not be world writeable!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Font size"
@@ -4653,15 +4653,15 @@ msgstr "Logout URL"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Maximum number of records saved in \"table_uiprefs\" table"
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Maximum number of tables displayed in table list"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13094,6 +13094,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert is set to 0"
+#~ msgid ""
+#~ "This configuration make sure that we only keep N (N = MaxTableUiprefs) "
+#~ "newest record in \"table_uiprefs\" and automatically delete older records"
+#~ msgstr ""
+#~ "This configuration make sure that we only keep N (N = MaxTableUiprefs) "
+#~ "newest record in \"table_uiprefs\" and automatically delete older records"
+
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Maximum number of records saved in \"table_uiprefs\" table"
+
#~ msgid "Click to unselect"
#~ msgstr "Click to unselect"
diff --git a/po/es.po b/po/es.po
index 7307151..615ff00 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-20 19:31+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Buscar"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2251,7 +2251,7 @@ msgstr ""
"Permisos incorrectos en el archivo de configuración ¡cualquiera no debería "
"poder modificarlo!"
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Tamaño de fuente"
@@ -4741,16 +4741,15 @@ msgstr "URL de fin de sesión"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
-"Esta configuración asegura que sólo se mantengan los N (N = MaxTableUiprefs) "
-"registros más recientes en «table_uiprefs» y los registros anteriores sean "
-"eliminados"
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Número máximo de regustros almacenados en la tabla «table_uiprefs»"
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Número máximo de tablas mostradas en una lista de tablas"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13344,6 +13343,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "«concurrent_insert» está definido como 0"
+#~ msgid ""
+#~ "This configuration make sure that we only keep N (N = MaxTableUiprefs) "
+#~ "newest record in \"table_uiprefs\" and automatically delete older records"
+#~ msgstr ""
+#~ "Esta configuración asegura que sólo se mantengan los N (N = "
+#~ "MaxTableUiprefs) registros más recientes en «table_uiprefs» y los "
+#~ "registros anteriores sean eliminados"
+
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Número máximo de regustros almacenados en la tabla «table_uiprefs»"
+
#~ msgid "Click to unselect"
#~ msgstr "Clic para deseleccionar"
diff --git a/po/et.po b/po/et.po
index 47abd4a..925f0fc 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -48,7 +48,7 @@ msgstr "Otsi"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2411,7 +2411,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Fondi suurus"
@@ -4889,12 +4889,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/eu.po b/po/eu.po
index 31e6193..7c592d5 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-04 13:00+0200\n"
"Last-Translator: karrikas <karrikas(a)gmail.com>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Bilatu"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2325,7 +2325,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr ""
@@ -4756,12 +4756,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/fa.po b/po/fa.po
index d3e0165..a1e29a0 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007(a)yahoo.com>\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "جستجو"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2345,7 +2345,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "اندازه حروف"
@@ -4748,12 +4748,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/fi.po b/po/fi.po
index abbc44d..b183e62 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-15 17:18+0200\n"
"Last-Translator: Macrotus <rokkeri(a)hotmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -49,7 +49,7 @@ msgstr "Etsi"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2284,7 +2284,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Fonttikoko"
@@ -4835,14 +4835,14 @@ msgstr "Uloskirjautumisen verkko-osoite"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
#: libraries/config/messages.inc.php:404
@@ -13669,6 +13669,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Maximum number of tables displayed in table list"
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
+
#~ msgid "Click to unselect"
#~ msgstr "Poista valinta painamalla"
diff --git a/po/fr.po b/po/fr.po
index 5480310..f79e71e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-23 17:16+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -50,7 +50,7 @@ msgstr "Rechercher"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2241,7 +2241,7 @@ msgstr ""
"Permissions sur le fichier de configuration incorrectes, il ne doit pas être "
"en écriture pour tout le monde."
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Taille du texte"
@@ -4706,15 +4706,15 @@ msgstr "URL pour quitter"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
-"Cette configuration assure que seulement les N (N = MaxTableUiprefs) plus "
-"récentes entrées dans «table_uiprefs» sont conservées"
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "Nombre maximum de lignes conservées dans la table «table_uiprefs»"
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Nombre maximum de tables affichées dans la liste des tables"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13222,6 +13222,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Le paramètre concurrent_insert a une valeur de 0"
+#~ msgid ""
+#~ "This configuration make sure that we only keep N (N = MaxTableUiprefs) "
+#~ "newest record in \"table_uiprefs\" and automatically delete older records"
+#~ msgstr ""
+#~ "Cette configuration assure que seulement les N (N = MaxTableUiprefs) plus "
+#~ "récentes entrées dans «table_uiprefs» sont conservées"
+
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Nombre maximum de lignes conservées dans la table «table_uiprefs»"
+
#~ msgid "Click to unselect"
#~ msgstr "Cliquer pour désélectionner"
diff --git a/po/gl.po b/po/gl.po
index 24ef1f4..3d02dc3 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-06 21:20+0200\n"
"Last-Translator: inter981 <inter981(a)gmail.com>\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -50,7 +50,7 @@ msgstr "Buscar"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2418,7 +2418,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Tamaño da letra"
@@ -5032,14 +5032,14 @@ msgstr "URL de desconexión"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
#: libraries/config/messages.inc.php:404
@@ -13949,6 +13949,11 @@ msgid "concurrent_insert is set to 0"
msgstr ""
#, fuzzy
+#~| msgid "Maximum number of tables displayed in table list"
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
+
+#, fuzzy
#~ msgid "Create an index"
#~ msgstr "Crear un índice novo"
diff --git a/po/he.po b/po/he.po
index 2b0d81f..8b6f608 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: <zippoxer(a)gmail.com>\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "חיפוש"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2382,7 +2382,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr ""
@@ -4818,12 +4818,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/hi.po b/po/hi.po
index a03137f..4d6ee57 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-07-24 19:04+0200\n"
"Last-Translator: <deadefy(a)nepalimail.com>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -48,7 +48,7 @@ msgstr "ढूंढें"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2315,7 +2315,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "फ़ॉन्ट का आकार"
@@ -4733,14 +4733,14 @@ msgstr "लॉगआउट URL"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
#: libraries/config/messages.inc.php:404
@@ -12799,6 +12799,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Maximum number of tables displayed in table list"
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
+
#~ msgid "Click to unselect"
#~ msgstr "रद्द करने के लिए क्लिक करें."
diff --git a/po/hr.po b/po/hr.po
index f335590..0eaf279 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -50,7 +50,7 @@ msgstr "Traži"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2426,7 +2426,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Veličina fonta"
@@ -4910,12 +4910,12 @@ msgstr ""
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
+msgid "Maximal number of table preferences to store"
msgstr ""
#: libraries/config/messages.inc.php:404
diff --git a/po/hu.po b/po/hu.po
index 076d994..6ca741a 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\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"
@@ -49,7 +49,7 @@ msgstr "Keresés"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2247,7 +2247,7 @@ msgstr "A létező beállító fájl (%s) nem olvasható."
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Betűméret"
@@ -4717,13 +4717,15 @@ msgstr "Kijelentkezési URL"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr "A \"table_uiprefs\" táblába elmentett maximális rekordok száma"
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "A táblalistában megjelenítendő táblák száma"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
@@ -13090,6 +13092,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
+#~ msgstr "A \"table_uiprefs\" táblába elmentett maximális rekordok száma"
+
#~ msgid "Click to unselect"
#~ msgstr "Kattintson a kijelölés megszüntetéséhez."
diff --git a/po/id.po b/po/id.po
index c63bb3c..194439a 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
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-29 12:47+0100\n"
+"POT-Creation-Date: 2011-11-30 14:18+0100\n"
"PO-Revision-Date: 2011-11-19 09:54+0700\n"
"Last-Translator: Ivan Lanin <ivan(a)lanin.org>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -51,7 +51,7 @@ msgstr "Cari"
#: db_operations.php:522 db_operations.php:549 db_search.php:337
#: db_structure.php:614 enum_editor.php:119 gis_data_editor.php:133
#: gis_data_editor.php:166 gis_data_editor.php:315 js/messages.php:208
-#: libraries/Config.class.php:1326 libraries/Theme_Manager.class.php:309
+#: libraries/Config.class.php:1332 libraries/Theme_Manager.class.php:309
#: libraries/auth/cookie.auth.lib.php:245 libraries/common.lib.php:1364
#: libraries/common.lib.php:2411 libraries/core.lib.php:513
#: libraries/display_change_password.lib.php:72
@@ -2221,7 +2221,7 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1297
+#: libraries/Config.class.php:1303
msgid "Font size"
msgstr "Ukuran huruf"
@@ -4582,13 +4582,15 @@ msgstr "URL keluar"
#: libraries/config/messages.inc.php:402
msgid ""
-"This configuration make sure that we only keep N (N = MaxTableUiprefs) "
-"newest record in \"table_uiprefs\" and automatically delete older records"
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
msgstr ""
#: libraries/config/messages.inc.php:403
-msgid "Maximum number of records saved in \"table_uiprefs\" table"
-msgstr ""
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Maximal number of table preferences to store"
+msgstr "Jumlah ma ber of table preferences to store"