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
- 11 participants
- 38616 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-1328-g45ba32f
by Marc Delisle 30 Dec '10
by Marc Delisle 30 Dec '10
30 Dec '10
The branch, master has been updated
via 45ba32fa18caa705275fc03900a45f22c635daa8 (commit)
from 6f5e0c9407c9857cde3e7cf578711007983a74c6 (commit)
- Log -----------------------------------------------------------------
commit 45ba32fa18caa705275fc03900a45f22c635daa8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Dec 30 07:27:19 2010 -0500
AJAX navi buttons do not work in search results, so use the same div as in normal browse results
-----------------------------------------------------------------------
Summary of changes:
js/tbl_select.js | 27 ++++-----------------------
tbl_select.php | 2 +-
2 files changed, 5 insertions(+), 24 deletions(-)
diff --git a/js/tbl_select.js b/js/tbl_select.js
index 208daac..3c6cae3 100644
--- a/js/tbl_select.js
+++ b/js/tbl_select.js
@@ -22,25 +22,6 @@ $(document).ready(function() {
cache: 'false'
});
- /**
- * Attach the {@link appendInlineAnchor} function to a custom event, which
- * will be triggered manually everytime the table of results is reloaded;
- *
- * Needs appendInlineAnchor() which is defined in sql.js
- * @memberOf jQuery
- */
- $("#searchresults").live('appendAnchor',function() {
- appendInlineAnchor();
- })
-
- /**
- * Trigger the appendAnchor event to prepare the first table for inline edit
- *
- * @memberOf jQuery
- */
- $("#searchresults").trigger('appendAnchor');
-
-
$('<a id="togglesearchform"></a>')
.html(PMA_messages['strShowSearchCriteria'])
.insertAfter('#tbl_search_form')
@@ -70,7 +51,7 @@ $(document).ready(function() {
event.preventDefault();
// empty previous search results while we are waiting for new results
- $("#searchresults").empty();
+ $("#sqlqueryresults").empty();
PMA_ajaxShowMessage(PMA_messages['strSearching']);
// add this hidden field just once
@@ -81,8 +62,8 @@ $(document).ready(function() {
$.post($search_form.attr('action'), $search_form.serialize(), function(response) {
if (typeof response == 'string') {
// found results
- $("#searchresults").html(response);
- $("#searchresults").trigger('appendAnchor');
+ $("#sqlqueryresults").html(response);
+ $("#sqlqueryresults").trigger('appendAnchor');
$('#tbl_search_form').hide();
$('#togglesearchform')
// always start with the Show message
@@ -91,7 +72,7 @@ $(document).ready(function() {
.show();
} else {
// error message (zero rows)
- $("#searchresults").html(response['message']);
+ $("#sqlqueryresults").html(response['message']);
}
})
})
diff --git a/tbl_select.php b/tbl_select.php
index 6913a9a..67bf5d2 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -303,7 +303,7 @@ $(function() {
<input type="submit" name="submit" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
-<div id="searchresults"></div>
+<div id="sqlqueryresults"></div>
<?php
require './libraries/footer.inc.php';
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-1327-g6f5e0c9
by Marc Delisle 30 Dec '10
by Marc Delisle 30 Dec '10
30 Dec '10
The branch, master has been updated
via 6f5e0c9407c9857cde3e7cf578711007983a74c6 (commit)
from 818965f8830ee877a4bbfe5f4255dd2db0b8ae10 (commit)
- Log -----------------------------------------------------------------
commit 6f5e0c9407c9857cde3e7cf578711007983a74c6
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Dec 30 07:08:40 2010 -0500
Unneeded wrapping of a jQuery object
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index 8e7bab2..875b501 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -270,13 +270,13 @@ $(document).ready(function() {
PMA_ajaxShowMessage();
/**
- * @var the_form Object referring to the form element that paginates the results table
+ * @var $the_form Object referring to the form element that paginates the results table
*/
- var the_form = $(this).parent("form");
+ var $the_form = $(this).parent("form");
- $(the_form).append('<input type="hidden" name="ajax_request" value="true" />');
+ $the_form.append('<input type="hidden" name="ajax_request" value="true" />');
- $.post($(the_form).attr('action'), $(the_form).serialize(), function(data) {
+ $.post($the_form.attr('action'), $the_form.serialize(), function(data) {
$("#sqlqueryresults").html(data);
$("#sqlqueryresults").trigger('appendAnchor');
}) // end $.post()
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-1326-g818965f
by Marc Delisle 30 Dec '10
by Marc Delisle 30 Dec '10
30 Dec '10
The branch, master has been updated
via 818965f8830ee877a4bbfe5f4255dd2db0b8ae10 (commit)
from 0c979971a28c05e3fece7fb21ff2937e92c6d5e9 (commit)
- Log -----------------------------------------------------------------
commit 818965f8830ee877a4bbfe5f4255dd2db0b8ae10
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Dec 30 06:50:23 2010 -0500
Inline edit links were not displayed in search results
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 10 +++++-----
js/tbl_select.js | 20 ++++++++++++++++++++
tbl_select.php | 1 +
3 files changed, 26 insertions(+), 5 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index d9ecdea..8e7bab2 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -54,10 +54,11 @@ function getFieldName($this_field, disp_mode) {
* The function that iterates over each row in the table_results and appends a
* new inline edit anchor to each table row.
*
- * @param disp_mode string
*/
-function appendInlineAnchor(disp_mode) {
- if(disp_mode == 'vertical') {
+function appendInlineAnchor() {
+ var disp_mode = $("#top_direction_dropdown").val();
+
+ if (disp_mode == 'vertical') {
// there can be one or two tr containing this class, depending
// on the ModifyDeleteAtLeft and ModifyDeleteAtRight cfg parameters
$('#table_results tr')
@@ -163,10 +164,9 @@ $(document).ready(function() {
* Attach the {@link appendInlineAnchor} function to a custom event, which
* will be triggered manually everytime the table of results is reloaded
* @memberOf jQuery
- * @name sqlqueryresults_live
*/
$("#sqlqueryresults").live('appendAnchor',function() {
- appendInlineAnchor(disp_mode);
+ appendInlineAnchor();
})
/**
diff --git a/js/tbl_select.js b/js/tbl_select.js
index 6b03cce..208daac 100644
--- a/js/tbl_select.js
+++ b/js/tbl_select.js
@@ -22,6 +22,25 @@ $(document).ready(function() {
cache: 'false'
});
+ /**
+ * Attach the {@link appendInlineAnchor} function to a custom event, which
+ * will be triggered manually everytime the table of results is reloaded;
+ *
+ * Needs appendInlineAnchor() which is defined in sql.js
+ * @memberOf jQuery
+ */
+ $("#searchresults").live('appendAnchor',function() {
+ appendInlineAnchor();
+ })
+
+ /**
+ * Trigger the appendAnchor event to prepare the first table for inline edit
+ *
+ * @memberOf jQuery
+ */
+ $("#searchresults").trigger('appendAnchor');
+
+
$('<a id="togglesearchform"></a>')
.html(PMA_messages['strShowSearchCriteria'])
.insertAfter('#tbl_search_form')
@@ -63,6 +82,7 @@ $(document).ready(function() {
if (typeof response == 'string') {
// found results
$("#searchresults").html(response);
+ $("#searchresults").trigger('appendAnchor');
$('#tbl_search_form').hide();
$('#togglesearchform')
// always start with the Show message
diff --git a/tbl_select.php b/tbl_select.php
index a680c86..6913a9a 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -16,6 +16,7 @@
require_once './libraries/common.inc.php';
require_once './libraries/mysql_charsets.lib.php';
+$GLOBALS['js_include'][] = 'sql.js';
$GLOBALS['js_include'][] = 'tbl_select.js';
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
$GLOBALS['js_include'][] = 'jquery/timepicker.js';
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-1325-g0c97997
by Marc Delisle 29 Dec '10
by Marc Delisle 29 Dec '10
29 Dec '10
The branch, master has been updated
via 0c979971a28c05e3fece7fb21ff2937e92c6d5e9 (commit)
from 829b3c73c1246a4730cc806fff74936cc72f3dcc (commit)
- Log -----------------------------------------------------------------
commit 0c979971a28c05e3fece7fb21ff2937e92c6d5e9
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 29 08:54:59 2010 -0500
split() is deprecated
-----------------------------------------------------------------------
Summary of changes:
enum_editor.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/enum_editor.php b/enum_editor.php
index 4a24c5b..088275f 100644
--- a/enum_editor.php
+++ b/enum_editor.php
@@ -24,7 +24,7 @@ require_once './libraries/header_meta_style.inc.php';
<?php
$values = array();
if (isset($_GET['values'])) { // This page was displayed when the "add a new value" link or the link in tbl_alter.php was clicked
- $values = split(',', urldecode($_GET['values']));
+ $values = explode(',', urldecode($_GET['values']));
} elseif (isset($_GET['num_fields'])) { // This page was displayed from submitting this form
for($field_num = 1; $field_num <= $_GET['num_fields']; $field_num++) {
$values[] = "'" . str_replace(array("'", '\\'), array("''", '\\\\'), $_GET['field' . $field_num]) . "'";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA1-1324-g829b3c7
by Marc Delisle 29 Dec '10
by Marc Delisle 29 Dec '10
29 Dec '10
The branch, master has been updated
via 829b3c73c1246a4730cc806fff74936cc72f3dcc (commit)
from 25b62d267473f0401354aa7744a125a982a058fb (commit)
- Log -----------------------------------------------------------------
commit 829b3c73c1246a4730cc806fff74936cc72f3dcc
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 29 08:43:26 2010 -0500
Refresh .po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 110 +++++++++++++++++------------
po/ar.po | 111 +++++++++++++++++------------
po/az.po | 110 +++++++++++++++++------------
po/be.po | 110 +++++++++++++++++------------
po/be(a)latin.po | 111 +++++++++++++++++------------
po/bg.po | 110 +++++++++++++++++------------
po/bn.po | 110 +++++++++++++++++------------
po/bs.po | 110 +++++++++++++++++------------
po/ca.po | 113 ++++++++++++++++++------------
po/cs.po | 153 +++++++++++++++++++++++------------------
po/cy.po | 111 +++++++++++++++++------------
po/da.po | 111 +++++++++++++++++------------
po/de.po | 111 +++++++++++++++++------------
po/el.po | 113 ++++++++++++++++++------------
po/en_GB.po | 118 ++++++++++++++++++-------------
po/es.po | 111 +++++++++++++++++------------
po/et.po | 110 +++++++++++++++++------------
po/eu.po | 110 +++++++++++++++++------------
po/fa.po | 110 +++++++++++++++++------------
po/fi.po | 111 +++++++++++++++++------------
po/fr.po | 126 +++++++++++++++++++--------------
po/gl.po | 111 +++++++++++++++++------------
po/he.po | 110 +++++++++++++++++------------
po/hi.po | 111 +++++++++++++++++------------
po/hr.po | 110 +++++++++++++++++------------
po/hu.po | 111 +++++++++++++++++------------
po/id.po | 110 +++++++++++++++++------------
po/it.po | 111 +++++++++++++++++------------
po/ja.po | 111 +++++++++++++++++------------
po/ka.po | 111 +++++++++++++++++------------
po/ko.po | 110 +++++++++++++++++------------
po/lt.po | 113 ++++++++++++++++++------------
po/lv.po | 110 +++++++++++++++++------------
po/mk.po | 110 +++++++++++++++++------------
po/mn.po | 111 +++++++++++++++++------------
po/ms.po | 110 +++++++++++++++++------------
po/nb.po | 111 +++++++++++++++++------------
po/nl.po | 113 ++++++++++++++++++------------
po/phpmyadmin.pot | 109 +++++++++++++++++------------
po/pl.po | 111 +++++++++++++++++------------
po/pt.po | 110 +++++++++++++++++------------
po/pt_BR.po | 110 +++++++++++++++++------------
po/ro.po | 111 +++++++++++++++++------------
po/ru.po | 111 +++++++++++++++++------------
po/si.po | 110 +++++++++++++++++------------
po/sk.po | 110 +++++++++++++++++------------
po/sl.po | 113 ++++++++++++++++++------------
po/sq.po | 110 +++++++++++++++++------------
po/sr.po | 110 +++++++++++++++++------------
po/sr(a)latin.po | 110 +++++++++++++++++------------
po/sv.po | 111 +++++++++++++++++------------
po/ta.po | 111 +++++++++++++++++------------
po/te.po | 112 ++++++++++++++++++------------
po/th.po | 110 +++++++++++++++++------------
po/tr.po | 118 ++++++++++++++++++-------------
po/tt.po | 110 +++++++++++++++++------------
po/ug.po | 109 +++++++++++++++++------------
po/uk.po | 199 ++++++++++++++++++-----------------------------------
po/ur.po | 109 +++++++++++++++++------------
po/uz.po | 111 +++++++++++++++++------------
po/uz(a)latin.po | 111 +++++++++++++++++------------
po/zh_CN.po | 113 ++++++++++++++++++------------
po/zh_TW.po | 110 +++++++++++++++++------------
63 files changed, 4112 insertions(+), 3021 deletions(-)
diff --git a/po/af.po b/po/af.po
index 2d657ff..97d43bd 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-27 07:14-0500\n"
+"POT-Creation-Date: 2010-12-29 08:42-0500\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"
@@ -44,8 +44,8 @@ msgstr "Soek"
#: browse_foreigners.php:160 db_operations.php:367 db_operations.php:412
#: db_operations.php:518 db_operations.php:542 db_search.php:359
-#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
-#: libraries/Theme_Manager.class.php:305
+#: db_structure.php:524 enum_editor.php:63 js/messages.php:59
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
#: libraries/display_change_password.lib.php:72
@@ -59,18 +59,18 @@ msgstr "Soek"
#: libraries/schema/User_Schema.class.php:449
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
-#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:218
-#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
-#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
-#: server_privileges.php:2062 server_privileges.php:2109
-#: server_privileges.php:2149 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1066
-#: tbl_change.php:1103 tbl_indexes.php:252 tbl_operations.php:262
-#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
-#: tbl_operations.php:733 tbl_select.php:302 tbl_structure.php:653
-#: tbl_structure.php:689 tbl_tracking.php:389 tbl_tracking.php:506
-#: view_create.php:181 view_operations.php:99
+#: libraries/tbl_properties.inc.php:781 libraries/tbl_properties.inc.php:798
+#: main.php:105 navigation.php:218 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:665
+#: server_privileges.php:1705 server_privileges.php:2062
+#: server_privileges.php:2109 server_privileges.php:2149
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1207 tbl_change.php:322
+#: tbl_change.php:1066 tbl_change.php:1103 tbl_indexes.php:252
+#: tbl_operations.php:262 tbl_operations.php:299 tbl_operations.php:501
+#: tbl_operations.php:563 tbl_operations.php:733 tbl_select.php:302
+#: tbl_structure.php:653 tbl_structure.php:689 tbl_tracking.php:389
+#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Gaan"
@@ -160,7 +160,7 @@ msgstr "Tipe"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:173 db_structure.php:453 libraries/export/htmlword.php:250
+#: db_datadict.php:173 db_structure.php:455 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
@@ -376,7 +376,7 @@ msgstr "Rye"
msgid "Size"
msgstr "Grootte"
-#: db_printview.php:160 db_structure.php:409 libraries/export/sql.php:624
+#: db_printview.php:160 db_structure.php:411 libraries/export/sql.php:624
#: libraries/export/sql.php:964
msgid "in use"
msgstr "in gebruik"
@@ -403,7 +403,7 @@ msgstr ""
msgid "Last check"
msgstr ""
-#: db_printview.php:220 db_structure.php:432
+#: db_printview.php:220 db_structure.php:434
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -610,57 +610,57 @@ msgstr "Binne tabel(le):"
msgid "No tables found in database"
msgstr "Geen tabelle in databasis gevind nie."
-#: db_structure.php:270 tbl_operations.php:658
+#: db_structure.php:272 tbl_operations.php:658
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s is leeg gemaak"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Veld %s is verwyder"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s is verwyder"
-#: db_structure.php:286 tbl_create.php:295
+#: db_structure.php:288 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:288 tbl_create.php:297
+#: db_structure.php:290 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:372 libraries/display_tbl.lib.php:1942
+#: db_structure.php:374 libraries/display_tbl.lib.php:1942
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
-#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138
+#: db_structure.php:388 db_structure.php:402 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73
msgid "View"
msgstr ""
-#: db_structure.php:437 libraries/db_structure.lib.php:40
+#: db_structure.php:439 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:375
msgid "Replication"
msgstr ""
-#: db_structure.php:441
+#: db_structure.php:443
msgid "Sum"
msgstr "Som"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:450 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:476 db_structure.php:493 db_structure.php:494
+#: db_structure.php:478 db_structure.php:495 db_structure.php:496
#: libraries/display_tbl.lib.php:2083 libraries/display_tbl.lib.php:2088
#: libraries/mult_submits.inc.php:15 server_databases.php:245
#: server_databases.php:250 server_privileges.php:1677 tbl_structure.php:545
@@ -668,23 +668,23 @@ msgstr ""
msgid "With selected:"
msgstr "Met gekose:"
-#: db_structure.php:479 libraries/display_tbl.lib.php:2078
+#: db_structure.php:481 libraries/display_tbl.lib.php:2078
#: server_databases.php:247 server_privileges.php:570
#: server_privileges.php:1680 tbl_structure.php:548
msgid "Check All"
msgstr "Kies Alles"
-#: db_structure.php:483 libraries/display_tbl.lib.php:2079
+#: db_structure.php:485 libraries/display_tbl.lib.php:2079
#: libraries/replication_gui.lib.php:35 server_databases.php:249
#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552
msgid "Uncheck All"
msgstr "Kies Niks"
-#: db_structure.php:488
+#: db_structure.php:490
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:495 db_structure.php:496
+#: db_structure.php:497 db_structure.php:498
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2096 libraries/display_tbl.lib.php:2230
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
@@ -694,19 +694,19 @@ msgstr ""
msgid "Export"
msgstr "Export"
-#: db_structure.php:497 db_structure.php:498 db_structure.php:553
+#: db_structure.php:499 db_structure.php:500 db_structure.php:555
#: libraries/display_tbl.lib.php:2185 libraries/mult_submits.inc.php:27
#: tbl_structure.php:583 tbl_structure.php:585
msgid "Print view"
msgstr "Drukker mooi (print view)"
-#: db_structure.php:501 db_structure.php:502 libraries/common.lib.php:1635
+#: db_structure.php:503 db_structure.php:504 libraries/common.lib.php:1635
#: libraries/common.lib.php:3005 libraries/common.lib.php:3006
#: libraries/mult_submits.inc.php:38
msgid "Empty"
msgstr "Maak Leeg"
-#: db_structure.php:503 db_structure.php:504 db_tracking.php:103
+#: db_structure.php:505 db_structure.php:506 db_tracking.php:103
#: libraries/Index.class.php:482 libraries/common.lib.php:1636
#: libraries/common.lib.php:3003 libraries/common.lib.php:3004
#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72
@@ -715,27 +715,27 @@ msgstr "Maak Leeg"
msgid "Drop"
msgstr "Verwyder"
-#: db_structure.php:505 db_structure.php:506 libraries/mult_submits.inc.php:41
+#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:41
#: tbl_operations.php:583
msgid "Check table"
msgstr "Kontroleer tabel"
-#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:46
+#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:46
#: tbl_operations.php:623 tbl_structure.php:801 tbl_structure.php:803
msgid "Optimize table"
msgstr "Optimaliseer tabel"
-#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:51
+#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:51
#: tbl_operations.php:613
msgid "Repair table"
msgstr "Herstel tabel"
-#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:56
+#: db_structure.php:513 db_structure.php:514 libraries/mult_submits.inc.php:56
#: tbl_operations.php:603
msgid "Analyze table"
msgstr "Analiseer tabel"
-#: db_structure.php:560 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:562 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -833,6 +833,18 @@ msgstr ""
msgid "Enter each value in a separate field."
msgstr ""
+#: enum_editor.php:57
+msgid "+ Restart insertion and add a new value"
+msgstr ""
+
+#: enum_editor.php:67
+msgid "Output"
+msgstr ""
+
+#: enum_editor.php:68
+msgid "Copy and paste the joined values into the \"Length/Values\" field"
+msgstr ""
+
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr ""
@@ -1025,13 +1037,14 @@ msgstr "Geen Regte"
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:56 libraries/tbl_properties.inc.php:793
+#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
msgstr ""
-#: js/messages.php:60 pmd_general.php:390 pmd_general.php:427
-#: pmd_general.php:547 pmd_general.php:595 pmd_general.php:671
-#: pmd_general.php:725 pmd_general.php:788
+#: js/messages.php:60 libraries/tbl_properties.inc.php:798 pmd_general.php:390
+#: pmd_general.php:427 pmd_general.php:547 pmd_general.php:595
+#: pmd_general.php:671 pmd_general.php:725 pmd_general.php:788
msgid "Cancel"
msgstr ""
@@ -5924,7 +5937,7 @@ msgstr ""
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1164
+#: libraries/relation.lib.php:1173
msgid "no description"
msgstr "geen Beskrywing"
@@ -6482,6 +6495,11 @@ msgstr "Voeg 'n nuwe veld by"
msgid "You have to add at least one column."
msgstr "Jy moet ten minste een Kolom kies om te vertoon"
+#: libraries/tbl_properties.inc.php:797
+#, fuzzy
+msgid "+ Add a new value"
+msgstr "Voeg 'n nuwe gebruiker by"
+
#: libraries/tbl_triggers.lib.php:28
msgid "Event"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index f988fc4..08f41ad 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-27 07:14-0500\n"
+"POT-Creation-Date: 2010-12-29 08:42-0500\n"
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed <aa.mahdawy.10(a)gmail.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -47,8 +47,8 @@ msgstr "ابحث"
#: browse_foreigners.php:160 db_operations.php:367 db_operations.php:412
#: db_operations.php:518 db_operations.php:542 db_search.php:359
-#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
-#: libraries/Theme_Manager.class.php:305
+#: db_structure.php:524 enum_editor.php:63 js/messages.php:59
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
#: libraries/display_change_password.lib.php:72
@@ -62,18 +62,18 @@ msgstr "ابحث"
#: libraries/schema/User_Schema.class.php:449
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
-#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:218
-#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
-#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
-#: server_privileges.php:2062 server_privileges.php:2109
-#: server_privileges.php:2149 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1066
-#: tbl_change.php:1103 tbl_indexes.php:252 tbl_operations.php:262
-#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
-#: tbl_operations.php:733 tbl_select.php:302 tbl_structure.php:653
-#: tbl_structure.php:689 tbl_tracking.php:389 tbl_tracking.php:506
-#: view_create.php:181 view_operations.php:99
+#: libraries/tbl_properties.inc.php:781 libraries/tbl_properties.inc.php:798
+#: main.php:105 navigation.php:218 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:665
+#: server_privileges.php:1705 server_privileges.php:2062
+#: server_privileges.php:2109 server_privileges.php:2149
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1207 tbl_change.php:322
+#: tbl_change.php:1066 tbl_change.php:1103 tbl_indexes.php:252
+#: tbl_operations.php:262 tbl_operations.php:299 tbl_operations.php:501
+#: tbl_operations.php:563 tbl_operations.php:733 tbl_select.php:302
+#: tbl_structure.php:653 tbl_structure.php:689 tbl_tracking.php:389
+#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr " تنفيذ "
@@ -161,7 +161,7 @@ msgstr "النوع"
msgid "Null"
msgstr "خالي"
-#: db_datadict.php:173 db_structure.php:453 libraries/export/htmlword.php:250
+#: db_datadict.php:173 db_structure.php:455 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
@@ -375,7 +375,7 @@ msgstr "صفوف"
msgid "Size"
msgstr "الحجم"
-#: db_printview.php:160 db_structure.php:409 libraries/export/sql.php:624
+#: db_printview.php:160 db_structure.php:411 libraries/export/sql.php:624
#: libraries/export/sql.php:964
msgid "in use"
msgstr "قيد الإستعمال"
@@ -401,7 +401,7 @@ msgstr "التحديث الأخير"
msgid "Last check"
msgstr "التحقق الأخير"
-#: db_printview.php:220 db_structure.php:432
+#: db_printview.php:220 db_structure.php:434
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -616,57 +616,57 @@ msgstr "داخل الجدول)الجداول(:"
msgid "No tables found in database"
msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!."
-#: db_structure.php:270 tbl_operations.php:658
+#: db_structure.php:272 tbl_operations.php:658
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s أفرغت محتوياتها"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s حذفت"
-#: db_structure.php:286 tbl_create.php:295
+#: db_structure.php:288 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:288 tbl_create.php:297
+#: db_structure.php:290 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:372 libraries/display_tbl.lib.php:1942
+#: db_structure.php:374 libraries/display_tbl.lib.php:1942
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
-#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138
+#: db_structure.php:388 db_structure.php:402 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73
msgid "View"
msgstr ""
-#: db_structure.php:437 libraries/db_structure.lib.php:40
+#: db_structure.php:439 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:375
msgid "Replication"
msgstr ""
-#: db_structure.php:441
+#: db_structure.php:443
msgid "Sum"
msgstr "المجموع"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:450 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:476 db_structure.php:493 db_structure.php:494
+#: db_structure.php:478 db_structure.php:495 db_structure.php:496
#: libraries/display_tbl.lib.php:2083 libraries/display_tbl.lib.php:2088
#: libraries/mult_submits.inc.php:15 server_databases.php:245
#: server_databases.php:250 server_privileges.php:1677 tbl_structure.php:545
@@ -674,23 +674,23 @@ msgstr ""
msgid "With selected:"
msgstr ": على المحدد"
-#: db_structure.php:479 libraries/display_tbl.lib.php:2078
+#: db_structure.php:481 libraries/display_tbl.lib.php:2078
#: server_databases.php:247 server_privileges.php:570
#: server_privileges.php:1680 tbl_structure.php:548
msgid "Check All"
msgstr "اختر الكل"
-#: db_structure.php:483 libraries/display_tbl.lib.php:2079
+#: db_structure.php:485 libraries/display_tbl.lib.php:2079
#: libraries/replication_gui.lib.php:35 server_databases.php:249
#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552
msgid "Uncheck All"
msgstr "إلغاء تحديد الكل"
-#: db_structure.php:488
+#: db_structure.php:490
msgid "Check tables having overhead"
msgstr "تحقق من overhead"
-#: db_structure.php:495 db_structure.php:496
+#: db_structure.php:497 db_structure.php:498
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2096 libraries/display_tbl.lib.php:2230
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
@@ -700,19 +700,19 @@ msgstr "تحقق من overhead"
msgid "Export"
msgstr "تصدير"
-#: db_structure.php:497 db_structure.php:498 db_structure.php:553
+#: db_structure.php:499 db_structure.php:500 db_structure.php:555
#: libraries/display_tbl.lib.php:2185 libraries/mult_submits.inc.php:27
#: tbl_structure.php:583 tbl_structure.php:585
msgid "Print view"
msgstr "عرض نسخة للطباعة"
-#: db_structure.php:501 db_structure.php:502 libraries/common.lib.php:1635
+#: db_structure.php:503 db_structure.php:504 libraries/common.lib.php:1635
#: libraries/common.lib.php:3005 libraries/common.lib.php:3006
#: libraries/mult_submits.inc.php:38
msgid "Empty"
msgstr "إفراغ محتوى"
-#: db_structure.php:503 db_structure.php:504 db_tracking.php:103
+#: db_structure.php:505 db_structure.php:506 db_tracking.php:103
#: libraries/Index.class.php:482 libraries/common.lib.php:1636
#: libraries/common.lib.php:3003 libraries/common.lib.php:3004
#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72
@@ -721,27 +721,27 @@ msgstr "إفراغ محتوى"
msgid "Drop"
msgstr "حذف"
-#: db_structure.php:505 db_structure.php:506 libraries/mult_submits.inc.php:41
+#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:41
#: tbl_operations.php:583
msgid "Check table"
msgstr "التحقق من الجدول"
-#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:46
+#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:46
#: tbl_operations.php:623 tbl_structure.php:801 tbl_structure.php:803
msgid "Optimize table"
msgstr "ضغط الجدول"
-#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:51
+#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:51
#: tbl_operations.php:613
msgid "Repair table"
msgstr "إصلاح الجدول"
-#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:56
+#: db_structure.php:513 db_structure.php:514 libraries/mult_submits.inc.php:56
#: tbl_operations.php:603
msgid "Analyze table"
msgstr "تحليل الجدول"
-#: db_structure.php:560 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:562 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "قاموس البيانات"
@@ -834,6 +834,18 @@ msgstr ""
msgid "Enter each value in a separate field."
msgstr ""
+#: enum_editor.php:57
+msgid "+ Restart insertion and add a new value"
+msgstr ""
+
+#: enum_editor.php:67
+msgid "Output"
+msgstr ""
+
+#: enum_editor.php:68
+msgid "Copy and paste the joined values into the \"Length/Values\" field"
+msgstr ""
+
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr ""
@@ -1034,13 +1046,14 @@ msgstr "قيد إعادة قراءة الصلاحيات."
msgid "Removing Selected Users"
msgstr "احذف المستخدمين المحددين"
-#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:56 libraries/tbl_properties.inc.php:793
+#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
msgstr "أغلق"
-#: js/messages.php:60 pmd_general.php:390 pmd_general.php:427
-#: pmd_general.php:547 pmd_general.php:595 pmd_general.php:671
-#: pmd_general.php:725 pmd_general.php:788
+#: js/messages.php:60 libraries/tbl_properties.inc.php:798 pmd_general.php:390
+#: pmd_general.php:427 pmd_general.php:547 pmd_general.php:595
+#: pmd_general.php:671 pmd_general.php:725 pmd_general.php:788
msgid "Cancel"
msgstr "ألغ"
@@ -5964,7 +5977,7 @@ msgstr ""
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1164
+#: libraries/relation.lib.php:1173
msgid "no description"
msgstr "بدون وصف"
@@ -6523,6 +6536,12 @@ msgstr "أضف إلى الملاحظات"
msgid "You have to add at least one column."
msgstr "عليك اختيار عمود واحد على الأقل للعرض"
+#: libraries/tbl_properties.inc.php:797
+#, fuzzy
+#| msgid "Add a new User"
+msgid "+ Add a new value"
+msgstr "أضف مستخدم جديد"
+
#: libraries/tbl_triggers.lib.php:28
msgid "Event"
msgstr "حدث"
diff --git a/po/az.po b/po/az.po
index 4448f2b..4693b6e 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-27 07:14-0500\n"
+"POT-Creation-Date: 2010-12-29 08:42-0500\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -43,8 +43,8 @@ msgstr "Axtarış"
#: browse_foreigners.php:160 db_operations.php:367 db_operations.php:412
#: db_operations.php:518 db_operations.php:542 db_search.php:359
-#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
-#: libraries/Theme_Manager.class.php:305
+#: db_structure.php:524 enum_editor.php:63 js/messages.php:59
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
#: libraries/display_change_password.lib.php:72
@@ -58,18 +58,18 @@ msgstr "Axtarış"
#: libraries/schema/User_Schema.class.php:449
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
-#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:218
-#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
-#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
-#: server_privileges.php:2062 server_privileges.php:2109
-#: server_privileges.php:2149 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1066
-#: tbl_change.php:1103 tbl_indexes.php:252 tbl_operations.php:262
-#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
-#: tbl_operations.php:733 tbl_select.php:302 tbl_structure.php:653
-#: tbl_structure.php:689 tbl_tracking.php:389 tbl_tracking.php:506
-#: view_create.php:181 view_operations.php:99
+#: libraries/tbl_properties.inc.php:781 libraries/tbl_properties.inc.php:798
+#: main.php:105 navigation.php:218 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:665
+#: server_privileges.php:1705 server_privileges.php:2062
+#: server_privileges.php:2109 server_privileges.php:2149
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1207 tbl_change.php:322
+#: tbl_change.php:1066 tbl_change.php:1103 tbl_indexes.php:252
+#: tbl_operations.php:262 tbl_operations.php:299 tbl_operations.php:501
+#: tbl_operations.php:563 tbl_operations.php:733 tbl_select.php:302
+#: tbl_structure.php:653 tbl_structure.php:689 tbl_tracking.php:389
+#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Davam"
@@ -157,7 +157,7 @@ msgstr "Tip"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:173 db_structure.php:453 libraries/export/htmlword.php:250
+#: db_datadict.php:173 db_structure.php:455 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
@@ -374,7 +374,7 @@ msgstr "Sıra sayı"
msgid "Size"
msgstr "Boy"
-#: db_printview.php:160 db_structure.php:409 libraries/export/sql.php:624
+#: db_printview.php:160 db_structure.php:411 libraries/export/sql.php:624
#: libraries/export/sql.php:964
msgid "in use"
msgstr "istifadede"
@@ -400,7 +400,7 @@ msgstr "En son yenilenme"
msgid "Last check"
msgstr "En son yoxlama"
-#: db_printview.php:220 db_structure.php:432
+#: db_printview.php:220 db_structure.php:434
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -607,58 +607,58 @@ msgstr "Inside table(s):"
msgid "No tables found in database"
msgstr "Me'lumat bazasında cedvel yoxdur."
-#: db_structure.php:270 tbl_operations.php:658
+#: db_structure.php:272 tbl_operations.php:658
#, php-format
msgid "Table %s has been emptied"
msgstr "%s cedveli boşaldıldı"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "%s sahesi leğv edildi"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "Table %s has been dropped"
msgstr "%s cedveli leğv edildi"
-#: db_structure.php:286 tbl_create.php:295
+#: db_structure.php:288 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:288 tbl_create.php:297
+#: db_structure.php:290 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:372 libraries/display_tbl.lib.php:1942
+#: db_structure.php:374 libraries/display_tbl.lib.php:1942
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
-#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138
+#: db_structure.php:388 db_structure.php:402 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73
msgid "View"
msgstr ""
-#: db_structure.php:437 libraries/db_structure.lib.php:40
+#: db_structure.php:439 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:375
#, fuzzy
msgid "Replication"
msgstr "Relations"
-#: db_structure.php:441
+#: db_structure.php:443
msgid "Sum"
msgstr "Cemi"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:450 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur."
-#: db_structure.php:476 db_structure.php:493 db_structure.php:494
+#: db_structure.php:478 db_structure.php:495 db_structure.php:496
#: libraries/display_tbl.lib.php:2083 libraries/display_tbl.lib.php:2088
#: libraries/mult_submits.inc.php:15 server_databases.php:245
#: server_databases.php:250 server_privileges.php:1677 tbl_structure.php:545
@@ -666,23 +666,23 @@ msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur."
msgid "With selected:"
msgstr "Seçilenleri:"
-#: db_structure.php:479 libraries/display_tbl.lib.php:2078
+#: db_structure.php:481 libraries/display_tbl.lib.php:2078
#: server_databases.php:247 server_privileges.php:570
#: server_privileges.php:1680 tbl_structure.php:548
msgid "Check All"
msgstr "Hamısını Seç"
-#: db_structure.php:483 libraries/display_tbl.lib.php:2079
+#: db_structure.php:485 libraries/display_tbl.lib.php:2079
#: libraries/replication_gui.lib.php:35 server_databases.php:249
#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552
msgid "Uncheck All"
msgstr "Heç Birini Seçme"
-#: db_structure.php:488
+#: db_structure.php:490
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:495 db_structure.php:496
+#: db_structure.php:497 db_structure.php:498
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2096 libraries/display_tbl.lib.php:2230
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
@@ -692,19 +692,19 @@ msgstr ""
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:497 db_structure.php:498 db_structure.php:553
+#: db_structure.php:499 db_structure.php:500 db_structure.php:555
#: libraries/display_tbl.lib.php:2185 libraries/mult_submits.inc.php:27
#: tbl_structure.php:583 tbl_structure.php:585
msgid "Print view"
msgstr "Çap görüntüsü"
-#: db_structure.php:501 db_structure.php:502 libraries/common.lib.php:1635
+#: db_structure.php:503 db_structure.php:504 libraries/common.lib.php:1635
#: libraries/common.lib.php:3005 libraries/common.lib.php:3006
#: libraries/mult_submits.inc.php:38
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:503 db_structure.php:504 db_tracking.php:103
+#: db_structure.php:505 db_structure.php:506 db_tracking.php:103
#: libraries/Index.class.php:482 libraries/common.lib.php:1636
#: libraries/common.lib.php:3003 libraries/common.lib.php:3004
#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72
@@ -713,27 +713,27 @@ msgstr "Boşalt"
msgid "Drop"
msgstr "Leğv et"
-#: db_structure.php:505 db_structure.php:506 libraries/mult_submits.inc.php:41
+#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:41
#: tbl_operations.php:583
msgid "Check table"
msgstr "Cedveli yoxla"
-#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:46
+#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:46
#: tbl_operations.php:623 tbl_structure.php:801 tbl_structure.php:803
msgid "Optimize table"
msgstr "Cedveli optimallaşdır"
-#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:51
+#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:51
#: tbl_operations.php:613
msgid "Repair table"
msgstr "Cedveli te'mir et"
-#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:56
+#: db_structure.php:513 db_structure.php:514 libraries/mult_submits.inc.php:56
#: tbl_operations.php:603
msgid "Analyze table"
msgstr "Cedveli analiz et"
-#: db_structure.php:560 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:562 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Me'lumat lüğeti"
@@ -831,6 +831,18 @@ msgstr ""
msgid "Enter each value in a separate field."
msgstr ""
+#: enum_editor.php:57
+msgid "+ Restart insertion and add a new value"
+msgstr ""
+
+#: enum_editor.php:67
+msgid "Output"
+msgstr ""
+
+#: enum_editor.php:68
+msgid "Copy and paste the joined values into the \"Length/Values\" field"
+msgstr ""
+
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr ""
@@ -1032,13 +1044,14 @@ msgstr "Qlobal selahiyyetler"
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:56 libraries/tbl_properties.inc.php:793
+#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
msgstr ""
-#: js/messages.php:60 pmd_general.php:390 pmd_general.php:427
-#: pmd_general.php:547 pmd_general.php:595 pmd_general.php:671
-#: pmd_general.php:725 pmd_general.php:788
+#: js/messages.php:60 libraries/tbl_properties.inc.php:798 pmd_general.php:390
+#: pmd_general.php:427 pmd_general.php:547 pmd_general.php:595
+#: pmd_general.php:671 pmd_general.php:725 pmd_general.php:788
msgid "Cancel"
msgstr ""
@@ -6002,7 +6015,7 @@ msgstr ""
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1164
+#: libraries/relation.lib.php:1173
msgid "no description"
msgstr "Haqqında me'lumat (description) mövcud deyildir"
@@ -6571,6 +6584,11 @@ msgstr "Yeni sahe elave et"
msgid "You have to add at least one column."
msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz"
+#: libraries/tbl_properties.inc.php:797
+#, fuzzy
+msgid "+ Add a new value"
+msgstr "Yeni İstifadeçi elave Et"
+
#: libraries/tbl_triggers.lib.php:28
#, fuzzy
msgid "Event"
diff --git a/po/be.po b/po/be.po
index c697b42..27f3f35 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-27 07:14-0500\n"
+"POT-Creation-Date: 2010-12-29 08:42-0500\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"
@@ -46,8 +46,8 @@ msgstr "Пошук"
#: browse_foreigners.php:160 db_operations.php:367 db_operations.php:412
#: db_operations.php:518 db_operations.php:542 db_search.php:359
-#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
-#: libraries/Theme_Manager.class.php:305
+#: db_structure.php:524 enum_editor.php:63 js/messages.php:59
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
#: libraries/display_change_password.lib.php:72
@@ -61,18 +61,18 @@ msgstr "Пошук"
#: libraries/schema/User_Schema.class.php:449
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
-#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:218
-#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
-#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
-#: server_privileges.php:2062 server_privileges.php:2109
-#: server_privileges.php:2149 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1066
-#: tbl_change.php:1103 tbl_indexes.php:252 tbl_operations.php:262
-#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
-#: tbl_operations.php:733 tbl_select.php:302 tbl_structure.php:653
-#: tbl_structure.php:689 tbl_tracking.php:389 tbl_tracking.php:506
-#: view_create.php:181 view_operations.php:99
+#: libraries/tbl_properties.inc.php:781 libraries/tbl_properties.inc.php:798
+#: main.php:105 navigation.php:218 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:665
+#: server_privileges.php:1705 server_privileges.php:2062
+#: server_privileges.php:2109 server_privileges.php:2149
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1207 tbl_change.php:322
+#: tbl_change.php:1066 tbl_change.php:1103 tbl_indexes.php:252
+#: tbl_operations.php:262 tbl_operations.php:299 tbl_operations.php:501
+#: tbl_operations.php:563 tbl_operations.php:733 tbl_select.php:302
+#: tbl_structure.php:653 tbl_structure.php:689 tbl_tracking.php:389
+#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Панеслася"
@@ -162,7 +162,7 @@ msgstr "Тып"
msgid "Null"
msgstr "Нуль"
-#: db_datadict.php:173 db_structure.php:453 libraries/export/htmlword.php:250
+#: db_datadict.php:173 db_structure.php:455 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
@@ -375,7 +375,7 @@ msgstr "Радкі"
msgid "Size"
msgstr "Памер"
-#: db_printview.php:160 db_structure.php:409 libraries/export/sql.php:624
+#: db_printview.php:160 db_structure.php:411 libraries/export/sql.php:624
#: libraries/export/sql.php:964
msgid "in use"
msgstr "выкарыстоўваецца"
@@ -401,7 +401,7 @@ msgstr "Апошняе абнаўленьне"
msgid "Last check"
msgstr "Апошняя праверка"
-#: db_printview.php:220 db_structure.php:432
+#: db_printview.php:220 db_structure.php:434
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -608,30 +608,30 @@ msgstr "Унутры поля:"
msgid "No tables found in database"
msgstr "У базе дадзеных табліц ня выяўлена."
-#: db_structure.php:270 tbl_operations.php:658
+#: db_structure.php:272 tbl_operations.php:658
#, php-format
msgid "Table %s has been emptied"
msgstr "Табліца %s была ачышчаная"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "View %s has been dropped"
msgstr "Выгляд %s быў выдалены"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "Table %s has been dropped"
msgstr "Табліца %s была выдаленая"
-#: db_structure.php:286 tbl_create.php:295
+#: db_structure.php:288 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:288 tbl_create.php:297
+#: db_structure.php:290 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:372 libraries/display_tbl.lib.php:1942
+#: db_structure.php:374 libraries/display_tbl.lib.php:1942
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
@@ -640,29 +640,29 @@ msgstr ""
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
"sдакумэнтацыі%s."
-#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138
+#: db_structure.php:388 db_structure.php:402 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73
msgid "View"
msgstr "Выгляд"
-#: db_structure.php:437 libraries/db_structure.lib.php:40
+#: db_structure.php:439 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:375
msgid "Replication"
msgstr "Рэплікацыя"
-#: db_structure.php:441
+#: db_structure.php:443
msgid "Sum"
msgstr "Усяго"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:450 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
"%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-"
"сэрвэры."
-#: db_structure.php:476 db_structure.php:493 db_structure.php:494
+#: db_structure.php:478 db_structure.php:495 db_structure.php:496
#: libraries/display_tbl.lib.php:2083 libraries/display_tbl.lib.php:2088
#: libraries/mult_submits.inc.php:15 server_databases.php:245
#: server_databases.php:250 server_privileges.php:1677 tbl_structure.php:545
@@ -670,23 +670,23 @@ msgstr ""
msgid "With selected:"
msgstr "З адзначанымі:"
-#: db_structure.php:479 libraries/display_tbl.lib.php:2078
+#: db_structure.php:481 libraries/display_tbl.lib.php:2078
#: server_databases.php:247 server_privileges.php:570
#: server_privileges.php:1680 tbl_structure.php:548
msgid "Check All"
msgstr "Адзначыць усё"
-#: db_structure.php:483 libraries/display_tbl.lib.php:2079
+#: db_structure.php:485 libraries/display_tbl.lib.php:2079
#: libraries/replication_gui.lib.php:35 server_databases.php:249
#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552
msgid "Uncheck All"
msgstr "Зьняць усе адзнакі"
-#: db_structure.php:488
+#: db_structure.php:490
msgid "Check tables having overhead"
msgstr "Адзначыць тыя, што патрабуюць аптымізацыі"
-#: db_structure.php:495 db_structure.php:496
+#: db_structure.php:497 db_structure.php:498
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2096 libraries/display_tbl.lib.php:2230
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
@@ -696,19 +696,19 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза
msgid "Export"
msgstr "Экспарт"
-#: db_structure.php:497 db_structure.php:498 db_structure.php:553
+#: db_structure.php:499 db_structure.php:500 db_structure.php:555
#: libraries/display_tbl.lib.php:2185 libraries/mult_submits.inc.php:27
#: tbl_structure.php:583 tbl_structure.php:585
msgid "Print view"
msgstr "Вэрсія для друку"
-#: db_structure.php:501 db_structure.php:502 libraries/common.lib.php:1635
+#: db_structure.php:503 db_structure.php:504 libraries/common.lib.php:1635
#: libraries/common.lib.php:3005 libraries/common.lib.php:3006
#: libraries/mult_submits.inc.php:38
msgid "Empty"
msgstr "Ачысьціць"
-#: db_structure.php:503 db_structure.php:504 db_tracking.php:103
+#: db_structure.php:505 db_structure.php:506 db_tracking.php:103
#: libraries/Index.class.php:482 libraries/common.lib.php:1636
#: libraries/common.lib.php:3003 libraries/common.lib.php:3004
#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72
@@ -717,27 +717,27 @@ msgstr "Ачысьціць"
msgid "Drop"
msgstr "Выдаліць"
-#: db_structure.php:505 db_structure.php:506 libraries/mult_submits.inc.php:41
+#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:41
#: tbl_operations.php:583
msgid "Check table"
msgstr "Праверыць табліцу"
-#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:46
+#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:46
#: tbl_operations.php:623 tbl_structure.php:801 tbl_structure.php:803
msgid "Optimize table"
msgstr "Аптымізаваць табліцу"
-#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:51
+#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:51
#: tbl_operations.php:613
msgid "Repair table"
msgstr "Рамантаваць табліцу"
-#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:56
+#: db_structure.php:513 db_structure.php:514 libraries/mult_submits.inc.php:56
#: tbl_operations.php:603
msgid "Analyze table"
msgstr "Аналізаваць табліцу"
-#: db_structure.php:560 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:562 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Слоўнік дадзеных"
@@ -838,6 +838,18 @@ msgstr ""
msgid "Enter each value in a separate field."
msgstr ""
+#: enum_editor.php:57
+msgid "+ Restart insertion and add a new value"
+msgstr ""
+
+#: enum_editor.php:67
+msgid "Output"
+msgstr ""
+
+#: enum_editor.php:68
+msgid "Copy and paste the joined values into the \"Length/Values\" field"
+msgstr ""
+
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!"
@@ -1054,13 +1066,14 @@ msgstr "Перазагрузіць прывілеі"
msgid "Removing Selected Users"
msgstr "Выдаліць выбраных карыстальнікаў"
-#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:56 libraries/tbl_properties.inc.php:793
+#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
msgstr ""
-#: js/messages.php:60 pmd_general.php:390 pmd_general.php:427
-#: pmd_general.php:547 pmd_general.php:595 pmd_general.php:671
-#: pmd_general.php:725 pmd_general.php:788
+#: js/messages.php:60 libraries/tbl_properties.inc.php:798 pmd_general.php:390
+#: pmd_general.php:427 pmd_general.php:547 pmd_general.php:595
+#: pmd_general.php:671 pmd_general.php:725 pmd_general.php:788
msgid "Cancel"
msgstr "Скасаваць"
@@ -6173,7 +6186,7 @@ msgstr ""
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1164
+#: libraries/relation.lib.php:1173
msgid "no description"
msgstr "няма апісаньня"
@@ -6748,6 +6761,11 @@ msgstr "Дадаць %s новыя палі"
msgid "You have to add at least one column."
msgstr "Трэба дадаць прынамсі адно поле."
+#: libraries/tbl_properties.inc.php:797
+#, fuzzy
+msgid "+ Add a new value"
+msgstr "Дадаць новага карыстальніка"
+
#: libraries/tbl_triggers.lib.php:28
msgid "Event"
msgstr "Падзея"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index ffae873..510e137 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-27 07:14-0500\n"
+"POT-Creation-Date: 2010-12-29 08:42-0500\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"
@@ -48,8 +48,8 @@ msgstr "Pošuk"
#: browse_foreigners.php:160 db_operations.php:367 db_operations.php:412
#: db_operations.php:518 db_operations.php:542 db_search.php:359
-#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
-#: libraries/Theme_Manager.class.php:305
+#: db_structure.php:524 enum_editor.php:63 js/messages.php:59
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
#: libraries/display_change_password.lib.php:72
@@ -63,18 +63,18 @@ msgstr "Pošuk"
#: libraries/schema/User_Schema.class.php:449
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
-#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:218
-#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
-#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
-#: server_privileges.php:2062 server_privileges.php:2109
-#: server_privileges.php:2149 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1066
-#: tbl_change.php:1103 tbl_indexes.php:252 tbl_operations.php:262
-#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
-#: tbl_operations.php:733 tbl_select.php:302 tbl_structure.php:653
-#: tbl_structure.php:689 tbl_tracking.php:389 tbl_tracking.php:506
-#: view_create.php:181 view_operations.php:99
+#: libraries/tbl_properties.inc.php:781 libraries/tbl_properties.inc.php:798
+#: main.php:105 navigation.php:218 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:665
+#: server_privileges.php:1705 server_privileges.php:2062
+#: server_privileges.php:2109 server_privileges.php:2149
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1207 tbl_change.php:322
+#: tbl_change.php:1066 tbl_change.php:1103 tbl_indexes.php:252
+#: tbl_operations.php:262 tbl_operations.php:299 tbl_operations.php:501
+#: tbl_operations.php:563 tbl_operations.php:733 tbl_select.php:302
+#: tbl_structure.php:653 tbl_structure.php:689 tbl_tracking.php:389
+#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Paniesłasia"
@@ -164,7 +164,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Nul"
-#: db_datadict.php:173 db_structure.php:453 libraries/export/htmlword.php:250
+#: db_datadict.php:173 db_structure.php:455 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
@@ -378,7 +378,7 @@ msgstr "Radki"
msgid "Size"
msgstr "Pamier"
-#: db_printview.php:160 db_structure.php:409 libraries/export/sql.php:624
+#: db_printview.php:160 db_structure.php:411 libraries/export/sql.php:624
#: libraries/export/sql.php:964
msgid "in use"
msgstr "vykarystoŭvajecca"
@@ -404,7 +404,7 @@ msgstr "Apošniaje abnaŭleńnie"
msgid "Last check"
msgstr "Apošniaja pravierka"
-#: db_printview.php:220 db_structure.php:432
+#: db_printview.php:220 db_structure.php:434
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -614,30 +614,30 @@ msgstr "Unutry pola:"
msgid "No tables found in database"
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
-#: db_structure.php:270 tbl_operations.php:658
+#: db_structure.php:272 tbl_operations.php:658
#, php-format
msgid "Table %s has been emptied"
msgstr "Tablica %s była ačyščanaja"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "View %s has been dropped"
msgstr "Vyhlad %s byŭ vydaleny"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "Table %s has been dropped"
msgstr "Tablica %s była vydalenaja"
-#: db_structure.php:286 tbl_create.php:295
+#: db_structure.php:288 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:288 tbl_create.php:297
+#: db_structure.php:290 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:372 libraries/display_tbl.lib.php:1942
+#: db_structure.php:374 libraries/display_tbl.lib.php:1942
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
@@ -646,29 +646,29 @@ msgstr ""
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
"sdakumentacyi%s."
-#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138
+#: db_structure.php:388 db_structure.php:402 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73
msgid "View"
msgstr "Vyhlad"
-#: db_structure.php:437 libraries/db_structure.lib.php:40
+#: db_structure.php:439 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:375
msgid "Replication"
msgstr "Replikacyja"
-#: db_structure.php:441
+#: db_structure.php:443
msgid "Sum"
msgstr "Usiaho"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:450 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
"%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-"
"servery."
-#: db_structure.php:476 db_structure.php:493 db_structure.php:494
+#: db_structure.php:478 db_structure.php:495 db_structure.php:496
#: libraries/display_tbl.lib.php:2083 libraries/display_tbl.lib.php:2088
#: libraries/mult_submits.inc.php:15 server_databases.php:245
#: server_databases.php:250 server_privileges.php:1677 tbl_structure.php:545
@@ -676,23 +676,23 @@ msgstr ""
msgid "With selected:"
msgstr "Z adznačanymi:"
-#: db_structure.php:479 libraries/display_tbl.lib.php:2078
+#: db_structure.php:481 libraries/display_tbl.lib.php:2078
#: server_databases.php:247 server_privileges.php:570
#: server_privileges.php:1680 tbl_structure.php:548
msgid "Check All"
msgstr "Adznačyć usio"
-#: db_structure.php:483 libraries/display_tbl.lib.php:2079
+#: db_structure.php:485 libraries/display_tbl.lib.php:2079
#: libraries/replication_gui.lib.php:35 server_databases.php:249
#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552
msgid "Uncheck All"
msgstr "Źniać usie adznaki"
-#: db_structure.php:488
+#: db_structure.php:490
msgid "Check tables having overhead"
msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
-#: db_structure.php:495 db_structure.php:496
+#: db_structure.php:497 db_structure.php:498
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2096 libraries/display_tbl.lib.php:2230
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
@@ -702,19 +702,19 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
msgid "Export"
msgstr "Ekspart"
-#: db_structure.php:497 db_structure.php:498 db_structure.php:553
+#: db_structure.php:499 db_structure.php:500 db_structure.php:555
#: libraries/display_tbl.lib.php:2185 libraries/mult_submits.inc.php:27
#: tbl_structure.php:583 tbl_structure.php:585
msgid "Print view"
msgstr "Versija dla druku"
-#: db_structure.php:501 db_structure.php:502 libraries/common.lib.php:1635
+#: db_structure.php:503 db_structure.php:504 libraries/common.lib.php:1635
#: libraries/common.lib.php:3005 libraries/common.lib.php:3006
#: libraries/mult_submits.inc.php:38
msgid "Empty"
msgstr "Ačyścić"
-#: db_structure.php:503 db_structure.php:504 db_tracking.php:103
+#: db_structure.php:505 db_structure.php:506 db_tracking.php:103
#: libraries/Index.class.php:482 libraries/common.lib.php:1636
#: libraries/common.lib.php:3003 libraries/common.lib.php:3004
#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72
@@ -723,27 +723,27 @@ msgstr "Ačyścić"
msgid "Drop"
msgstr "Vydalić"
-#: db_structure.php:505 db_structure.php:506 libraries/mult_submits.inc.php:41
+#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:41
#: tbl_operations.php:583
msgid "Check table"
msgstr "Pravieryć tablicu"
-#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:46
+#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:46
#: tbl_operations.php:623 tbl_structure.php:801 tbl_structure.php:803
msgid "Optimize table"
msgstr "Aptymizavać tablicu"
-#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:51
+#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:51
#: tbl_operations.php:613
msgid "Repair table"
msgstr "Ramantavać tablicu"
-#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:56
+#: db_structure.php:513 db_structure.php:514 libraries/mult_submits.inc.php:56
#: tbl_operations.php:603
msgid "Analyze table"
msgstr "Analizavać tablicu"
-#: db_structure.php:560 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:562 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Słoŭnik dadzienych"
@@ -836,6 +836,18 @@ msgstr ""
msgid "Enter each value in a separate field."
msgstr ""
+#: enum_editor.php:57
+msgid "+ Restart insertion and add a new value"
+msgstr ""
+
+#: enum_editor.php:67
+msgid "Output"
+msgstr ""
+
+#: enum_editor.php:68
+msgid "Copy and paste the joined values into the \"Length/Values\" field"
+msgstr ""
+
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!"
@@ -1053,13 +1065,14 @@ msgstr "Pierazahruzić pryvilei"
msgid "Removing Selected Users"
msgstr "Vydalić vybranych karystalnikaŭ"
-#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:56 libraries/tbl_properties.inc.php:793
+#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
msgstr ""
-#: js/messages.php:60 pmd_general.php:390 pmd_general.php:427
-#: pmd_general.php:547 pmd_general.php:595 pmd_general.php:671
-#: pmd_general.php:725 pmd_general.php:788
+#: js/messages.php:60 libraries/tbl_properties.inc.php:798 pmd_general.php:390
+#: pmd_general.php:427 pmd_general.php:547 pmd_general.php:595
+#: pmd_general.php:671 pmd_general.php:725 pmd_general.php:788
msgid "Cancel"
msgstr "Skasavać"
@@ -6143,7 +6156,7 @@ msgstr ""
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1164
+#: libraries/relation.lib.php:1173
msgid "no description"
msgstr "niama apisańnia"
@@ -6714,6 +6727,12 @@ msgstr "Dadać %s novyja pali"
msgid "You have to add at least one column."
msgstr "Treba dadać prynamsi adno pole."
+#: libraries/tbl_properties.inc.php:797
+#, fuzzy
+#| msgid "Add a new User"
+msgid "+ Add a new value"
+msgstr "Dadać novaha karystalnika"
+
#: libraries/tbl_triggers.lib.php:28
msgid "Event"
msgstr "Padzieja"
diff --git a/po/bg.po b/po/bg.po
index 81f943d..7d73c45 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-12-27 07:14-0500\n"
+"POT-Creation-Date: 2010-12-29 08:42-0500\n"
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: <stanprog(a)stanprog.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -47,8 +47,8 @@ msgstr "Търсене"
#: browse_foreigners.php:160 db_operations.php:367 db_operations.php:412
#: db_operations.php:518 db_operations.php:542 db_search.php:359
-#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
-#: libraries/Theme_Manager.class.php:305
+#: db_structure.php:524 enum_editor.php:63 js/messages.php:59
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
#: libraries/display_change_password.lib.php:72
@@ -62,18 +62,18 @@ msgstr "Търсене"
#: libraries/schema/User_Schema.class.php:449
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380
#: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515
-#: libraries/tbl_properties.inc.php:781 main.php:105 navigation.php:218
-#: pmd_pdf.php:124 prefs_manage.php:265 prefs_manage.php:316
-#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
-#: server_privileges.php:2062 server_privileges.php:2109
-#: server_privileges.php:2149 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1066
-#: tbl_change.php:1103 tbl_indexes.php:252 tbl_operations.php:262
-#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
-#: tbl_operations.php:733 tbl_select.php:302 tbl_structure.php:653
-#: tbl_structure.php:689 tbl_tracking.php:389 tbl_tracking.php:506
-#: view_create.php:181 view_operations.php:99
+#: libraries/tbl_properties.inc.php:781 libraries/tbl_properties.inc.php:798
+#: main.php:105 navigation.php:218 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:665
+#: server_privileges.php:1705 server_privileges.php:2062
+#: server_privileges.php:2109 server_privileges.php:2149
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1207 tbl_change.php:322
+#: tbl_change.php:1066 tbl_change.php:1103 tbl_indexes.php:252
+#: tbl_operations.php:262 tbl_operations.php:299 tbl_operations.php:501
+#: tbl_operations.php:563 tbl_operations.php:733 tbl_select.php:302
+#: tbl_structure.php:653 tbl_structure.php:689 tbl_tracking.php:389
+#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Изпълнение"
@@ -161,7 +161,7 @@ msgstr "Тип"
msgid "Null"
msgstr "Празно"
-#: db_datadict.php:173 db_structure.php:453 libraries/export/htmlword.php:250
+#: db_datadict.php:173 db_structure.php:455 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
@@ -374,7 +374,7 @@ msgstr "Редове"
msgid "Size"
msgstr "Размер"
-#: db_printview.php:160 db_structure.php:409 libraries/export/sql.php:624
+#: db_printview.php:160 db_structure.php:411 libraries/export/sql.php:624
#: libraries/export/sql.php:964
msgid "in use"
msgstr "Заето"
@@ -400,7 +400,7 @@ msgstr "Последно обновление"
msgid "Last check"
msgstr "Последна проверка"
-#: db_printview.php:220 db_structure.php:432
+#: db_printview.php:220 db_structure.php:434
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -607,57 +607,57 @@ msgstr "В таблиците:"
msgid "No tables found in database"
msgstr "В базата от данни няма таблици."
-#: db_structure.php:270 tbl_operations.php:658
+#: db_structure.php:272 tbl_operations.php:658
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблицата %s беше изчистена"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "View %s has been dropped"
msgstr "Изглед %s беше изтрит"
-#: db_structure.php:279 tbl_operations.php:675
+#: db_structure.php:281 tbl_operations.php:675
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблицата %s беше изтрита"
-#: db_structure.php:286 tbl_create.php:295
+#: db_structure.php:288 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:288 tbl_create.php:297
+#: db_structure.php:290 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:372 libraries/display_tbl.lib.php:1942
+#: db_structure.php:374 libraries/display_tbl.lib.php:1942
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
-#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:138
+#: db_structure.php:388 db_structure.php:402 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73
msgid "View"
msgstr "Изглед"
-#: db_structure.php:437 libraries/db_structure.lib.php:40
+#: db_structure.php:439 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:375
msgid "Replication"
msgstr "Репликация"
-#: db_structure.php:441
+#: db_structure.php:443
msgid "Sum"
msgstr "Сума"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:450 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър."
-#: db_structure.php:476 db_structure.php:493 db_structure.php:494
+#: db_structure.php:478 db_structure.php:495 db_structure.php:496
#: libraries/display_tbl.lib.php:2083 libraries/display_tbl.lib.php:2088
#: libraries/mult_submits.inc.php:15 server_databases.php:245
#: server_databases.php:250 server_privileges.php:1677 tbl_structure.php:545
@@ -665,23 +665,23 @@ msgstr "%s е хранилището на данни по подразбиран
msgid "With selected:"
msgstr "Когато има отметка:"
-#: db_structure.php:479 libraries/display_tbl.lib.php:2078
+#: db_structure.php:481 libraries/display_tbl.lib.php:2078
#: server_databases.php:247 server_privileges.php:570
#: server_privileges.php:1680 tbl_structure.php:548
msgid "Check All"
msgstr "Маркиране на всичко"
-#: db_structure.php:483 libraries/display_tbl.lib.php:2079
+#: db_structure.php:485 libraries/display_tbl.lib.php:2079
#: libraries/replication_gui.lib.php:35 server_databases.php:249
#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552
msgid "Uncheck All"
msgstr "Размаркиране на всичко"
-#: db_structure.php:488
+#: db_structure.php:490
msgid "Check tables having overhead"
msgstr "Маркиране на таблиците със загубено място"
-#: db_structure.php:495 db_structure.php:496
+#: db_structure.php:497 db_structure.php:498
#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56
#: libraries/display_tbl.lib.php:2096 libraries/display_tbl.lib.php:2230
#: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69
@@ -691,19 +691,19 @@ msgstr "Маркиране на таблиците със загубено мя
msgid "Export"
msgstr "Експортиране"
-#: db_structure.php:497 db_structure.php:498 db_structure.php:553
+#: db_structure.php:499 db_structure.php:500 db_structure.php:555
#: libraries/display_tbl.lib.php:2185 libraries/mult_submits.inc.php:27
#: tbl_structure.php:583 tbl_structure.php:585
msgid "Print view"
msgstr "Преглед за печат"
-#: db_structure.php:501 db_structure.php:502 libraries/common.lib.php:1635
+#: db_structure.php:503 db_structure.php:504 libraries/common.lib.php:1635
#: libraries/common.lib.php:3005 libraries/common.lib.php:3006
#: libraries/mult_submits.inc.php:38
msgid "Empty"
msgstr "Изчистване"
-#: db_structure.php:503 db_structure.php:504 db_tracking.php:103
+#: db_structure.php:505 db_structure.php:506 db_tracking.php:103
#: libraries/Index.class.php:482 libraries/common.lib.php:1636
#: libraries/common.lib.php:3003 libraries/common.lib.php:3004
#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72
@@ -712,27 +712,27 @@ msgstr "Изчистване"
msgid "Drop"
msgstr "Унищожаване"
-#: db_structure.php:505 db_structure.php:506 libraries/mult_submits.inc.php:41
+#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:41
#: tbl_operations.php:583
msgid "Check table"
msgstr "Проверка на таблицата"
-#: db_structure.php:507 db_structure.php:508 libraries/mult_submits.inc.php:46
+#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:46
#: tbl_operations.php:623 tbl_structure.php:801 tbl_structure.php:803
msgid "Optimize table"
msgstr "Оптимизация на таблицата"
-#: db_structure.php:509 db_structure.php:510 libraries/mult_submits.inc.php:51
+#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:51
#: tbl_operations.php:613
msgid "Repair table"
msgstr "Поправяне на таблицата"
-#: db_structure.php:511 db_structure.php:512 libraries/mult_submits.inc.php:56
+#: db_structure.php:513 db_structure.php:514 libraries/mult_submits.inc.php:56
#: tbl_operations.php:603
msgid "Analyze table"
msgstr "Анализиране на таблицата"
-#: db_structure.php:560 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:562 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник на данните"
@@ -830,6 +830,18 @@ msgstr ""
msgid "Enter each value in a separate field."
msgstr ""
+#: enum_editor.php:57
+msgid "+ Restart insertion and add a new value"
+msgstr ""
+
+#: enum_editor.php:67
+msgid "Output"
+msgstr ""
+
+#: enum_editor.php:68
+msgid "Copy and paste the joined values into the \"Length/Values\" field"
+msgstr ""
+
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr ""
@@ -1037,13 +1049,14 @@ msgstr "Презареждане на привилегиите"
msgid "Removing Selected Users"
msgstr "Отстраняване на избраните потребители"
-#: js/messages.php:56 tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:56 libraries/tbl_properties.inc.php:793
+#: tbl_tracking.php:245 tbl_tracking.php:373
msgid "Close"
msgstr ""
-#: js/messages.php:60 pmd_general.php:390 pmd_general.php:427
-#: pmd_general.php:547 pmd_general.php:595 pmd_g eral.php:427 ебители"