Git
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 10 participants
- 39145 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4486-gad71c5b
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via ad71c5b0ce324d15e0ec238150b01ba18aa2151a (commit)
via 168824b38fe7654cbe6bb8850d80c3f598d77e48 (commit)
from 9d0b7a0987e362d5b7cfca48cd54a2b76dc8c911 (commit)
- Log -----------------------------------------------------------------
commit ad71c5b0ce324d15e0ec238150b01ba18aa2151a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:18:37 2010 +0200
Standard look to forms on table operations page.
commit 168824b38fe7654cbe6bb8850d80c3f598d77e48
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:17:50 2010 +0200
Standard look to all forms on database properties page.
-----------------------------------------------------------------------
Summary of changes:
db_operations.php | 6 ++++++
tbl_operations.php | 6 ++++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/db_operations.php b/db_operations.php
index 44e93b2..e879f06 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -380,6 +380,8 @@ if (!$is_information_schema) {
<input type="text" name="comment" class="textfield" size="30"
value="<?php
echo htmlspecialchars(PMA_getDBComment($db)); ?>" />
+ </fieldset>
+ <fieldset class="tblFooters">
<input type="submit" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
@@ -422,6 +424,8 @@ if (!$is_information_schema) {
echo 'INSERT INTO ... SELECT';
//}
echo ')'; ?>
+ </fieldset>
+ <fieldset class="tblFooters">
<input type="submit" value="<?php echo __('Go'); ?>" onclick="return confirmLink(this, 'CREATE DATABASE ... <?php echo __('and then'); ?> DROP DATABASE <?php echo PMA_jsFormat($db); ?>')" />
</fieldset>
</form>
@@ -599,6 +603,8 @@ if (!$is_information_schema) {
. ' </legend>' . "\n"
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION,
'db_collation', 'select_db_collation', $db_collation, false, 3)
+ . '</fieldset>'
+ . '<fieldset class="tblFooters">'
. ' <input type="submit" name="submitcollation"'
. ' value="' . __('Go') . '" />' . "\n"
. '</fieldset>' . "\n"
diff --git a/tbl_operations.php b/tbl_operations.php
index a5b1357..4e0738a 100644
--- a/tbl_operations.php
+++ b/tbl_operations.php
@@ -157,7 +157,7 @@ if (isset($_REQUEST['submitoptions'])) {
$reread_info = true;
unset($table_alters);
foreach (PMA_DBI_get_warnings() as $warning) {
- // In MariaDB 5.1.44, when altering a table from Maria to MyISAM
+ // In MariaDB 5.1.44, when altering a table from Maria to MyISAM
// and if TRANSACTIONAL was set, the system reports an error;
// I discussed with a Maria developer and he agrees that this
// should not be reported with a Level of Error, so here
@@ -194,7 +194,7 @@ if (isset($_REQUEST['submit_partition']) && ! empty($_REQUEST['partition_operati
if ($reread_info) {
// to avoid showing the old value (for example the AUTO_INCREMENT) after
// a change, clear the cache
- PMA_Table::$cache = array();
+ PMA_Table::$cache = array();
$page_checksum = $checksum = $delay_key_write = 0;
require './libraries/tbl_info.inc.php';
}
@@ -260,6 +260,8 @@ unset($columns);
<option value="asc"><?php echo __('Ascending'); ?></option>
<option value="desc"><?php echo __('Descending'); ?></option>
</select>
+</fieldset>
+<fieldset class="tblFooters">
<input type="submit" name="submitorderby" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4484-g9d0b7a0
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via 9d0b7a0987e362d5b7cfca48cd54a2b76dc8c911 (commit)
from 48a63315e24b86b851d4341d04b816e7dd634758 (commit)
- Log -----------------------------------------------------------------
commit 9d0b7a0987e362d5b7cfca48cd54a2b76dc8c911
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:16:11 2010 +0200
Standard look for another form.
-----------------------------------------------------------------------
Summary of changes:
pdf_pages.php | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/pdf_pages.php b/pdf_pages.php
index ac5e215..8cd04dd 100644
--- a/pdf_pages.php
+++ b/pdf_pages.php
@@ -282,6 +282,8 @@ if ($cfgRelation['pdfwork']) {
PMA_display_html_radio('action_choose', $choices, '0', false);
unset($choices);
?>
+ </fieldset>
+ <fieldset class="tblFooters">
<input type="submit" value="<?php echo __('Go'); ?>" /><br />
</fieldset>
</form>
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4483-g48a6331
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via 48a63315e24b86b851d4341d04b816e7dd634758 (commit)
from 760a47c1455cbc07b22c2387d3b44b6819f5dd13 (commit)
- Log -----------------------------------------------------------------
commit 48a63315e24b86b851d4341d04b816e7dd634758
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:14:26 2010 +0200
Czech translation update.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 43245c2..7d1f55a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-31 14:06+0200\n"
-"PO-Revision-Date: 2010-05-25 14:32+0200\n"
+"PO-Revision-Date: 2010-05-31 14:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"Language: cs\n"
@@ -4989,16 +4989,14 @@ msgid "Create a page"
msgstr "Vytvořit novou stránku"
#: pdf_pages.php:303
-#, fuzzy
#| msgid "Page number:"
msgid "Page name"
-msgstr "Strana číslo:"
+msgstr "Jméno stránky"
#: pdf_pages.php:307
-#, fuzzy
#| msgid "Automatic layout"
msgid "Automatic layout based on"
-msgstr "automatické rozvržení"
+msgstr "Automatické rozvržení podle"
#: pdf_pages.php:309
msgid "Internal relations"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4482-g760a47c
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via 760a47c1455cbc07b22c2387d3b44b6819f5dd13 (commit)
from c6a28b42e6a54502ec1ffc0c07d338fc47cb6105 (commit)
- Log -----------------------------------------------------------------
commit 760a47c1455cbc07b22c2387d3b44b6819f5dd13
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:07:00 2010 +0200
Update po files.
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 169 +++++++++++++++++----------------
po/ar.po | 177 +++++++++++++++++-----------------
po/az.po | 168 +++++++++++++++++---------------
po/be.po | 168 +++++++++++++++++---------------
po/be(a)latin.po | 168 +++++++++++++++++---------------
po/bg.po | 168 +++++++++++++++++---------------
po/bn.po | 168 +++++++++++++++++---------------
po/bs.po | 168 +++++++++++++++++---------------
po/ca.po | 168 +++++++++++++++++---------------
po/cs.po | 171 +++++++++++++++++----------------
po/da.po | 168 +++++++++++++++++---------------
po/de.po | 171 +++++++++++++++++----------------
po/el.po | 172 +++++++++++++++++----------------
po/en_GB.po | 171 +++++++++++++++++----------------
po/es.po | 168 +++++++++++++++++---------------
po/et.po | 168 +++++++++++++++++---------------
po/eu.po | 168 +++++++++++++++++---------------
po/fa.po | 171 +++++++++++++++++----------------
po/fi.po | 168 +++++++++++++++++---------------
po/fr.po | 171 +++++++++++++++++----------------
po/gl.po | 168 +++++++++++++++++---------------
po/he.po | 168 +++++++++++++++++---------------
po/hi.po | 168 +++++++++++++++++---------------
po/hr.po | 168 +++++++++++++++++---------------
po/hu.po | 168 +++++++++++++++++---------------
po/id.po | 168 +++++++++++++++++---------------
po/it.po | 168 +++++++++++++++++---------------
po/ja.po | 168 +++++++++++++++++---------------
po/ka.po | 168 +++++++++++++++++---------------
po/ko.po | 171 +++++++++++++++++----------------
po/lt.po | 168 +++++++++++++++++---------------
po/lv.po | 168 +++++++++++++++++---------------
po/mk.po | 168 +++++++++++++++++---------------
po/mn.po | 168 +++++++++++++++++---------------
po/ms.po | 169 +++++++++++++++++----------------
po/nb.po | 171 +++++++++++++++++----------------
po/nl.po | 211 +++++++++++++++++-----------------------
po/phpmyadmin.pot | 164 ++++++++++++++++---------------
po/pl.po | 168 +++++++++++++++++---------------
po/pt.po | 168 +++++++++++++++++---------------
po/pt_BR.po | 168 +++++++++++++++++---------------
po/ro.po | 168 +++++++++++++++++---------------
po/ru.po | 168 +++++++++++++++++---------------
po/si.po | 168 +++++++++++++++++---------------
po/sk.po | 168 +++++++++++++++++---------------
po/sl.po | 276 ++++++++++++++++++++++++++---------------------------
po/sq.po | 170 +++++++++++++++++----------------
po/sr.po | 168 +++++++++++++++++---------------
po/sr(a)latin.po | 168 +++++++++++++++++---------------
po/sv.po | 168 +++++++++++++++++---------------
po/ta.po | 164 ++++++++++++++++---------------
po/te.po | 166 +++++++++++++++++---------------
po/th.po | 168 +++++++++++++++++---------------
po/tr.po | 168 +++++++++++++++++---------------
po/tt.po | 168 +++++++++++++++++---------------
po/uk.po | 168 +++++++++++++++++---------------
po/ur.po | 166 +++++++++++++++++---------------
po/uz.po | 168 +++++++++++++++++---------------
po/uz(a)latin.po | 168 +++++++++++++++++---------------
po/zh_CN.po | 168 +++++++++++++++++---------------
po/zh_TW.po | 168 +++++++++++++++++---------------
61 files changed, 5413 insertions(+), 5012 deletions(-)
diff --git a/po/af.po b/po/af.po
index 3cf4bef..b118835 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\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"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Wys alles"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -42,30 +42,31 @@ msgid "Search"
msgstr "Soek"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Gaan"
@@ -338,57 +339,13 @@ msgstr ""
"Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. "
"Om uit te vind hoekom kliek %shier%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Vertoon PDF skema"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Wys ruitgebied"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Wys kleur"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Wys dimensie van tabelle"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "vertoon alle tabelle met dieselfde wydte?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr ""
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr ""
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Verander PDF Bladsye"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -565,7 +522,7 @@ msgstr "Beloer Data"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -745,6 +702,10 @@ msgstr "Analiseer tabel"
msgid "Export"
msgstr "Export"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr ""
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1742,8 +1703,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentasie"
@@ -2209,6 +2169,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Vertoon PDF skema"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Wys ruitgebied"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Wys kleur"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Wys dimensie van tabelle"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "vertoon alle tabelle met dieselfde wydte?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3044,7 +3044,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Kolom name"
@@ -4524,7 +4524,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4660,7 +4660,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Herstel"
@@ -4806,23 +4806,30 @@ msgstr "Kies asb. 'n bladsy om te verander"
msgid "Create a page"
msgstr "Skep 'n nuwe bladsy"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
-msgstr ""
-
#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Bladsy nommer:"
+
+#: pdf_pages.php:307
+#, fuzzy
+msgid "Automatic layout based on"
+msgstr "Bediener weergawe"
+
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Kies Tabelle"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ar.po b/po/ar.po
index 40d3696..f5af738 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\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"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "شاهد الكل"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "ابحث"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr " تنفيذ "
@@ -334,57 +335,13 @@ msgstr ""
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
"%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "إظهار بناء ملف PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "أظهر تخطيط الجدول"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "أظهر اللون"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "إظهار أبعاد الجداول"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "أظهر كل الجداول بنفس العرض؟"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "قاموس البيانات"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "تنسيق قاموس البيانات"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "عرض الصفحة"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "طول الصفحة"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "حجم الورق"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "عدل صفحات PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "استعراض"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "تحليل الجدول"
msgid "Export"
msgstr "تصدير"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "قاموس البيانات"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1056,7 +1017,6 @@ msgid "Today"
msgstr "مجموع كلي"
#: js/messages.php:82
-#| msgid "Binary"
msgid "January"
msgstr "يناير"
@@ -1301,7 +1261,6 @@ msgstr "السبت"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:162
-#| msgid "Wiki"
msgid "Wk"
msgstr "الأسبوع"
@@ -1310,12 +1269,10 @@ msgid "Hour"
msgstr "الساعة"
#: js/messages.php:165
-#| msgid "in use"
msgid "Minute"
msgstr "الدقيقة"
#: js/messages.php:166
-#| msgid "per second"
msgid "Second"
msgstr "الثانية"
@@ -1682,8 +1639,8 @@ msgid ""
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
"configuration file!"
msgstr ""
-"المتغير <span dir=\"ltr\"><tt>$cfg['PmaAbsoluteUri']</tt></span> يجب تعديله في "
-"ملف التعريف !"
+"المتغير <span dir=\"ltr\"><tt>$cfg['PmaAbsoluteUri']</tt></span> يجب تعديله "
+"في ملف التعريف !"
#: libraries/common.inc.php:629
#, php-format
@@ -1732,8 +1689,7 @@ msgstr ""
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "مستندات وثائقية"
@@ -1780,7 +1736,6 @@ msgid "Inline edit of this query"
msgstr ""
#: libraries/common.lib.php:1278
-#| msgid "Engines"
msgid "Inline"
msgstr ""
@@ -2197,6 +2152,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "إظهار بناء ملف PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "أظهر تخطيط الجدول"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "أظهر اللون"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "إظهار أبعاد الجداول"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "أظهر كل الجداول بنفس العرض؟"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "تنسيق قاموس البيانات"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "عرض الصفحة"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "طول الصفحة"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "حجم الورق"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3018,7 +3013,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "اسم العمود"
@@ -4492,7 +4487,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4646,7 +4641,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "إلغاء"
@@ -4796,23 +4791,31 @@ msgstr "رجاء اختر صفحة لتعديلها"
msgid "Create a page"
msgstr "أنشئ صفحة جديدة"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "صفحة رقم:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "مظهر تلقائي"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "العلاقات الداخلية"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "اختر الجداول"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/az.po b/po/az.po
index 0003c17..3d6cb00 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Hamısını göster"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "Axtarış"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Davam"
@@ -336,57 +337,13 @@ msgstr ""
"Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler "
"passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF sxemini göster"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Show grid"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Rengini göster"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Cedvellerin ölçülerini göster"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "eyni enli bütün cedveller gösterilsinmi?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Me'lumat lüğeti"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landşaft"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portret"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF Sehifelerini Deyişdir"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -562,7 +519,7 @@ msgstr "İçindekiler"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -743,6 +700,10 @@ msgstr "Cedveli analiz et"
msgid "Export"
msgstr "Eksport"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Me'lumat lüğeti"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1748,8 +1709,7 @@ msgstr "Gönderildi"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentasiya"
@@ -2219,6 +2179,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF sxemini göster"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Show grid"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Rengini göster"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Cedvellerin ölçülerini göster"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "eyni enli bütün cedveller gösterilsinmi?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landşaft"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portret"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3054,7 +3054,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Sütun adları"
@@ -4553,7 +4553,7 @@ msgstr "Depolama Motorları"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4712,7 +4712,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Yenile"
@@ -4862,23 +4862,31 @@ msgstr "Xahiş edirem, deyişdirilecek Sehifeni seç"
msgid "Create a page"
msgstr "Yeni Sehife qur"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Sehife Nömresi:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatik şablon"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Select Tables"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/be.po b/po/be.po
index 92aa278..512d617 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\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"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Паказаць усе"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Пошук"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Панеслася"
@@ -335,57 +336,13 @@ msgstr ""
"Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб "
"высьветліць чаму, націсьніце %sтут%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Паказаць PDF-схему"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Паказаць сетку"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Паказаць колер"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Паказаць разьмернасьць табліц"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Паказаць усе табліцы аднолькавай шырыні?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Слоўнік дадзеных"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Фармат слоўніка дадзеных"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Краявід"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Партрэт"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Памер паперы"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Рэдагаваць PDF-старонкі"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -561,7 +518,7 @@ msgstr "Прагляд"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -745,6 +702,10 @@ msgstr "Аналізаваць табліцу"
msgid "Export"
msgstr "Экспарт"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Слоўнік дадзеных"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1785,8 +1746,7 @@ msgstr "Адпраўлена"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Дакумэнтацыя"
@@ -2267,6 +2227,46 @@ msgstr "Колькасьць (запытаў), якія трэба прапус
msgid "Format of imported file"
msgstr "Фармат імпартаванага файла"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Паказаць PDF-схему"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Паказаць сетку"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Паказаць колер"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Паказаць разьмернасьць табліц"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Паказаць усе табліцы аднолькавай шырыні?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Фармат слоўніка дадзеных"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Краявід"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Партрэт"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Памер паперы"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3144,7 +3144,7 @@ msgstr "Ігнараваць радкі, якія паўтараюцца"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Назвы калёнак"
@@ -4775,7 +4775,7 @@ msgstr "Машына захаваньня дадзеных"
msgid "PARTITION definition"
msgstr "Азначэньне PARTITION"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4950,7 +4950,7 @@ msgstr "Інтэрфэйс"
msgid "Custom color"
msgstr "Іншы колер"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Скінуць"
@@ -5113,23 +5113,31 @@ msgstr "Калі ласка, выберыце старонку для рэдаг
msgid "Create a page"
msgstr "Стварыць новую старонку"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Старонка:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Аўтаматычнае разьмяшчэньне"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Унутраныя сувязі"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Выберыце табліцу(ы)"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Паказаць папярэдні прагляд"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index e4d2319..aad09bc 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-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\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"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Pakazać usie"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "Pošuk"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Paniesłasia"
@@ -335,57 +336,13 @@ msgstr ""
"Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab "
"vyśvietlić čamu, naciśnicie %stut%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Pakazać PDF-schiemu"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Pakazać sietku"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Pakazać koler"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Pakazać raźmiernaść tablic"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Pakazać usie tablicy adnolkavaj šyryni?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Słoŭnik dadzienych"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Farmat słoŭnika dadzienych"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Krajavid"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Partret"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Pamier papiery"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Redagavać PDF-staronki"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -562,7 +519,7 @@ msgstr "Prahlad"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -746,6 +703,10 @@ msgstr "Analizavać tablicu"
msgid "Export"
msgstr "Ekspart"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Słoŭnik dadzienych"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1779,8 +1740,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dakumentacyja"
@@ -2262,6 +2222,46 @@ msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku"
msgid "Format of imported file"
msgstr "Farmat impartavanaha fajła"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Pakazać PDF-schiemu"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Pakazać sietku"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Pakazać koler"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Pakazać raźmiernaść tablic"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Pakazać usie tablicy adnolkavaj šyryni?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Farmat słoŭnika dadzienych"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Krajavid"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Partret"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Pamier papiery"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3135,7 +3135,7 @@ msgstr "Ignaravać radki, jakija paŭtarajucca"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nazvy kalonak"
@@ -4762,7 +4762,7 @@ msgstr "Mašyna zachavańnia dadzienych"
msgid "PARTITION definition"
msgstr "Aznačeńnie PARTITION"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4940,7 +4940,7 @@ msgstr "Interfejs"
msgid "Custom color"
msgstr "Inšy koler"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Skinuć"
@@ -5101,23 +5101,31 @@ msgstr "Kali łaska, vybierycie staronku dla redagavańnia"
msgid "Create a page"
msgstr "Stvaryć novuju staronku"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Staronka:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Aŭtamatyčnaje raźmiaščeńnie"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Unutranyja suviazi"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Vybierycie tablicu(y)"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Pakazać papiaredni prahlad"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/bg.po b/po/bg.po
index fcb9a58..995b6b7 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Покажи всички"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Търсене"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Изпълнение"
@@ -334,57 +335,13 @@ msgstr ""
"Допълнителните възможности за работа със свързани (linked) таблици са "
"деактивирани. За да разберете защо кликнете %sтук%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Покажи PDF схема"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Покажи мрежа"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Покажи цвят"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Покажи размерността на таблиците"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "показване на всички Таблици с една и съща ширина?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Речник на данните"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Формат на речника на данните"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Пейзажно"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Портретно"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Размер на хартията"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Редактиране на PDF Страници"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Прелистване"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "Анализиране на таблицата"
msgid "Export"
msgstr "Експортиране"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Речник на данните"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1758,8 +1719,7 @@ msgstr "Изпратени"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Документация"
@@ -2229,6 +2189,46 @@ msgstr "Брой записи(завки), които да бъдат пропу
msgid "Format of imported file"
msgstr "Формат на импортирания файл"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Покажи PDF схема"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Покажи мрежа"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Покажи цвят"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Покажи размерността на таблиците"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "показване на всички Таблици с една и съща ширина?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Формат на речника на данните"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Пейзажно"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Портретно"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Размер на хартията"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3062,7 +3062,7 @@ msgstr "Игнориране на дублиращите се редове"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Име на колона"
@@ -4578,7 +4578,7 @@ msgstr "Хранилище на данни"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4741,7 +4741,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Изчистване"
@@ -4892,23 +4892,31 @@ msgstr "Моля изберете страница за редактиране"
msgid "Create a page"
msgstr "Създай нова Страница"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Номер на страницата:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Автоматичен лейаут"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Вътрешни релации"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Избери таблици"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/bn.po b/po/bn.po
index b228221..7fc9999 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Show all"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "খুঁজুন"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Go"
@@ -334,57 +335,13 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Display PDF schema"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Show grid"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "রং দেখান"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Show dimension of tables"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "সব টেবিল সমান প্রশস্থতাসহ প্রদর্শন করুন?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "ডাটা অভিধান"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landscape"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrait"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "পাতার আকার"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "পিডিএফ পাতাগুলো সম্পাদনা কর"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "ব্রাউজ করুন"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "টেবিল বিশ্লেষণ কর"
msgid "Export"
msgstr "Export"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "ডাটা অভিধান"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1765,8 +1726,7 @@ msgstr "bn"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "বর্ণনা"
@@ -2245,6 +2205,46 @@ msgstr "Number of records(queries) to skip from start"
msgid "Format of imported file"
msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Display PDF schema"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Show grid"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "রং দেখান"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Show dimension of tables"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "সব টেবিল সমান প্রশস্থতাসহ প্রদর্শন করুন?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landscape"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrait"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "পাতার আকার"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3098,7 +3098,7 @@ msgstr "ডুপ্লিকেট সারি অবহেলা করু
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "কলামের নাম"
@@ -4695,7 +4695,7 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4867,7 +4867,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "রিসেট করুন"
@@ -5026,23 +5026,31 @@ msgstr "অনুগ্রহ করে সম্পাদনা করার
msgid "Create a page"
msgstr "একটি নতুন পাতা তৈরী কর"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page
name"
+msgstr "পাতার সংখ্যাঃ"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatic layout"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Internal relations"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "টেবিল সিলেক্ট করুন"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/bs.po b/po/bs.po
index 4e42ec6..35d3cfd 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Pretraživanje"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kreni"
@@ -338,57 +339,13 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Prikaži PDF shemu"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Prikaži mrežu"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Prikaži boju"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Prikaži dimenzije tabele"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "prikaz svih tabela iste širine?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Rečnik podataka"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format riječnika podataka"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Položeno"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Uspravno"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Dimenzije papira"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Izmena PDF strana"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -564,7 +521,7 @@ msgstr "Pregled"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -745,6 +702,10 @@ msgstr "Analiziraj tabelu"
msgid "Export"
msgstr "Izvoz"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Rečnik podataka"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1751,8 +1712,7 @@ msgstr "Poslato"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2219,6 +2179,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Prikaži PDF shemu"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Prikaži mrežu"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Prikaži boju"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Prikaži dimenzije tabele"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "prikaz svih tabela iste širine?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format riječnika podataka"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Položeno"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Uspravno"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Dimenzije papira"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3053,7 +3053,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Imena kolona"
@@ -4552,7 +4552,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4710,7 +4710,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Resetuj"
@@ -4860,23 +4860,31 @@ msgstr "Izaberite stranu koju menjate"
msgid "Create a page"
msgstr "Napravi novu stranu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Broj strane:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatski raspored"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Izaberi tabele"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Uključuje/isključuje scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ca.po b/po/ca.po
index d11ce92..624abd6 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Mostra tot"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Cerca"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executa"
@@ -333,57 +334,13 @@ msgstr ""
"Les característiques addicionals per treballar amb taules enllaçades s'han "
"desactivat. Per saber perquè prem a %saquí%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Mostra l'esquema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Mostra graella"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Mostra color"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Mostra dimensió de les taules"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Mostrar totes les taules amb la mateixa amplada?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Diccionari de Dades"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Només mostrar claus"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format del Diccionari de Dades"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Horitzontal"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Vertical"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Tamany de paper"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Edita pàgines PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Navega"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "Analitza la taula"
msgid "Export"
msgstr "Exporta"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Diccionari de Dades"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Taules seguides"
@@ -1774,8 +1735,7 @@ msgstr "Enviat"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentació"
@@ -2259,6 +2219,46 @@ msgstr "Nombre de registres(consultes) a saltar des de l'inici"
msgid "Format of imported file"
msgstr "Format de l'arxiu importat"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Mostra l'esquema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Mostra graella"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Mostra color"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Mostra dimensió de les taules"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Mostrar totes les taules amb la mateixa amplada?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Només mostrar claus"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format del Diccionari de Dades"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Horitzontal"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Vertical"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Tamany de paper"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3132,7 +3132,7 @@ msgstr "Ignora les files duplicades"
msgid "Column names in first row"
msgstr "Noms de columnes a la primera fila"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nom de les columnes"
@@ -4751,7 +4751,7 @@ msgstr "Motor d'emmagatzematge"
msgid "PARTITION definition"
msgstr "Definicio de PARTICIÓ"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4922,7 +4922,7 @@ msgstr "Interficie"
msgid "Custom color"
msgstr "Color triat"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reinicia"
@@ -5093,23 +5093,31 @@ msgstr "Tria una pàgina per editar"
msgid "Create a page"
msgstr "Crea una nova Pàgina"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Número de pàgina:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Disseny automàtic"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relacions internes"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Tria Taules"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Canvia l' scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/cs.po b/po/cs.po
index 199afc5..43245c2 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-25 14:32+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -21,8 +21,8 @@ msgstr ""
msgid "Show all"
msgstr "Zobrazit vše"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -47,30 +47,31 @@ msgid "Search"
msgstr "Vyhledávání"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Proveď"
@@ -330,57 +331,13 @@ msgstr ""
"Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte "
"proč."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Zobrazit jako schéma v PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Zobrazit mřížku"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Barevné šipky"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Rozměry tabulek"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Použít pro všechny tabulky stejnou šířku"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Datový slovník"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Jen zobrazit klíče"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formát datového slovníku"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Na šířku"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Na výšku"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Velikost stránky"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Upravit PDF stránky"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -420,7 +377,6 @@ msgstr "Poslední kontrola"
#: db_printview.php:222 db_structure.php:480
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tabulka"
@@ -557,7 +513,7 @@ msgstr "Projít"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -738,6 +694,10 @@ msgstr "Analyzovat tabulku"
msgid "Export"
msgstr "Export"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Datový slovník"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Sledované tabulky"
@@ -1713,8 +1673,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentace"
@@ -2198,6 +2157,46 @@ msgstr "Počet záznamů (dotazů) od začátku, které se mají přeskočit"
msgid "Format of imported file"
msgstr "Formát importovaného souboru"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Zobrazit jako schéma v PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Zobrazit mřížku"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Barevné šipky"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Rozměry tabulek"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Použít pro všechny tabulky stejnou šířku"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Jen zobrazit klíče"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formát datového slovníku"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Na šířku"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Na výšku"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Velikost stránky"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3060,7 +3059,7 @@ msgstr "Ignorovat duplicitní řádky"
msgid "Column names in first row"
msgstr "Jména sloupců na prvním řádku"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Názvy sloupců"
@@ -4650,7 +4649,7 @@ msgstr "Úložiště"
msgid "PARTITION definition"
msgstr "Definice PARTITION"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4822,7 +4821,7 @@ msgstr "Rozhraní"
msgid "Custom color"
msgstr "Vlastní barva"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Původní"
@@ -4989,23 +4988,31 @@ msgstr "Zvolte stránku, kterou chcete změnit"
msgid "Create a page"
msgstr "Vytvořit novou stránku"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Strana číslo:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "automatické rozvržení"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interní relace"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Vybrat tabulky"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Zobrazit grafický návrh"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5304,7 +5311,6 @@ msgid "Do not change the password"
msgstr "Neměnit heslo"
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nebyl nalezen žádný uživatel."
@@ -5662,7 +5668,6 @@ msgid "Error management:"
msgstr "Práce s chybami:"
#: server_replication.php:334
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr ""
"Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném "
diff --git a/po/da.po b/po/da.po
index a80a9ce..9b59c39 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Søg"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Udfør"
@@ -333,57 +334,13 @@ msgstr ""
"De ekstra features for at arbejde med linkede tabeller er deaktiveret. For "
"at se hvorfor, klik %sher%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Vis PDF-skematik"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Vis gitter"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Vis farve"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Vis tabellernes dimensioner"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "vis alle tabeller med samme bredde?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Data Dictionary"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary-format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Liggende"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Stående"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Papirstørrelse"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Redigér PDF-sider"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Vis"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -739,6 +696,10 @@ msgstr "Analysér tabel"
msgid "Export"
msgstr "Eksport"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Data Dictionary"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1761,8 +1722,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentation"
@@ -2240,6 +2200,46 @@ msgstr "Antal poster (queries) der skal springes over fra start"
msgid "Format of imported file"
msgstr "Format på importeret fil"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Vis PDF-skematik"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Vis gitter"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Vis farve"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Vis tabellernes dimensioner"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "vis alle tabeller med samme bredde?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary-format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Liggende"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Stående"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Papirstørrelse"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3079,7 +3079,7 @@ msgstr "Ignorér gentagne rækker"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Kolonnenavne"
@@ -4681,7 +4681,7 @@ msgstr "Datalager"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4853,7 +4853,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Nulstil"
@@ -5012,23 +5012,31 @@ msgstr "Vælg en side der skal redigeres"
msgid "Create a page"
msgstr "Opret en ny side"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Side nummer:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatisk layout"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interne relationer"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Vælg Tabeller"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "tegnebræt til/fra"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/de.po b/po/de.po
index d502f13..5df00f3 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-28 14:10+0200\n"
"Last-Translator: <torsten.funck(a)googlemail.com>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Alles anzeigen"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Suche"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -328,57 +329,13 @@ msgstr ""
"Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch "
"deaktiviert. Klicken Sie %shier%s um herauszufinden warum."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF-Schema anzeigen"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Gitterlinien anzeigen"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "mehrfarbig"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Tabellendimensionen anzeigen."
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Sollen alle Tabellen mit der gleichen Breite angezeigt werden?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Strukturverzeichnis"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Nur Schlüssel anzeigen"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format des Strukturverzeichnisses"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Querformat"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Hochformat"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Papiergröße"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF-Seiten bearbeiten"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -418,7 +375,6 @@ msgstr "Letzter Check am"
#: db_printview.php:222 db_structure.php:480
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s Tabelle"
@@ -554,7 +510,7 @@ msgstr "Anzeigen"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -736,6 +692,10 @@ msgstr "Analysiere Tabelle"
msgid "Export"
msgstr "Exportieren"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Strukturverzeichnis"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Verfolgte Tabellen"
@@ -1723,8 +1683,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentation"
@@ -2210,6 +2169,46 @@ msgstr "Anzahl der am Anfang zu überspringenden Einträge (Abfragen)"
msgid "Format of imported file"
msgstr "Dateiformat"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF-Schema anzeigen"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Gitterlinien anzeigen"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "mehrfarbig"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Tabellendimensionen anzeigen."
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Sollen alle Tabellen mit der gleichen Breite angezeigt werden?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Nur Schlüssel anzeigen"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format des Strukturverzeichnisses"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Querformat"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Hochformat"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Papiergröße"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3080,7 +3079,7 @@ msgstr "Ignoriere doppelte Zeilen"
msgid "Column names in first row"
msgstr "Spaltennamen in der ersten Zeile"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Spaltennamen"
@@ -4723,7 +4722,7 @@ msgstr "Tabellenformat"
msgid "PARTITION definition"
msgstr "PARTITION Definition"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4907,7 +4906,7 @@ msgstr "Oberfläche"
msgid "Custom color"
msgstr "Benutzerdefinierte Farbe"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Zurücksetzen"
@@ -5080,23 +5079,31 @@ msgstr "Bitte wählen Sie die zu bearbeitende Seite."
msgid "Create a page"
msgstr "Neue Seite erstellen"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Seite:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatische Anordnung"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interne Beziehungen"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Tabellenauswahl"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Klemmbrett anzeigen"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5396,7 +5403,6 @@ msgid "Do not change the password"
msgstr "Passwort nicht verändert"
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "Es wurde kein Benutzer gefunden."
@@ -5762,7 +5768,6 @@ msgid "Error management:"
msgstr "Fehlerbehandlung:"
#: server_replication.php:334
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr ""
"Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und "
diff --git a/po/el.po b/po/el.po
index 6ee1ddf..06f9895 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Εμφάνιση όλων"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Αναζήτηση"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Εκτέλεση"
@@ -331,57 +332,13 @@ msgstr ""
"Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν "
"απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Εμφάνιση σχήματος PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Εμφάνιση πλέγματος"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Εμφάνιση χρωμάτων"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Εμφάνιση διαστάσεων πινάκων"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "εμφάνιση όλων των πινάκων με το ίδιο πλάτος;"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Περιληπτικός πίνακας δεδομένων"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Μόνο ερφάνιση κλειδιών"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Μορφή λεξικού δεδομένων"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Οριζόντια διάταξη"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Κάθετη διάταξη"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Μέγεθος χαρτιού"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Αλλαγή σελίδων PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -557,7 +514,7 @@ msgstr "Περιήγηση"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "Ανάλυση Πίνακα"
msgid "Export"
msgstr "Εξαγωγή"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Περιληπτικός πίνακας δεδομένων"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Παρακολουθούμενοι πίνακες"
@@ -1750,8 +1711,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Τεκμηρίωση"
@@ -2233,6 +2193,46 @@ msgstr "Αριθμός εγγραφών (ερωτημάτων) που θα πα
msgid "Format of imported file"
msgstr "Μορφή εισαχθέντος αρχείου"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Εμφάνιση σχήματος PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Εμφάνιση πλέγματος"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Εμφάνιση χρωμάτων"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Εμφάνιση διαστάσεων πινάκων"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "εμφάνιση όλων των πινάκων με το ίδιο πλάτος;"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Μόνο ερφάνιση κλειδιών"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Μορφή λεξικού δεδομένων"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Οριζόντια διάταξη"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Κάθετη διάταξη"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Μέγεθος χαρτιού"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3107,7 +3107,7 @@ msgstr "Παράβλεψη διπλών γραμμών"
msgid "Column names in first row"
msgstr "Ονόματα στήλης στην πρώτη γραμμή"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Ονόματα στηλών"
@@ -3970,8 +3970,8 @@ msgid ""
"(If this is not 0, you should carefully check the indexes of your tables.)"
msgstr ""
"Ο αριθμός των ενώσεων χωρίς κλειδιά που ελέγχουν τη χρήση κλειδιού μετά από "
-"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων "
-"σας.)"
+"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα "
+"ευρετήρια των πινάκων σας.)"
#: libraries/messages.inc.php:152
msgid ""
@@ -4755,7 +4755,7 @@ msgstr "Μηχανή αποθήκευσης"
msgid "PARTITION definition"
msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4934,7 +4934,7 @@ msgstr "Περιβάλλον εργασίας"
msgid "Custom color"
msgstr "Προσαρμοσμένο χρώμα"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Επαναφορά"
@@ -5107,23 +5107,31 @@ msgstr "Παρακαλώ επιλέξτε σελίδα για αλλαγή"
msgid "Create a page"
msgstr "Δημιουργία νέας σελίδας"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Σελίδα:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Αυτόματη διάταξη"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Εσωτερικές συσχετίσεις"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Επιλογή Πινάκων"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "(Απ)ενεργοποίηση πίνακα σχεδιασμού"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/en_GB.po b/po/en_GB.po
index 40b7539..5be586f 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-25 16:41+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Show all"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Search"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Go"
@@ -328,57 +329,13 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Display PDF schema"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Show grid"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Show colour"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Show dimension of tables"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Display all tables with the same width"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Data Dictionary"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Only show keys"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landscape"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrait"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Paper size"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Edit PDF Pages"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -418,7 +375,6 @@ msgstr "Last check"
#: db_printview.php:222 db_structure.php:480
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s table"
@@ -554,7 +510,7 @@ msgstr "Browse"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -736,6 +692,10 @@ msgstr "Analyse table"
msgid "Export"
msgstr "Export"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Data Dictionary"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Tracked tables"
@@ -1705,8 +1665,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentation"
@@ -2185,6 +2144,46 @@ msgstr "Number of records (queries) to skip from start"
msgid "Format of imported file"
msgstr "Format of imported file"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Display PDF schema"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Show grid"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Show colour"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Show dimension of tables"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "D
isplay all tables with the same width"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Only show keys"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landscape"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrait"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Paper size"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3052,7 +3051,7 @@ msgstr "Ignore duplicate rows"
msgid "Column names in first row"
msgstr "Column names in first row"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Column names"
@@ -4644,7 +4643,7 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr "PARTITION definition"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4820,7 +4819,7 @@ msgstr "Interface"
msgid "Custom color"
msgstr "Custom colour"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reset"
@@ -4989,23 +4988,31 @@ msgstr "Please choose a page to edit"
msgid "Create a page"
msgstr "Create a page"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Page number:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatic layout"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Internal relations"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Select Tables"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5305,7 +5312,6 @@ msgid "Do not change the password"
msgstr "Do not change the password"
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "No user found."
@@ -5666,7 +5672,6 @@ msgid "Error management:"
msgstr "Error management:"
#: server_replication.php:334
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "Skipping errors might lead into unsynchronised master and slave!"
diff --git a/po/es.po b/po/es.po
index 14778b2..21d8ae1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Mostrar todo"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Buscar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Continuar"
@@ -334,57 +335,13 @@ msgstr ""
"Las opciones adicionales para trabajar con tablas vinculadas fueron "
"desactivadas. Para saber porqué, dé clic %saquí%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Mostrar esquema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Mostrar la cuadrícula"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Mostrar color"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Mostrar la dimensión de las tablas"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "¿Mostrar todas las tablas que tienen el mismo ancho?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Diccionario de datos"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Mostrar las llaves solamente"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formato del Diccionario de Datos"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Orientación horizontal"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Orientación vertical"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Tamaño del papel"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Editar las páginas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Examinar"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -743,6 +700,10 @@ msgstr "Analizar la tabla"
msgid "Export"
msgstr "Exportar"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Diccionario de datos"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1793,8 +1754,7 @@ msgstr "es"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentación"
@@ -2281,6 +2241,46 @@ msgstr "Número de registros (consultas) a saltarse desde el inicio"
msgid "Format of imported file"
msgstr "Formato del archivo importado"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Mostrar esquema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Mostrar la cuadrícula"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Mostrar color"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Mostrar la dimensión de las tablas"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "¿Mostrar todas las tablas que tienen el mismo ancho?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Mostrar las llaves solamente"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formato del Diccionario de Datos"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Orientación horizontal"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Orientación vertical"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Tamaño del papel"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3169,7 +3169,7 @@ msgstr "Ignore las filas duplicadas"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nombre de las columnas"
@@ -4811,7 +4811,7 @@ msgstr "Motor de almacenamiento"
msgid "PARTITION definition"
msgstr "definición de la PARTICIÓN"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4987,7 +4987,7 @@ msgstr "Interfaz"
msgid "Custom color"
msgstr "Cambiar el color"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reiniciar"
@@ -5154,23 +5154,31 @@ msgstr "Elegir la página a editar"
msgid "Create a page"
msgstr "Crear una nueva página"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Número de página:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Diseño automático"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relaciones internas"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Seleccionar tablas"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "cambiar el estado del scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/et.po b/po/et.po
index 96e090c..304d550 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Näita kõiki"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Otsi"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Mine"
@@ -334,57 +335,13 @@ msgstr ""
"Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda "
"miks see nii on, vajutage %ssiia%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Näita PDF skeemi"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Näita võrgustiku"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Näita värvi"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Näita tabelite dimensiooni"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "kuva kõik tabelid sama laiusega?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Andmesõnastik"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Andmesõnastiku formaat"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Laipilt"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portreepilt"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Paberi suurus"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Muuda PDF lehti"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Vaata"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "Analüüsi tabelit"
msgid "Export"
msgstr "Ekspordi"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Andmesõnastik"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1765,8 +1726,7 @@ msgstr "Saadetud"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentatsioon"
@@ -2241,6 +2201,46 @@ msgstr "Käske (päringuid) mida algusest vahele jätta"
msgid "Format of imported file"
msgstr "Imporditud faili formaat"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Näita PDF skeemi"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Näita võrgustiku"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Näita värvi"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Näita tabelite dimensiooni"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "kuva kõik tabelid sama laiusega?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Andmesõnastiku formaat"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Laipilt"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portreepilt"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Paberi suurus"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3092,7 +3092,7 @@ msgstr "Ignoreeri korduvaid ridasid"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Väljade nimed"
@@ -4684,7 +4684,7 @@ msgstr "Varundusmootor"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4857,7 +4857,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Tühista"
@@ -5015,23 +5015,31 @@ msgstr "Palun valige leht muutmiseks"
msgid "Create a page"
msgstr "Loo uus leht"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Lehenumber:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automaatne väljund"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Sisesed seosed"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Vali tabelid"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "vaheta märkmetahvlit"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/eu.po b/po/eu.po
index c07e24f..70ebddc 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: <hey_neken(a)mundurat.net>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Dena erakutsi"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Bilatu"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Joan"
@@ -339,57 +340,13 @@ msgstr ""
"Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . "
"Zergatia jakiteko egizu klik %shemen%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF eskema erakutsi"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Sareta erakutsi"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Kolorea erakutsi"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Taulen dimentsioak erakutsi"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Zabalera berdina duten taula guztiak erakutsi?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Datu-hiztegia"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Datuen hiztegiaren formateoa"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Bertikal"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Paperaren tamaina"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Editatu PDF Orriak"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -565,7 +522,7 @@ msgstr "Arakatu"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -746,6 +703,10 @@ msgstr "Taula aztertu"
msgid "Export"
msgstr "Esportatu"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Datu-hiztegia"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1753,8 +1714,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentazioa"
@@ -2222,6 +2182,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF eskema erakutsi"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Sareta erakutsi"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Kolorea erakutsi"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Taulen dimentsioak erakutsi"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Zabalera berdina duten taula guztiak erakutsi?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Datuen hiztegiaren formateoa"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Bertikal"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Paperaren tamaina"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3058,7 +3058,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Zutabe izenak"
@@ -4569,7 +4569,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4730,7 +4730,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reset egin"
@@ -4882,23 +4882,31 @@ msgstr "Aukeratu editatzeko orria mesedez"
msgid "Create a page"
msgstr "Orri berri bat sortu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Orri zenbakia:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Diseinu automatikoa"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Barne-erlazioak"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Taulak hautatu"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Aldatu \"scratchboard\"-a"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/fa.po b/po/fa.po
index da93f11..d8d665b 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\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"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "نمايش همه"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -42,30 +42,31 @@ msgid "Search"
msgstr "جستجو"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "تاييد"
@@ -334,58 +335,13 @@ msgstr ""
"امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شدهاست . براي پيداكردن "
"دليل آن %sاينجا%s را بزنيد ."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "نمايش الگوي PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Show grid"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "نمايش رنگ"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "نمايش ابعاد جدولها"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "نمايش همه جدولها با عرض يكسان؟"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "فرهنگ دادهها"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-#, fuzzy
-msgid "Data Dictionary Format"
-msgstr "فرهنگ دادهها"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "ويرايش صفحات PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -561,7 +517,7 @@ msgstr "مشاهده"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +697,10 @@ msgstr "تحليل جدول"
msgid "Export"
msgstr "صدور"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "فرهنگ دادهها"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1731,8 +1691,7 @@ msgstr ""
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "مستندات"
@@ -2203,6 +2162,47 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "نمايش الگوي PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Show grid"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "نمايش رنگ"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "نمايش ابعاد جدولها"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "نمايش همه جدولها با عرض يكسان؟"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+#, fuzzy
+msgid "Data Dictionary Format"
+msgstr "فرهنگ دادهها"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3034,7 +3034,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "نام ستونها"
@@ -4505,7 +4505,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4641,7 +4641,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reset"
@@ -4791,23 +4791,30 @@ msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماي
msgid "Create a page"
msgstr "ساخت يك صفحه جديد"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
-msgstr ""
-
#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "شماره صفحه:"
+
+#: pdf_pages.php:307
+#, fuzzy
+msgid "Automatic layout based on"
+msgstr "نسخه سرور"
+
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Select Tables"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/fi.po b/po/fi.po
index 75a5090..182535d 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: <kajouni(a)gmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Näytä kaikki"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Etsi"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Siirry"
@@ -334,57 +335,13 @@ msgstr ""
"Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. "
"Katso %slisätietoja%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Näytä PDF-kaavio"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Näytä ruudukko"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Näytä värit"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Näytä taulujen ulottuvuus"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Näytä kaikki taulut samanlevyisinä?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Tietosanasto"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Näytä vain avaimet"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Tietosanaston tallennusmuoto"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Vaakatasossa"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Pystytasossa"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Paperin koko"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Muokkaa PDF-sivuja"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Selaa"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -742,6 +699,10 @@ msgstr "Analysoi taulu"
msgid "Export"
msgstr "Vienti"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Tietosanasto"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Seurattavat taulut"
@@ -1771,8 +1732,7 @@ msgstr "Lähetetty"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Ohjeet"
@@ -2255,6 +2215,46 @@ msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä"
msgid "Format of imported file"
msgstr "Tuotavan tiedoston muoto"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Näytä PDF-kaavio"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Näytä ruudukko"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Näytä värit"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Näytä taulujen ulottuvuus"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Näytä kaikki taulut samanlevyisinä?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Näytä vain avaimet"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Tietosanaston tallennusmuoto"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Vaakatasossa"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Pystytasossa"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Paperin koko"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3121,7 +3121,7 @@ msgstr "Älä välitä samanlaisista riveistä"
msgid "Column names in first row"
msgstr "Sarakenimet ensimmäisessä rivissä"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Sarakkeiden nimet"
@@ -4741,7 +4741,7 @@ msgstr "Tallennusmoottori"
msgid "PARTITION definition"
msgstr "PARTITION-määritelmä"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4917,7 +4917,7 @@ msgstr "Käyttöliittymä"
msgid "Custom color"
msgstr "Muu väri"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Nollaa"
@@ -5084,23 +5084,31 @@ msgstr "Valitse muokattava sivu"
msgid "Create a page"
msgstr "Luo uusi sivu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Sivunumero:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automaattinen ulkoasu"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Sisäiset relaatiot"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Valitse taulut"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Näytä/kätke luonnospöytä"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/fr.po b/po/fr.po
index d7f28af..e077add 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-26 16:52+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Tout afficher"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Rechercher"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Exécuter"
@@ -328,57 +329,13 @@ msgstr ""
"Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. "
"Pour une analyse du problème, cliquez %sici%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "<b>Afficher le schéma</b> en PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Grille"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Couleurs"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Dimension des tables"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Afficher toutes les tables avec une largeur identique"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dictionnaire de données"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Ne montrer que les clés."
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Orientation du dictionnaire:"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Paysage"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrait"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Taille du papier"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Préparer le schéma en PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -418,7 +375,6 @@ msgstr "Dernière vérification"
#: db_printview.php:222 db_structure.php:480
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s table"
@@ -554,7 +510,7 @@ msgstr "Afficher"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -736,6 +692,10 @@ msgstr "Analyser la table"
msgid "Export"
msgstr "Exporter"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dictionnaire de données"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Tables faisant l'objet d'un suivi"
@@ -1727,8 +1687,7 @@ msgstr "fr"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentation"
@@ -2211,6 +2170,46 @@ msgstr "... relatif au début du fichier"
msgid "Format of imported file"
msgstr "Format du fichier d'importation"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "<b>Afficher le schéma</b> en PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Grille"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Couleurs"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Dimension des tables"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Afficher toutes les tables avec une largeur identique"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Ne montrer que les clés."
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Orientation du dictionnaire:"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Paysage"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrait"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Taille du papier"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3088,7 +3087,7 @@ msgstr "Ignorer les doublons"
msgid "Column names in first row"
msgstr "La première ligne contient le nom des colonnes"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nom des colonnes"
@@ -4718,7 +4717,7 @@ msgstr "Moteur de stockage"
msgid "PARTITION definition"
msgstr "Définition de PARTITION"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4896,7 +4895,7 @@ msgstr "Interface"
msgid "Custom color"
msgstr "Couleur au choix"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Réinitialiser"
@@ -5067,23 +5066,31 @@ msgstr "Page à éditer"
msgid "Create a page"
msgstr "Créer une page"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Page n°:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Mise en page automatique"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relations internes"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Choisissez les tables"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Éditeur visuel"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5383,7 +5390,6 @@ msgid "Do not change the password"
msgstr "Conserver le mot de passe"
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "Aucun utilisateur n'a été trouvé."
@@ -5748,7 +5754,6 @@ msgid "Error management:"
msgstr "Gestion des erreurs"
#: server_replication.php:334
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr ""
"Ignorer les erreurs peut mener à une désynchronisation entre les serveurs "
diff --git a/po/gl.po b/po/gl.po
index a75ec44..80cde7f 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Ver todos os rexistros"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Procurar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executar"
@@ -334,57 +335,13 @@ msgstr ""
"Desactivouse a funcionalidade adicional para o traballo con táboas "
"vinculadas. Para saber o por que, prema %saquí%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Mostrar o esquema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Mostrar a grella"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Mostrar a cor"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Mostrar a dimensión das táboas"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "mostrar todas as táboas co mesmo ancho?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dicionario de datos"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Só as chaves coñecidas"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formato do dicionario de datos"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Horizontal"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Vertical"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Tamaño do papel"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Editar as páxinas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Visualizar"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -742,6 +699,10 @@ msgstr "Analizar a táboa"
msgid "Export"
msgstr "Exportar"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dicionario de datos"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Táboas seguidas"
@@ -1777,8 +1738,7 @@ msgstr "Enviado"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentación"
@@ -2262,6 +2222,46 @@ msgstr "Número de rexistros (procuras) que se ignoran desde o comezo"
msgid "Format of imported file"
msgstr "Formato do ficheiro importado"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Mostrar o esquema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Mostrar a grella"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Mostrar a cor"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Mostrar a dimensión das táboas"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "mostrar todas as táboas co mesmo ancho?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Só as chaves coñecidas"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formato do dicionario de datos"
+
+#: librar
ies/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Horizontal"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Vertical"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Tamaño do papel"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3136,7 +3136,7 @@ msgstr "Ignorar as fileiras duplicadas"
msgid "Column names in first row"
msgstr "Nomes das columnas na primeira fileira"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nomes das columnas"
@@ -4751,7 +4751,7 @@ msgstr "Motor de almacenamento"
msgid "PARTITION definition"
msgstr "Definición da PARTICIÓN"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4924,7 +4924,7 @@ msgstr "Interface"
msgid "Custom color"
msgstr "Cor personalizada"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reiniciar"
@@ -5094,23 +5094,31 @@ msgstr "Escolla unha páxina para modificar"
msgid "Create a page"
msgstr "Crear unha páxina nova"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Número de páxina:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Distribución automática"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relacións internas"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Seleccionar táboas"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "conmutar o borrador"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/he.po b/po/he.po
index d724853..68ecf82 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "ראיית הכל"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "חיפוש"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "סע"
@@ -330,57 +331,13 @@ msgid ""
msgstr ""
"תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "הצגת תרשים PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "הראה רשת"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "ראיית צבע"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "ראיית ממדים של טבלאות"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "הצגת כל הטבלאות ברוחב דומה?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "מילון מידע"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "תבנית מידע מילון"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrait"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "גודל דף"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "עריכת דפי PDG"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -556,7 +513,7 @@ msgstr "עיון"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -737,6 +694,10 @@ msgstr "ניתוח טבלה"
msgid "Export"
msgstr "ייצוא"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "מילון מידע"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1738,8 +1699,7 @@ msgstr "נשלח"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "תיעוד"
@@ -2210,6 +2170,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "הצגת תרשים PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "הראה רשת"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "ראיית צבע"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "ראיית ממדים של טבלאות"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "הצגת כל הטבלאות ברוחב דומה?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "תבנית מידע מילון"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrait"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "גודל דף"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3043,7 +3043,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "שמות עמודה"
@@ -4514,7 +4514,7 @@ msgstr "מנוע אחסון"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4651,7 +4651,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "איפוס"
@@ -4804,23 +4804,31 @@ msgstr "אנא בחר עמוד לעריכה"
msgid "Create a page"
msgstr "יצירת עמוד חדש"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "מספר דף:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "עיצוב אוטומטי"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "יחסים פנימיים"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "בחירת טבלאות"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/hi.po b/po/hi.po
index 42ee4ce..ed4ce23 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-21 05:48+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "सभी दिखाओ"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "खोजें"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "आगे"
@@ -327,57 +328,13 @@ msgstr ""
"लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. "
"क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF स्कीमा दिखाओ"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "ग्रिड दिखाओ"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "रंग दिखाओ"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr " टेबल के परिमाण दिखाओ"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "समान चौड़ाई के सभी टेबल को प्रदर्शित करें. "
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "डेटा शब्दकोश"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "डेटा शब्दकोश प्रारूप"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "परिदृश्य"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "पेपर आकार"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "पीडीएफ पृष्ठों को संपादित करें"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -553,7 +510,7 @@ msgstr "ब्राउज़"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -733,6 +690,10 @@ msgstr "टेबल का विश्लेषण करें"
msgid "Export"
msgstr "निर्यात"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "डेटा शब्दकोश"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "ट्रैक की गयी तालिकाएं"
@@ -1680,8 +1641,7 @@ msgstr "इंग्लिश"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "डोक्युमेंटेशन"
@@ -2147,6 +2107,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF स्कीमा दिखाओ"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "ग्रिड दिखाओ"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "रंग दिखाओ"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr " टेबल के परिमाण दिखाओ"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "समान चौड़ाई के सभी टेबल को प्रदर्शित करें. "
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "डेटा शब्दकोश प्रारूप"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "परिदृश्य"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "पेपर आकार"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -2970,7 +2970,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "कोलम के नाम"
@@ -4420,7 +4420,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4555,7 +4555,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr ""
@@ -4701,23 +4701,31 @@ msgstr " एडिट करने के लिये पेज़ चुने"
msgid "Create a page"
msgstr "नया पेज़ बनाऐं"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "पृष्ठ संख्या:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "स्वचालित लेआउट"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr " टेबल चुनिये"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/hr.po b/po/hr.po
index b55e0a0..983d9a8 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Traži"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kreni"
@@ -335,57 +336,13 @@ msgstr ""
"Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste "
"saznali razloge, pritisnite %sovdje%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Prikaži PDF shemu"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Prikaži mrežu"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Prikaži boju"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Prikaži dimenzije tablice"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Prikazati sve tablice uz istu širinu?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Rječnik podataka"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Oblikovanje rječnika podataka"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Položeno"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portret"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Veličina papira"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Uredi PDF stranice"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -561,7 +518,7 @@ msgstr "Pretraživanje"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -742,6 +699,10 @@ msgstr "Analiziraj tablicu"
msgid "Export"
msgstr "Izvoz"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Rječnik podataka"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1779,8 +1740,7 @@ msgstr "Poslano"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2260,6 +2220,46 @@ msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka"
msgid "Format of imported file"
msgstr "Oblikovanje uvezene datoteke"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Prikaži PDF shemu"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Prikaži mrežu"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Prikaži boju"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Prikaži dimenzije tablice"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Prikazati sve tablice uz istu širinu?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Oblikovanje rječnika podataka"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Položeno"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portret"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Veličina papira"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3137,7 +3137,7 @@ msgstr "Ignoriraj istovjetne redove"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nazivi stupaca"
@@ -4751,7 +4751,7 @@ msgstr "Pogon pohrane"
msgid "PARTITION definition"
msgstr "Definicija PARTICIJE"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4926,7 +4926,7 @@ msgstr "Sučelje"
msgid "Custom color"
msgstr "Prilagođena boja"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Povrat"
@@ -5088,23 +5088,31 @@ msgstr "Odaberite tablicu za uređivanje"
msgid "Create a page"
msgstr "Izradi novu stranicu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Broj stranice:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatski raspored"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interne relacije"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Odaberite tablice"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Uključi bilješke"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/hu.po b/po/hu.po
index e92b5e6..ffa3207 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Mind látható"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Keresés"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Indítás"
@@ -333,57 +334,13 @@ msgstr ""
"A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra "
"kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF séma megjelenítése"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Rács megjelenítése"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Szín megjelenítése"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "A táblák méretének megjelenítése"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Az összes tábla megjelenítése ugyanolyan szélességgel"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Adatkönyvtár"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Csak a kulcsok megjelenítése"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Adatkönyvtár formátum"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Fekvő"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Álló"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Papírméret"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF oldalak szerkesztése"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Tartalom"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Tábla elemzése"
msgid "Export"
msgstr "Exportálás"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Adatkönyvtár"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1781,8 +1742,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentáció"
@@ -2267,6 +2227,46 @@ msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma"
msgid "Format of imported file"
msgstr "Az importált fájl formátuma"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF séma megjelenítése"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Rács megjelenítése"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Szín megjelenítése"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "A táblák méretének megjelenítése"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Az összes tábla megjelenítése ugyanolyan szélességgel"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Csak a kulcsok megjelenítése"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Adatkönyvtár formátum"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Fekvő"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Álló"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Papírméret"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3142,7 +3142,7 @@ msgstr "A dupla sorok figyelmen kívül hagyása"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Oszlopnevek"
@@ -4764,7 +4764,7 @@ msgstr "Tárolómotor"
msgid "PARTITION definition"
msgstr "PARTITION definíció"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4944,7 +4944,7 @@ msgstr "Kezelőfelület"
msgid "Custom color"
msgstr "Egyéni szín"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Törlés"
@@ -5115,23 +5115,31 @@ msgstr "Válassza ki a szerkesztendő oldalt"
msgid "Create a page"
msgstr "Új oldal készítése"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Oldalszám:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatikus elrendezés"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Belső kapcsolatok"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Táblák kiválasztása"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Scratchboard kapcsolása"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/id.po b/po/id.po
index add90ca..767353e 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Tampilkan semua"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Cari"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Go"
@@ -333,57 +334,13 @@ msgstr ""
"Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. "
"Untuk mengetahui sebabnya silakan klik %sdisini%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Tampilkan skema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Tampilkan garis"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Tampilkan warna"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Tampilkan ukuran dari tabel"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Tampilkan seluruh tabel dengan lebar yang sama?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Kamus Data"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format dari kamus data"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landscape"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Gambaran"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Ukuran kertas"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Ubah halaman PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -558,7 +515,7 @@ msgstr "Browse"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Analisa tabel"
msgid "Export"
msgstr "Ekspor"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Kamus Data"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Tabel-tabel yang dilacak"
@@ -1751,8 +1712,7 @@ msgstr "id"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentasi"
@@ -2225,6 +2185,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Tampilkan skema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Tampilkan garis"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Tampilkan warna"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Tampilkan ukuran dari tabel"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Tampilkan seluruh tabel dengan lebar yang sama?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format dari kamus data"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landscape"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Gambaran"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Ukuran kertas"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3074,7 +3074,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nama kolom"
@@ -4577,7 +4577,7 @@ msgstr "Mesin Penyimpan"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4744,7 +4744,7 @@ msgstr ""
msgid "Custom color"
msgstr "Warna kustom"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Reset"
@@ -4907,23 +4907,31 @@ msgstr "Silakan pilih halaman untuk diubah"
msgid "Create a page"
msgstr "Ciptakan halaman baru"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Halaman no.:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Layout otomatis"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relasi internal"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Pilih tabel"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "pindah buku catatan (Scratchboard)"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/it.po b/po/it.po
index dc42991..ae746ca 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-24 21:25+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Mostra tutti"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "Cerca"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Esegui"
@@ -329,57 +330,13 @@ msgstr ""
"Le caratteristiche aggiuntive sono state disattivate per funzionare con le "
"tabelle linkate. Per scoprire perché clicca %squi%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Mostra lo schema del PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Mostra la griglia"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Mostra il colore"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Mostra la dimensione delle tabelle"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "mostra tutte le Tabelle con la stessa larghezza?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Data Dictionary"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Mostra solo le chiavi"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formato del Data Dictionary"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Orizzontale"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Verticale"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Dimensioni carta"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Modifica pagine PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -555,7 +512,7 @@ msgstr "Mostra"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -737,6 +694,10 @@ msgstr "Analizza tabella"
msgid "Export"
msgstr "Esporta"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Data Dictionary"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Controlla tabelle"
@@ -1719,8 +1680,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentazione"
@@ -2204,6 +2164,46 @@ msgstr "Numero di record (query) da saltare a partire dall'inizio"
msgid "Format of imported file"
msgstr "Formato del file importato"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Mostra lo schema del PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Mostra la griglia"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Mostra il colore"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Mostra la dimensione delle tabelle"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "mostra tutte le Tabelle con la stessa larghezza?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Mostra solo le chiavi"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formato del Data Dictionary"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Orizzontale"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Verticale"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Dimensioni carta"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3077,7 +3077,7 @@ msgstr "Ignora le righe duplicate"
msgid "Column names in first row"
msgstr "I nomi delle colonne in prima fila"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nomi delle colonne"
@@ -4707,7 +4707,7 @@ msgstr "Motore di Memorizzazione"
msgid "PARTITION definition"
msgstr "Definizione Partizioni"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4884,7 +4884,7 @@ msgstr "Interfacce"
msgid "Custom color"
msgstr "Colore definito dall'utente"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Riavvia"
@@ -5056,23 +5056,31 @@ msgstr "Prego scegliere una Page da modificare"
msgid "Create a page"
msgstr "Crea una nuova pagina"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Numero pagina:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Impaginazione automatica"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relazioni interne"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Seleziona Tables"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "(dis)attiva scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ja.po b/po/ja.po
index 68f714b..5da1bc0 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "すべて表示"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "検索"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "実行する"
@@ -334,57 +335,13 @@ msgstr ""
"リンクテーブルを処理するための追加機能が無効になっています。理由については%s"
"こちら%sをご覧ください"
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF スキーマを表示する"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "グリッドを表示"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "色表示"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "テーブルの大きさを表示する"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "すべてのテーブルを同じ幅で表示しますか?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "データ辞書"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "データ辞書形式"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "横向き"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "縦向き"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "用紙サイズ"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF ページを編集する"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "表示"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -739,6 +696,10 @@ msgstr "テーブルを分析する"
msgid "Export"
msgstr "エクスポート"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "データ辞書"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1755,8 +1716,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "ドキュメント"
@@ -2235,6 +2195,46 @@ msgstr "先頭から数えたスキップするレコード(クエリ)の数"
msgid "Format of imported file"
msgstr "インポートするファイルの形式"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF スキーマを表示する"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "グリッドを表示"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "色表示"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "テーブルの大きさを表示する"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "すべてのテーブルを同じ幅で表示しますか?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "データ辞書形式"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "横向き"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "縦向き"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "用紙サイズ"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3098,7 +3098,7 @@ msgstr "重複している行を無視する"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 librarie
s/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "カラム名"
@@ -4666,7 +4666,7 @@ msgstr "ストレージエンジン"
msgid "PARTITION definition"
msgstr "パーティションの定義"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4837,7 +4837,7 @@ msgstr "インタフェース"
msgid "Custom color"
msgstr "カスタムカラー"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "リセット"
@@ -4999,23 +4999,31 @@ msgstr "編集するページを選択してください"
msgid "Create a page"
msgstr "新しいページを作成する"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "ページ番号:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "自動レイアウト"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "内部リレーション"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "テーブルを選択してください"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "スクラッチボードを切り替える"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ka.po b/po/ka.po
index c7ffd1b..52e386a 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "ყველას ჩვენება"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "ძებნა"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "გადასვლა"
@@ -333,57 +334,13 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF სქემის ჩვენება"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Show grid"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "ფერის ჩვენება"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Show dimension of tables"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Display all tables with the same width"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "მონაცემების ლექსიკონი"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Only show keys"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "ლანდშაფტური"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "პორტრეტული"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "გვერდის ზომა"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF გვერდების რედაქტირება"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "არჩევა"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Analyze table"
msgid "Export"
msgstr "ექსპორტი"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "მონაცემების ლექსიკონი"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1773,8 +1734,7 @@ msgstr "ka"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "დოკუმენტაცია"
@@ -2252,6 +2212,46 @@ msgstr "Number of records (queries) to skip from start"
msgid "Format of imported file"
msgstr "შემოტანილი ფაილების ფორმატი"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF სქემის ჩვენება"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Show grid"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "ფერის ჩვენება"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Show dimension of tables"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Display all tables with the same width"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Only show keys"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "ლანდშაფტური"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "პორტრეტული"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "გვერდის ზომა"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3127,7 +3127,7 @@ msgstr "Ignore duplicate rows"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "სვეტების სახელები"
@@ -4721,7 +4721,7 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr "PARTITION definition"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4895,7 +4895,7 @@ msgstr "ინტერფეისი"
msgid "Custom color"
msgstr "Custom color"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "დაბრუნება"
@@ -5063,23 +5063,31 @@ msgstr "გთხოვთ აირჩიოთ დასარედაქტ
msgid "Create a page"
msgstr "ახალი გვერდის შექმნა"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "გვერდის ნომერი:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "ავტომატური განლაგება"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Internal relations"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "ცხრილების არჩევა"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ko.po b/po/ko.po
index 5ae75ec..e91b502 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "모두 보기"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "검색"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "실행"
@@ -339,58 +340,13 @@ msgstr ""
"linked Tables에서 작동하는 부가기능이 사용되지 않습니다. 이유를 알려면 %s여기"
"를 클릭%s하십시오."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr ""
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "grid 보기"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "색깔 보기"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr ""
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "모든 테이블을 같은 너비로 출력할까요?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "데이터 사전 (전체 구조보기)"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-#, fuzzy
-msgid "Data Dictionary Format"
-msgstr "데이터 사전 (전체 구조보기)"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF 페이지 편집"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -566,7 +522,7 @@ msgstr "보기"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -746,6 +702,10 @@ msgstr "테이블 분석"
msgid "Export"
msgstr "내보내기"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "데이터 사전 (전체 구조보기)"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1737,8 +1697,7 @@ msgstr "보냄"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "도움말"
@@ -2204,6 +2163,47 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "grid 보기"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "색깔 보기"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "모든 테이블을 같은 너비로 출력할까요?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+#, fuzzy
+msgid "Data Dictionary Format"
+msgstr "데이터 사전 (전체 구조보기)"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3038,7 +3038,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "열(칼럼) 이름"
@@ -4513,7 +4513,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4650,7 +4650,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "리세트"
@@ -4799,24 +4799,31 @@ msgstr "편집할 페이지를 선택하세요"
msgid "Create a page"
msgstr "새 페이지 만들기"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
-msgstr ""
-
#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "페이지:"
+
+#: pdf_pages.php:307
+#, fuzzy
+msgid "Automatic layout based on"
+msgstr "서버 버전"
+
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
#, fuzzy
msgid "Select Tables"
msgstr "모두 선택"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/lt.po b/po/lt.po
index 2b3ca62..2d7fa35 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Rodyti viską"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Paieška"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Vykdyti"
@@ -334,57 +335,13 @@ msgstr ""
"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. "
"%sPaaiškinimas%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Rodyti PDF vaizdą"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Rodyti tinklelį"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Rodyti spalvą"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Rodyti lentelių dydžius"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "rodyti visas lenteles vienodo pločio?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Duomenų žodynas"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Duomenų žodyno formatas"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Peizažinis"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portretinis"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Lapo dydis"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Redaguoti PDF puslapius"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -561,7 +518,7 @@ msgstr "Peržiūrėti"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Analizuoti lentelę"
msgid "Export"
msgstr "Eksportuoti"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Duomenų žodynas"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1757,8 +1718,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "?"
@@ -2232,6 +2192,46 @@ msgstr "Praleisti įrašų(užklausų) skaičių nuo pradžios"
msgid "Format of imported file"
msgstr "Įkelto failo formatas"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Rodyti PDF vaizdą"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Rodyti tinklelį"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Rodyti spalvą"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Rodyti lentelių dydžius"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "rodyti visas lenteles vienodo pločio?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Duomenų žodyno formatas"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Peizažinis"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portretinis"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Lapo dydis"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3073,7 +3073,7 @@ msgstr "Ignoruoti pasikartojančias eilutes"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Stulpelių vardai"
@@ -4585,7 +4585,7 @@ msgstr "Saugojimo variklis"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4748,7 +4748,7 @@ msgstr ""
msgid "Custom color"
msgstr "Pasirinkta spalva"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Atstatyti į pradinę būseną"
@@ -4903,23 +4903,31 @@ msgstr "Pasirinkite puslapį redagavimui"
msgid "Create a page"
msgstr "Sukurti naują puslapį"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Puslapis:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatinis išdėstymas"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Vidiniai sąryšiai"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Pasirinkite lenteles"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "įjungti scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/lv.po b/po/lv.po
index 91d4ff4..cca4d8d 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Rādīt visu"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Meklēt"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Aiziet!"
@@ -334,57 +335,13 @@ msgstr ""
"Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu "
"kāpēc, klikškiniet %sšeit%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Rādīt PDF shēmu"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Rādīt režģi"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Rādīt krāsas"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Rādit tabulu izmērus"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "rādīt visas tabulas vienadā platumā?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Datu vārdnīca"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Datu vārdnīcas formats"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Ainava"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrets"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Papīra izmērs"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Labot PDF lapas"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Apskatīt"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Analizēt tabulu"
msgid "Export"
msgstr "Eksports"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Datu vārdnīca"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1752,8 +1713,7 @@ msgstr "Nosūtīts"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentācija"
@@ -2222,6 +2182,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Rādīt PDF shēmu"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Rādīt režģi"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Rādīt krāsas"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Rādit tabulu izmērus"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "rādīt visas tabulas vienadā platumā?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Datu vārdnīcas formats"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Ainava"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrets"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Papīra izmērs"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3056,7 +3056,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Kolonnu nosaukumi"
@@ -4552,7 +4552,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4714,7 +4714,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Atcelt"
@@ -4865,23 +4865,31 @@ msgstr "Izvēlieties lapu redigēšanai"
msgid "Create a page"
msgstr "Izveidot jaunu lapu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Lapas numurs:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automātiskais izvietojums"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Iekšējās relācijas"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Izvēlieties tabulas"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "parādīt/noslēpt piezīmju tafeli"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/mk.po b/po/mk.po
index 71c4db9..7afa726 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "прикажи ги сите"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Пребарување"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -334,57 +335,13 @@ msgstr ""
"Дополнителните можности за работа со поврзаните табели се исклучени. За да "
"дознаете зошто, кликнете %sовде%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Прикажи PDF шема"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Прикажи мрежа"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Прикажи боја"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Прикажи ги димензиите на табелите"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Приказ на сите табели со иста ширина?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Речник на податоци"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Формат на речникот на податоци"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Легнато"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Вертикално"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Димензија на хартијата"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Уредување на PDF страница"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Преглед"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Анализа на табелата"
msgid "Export"
msgstr "Извоз"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Речник на податоци"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1755,8 +1716,7 @@ msgstr "Пратено"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Документација"
@@ -2229,6 +2189,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Прикажи PDF шема"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Прикажи мрежа"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Прикажи боја"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Прикажи ги димензиите на табелите"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Приказ на сите табели со иста ширина?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Формат на речникот на податоци"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Легнато"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Вертикално"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Димензија на хартијата"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3082,7 +3082,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Имиња на колони"
@@ -4581,7 +4581,7 @@ msgstr "Вид на складиште"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4749,7 +4749,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Поништи"
@@ -4906,23 +4906,31 @@ msgstr "Изберете страница која менувате"
msgid "Create a page"
msgstr "Направи нова страница"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Број на страници:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Автоматски распоред"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Внатрешни релации"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Избери табели"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Вклучи/исклучи работна табела"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/mn.po b/po/mn.po
index 9f9874c..7d4c303 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Бүгдийг харах"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -43,30 +43,31 @@ msgid "Search"
msgstr "Хайх"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Яв"
@@ -332,57 +333,13 @@ msgstr ""
"Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s "
"дарж шалгах."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF-схем харуулах"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Тор харуулах"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Өнгө харах"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Хүснэгтийн харьцаа харуулах"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "бүх хүснэгтийг ижил өргөнөөр харуулах уу?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Өгөгдлийн толь"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Өгөгдлийн толийн тогтнол"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Ландшафт"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Дүрслэл"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Цаасны хэмжээ"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF-хуудаснуудыг засах"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -558,7 +515,7 @@ msgstr "Хөтлөх"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -738,6 +695,10 @@ msgstr "Хүснэгтийг задлах"
msgid "Export"
msgstr "Гаргах"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Өгөгдлийн толь"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1735,8 +1696,7 @@ msgstr ""
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Баримт"
@@ -2209,6 +2169,46 @@ msgstr ""
msgid "Format of imported file"
msgstr "Оруулсан файлын тогтнол"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF-схем харуулах"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Тор харуулах"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Өнгө харах"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Хүснэгтийн харьцаа харуулах"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "бүх хүснэгтийг ижил өргөнөөр харуулах уу?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Өгөгдлийн толийн тогтнол"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Ландшафт"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Дүрслэл"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Цаасны хэмжээ"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3047,7 +3047,7 @@ msgstr "Давхардсан мөрүүдийг алгасах"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Баганын нэрс"
@@ -4574,7 +4574,7 @@ msgstr "Агуулах хөдөлгүүр"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4736,7 +4736,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Да.эхлэх"
@@ -4890,23 +4890,31 @@ msgstr "Засах Хуудсаа сонго"
msgid "Create a page"
msgstr "Шинэ хуудас үүсгэх"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Хуудасны дугаар:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Автомат байрлал"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Дотоод хамаарал"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Хүснэгтүүд сонго"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ms.po b/po/ms.po
index a4c2e1b..367749c 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Papar semua"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "Cari"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Pergi"
@@ -336,57 +337,13 @@ msgstr ""
"Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah "
"tidak diaktifkan. Untuk mengetahuinya klik %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Papar Skema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Papar grid"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Papar warna"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Papar dimensi jadual"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "paparkan semua Jadual dengan kelebaran yang sama?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Kamus Data"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format Kamus Data"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Menegak"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Melintang"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Ubah Halaman PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -563,7 +520,7 @@ msgstr "Lungsur"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -743,6 +700,10 @@ msgstr "Analyze table"
msgid "Export"
msgstr "Eksport"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Kamus Data"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1744,8 +1705,7 @@ msgstr "Hantar"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentasi"
@@ -2211,6 +2171,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Papar Skema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Papar grid"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Papar warna"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Papar dimensi jadual"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "paparkan semua Jadual dengan kelebaran yang sama?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format Kamus Data"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Menegak"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Melintang"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3045,7 +3045,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nama Kolum"
@@ -4528,7 +4528,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4665,7 +4665,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormD
isplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Ulangtetap"
@@ -4815,23 +4815,30 @@ msgstr "Sila Pilih Laman untuk diubah"
msgid "Create a page"
msgstr "Cipta Halaman baru"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
-msgstr ""
-
#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Muka Surat:"
+
+#: pdf_pages.php:307
+#, fuzzy
+msgid "Automatic layout based on"
+msgstr "Versi Pelayan"
+
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Pilih Jadual"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/nb.po b/po/nb.po
index 08b4d6e..a599a3d 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-31 08:25+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Søk"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Utfør"
@@ -327,57 +328,13 @@ msgstr ""
"Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. "
"For å finne ut hvorfor, klikk %sher%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Vis PDF-skjema"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Vis rutenett"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Vis farger"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Vis tabelldimensjoner"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "vis alle tabeller med samme bredde?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dataordbok"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Bare vis nøkler"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Ordbok Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landskapsformat"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrettformat"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Papirstørrelse"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Rediger PDF-sider"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -417,7 +374,6 @@ msgstr "Sist kontrollert"
#: db_printview.php:222 db_structure.php:480
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tabell"
@@ -553,7 +509,7 @@ msgstr "Se på"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -733,6 +689,10 @@ msgstr "Analyser tabell"
msgid "Export"
msgstr "Eksporter"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dataordbok"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Overvåkede tabeller"
@@ -1705,8 +1665,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentasjon"
@@ -2183,6 +2142,46 @@ msgstr "Antall poster(spørringer) å hoppe over fra start"
msgid "Format of imported file"
msgstr "Importfilformat"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Vis PDF-skjema"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Vis rutenett"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Vis farger"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Vis tabelldimensjoner"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "vis alle tabeller med samme bredde?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Bare vis nøkler"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Ordbok Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landskapsformat"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrettformat"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Papirstørrelse"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3051,7 +3050,7 @@ msgstr "Ignorer dupliserte rader"
msgid "Column names in first row"
msgstr "Kolonnenavn i første rad"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Kolonnenavn"
@@ -4657,7 +4656,7 @@ msgstr "Lagringsmotor"
msgid "PARTITION definition"
msgstr "Partisjonsdefinisjon"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4830,7 +4829,7 @@ msgstr "Grensesnitt"
msgid "Custom color"
msgstr "Egendefinert farge"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Tilbakestill"
@@ -4998,23 +4997,31 @@ msgstr "Vennligst velg en side for redigering"
msgid "Create a page"
msgstr "Lag en ny side"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Sidenummer:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatisk disposisjon"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interne relasjoner"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Velg tabeller"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "slå av/på kladdevindu"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5314,7 +5321,6 @@ msgid "Do not change the password"
msgstr "Ikke endre passordet"
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ingen bruker(e) funnet."
@@ -5672,7 +5678,6 @@ msgid "Error management:"
msgstr "Feilbehandling:"
#: server_replication.php:334
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!"
diff --git a/po/nl.po b/po/nl.po
index 336883a..8b1ad23 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-31 01:06+0200\n"
"Last-Translator: Bjorn <inbox(a)bjornroesbeke.be>\n"
"Language-Team: dutch <nl(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Toon alles"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Zoeken"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Start"
@@ -298,7 +299,6 @@ msgid "Damaged"
msgstr "Beschadigd"
#: db_operations.php:562
-#| msgid "Repair"
msgctxt "BLOB repository"
msgid "Repair"
msgstr "Herstel"
@@ -332,57 +332,13 @@ msgstr ""
"Extra opties om met tabellen te werken, die gelinkt zijn, zijn "
"uitgeschakeld. Om te weten te komen waarom klik %shier%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Geef het PDF-schema weer"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Toon raster"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Toon kleur"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Geef de dimensies van de tabellen weer"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Alle tabellen weergeven met dezelfde breedte?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Data Woordenboek"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Alleen sleutels tonen"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary Formaat"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landschap"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portret"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Papierformaat"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF Pagina's aanpassen"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -558,7 +514,7 @@ msgstr "Verkennen"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -739,6 +695,10 @@ msgstr "Analyseer tabel"
msgid "Export"
msgstr "Exporteer"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Data Woordenboek"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Tabellen met tracker"
@@ -1048,7 +1008,6 @@ msgstr "Kies weer te geven veld"
#. l10n: Display text for calendar close link
#: js/messages.php:73
-#| msgid "Donate"
msgid "Done"
msgstr "Klaar"
@@ -1069,12 +1028,10 @@ msgstr "Volgende"
#. l10n: Display text for current month link in calendar
#: js/messages.php:79
-#| msgid "Total"
msgid "Today"
msgstr "Vandaag"
#: js/messages.php:82
-#| msgid "Binary"
msgid "January"
msgstr "Januari"
@@ -1083,12 +1040,10 @@ msgid "February"
msgstr "Februari"
#: js/messages.php:84
-#| msgid "Mar"
msgid "March"
msgstr "Maart"
#: js/messages.php:85
-#| msgid "Apr"
msgid "April"
msgstr "April"
@@ -1097,17 +1052,14 @@ msgid "May"
msgstr "Mei"
#: js/messages.php:87
-#| msgid "Jun"
msgid "June"
msgstr "Juni"
#: js/messages.php:88
-#| msgid "Jul"
msgid "July"
msgstr "Juli"
#: js/messages.php:89
-#| msgid "Aug"
msgid "August"
msgstr "Augustus"
@@ -1116,7 +1068,6 @@ msgid "September"
msgstr "September"
#: js/messages.php:91
-#| msgid "Oct"
msgid "October"
msgstr "Oktober"
@@ -1192,17 +1143,14 @@ msgid "Dec"
msgstr "Dec"
#: js/messages.php:122
-#| msgid "Sun"
msgid "Sunday"
msgstr "Zondag"
#: js/messages.php:123
-#| msgid "Mon"
msgid "Monday"
msgstr "Maandag"
#: js/messages.php:124
-#| msgid "Tue"
msgid "Tuesday"
msgstr "Dinsdag"
@@ -1215,7 +1163,6 @@ msgid "Thursday"
msgstr "Donderdag"
#: js/messages.php:127
-#| msgid "Fri"
msgid "Friday"
msgstr "Vrijdag"
@@ -1260,7 +1207,6 @@ msgstr "Za"
#. l10n: Minimal week day name
#: js/messages.php:148
-#| msgid "Sun"
msgid "Su"
msgstr "Zo"
@@ -1301,13 +1247,11 @@ msgstr "Vr"
#. l10n: Minimal week day name
#: js/messages.php:160
-#| msgid "Sat"
msgid "Sa"
msgstr "Za"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:162
-#| msgid "Wiki"
msgid "Wk"
msgstr "Week"
@@ -1316,12 +1260,10 @@ msgid "Hour"
msgstr "Uur"
#: js/messages.php:165
-#| msgid "in use"
msgid "Minute"
msgstr "Minuut"
#: js/messages.php:166
-#| msgid "per second"
msgid "Second"
msgstr "Seconde"
@@ -1702,7 +1644,6 @@ msgstr ""
# 'kon niet vanuit "%1$s" geladen worden' is juister.
#: libraries/common.inc.php:594
#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: \"%1$s\""
@@ -1762,8 +1703,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentatie"
@@ -1811,7 +1751,6 @@ msgstr "Rechtstreekse bewerking van deze query"
# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen iets anders.
#: libraries/common.lib.php:1278
-#| msgid "Engines"
msgid "Inline"
msgstr "Rechtstreeks"
@@ -2039,7 +1978,6 @@ msgstr "Wachtwoord Hashing"
# Kan ook vertaald worden als "werkt met ..."
#: libraries/display_change_password.lib.php:66
-#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
msgstr "Compatibel met MySQL 4.0"
@@ -2252,6 +2190,46 @@ msgstr "Aantal queries die moeten worden overgeslagen vanaf het begin"
msgid "Format of imported file"
msgstr "Formaat van het geïmporteerde bestand"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Geef het PDF-schema weer"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Toon raster"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Toon kleur"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Geef de dimensies van de tabellen weer"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Alle tabellen weergeven met dezelfde breedte?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Alleen sleutels tonen"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary Formaat"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landschap"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portret"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Papierformaat"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3125,7 +3103,7 @@ msgstr "Negeer dubbele rijen"
msgid "Column names in first row"
msgstr "Kolomnamen in eerste rij"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Kolom namen"
@@ -3199,7 +3177,6 @@ msgstr ""
# Is er een betere vertaling voor 'encoding' ?
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
-#| msgid "Recoding engine"
msgid "Encoding conversion"
msgstr "Omzetting van de codering"
@@ -4392,8 +4369,7 @@ msgstr ""
#: libraries/relation.lib.php:164
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-"Log opnieuw in op phpMyAdmin om het bijgewerkte configuratiebestand te "
-"laden."
+"Log opnieuw in op phpMyAdmin om het bijgewerkte configuratiebestand te laden."
#: libraries/relation.lib.php:1173
msgid "no description"
@@ -4738,7 +4714,6 @@ msgstr ""
# "Geen" of indien telbaar: "Geen enkele".
#: libraries/tbl_properties.inc.php:393
-#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Geen"
@@ -4765,7 +4740,7 @@ msgstr "Opslag Engine"
msgid "PARTITION definition"
msgstr "PARTITION definitie"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4943,7 +4918,7 @@ msgstr "Interface"
msgid "Custom color"
msgstr "Aangepaste kleur"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Herstel"
@@ -5093,7 +5068,6 @@ msgid "Clear"
msgstr "Clear"
#: navigation.php:350 navigation.php:351
-#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Maak tabel"
@@ -5115,23 +5089,31 @@ msgstr "Kies een pagina om aan te passen"
msgid "Create a page"
msgstr "Creëer een nieuwe pagina"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Paginanummer:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatische lay-out"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interne relaties"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Selecteer tabellen"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Aan/uit voorbeeldkader"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5141,7 +5123,6 @@ msgstr ""
#: pdf_schema.php:636
#, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "De tabel \"%s\" bestaat niet!"
@@ -5356,7 +5337,6 @@ msgid "Slave replication"
msgstr "Slave replicatie"
#: server_databases.php:230
-#| msgid "Go to database"
msgid "Jump to database"
msgstr "Ga naar database"
@@ -5394,7 +5374,6 @@ msgid "View dump (schema) of databases"
msgstr "Bekijk dump (schema) van de databases"
#: server_privileges.php:263 server_privileges.php:264
-#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Geen"
@@ -5441,7 +5420,6 @@ msgstr "Wijzig het wachtwoord niet"
# Enkelvoud.
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "Geen gebruiker gevonden."
@@ -5809,7 +5787,6 @@ msgstr "Fouten beheer:"
# "errors" => "fouten"
# master and slave _what_?
#: server_replication.php:334
-#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr ""
"Het overslaan van fouten kan leiden tot verschillen tussen de meester en "
@@ -5935,10 +5912,6 @@ msgstr "Deze server is ingesteld als master in een replicatie proces."
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
# "Deze MySQL-server functioneert als %s in een <b>replicatie</b> proces." weggehaald.
#: server_status.php:366
-#| msgid ""
-#| "This MySQL server works as %s in <b>replication</b> process. For further "
-#| "information about replication status on the server, please visit the <a "
-#| "href=\"#replication\">replication section</a>."
msgid ""
"For further information about replication status on the server, please visit "
"the <a href=#replication>replication section</a>."
@@ -6111,13 +6084,11 @@ msgid "Enter manually"
msgstr "Geef handmatig op"
#: server_synchronize.php:1123
-#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Huidige verbinding"
#: server_synchronize.php:1152
#, php-format
-#| msgid "Configuration file"
msgid "Configuration: %s"
msgstr "Configuratie: %s"
@@ -7430,9 +7401,6 @@ msgid "SQL query history table"
msgstr "SQL-query historie tabel"
#: setup/lib/messages.inc.php:279
-#| msgid ""
-#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
-#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -7441,7 +7409,6 @@ msgstr ""
"[kbd]pma_history[/kbd]"
#: setup/lib/messages.inc.php:280
-#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL-query opvolgingstabel"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index e43ac8e..e334e50 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -23,8 +23,8 @@ msgstr ""
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr ""
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr ""
@@ -327,57 +328,13 @@ msgid ""
"deactivated. To find out why click %shere%s."
msgstr ""
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr ""
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr ""
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr ""
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr ""
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr ""
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr ""
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr ""
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr ""
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -552,7 +509,7 @@ msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -732,6 +689,10 @@ msgstr ""
msgid "Export"
msgstr ""
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr ""
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1661,8 +1622,7 @@ msgstr ""
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr ""
@@ -2125,6 +2085,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -2946,7 +2946,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr ""
@@ -4390,7 +4390,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4525,7 +4525,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr ""
@@ -4669,23 +4669,27 @@ msgstr ""
msgid "Create a page"
msgstr ""
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+msgid "Page name"
msgstr ""
-#: pdf_pages.php:303
+#: pdf_pages.php:307
+msgid "Automatic layout based on"
+msgstr ""
+
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr ""
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/pl.po b/po/pl.po
index fd51912..1259dba 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish <pl(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Pokaż wszystko"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Szukaj"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Wykonaj"
@@ -333,57 +334,13 @@ msgstr ""
"Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby "
"dowiedzieć się, dlaczego - kliknij %stutaj%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Wyświetl schemat PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Pokaż siatkę"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Pokaż kolor"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Pokaż wymiary tabel"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "wyświetlić wszystkie tabele z taką samą szerokością?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Słownik danych"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Pokaż tylko klucze"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format słownika danych"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Orientacja pozioma"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Orientacja pionowa"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Rozmiar papieru"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Edytuj strony PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Przeglądaj"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Analizuj tabelę"
msgid "Export"
msgstr "Eksport"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Słownik danych"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1779,8 +1740,7 @@ msgstr "Wysłane"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentacja"
@@ -2261,6 +2221,46 @@ msgstr "Liczba rekordów (zapytań), które należy z początku pominąć"
msgid "Format of imported file"
msgstr "Format importowanych plików"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Wyświetl schemat PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Pokaż siatkę"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Pokaż kolor"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Pokaż wymiary tabel"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "wyświetlić wszystkie tabele z taką samą szerokością?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Pokaż tylko klucze"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format słownika danych"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Orientacja pozioma"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Orientacja pionowa"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Rozmiar papieru"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3130,7 +3130,7 @@ msgstr "Ignoruj zdublowane rekordy"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nazwy kolumn"
@@ -4745,7 +4745,7 @@ msgstr "Mechanizm składowania"
msgid "PARTITION definition"
msgstr "Definicja partycji"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4917,7 +4917,7 @@ msgstr "Interfejs"
msgid "Custom color"
msgstr "Własny kolor"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Resetuj"
@@ -5080,23 +5080,31 @@ msgstr "Proszę wybrać stronę do edycji"
msgid "Create a page"
msgstr "Utwórz nową stronę"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Numer strony:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Układ automatyczny"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Wewnętrzne relacje"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Wybierz tabele"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "włącz / wyłącz scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/pt.po b/po/pt.po
index b9b0163..9d6bea0 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Mostrar tudo"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "Pesquisar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executa"
@@ -336,57 +337,13 @@ msgstr ""
"As Características adicionais para trabalhar com ligações entre Tabelas "
"foram desactivadas. Para saber porquê carregue %saqui%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Mostrar o esquema de PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Mostrar grelha"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Mostrar côr"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Mostrar dimensão das tabelas"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "mostrar todas as tabelas com a mesma altura?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dicionario de dados"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formato dos dados do dicionário"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Paisagem/ao baixo"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Retrato/Ao alto"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Tamanho do papel"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Editar páginas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -562,7 +519,7 @@ msgstr "Visualiza"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -743,6 +700,10 @@ msgstr "Analizar tabela"
msgid "Export"
msgstr "Exportar"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dicionario de dados"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1756,8 +1717,7 @@ msgstr "pt"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentação"
@@ -2227,6 +2187,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Mostrar o esquema de PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Mostrar grelha"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Mostrar côr"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Mostrar dimensão das tabelas"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "mostrar todas as tabelas com a mesma altura?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formato dos dados do dicionário"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Paisagem/ao baixo"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Retrato/Ao alto"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Tamanho do papel"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3068,7 +3068,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nome dos Campos"
@@ -4563,7 +4563,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4702,7 +4702,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Limpa"
@@ -4855,23 +4855,31 @@ msgstr "Escolha uma Página para editar"
msgid "Create a page"
msgstr "Criar uma Página nova"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Página número:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Layout automático"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relações internas"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Seleccionar Tabelas"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 6dce2cf..8eb4024 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Mostrar todos"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Procurar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executar"
@@ -334,57 +335,13 @@ msgstr ""
"Os recursos adicionais para trabalhar com tabelas linkadas foram "
"desativadas. Para descobrir o motivo clique %saqui%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Exibir esquema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Mostrar grade"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Mostrar cor"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Mostrar dimensão das tabelas"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "mostrar todas as tabelas com o mesmo tamanho?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dicionário de dados"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formato do dicionário de dados"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Paisagem"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Retrato"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Tamanho do papel"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Editar Páginas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Visualizar"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "Analizar tabela"
msgid "Export"
msgstr "Exportar"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dicionário de dados"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1773,8 +1734,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentação"
@@ -2252,6 +2212,46 @@ msgstr "Número de registros (consultas) ignoradas no início"
msgid "Format of imported file"
msgstr "Formato do arquivo importado"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Exibir esquema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Mostrar grade"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Mostrar cor"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Mostrar dimensão das tabelas"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "mostrar todas as tabelas com o mesmo tamanho?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formato do dicionário de dados"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Paisagem"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Retrato"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Tamanho do papel"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3103,7 +3103,7 @@ msgstr "Ignorar linhas duplicadas"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Nome das colunas"
@@ -4716,7 +4716,7 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr "Definição da PARTIÇÃO"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4888,7 +4888,7 @@ msgstr "Interface"
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Restaurar"
@@ -5050,23 +5050,31 @@ msgstr "Escolha a página para editar"
msgid "Create a page"
msgstr "Criar uma nova página"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Numero da página:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Leiaute automático"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relações internas"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Tabelas selecionadas"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "mudar o estado do Scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ro.po b/po/ro.po
index 452b0a3..5839d24 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-16 01:40+0200\n"
"Last-Translator: <ssuceveanu(a)yahoo.com>\n"
"Language-Team: romanian <ro(a)li.org>\n"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Arată toate"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "Caută"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Execută"
@@ -331,57 +332,13 @@ msgstr ""
"Opțiunile adiționale pentru folosirea tabelelor intercalate au fost "
"dezactivate. Pentru a afla de ce ... %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Arată schema PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Arată grila"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Arată culoarea"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Arată dimensiunile tabelei"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Arată toate tabelele cu aceeaăi mărime?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dicționar de date"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Vezi numai cheile"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Data Dictionary Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Portret"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portret"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Mărime hîrtie"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Editează paginile PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -558,7 +515,7 @@ msgstr "Navigare"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -739,6 +696,10 @@ msgstr "Analizare tabel"
msgid "Export"
msgstr "Exportă"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dicționar de date"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1780,8 +1741,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Documentație"
@@ -2259,6 +2219,46 @@ msgstr "Number of records(queries) to skip from start"
msgid "Format of imported file"
msgstr "Formatul fișierului importat"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Arată schema PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Arată grila"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Arată culoarea"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Arată dimensiunile tabelei"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Arată toate tabelele cu aceeaăi mărime?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Vezi numai cheile"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Data Dictionary Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Portret"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portret"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Mărime hîrtie"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/ind
ex.inc.php:70
msgid "Language"
@@ -3134,7 +3134,7 @@ msgstr "Ignoră rînduri duplicate"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Denumirile coloanelor"
@@ -4738,7 +4738,7 @@ msgstr "Motor de stocare"
msgid "PARTITION definition"
msgstr "Definiție PARTIȚIE"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4911,7 +4911,7 @@ msgstr "Interfață"
msgid "Custom color"
msgstr "Culoare personalizată"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Resetare"
@@ -5075,23 +5075,31 @@ msgstr "Selectează o pagină pentru a fi editată"
msgid "Create a page"
msgstr "Creează o nouă pagină"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Numărul paginii:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Așezare automată"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relații interne"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Selectează tabele"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "dezactivare scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ru.po b/po/ru.po
index b9d6bf7..b34d3e3 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: russian <ru(a)li.org>\n"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Показать все"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "Поиск"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -335,57 +336,13 @@ msgstr ""
"Дополнительные возможности для работы со связанными таблицами недоступны. "
"Для определения причины нажмите %sздесь%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Показать PDF-схему"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Отображать сетку"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Отображать в цвете"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Отображать размерность таблиц"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Показать все таблицы одинаковой ширины"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Словарь данных"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Only show keys"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Ориентация страниц словаря данных"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Альбомная"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Книжная"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Размер бумаги"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Редактирование PDF-страниц"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -563,7 +520,7 @@ msgstr "Обзор"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -745,6 +702,10 @@ msgstr "Анализ таблицы"
msgid "Export"
msgstr "Экспорт"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Словарь данных"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Отслеживаемые таблицы"
@@ -1777,8 +1738,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Документация"
@@ -2263,6 +2223,46 @@ msgstr "Количество запросов пропускаемых от на
msgid "Format of imported file"
msgstr "Формат импортируемого файла"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Показать PDF-схему"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Отображать сетку"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Отображать в цвете"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Отображать размерность таблиц"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Показать все таблицы одинаковой ширины"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Only show keys"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Ориентация страниц словаря данных"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Альбомная"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Книжная"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Размер бумаги"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3136,7 +3136,7 @@ msgstr "Игнорировать повторяющиеся строки"
msgid "Column names in first row"
msgstr "Имена таблиц в первой строке"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Названия столбцов"
@@ -4770,7 +4770,7 @@ msgstr "Тип таблиц"
msgid "PARTITION definition"
msgstr "Определение разделов (PARTITION)"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4945,7 +4945,7 @@ msgstr "Отображение"
msgid "Custom color"
msgstr "Выбрать цвет"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Сбросить"
@@ -5117,23 +5117,31 @@ msgstr "Выбор страницы для редактирования"
msgid "Create a page"
msgstr "Создать новую страницу"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Номер страницы:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Автоматическая раскладка"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Внутренние связи"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Выберите таблицы"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Отображение"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/si.po b/po/si.po
index a8fbe9c..2f766f8 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "සෙවීම"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "යන්න"
@@ -334,57 +335,13 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF නිරූපනය පෙන්වන්න"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "කොටු සැලැස්ම පෙන්වන්න"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "වර්ණය පෙන්වන්න"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Show dimension of tables"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "එකම ප්රමාණයේ සියලු වගු පෙන්වන්න?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "දත්ත කෝෂය"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "දත්ත Format"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "භූමි දර්ශනය"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrait"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "පිටුවේ ප්රමාණය"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF පිටු සංස්කරණය කරන්න"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "බ්රවුස් කරන්න"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "වගුව විශ්ලේෂණය කරන්න"
msgid "Export"
msgstr "අපනයනය"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "දත්ත කෝෂය"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1764,8 +1725,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "ලියකියවිලි"
@@ -2242,6 +2202,46 @@ msgstr "Number of records(queries) to skip from start"
msgid "Format of imported file"
msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF නිරූපනය පෙන්වන්න"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "කොටු සැලැස්ම පෙන්වන්න"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "වර්ණය පෙන්වන්න"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Show dimension of tables"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "එකම ප්රමාණයේ සියලු වගු පෙන්වන්න?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "දත්ත Format"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "භූමි දර්ශනය"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrait"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "පිටුවේ ප්රමාණය"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3095,7 +3095,7 @@ msgstr "Ignore duplicate rows"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "තීර නම්"
@@ -4692,7 +4692,7 @@ msgstr "ගබඩා යන්ත්ර"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4860,7 +4860,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "ප්රතිසකසන්න"
@@ -5019,23 +5019,31 @@ msgstr "සංස්කරණය සඳහා පිටුවක් තෝරා
msgid "Create a page"
msgstr "නව පිටුවක් සාදන්න"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "පිටු අංකය:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "ස්වයංක්රීය සැලැස්ම"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Internal relations"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "වගු තෝරන්න"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/sk.po b/po/sk.po
index 23d3eec..d9e8a12 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovak <sk(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Zobraziť všetko"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Hľadať"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Vykonaj"
@@ -336,57 +337,13 @@ msgstr ""
"Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak "
"chcete zistiť prečo, kliknite %ssem%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Zobraziť schému PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Zobraziť mriežku"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Zobraziť farbu"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Zobraziť rozmery tabuliek"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "zobraziť všetky tabuľky s rovnakou šírkou?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Dátový slovník"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formát dátového slovníka"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Na šírku"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Na výšku"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Veľkosť stránky"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Upraviť PDF Stránky"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -563,7 +520,7 @@ msgstr "Prechádzať"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -744,6 +701,10 @@ msgstr "Analyzovať tabuľku"
msgid "Export"
msgstr "Exportovať"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Dátový slovník"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1770,8 +1731,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentácia"
@@ -2251,6 +2211,46 @@ msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť"
msgid "Format of imported file"
msgstr "Formát importovaného súboru"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Zobraziť schému PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Zobraziť mriežku"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Zobraziť farbu"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Zobraziť rozmery tabuliek"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "zobraziť všetky tabuľky s rovnakou šírkou?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formát dátového slovníka"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Na šírku"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Na výšku"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Veľkosť stránky"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3098,7 +3098,7 @@ msgstr "Ignorovať opakujúce sa riadky"
msgid "Column names in first row"
msgstr "Mená stĺpcov na prvom riadku"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Názvy stĺpcov"
@@ -4704,7 +4704,7 @@ msgstr "Úložný Systém"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4865,7 +4865,7 @@ msgstr ""
msgid "Custom color"
msgstr "Vlastná farba"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Vynulovať"
@@ -5029,23 +5029,31 @@ msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť"
msgid "Create a page"
msgstr "Vytvoriť novú Stránku"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Číslo stránky:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatické rozvrhnutie"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interné vzťahy"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Vybrať Tabuľky"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "zobraziť grafický návrh"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/sl.po b/po/sl.po
index 1d2bc6a..c490c90 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-31 01:57+0200\n"
"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
-"n%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Pokaži vse"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Iskanje"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Izvedi"
@@ -328,57 +329,13 @@ msgstr ""
"Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite "
"izvedeti zakaj, kliknite %stukaj%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Prikaži PDF-shemo"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Pokaži mrežo"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Pokaži barvo"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Pokaži dimenzije tabel"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Prikaži vse tabele enake širine"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Slovar podatkov"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Prikaži samo ključe"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Oblika podatkovnega slovarja"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Ležeče"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Pokončno"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Velikost papirja"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Uredi PDF strani"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -418,7 +375,6 @@ msgstr "Zadnjič pregledano"
#: db_printview.php:222 db_structure.php:480
#, php-format
-#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tabela"
@@ -556,7 +512,7 @@ msgstr "Prebrskaj"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -736,6 +692,10 @@ msgstr "Analiziraj tabelo"
msgid "Export"
msgstr "Izvozi"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Slovar podatkov"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Sledene tabele"
@@ -1716,8 +1676,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2200,6 +2159,46 @@ msgstr "Število zapisov (poizvedb), ki jih naj preskočim od začetka"
msgid "Format of imported file"
msgstr "Oblika uvožene datoteke"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Prikaži PDF-shemo"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Pokaži mrežo"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Pokaži barvo"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Pokaži dimenzije tabel"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Prikaži vse tabele enake širine"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Prikaži samo ključe"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Oblika podatkovnega slovarja"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Ležeče"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Pokončno"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Velikost papirja"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -2542,8 +2541,8 @@ msgid ""
"32MB. The memory allocated here is used only for caching index pages."
msgstr ""
"Količina pomnilnika uporabljena za predpomnjenje indeksov. Privzeta vrednost "
-"je 32 MB. Tukaj dodeljen pomnilnik se uporablja samo za predpomnjenje "
-"strani indeksov."
+"je 32 MB. Tukaj dodeljen pomnilnik se uporablja samo za predpomnjenje strani "
+"indeksov."
#: libraries/engines/pbxt.lib.php:28
msgid "Record cache size"
@@ -3070,7 +3069,7 @@ msgstr "Prezri podvojene vrstice"
msgid "Column names in first row"
msgstr "Imena stolpcev v prvi vrstici"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Imena stolpcev"
@@ -3498,8 +3497,7 @@ msgstr "Število trenutno umazanih strani."
#: libraries/messages.inc.php:85
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-"Število strani zaloge medpomnilnika, za katere je bila zaprošena "
-"izplaknitev."
+"Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev."
#: libraries/messages.inc.php:86
msgid "The number of free pages."
@@ -3594,8 +3592,7 @@ msgstr "Količina do zdaj zapisanih podatkov, v bajtih."
#: libraries/messages.inc.php:104
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-"Število strani, ki so bile zapisane za posege dvojnega pisanja "
-"(doublewrite)."
+"Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)."
#: libraries/messages.inc.php:105
msgid "The number of doublewrite operations that have been performed."
@@ -4586,7 +4583,7 @@ msgstr "Pogon skladiščenja"
msgid "PARTITION definition"
msgstr "Definicija PARTITION"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4759,7 +4756,7 @@ msgstr "Vmesnik"
msgid "Custom color"
msgstr "Barva po meri"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Ponastavi"
@@ -4928,23 +4925,31 @@ msgstr "Izberite stran za urejanje"
msgid "Create a page"
msgstr "Ustvari novo stran"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Številka strani:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Samodejna postavitev"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Notranja razmerja"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Izberi tabele"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Preklopi odložišče (scratchboard)"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
@@ -5245,7 +5250,6 @@ msgid "Do not change the password"
msgstr "Ne spreminjaj gesla"
#: server_privileges.php:804 server_privileges.php:2166
-#| msgid "No user(s) found."
msgid "No user found."
msgstr "Najden ni bil noben uporabnik."
@@ -5719,8 +5723,8 @@ msgstr ""
#: server_status.php:362
msgid "This MySQL server works as <b>master</b> in <b>replication</b> process."
msgstr ""
-"Strežnik MySQL deluje kot <b>glavni strežnik</b> v postopku "
-"<b>podvojevanja</b>."
+"Strežnik MySQL deluje kot <b>glavni strežnik</b> v postopku <b>podvojevanja</"
+"b>."
#: server_status.php:364
msgid "This MySQL server works as <b>slave</b> in <b>replication</b> process."
@@ -6067,11 +6071,10 @@ msgid ""
msgstr ""
"Ta [a@?page=form&formset=features#tab_Security]možnost[/a] naj bo "
"onemogočena, saj omogoča napadalcem, da se z načinom bruteforce prijavijo v "
-"kateri koli strežnik MySQL. Če menite, da je to potrebno, uporabite "
-"[a@?page=form&formset=features#tab_Security]seznam zaupanih "
-"proxyjev[/a]. Kakor koli, zaščita temelječa na IP ni zanesljiva, če vaš IP "
-"pripada ISP-ju, na katerega je povezanih tisoče uporabnikov, vključno z "
-"vami."
+"kateri koli strežnik MySQL. Če menite, da je to potrebno, uporabite [a@?"
+"page=form&formset=features#tab_Security]seznam zaupanih proxyjev[/a]. "
+"Kakor koli, zaščita temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, "
+"na katerega je povezanih tisoče uporabnikov, vključno z vami."
#: setup/lib/messages.inc.php:19
msgid "Allow login to any MySQL server"
@@ -6173,8 +6176,8 @@ msgid ""
"kbd] - allows newlines in fields"
msgstr ""
"Določa, katera vrsta urejevalnih kontrolnikov naj se uporablja za polja CHAR "
-"in VARCHAR; [kbd]input[/kbd] – omogoča omejevanje dolžine vnosa, "
-"[kbd]textarea[/kbd] – omogoča nove vrstice v polju"
+"in VARCHAR; [kbd]input[/kbd] – omogoča omejevanje dolžine vnosa, [kbd]"
+"textarea[/kbd] – omogoča nove vrstice v polju"
#: setup/lib/messages.inc.php:36
msgid "CHAR fields editing"
@@ -6829,10 +6832,10 @@ msgid ""
"be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may "
"pose a security risk such as impersonation."
msgstr ""
-"[a@?page=form&formset=features#tab_Security]Veljavnost prijavnega "
-"piškotka[/a] naj bo nastavljena na največ 1800 sekund (30 minut). Vrednosti "
-"večje od 1800 lahko predstavljajo varnostno tveganje, kot je pretvarjanje za "
-"drugo osebo."
+"[a@?page=form&formset=features#tab_Security]Veljavnost prijavnega piškotka[/"
+"a] naj bo nastavljena na največ 1800 sekund (30 minut). Vrednosti večje od "
+"1800 lahko predstavljajo varnostno tveganje, kot je pretvarjanje za drugo "
+"osebo."
#: setup/lib/messages.inc.php:199
msgid "Login cookie validity"
@@ -6999,9 +7002,9 @@ msgstr ""
"Nastavili ste vrsto overovitve [kbd]config[/kbd] in vključili uporabniško "
"ime in geslo za samodejno prijavo, kar ni zaželena možnost za gostitelje "
"aktivnih strani. Vsakdo, ki ve ali ugane vaš URL phpMyAdmina, lahko "
-"neposredno dostopa do vaše plošče phpMyAdmin. Nastavite "
-"[a@?page=servers&mode=edit&id=%1$d#tab_Server]vrsto overovitve[/a] "
-"na [kbd]cookie[/kbd] ali [kbd]http[/kbd]."
+"neposredno dostopa do vaše plošče phpMyAdmin. Nastavite [a@?page=servers&"
+"mode=edit&id=%1$d#tab_Server]vrsto overovitve[/a] na [kbd]cookie[/kbd] "
+"ali [kbd]http[/kbd]."
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -7050,8 +7053,8 @@ msgid ""
"swekey.conf)"
msgstr ""
"Pot konfiguracijske datoteke za [a@http://swekey.com]strojno overovitev "
-"SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: "
-"/etc/swekey.conf)"
+"SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey."
+"conf)"
#: setup/lib/messages.inc.php:251
msgid "SweKey config file"
@@ -7070,9 +7073,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-"Pustite prazno, če ne želite podpore "
-"[a@http://wiki.phpmyadmin.net/pma/bookmark]zaznamkov[/a]; predlagano: "
-"[kbd]pma_bookmark[/kbd]"
+"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
+"bookmark]zaznamkov[/a]; predlagano: [kbd]pma_bookmark[/kbd]"
#: setup/lib/messages.inc.php:255
msgid "Bookmark table"
@@ -7136,8 +7138,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: "
-"[kbd]pma_designer_coords[/kbd]"
+"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]"
+"pma_designer_coords[/kbd]"
#: setup/lib/messages.inc.php:268
msgid "Designer table"
@@ -7148,9 +7150,8 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Več informacij na "
-"[a@http://sf.net/support/tracker.php?aid=1849494]sledilniku hroščev PMA[/a] "
-"in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]"
+"Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]"
+"sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]"
#: setup/lib/messages.inc.php:270
msgid "Disable use of INFORMATION_SCHEMA"
@@ -7167,12 +7168,11 @@ msgid ""
"to."
msgstr ""
"Če menite, da je to potrebno, uporabite dodatne nastavitve zaščite – "
-"nastavitve [a@?page=servers&mode=edit&id=%"
-"1$d#tab_Server_config]overovitve gostitelja[/a] in "
-"[a@?page=form&formset=features#tab_Security]seznam zaupanih "
-"proxyjev[/a]. Kakor koli, zaščita temelječa na IP ni zanesljiva, če vaš IP "
-"pripada ISP-ju, na katerega je povezanih tisoče uporabnikov, vključno z "
-"vami."
+"nastavitve [a@?page=servers&mode=edit&id=%1$d#tab_Server_config]"
+"overovitve gostitelja[/a] in [a@?page=form&formset=features#tab_Security]"
+"seznam zaupanih proxyjev[/a]. Kakor koli, zaščita temelječa na IP ni "
+"zanesljiva, če vaš IP pripada ISP-ju, na katerega je povezanih tisoče "
+"uporabnikov, vključno z vami."
#: setup/lib/messages.inc.php:273
msgid "What PHP extension to use; you should use mysqli if supported"
@@ -7207,8 +7207,8 @@ msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: "
-"[kbd]pma_tracking[/kbd]"
+"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]"
+"pma_tracking[/kbd]"
#: setup/lib/messages.inc.php:280
msgid "SQL query tracking table"
@@ -7258,8 +7258,8 @@ msgstr "Geslo za overovitev config"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Pustite prazno, če ne želite podpore PDF-sheme; predlagano: "
-"[kbd]pma_pdf_pages[/kbd]"
+"Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]"
+"pma_pdf_pages[/kbd]"
#: setup/lib/messages.inc.php:291
msgid "PDF schema: pages table"
@@ -7278,8 +7278,7 @@ msgstr ""
#: setup/lib/messages.inc.php:294
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-"Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za "
-"privzeto"
+"Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za privzeto"
#: setup/lib/messages.inc.php:295
msgid "Server port"
@@ -7290,9 +7289,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-"Pustite prazno, če ne želite podpore "
-"[a@http://wiki.phpmyadmin.net/pma/relation]relacijskih povezav[/a]; "
-"priporočeno: [kbd]pma_relation[/kbd]"
+"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
+"relation]relacijskih povezav[/a]; priporočeno: [kbd]pma_relation[/kbd]"
#: setup/lib/messages.inc.php:297
msgid "Relation table"
@@ -7404,8 +7402,8 @@ msgstr "Uporabi SSL"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"Pustite prazno, če ne želite podpore PDF-sheme; predlagano: "
-"[kbd]pma_table_coords[/kbd]"
+"Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]"
+"pma_table_coords[/kbd]"
#: setup/lib/messages.inc.php:319
msgid "PDF schema: table coordinates"
@@ -7466,9 +7464,9 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-"Pomnite, da omogočanje tega nima učinka z načinom overovitve "
-"[kbd]config[/kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne "
-"omejuje možnosti izvedbe enakega ukaza neposredno"
+"Pomnite, da omogočanje tega nima učinka z načinom overovitve [kbd]config[/"
+"kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje "
+"možnosti izvedbe enakega ukaza neposredno"
#: setup/lib/messages.inc.php:332
msgid "Show password change form"
@@ -7543,9 +7541,9 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
"Ko je nastavljeno na [kbd]nested[/kbd], je pridevek imena tabele uporabljen "
-"samo za razdružitev/združitev tabel v skladu z določilom "
-"$cfg['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, "
-"sama imena tabel pa ostanejo nespremenjena"
+"samo za razdružitev/združitev tabel v skladu z določilom $cfg"
+"['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, sama "
+"imena tabel pa ostanejo nespremenjena"
#: setup/lib/messages.inc.php:348
msgid "Display table comment instead of its name"
diff --git a/po/sq.po b/po/sq.po
index 1008c0f..0f642f9 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-19 13:02+0200\n"
"Last-Translator: Laurent <laurenti(a)alblinux.net>\n"
"Language-Team: albanian <sq(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Shfaqi të gjithë"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Kërko"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Zbato"
@@ -328,58 +329,13 @@ msgstr ""
"Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me "
"tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Shfaq skemën PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Shfaq rrjetën"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Shfaq ngjyrën"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Shfaq madhësinë e tabelave"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Shfaq të gjitha tabelat me të njëjtën gjerësi"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-#, fuzzy
-msgid "Data Dictionary"
-msgstr "Data Dictionary"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Shfaq vetëm kyçet"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Formati i Data Dictionary"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Horizontale"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Vertikale"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Përmasat e fletës"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Ndrysho faqet PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -555,7 +511,7 @@ msgstr "Shfleto"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -736,6 +692,11 @@ msgstr "Analizo tabelën"
msgid "Export"
msgstr "Eksporto"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+#, fuzzy
+msgid "Data Dictionary"
+msgstr "Data Dictionary"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1742,8 +1703,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentet"
@@ -2210,6 +2170,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Shfaq skemën PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Shfaq rrjetën"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Shfaq ngjyrën"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Shfaq madhësinë e tabelave"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Shfaq të gjitha tabelat me të njëjtën gjerësi"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Shfaq vetëm kyçet"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Formati i Data Dictionary"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Horizontale"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Vertikale"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Përmasat e fletës"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3044,7 +3044,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Emrat e kollonave"
@@ -4550,7 +4550,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4715,7 +4715,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Rinis"
@@ -4867,23 +4867,31 @@ msgstr "Ju lutem zgjidhni faqen që dëshironi të modifikoni"
msgid "Create a page"
msgstr "Krijo një faqe të re"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Numri i faqes:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Faqosje automatike"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Relacione të brendshme"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Zgjidh Tabelat"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "(ç')aktivo scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/sr.po b/po/sr.po
index 020f74c..8903e31 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_cyrillic <sr(a)li.org>\n"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Прикажи све"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "Претраживање"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Крени"
@@ -336,57 +337,13 @@ msgstr ""
"Додатне могућности за рад са повезаним табелама су искључене. Да бисте "
"сазнали зашто, кликните %sовде%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Прикажи PDF схему"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Прикажи мрежу"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Прикажи боју"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Прикажи димензије табеле"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Приказ свих табела исте ширине?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Речник података"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Формат речника података"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Положено"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Усправно"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Димензије папира"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Уређивање PDF страна"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -563,7 +520,7 @@ msgstr "Преглед"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -743,6 +700,10 @@ msgstr "Анализирај табелу"
msgid "Export"
msgstr "Извоз"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Речник података"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1769,8 +1730,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Документација"
@@ -2250,6 +2210,46 @@ msgstr "Број записа (упита) које треба прескочи
msgid "Format of imported file"
msgstr "Формат датотека за увоз"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Прикажи PDF схему"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Прикажи мрежу"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Прикажи боју"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Прикажи димензије табеле"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Приказ свих табела исте ширине?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Формат речника података"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Положено"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Усправно"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Димензије папира"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3101,7 +3101,7 @@ msgstr "Игнориши дуплициране редове"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Имена колона"
@@ -4698,7 +4698,7 @@ msgstr "Погон складиштења"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4868,7 +4868,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Поништи"
@@ -5028,23 +5028,31 @@ msgstr "Изаберите страну коју мењате"
msgid "Create a page"
msgstr "Направи нову страну"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Број стране:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Аутоматски распоред"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Унутрашње релације"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Изабери табеле"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Укључи/искључи радну таблу"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/sr(a)latin.p
o b/po/sr(a)latin.po
index 8d97fe3..e97ff97 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@@ -20,8 +20,8 @@ msgstr ""
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "Pretraživanje"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kreni"
@@ -336,57 +337,13 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Prikaži PDF shemu"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Prikaži mrežu"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Prikaži boju"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Prikaži dimenzije tabele"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Prikaz svih tabela iste širine?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Rečnik podataka"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format rečnika podataka"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Položeno"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Uspravno"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Dimenzije papira"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Uređivanje PDF strana"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -563,7 +520,7 @@ msgstr "Pregled"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -743,6 +700,10 @@ msgstr "Analiziraj tabelu"
msgid "Export"
msgstr "Izvoz"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Rečnik podataka"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1769,8 +1730,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2250,6 +2210,46 @@ msgstr "Broj zapisa (upita) koje treba preskočiti:"
msgid "Format of imported file"
msgstr "Format datoteka za uvoz"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Prikaži PDF shemu"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Prikaži mrežu"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Prikaži boju"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Prikaži dimenzije tabele"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Prikaz svih tabela iste širine?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format rečnika podataka"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Položeno"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Uspravno"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Dimenzije papira"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3101,7 +3101,7 @@ msgstr "Ignoriši duplicirane redove"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Imena kolona"
@@ -4700,7 +4700,7 @@ msgstr "Pogon skladištenja"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4871,7 +4871,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Poništi"
@@ -5032,23 +5032,31 @@ msgstr "Izaberite stranu koju menjate"
msgid "Create a page"
msgstr "Napravi novu stranu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Broj strane:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatski raspored"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Unutrašnje relacije"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Izaberi tabele"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Uključi/isključi radnu tablu"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/sv.po b/po/sv.po
index 2c6b7bb..454e801 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Visa alla"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Sök"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kör"
@@ -333,57 +334,13 @@ msgstr ""
"Den extra funktionaliteten för att hantera länkade tabeller har "
"inaktiverats. %sVisa orsaken%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Visa PDF-schema"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Visa rutnät"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Visa färger"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Visa tabellers dimensioner"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Visa alla tabeller med samma bredd"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Datalexikon"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Endast visa nycklar"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Format för datalexikon"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Liggande"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Stående"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Pappersstorlek"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Redigera PDF-sidor"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Visa"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -739,6 +696,10 @@ msgstr "Analysera tabell"
msgid "Export"
msgstr "Exportera"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Datalexikon"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1775,8 +1736,7 @@ msgstr "Skickade"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentation"
@@ -2257,6 +2217,46 @@ msgstr "Antal poster (frågor) att hoppa över från början"
msgid "Format of imported file"
msgstr "Format på importerad fil"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Visa PDF-schema"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Visa rutnät"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Visa färger"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Visa tabellers dimensioner"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Visa alla tabeller med samma bredd"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Endast visa nycklar"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Format för datalexikon"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Liggande"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Stående"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Pappersstorlek"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3131,7 +3131,7 @@ msgstr "Ignorera dubblerade rader"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Kolumn-namn"
@@ -4733,7 +4733,7 @@ msgstr "Lagringsmotor"
msgid "PARTITION definition"
msgstr "Partitionsdefinition"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4906,7 +4906,7 @@ msgstr "Gränssnitt"
msgid "Custom color"
msgstr "Anpassad färg"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Återställ"
@@ -5072,23 +5072,31 @@ msgstr "Välj en sida att redigera"
msgid "Create a page"
msgstr "Skapa en ny sida"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Sida:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Automatisk layout"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Interna relationer"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Välj tabeller"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Visa/dölj skisstavla"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ta.po b/po/ta.po
index ffea363..56dc825 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr ""
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr ""
@@ -326,57 +327,13 @@ msgid ""
"deactivated. To find out why click %shere%s."
msgstr ""
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr ""
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr ""
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr ""
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr ""
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr ""
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr ""
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr ""
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr ""
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr ""
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -551,7 +508,7 @@ msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -731,6 +688,10 @@ msgstr ""
msgid "Export"
msgstr ""
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr ""
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1703,8 +1664,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr ""
@@ -2167,6 +2127,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -2988,7 +2988,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr ""
@@ -4432,7 +4432,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4567,7 +4567,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr ""
@@ -4711,23 +4711,27 @@ msgstr ""
msgid "Create a page"
msgstr ""
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+msgid "Page name"
msgstr ""
-#: pdf_pages.php:303
+#: pdf_pages.php:307
+msgid "Automatic layout based on"
+msgstr ""
+
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr ""
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/te.po b/po/te.po
index 59aa465..86fc9ec 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-26 14:20+0200\n"
"Last-Translator: <veeven(a)gmail.com>\n"
"Language-Team: Telugu <te(a)li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
msgid "Show all"
msgstr "అన్నీ చూపించు"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -46,30 +46,31 @@ msgid "Search"
msgstr "శోధించు"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "వెళ్ళు"
@@ -332,57 +333,13 @@ msgid ""
"deactivated. To find out why click %shere%s."
msgstr ""
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr ""
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr ""
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "రంగుని చూపించు"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr ""
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr ""
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr ""
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr ""
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr ""
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr ""
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "కాగితపు పరిమాణం"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr ""
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -561,7 +518,7 @@ msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -745,6 +702,10 @@ msgstr ""
msgid "Export"
msgstr ""
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr ""
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1731,8 +1692,7 @@ msgstr ""
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr ""
@@ -2198,6 +2158,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "రంగుని చూపించు"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "కాగితపు పరిమాణం"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3024,7 +3024,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr ""
@@ -4488,7 +4488,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4623,7 +4623,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr ""
@@ -4771,23 +4771,29 @@ msgstr ""
msgid "Create a page"
msgstr "పుటని సృష్టించు"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "పుట సంఖ్య:"
+
+#: pdf_pages.php:307
+msgid "Automatic layout based on"
msgstr ""
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "అంతర్గత సంబంధాలు"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr ""
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/th.po b/po/th.po
index fb9b22c..776a429 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "แสดงทั้งหมด"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "ค้นหา"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "ลงมือ"
@@ -333,57 +334,13 @@ msgid ""
msgstr ""
"ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s"
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "แสดงสกีมาของ PDF"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "แสดงกริด"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "แสดงสี"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "แสดงมิติของตาราง"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "ให้แสดงตารางทุกอัน ด้วยความกว้างเท่ากันหรือไม่?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "พจนานุกรมข้อมูล"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "รูปแบบพจนานุกรมข้อมูล"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "แนวนอน"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "แนวตั้ง"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "ขนาดกระดาษ"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "แก้ไขหน้า PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "เปิดดู"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "วิเคราะห์ตาราง"
msgid "Export"
msgstr "ส่งออก"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "พจนานุกรมข้อมูล"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1738,8 +1699,7 @@ msgstr "ถูกส่ง"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "เอกสารอ้างอิง"
@@ -2205,6 +2165,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "แสดงสกีมาของ PDF"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "แสดงกริด"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "แสดงสี"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "แสดงมิติของตาราง"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "ให้แสดงตารางทุกอัน ด้วยความกว้างเท่ากันหรือไม่?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "รูปแบบพจนานุกรมข้อมูล"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "แนวนอน"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "แนวตั้ง"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "ขนาดกระดาษ"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3039,7 +3039,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "ชื่อคอลัมน์"
@@ -4522,7 +4522,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4661,7 +4661,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "เริ่มใหม่"
@@ -4811,23 +4811,31 @@ msgstr "เลือกหน้าที่ต้องการแก้ไข
msgid "Create a page"
msgstr "เริ่มหน้าใหม่"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "หมายเลขหน้า:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "จัดตำแหน่งอัตโนมัติ"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "รีเลชันภายใน"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "เลือกตาราง"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/tr.po b/po/tr.po
index bf2d66e..758a9a7 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Tümünü göster"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Ara"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Git"
@@ -334,57 +335,13 @@ msgstr ""
"Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini "
"öğrenmek için %sburaya%s tıklayın."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF şemasını göster"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Izgara göster"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Rengi göster"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Tabloların boyutlarını göster"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Bütün tablolar aynı genişlikte gösterilsin?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Veri sözlüğü"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Sadece anahtarları göster"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Veri Sözlüğü Biçimi"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Peyzaj"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portre"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Kağıt boyutu"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr " PDF Sayfalarını düzenle"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Gözat"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Tabloyu incele"
msgid "Export"
msgstr "Dışarı Aktar"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Veri sözlüğü"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "İzlenen tablolar"
@@ -1767,8 +1728,7 @@ msgstr "tr"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Belgeler"
@@ -2257,6 +2217,46 @@ msgstr "Başlangıçtan atlanacak kayıt (sorgu) sayısı"
msgid "Format of imported file"
msgstr "İçeri aktarılmış dosyanın biçimi"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF şemasını göster"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Izgara göster"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Rengi göster"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Tabloların boyutlarını göster"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Bütün tablolar aynı genişlikte gösterilsin?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Sadece anahtarları göster"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Veri Sözlüğü Biçimi"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Peyzaj"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portre"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Kağıt boyutu"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3127,7 +3127,7 @@ msgstr "Kopya satırları yoksay"
msgid "Column names in first row"
msgstr "İlk sıradaki sütun isimleri"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Sütun adları"
@@ -4742,7 +4742,7 @@ msgstr "Depolama Motoru"
msgid "PARTITION definition"
msgstr "PARTITION tanımı"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4917,7 +4917,7 @@ msgstr "Arabirim"
msgid "Custom color"
msgstr "Özel renk"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Sıfırla"
@@ -5089,23 +5089,31 @@ msgstr "Lütfen düzenlemek için sayfa seçin"
msgid "Create a page"
msgstr "Yeni bir sayfa oluştur"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Sayfa numarası:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Otomatik yerleşim"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Dahili ilişkiler"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Tabloları seç"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Karalama panosunu değiştir"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/tt.po b/po/tt.po
index 4630ff2..533e4b3 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: tatarish <tt(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "Barısın kürsät"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -45,30 +45,31 @@ msgid "Search"
msgstr "Ezläw"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Äydä"
@@ -335,57 +336,13 @@ msgstr ""
"Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı "
"qabızu öçen, %sbonda çirtäse%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF schema kürsätü"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Sırlı kürsät"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Tösle kürsät"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Tüşämä ülçämen kürsätü"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "display all Tables with same width?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Eçtälek Süzlege"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Eçtälek Süzlegeneñ Tözeleşe"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Yatqırıp"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Batırıp"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Qäğäz zuqlığı"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF-Bitlär Üzgärtü"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -560,7 +517,7 @@ msgstr "Küzätü"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -741,6 +698,10 @@ msgstr "Tüşämä centekläw"
msgid "Export"
msgstr "Export"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Eçtälek Süzlege"
+
#: db_tracking.php:66
#, fuzzy
msgid "Tracked tables"
@@ -1752,8 +1713,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Qullanma"
@@ -2222,6 +2182,46 @@ msgstr "Baştan ütep kitäse yazma sanı"
msgid "Format of imported file"
msgstr "Yöklänğan birem tözeleşe"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF schema kürsätü"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Sırlı kürsät"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Tösle kürsät"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Tüşämä ülçämen kürsätü"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "display all Tables with same width?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Eçtälek Süzlegeneñ Tözeleşe"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Yatqırıp"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Batırıp"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Qäğäz zuqlığı"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3074,7 +3074,7 @@ msgstr "Qabatlanğan yazmalarnı ütäse"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Alan iseme"
@@ -4574,7 +4574,7 @@ msgstr "Saqlaw Isulı"
msgid "PARTITION
definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4737,7 +4737,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Awdar"
@@ -4894,23 +4894,31 @@ msgstr "Tözätü öçen berär bit sayla"
msgid "Create a page"
msgstr "Yaña Bit yaratu"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Bitneñ sanı:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Zihenle urnaştıru"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Eçke bäyläneş"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Tüşämä Saylaw"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/uk.po b/po/uk.po
index 3b8ceb8..3aae05b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Показати все"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -41,30 +41,31 @@ msgid "Search"
msgstr "Шукати"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Вперед"
@@ -330,57 +331,13 @@ msgstr ""
"Додаткова можливість роботи із залінкованими таблицями деактивована. Для "
"того, щоб довідатись чому, натисніть %sтут%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "Показати PDF схему"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Показати сітку"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Показати колір"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Показати розміри таблиць"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "показувати всі таблиці однакової ширини?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Словник даних"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Формат словника"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Landscape"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Portrait"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Формат паперу"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "Редагувати PDF Сторінки"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -556,7 +513,7 @@ msgstr "Переглянути"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -736,6 +693,10 @@ msgstr "Аналіз таблиці"
msgid "Export"
msgstr "Експорт"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Словник даних"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1734,8 +1695,7 @@ msgstr ""
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Документація"
@@ -2198,6 +2158,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "Показати PDF схему"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Показати сітку"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Показати колір"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Показати розміри таблиць"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "показувати всі таблиці однакової ширини?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Формат словника"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Landscape"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Portrait"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Формат паперу"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3019,7 +3019,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Назви колонок"
@@ -4507,7 +4507,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4663,7 +4663,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Перевстановити"
@@ -4813,23 +4813,31 @@ msgstr "Прошу вибрати сторінку для редагування
msgid "Create a page"
msgstr "Створити нову сторінку"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Номер сторінки:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Автоматичний layout"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Вибрати таблиці"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "ввімкнути чорновик (scratchboard)"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/ur.po b/po/ur.po
index 9dbafb7..1bddffa 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-14 12:35+0200\n"
"Last-Translator: <monymirza(a)gmail.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
msgid "Show all"
msgstr "سبھی دکھاو"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -48,30 +48,31 @@ msgid "Search"
msgstr "تلاش"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "جائو"
@@ -331,57 +332,13 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "دکھائیں PDF schema"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "گرِڈ دکھائیں"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "کلر دکھائیں"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "ٹیبلز کی جسامت دیکھیں"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "سارے ٹیبلز یکساں چوڑائی کے ساتھ دیکھیں"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "ڈیٹا ڈتشنری"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "صرف کیز دیکھیں"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "ڈیٹا ڈکشنری فارمیٹ"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "لینڈسکیپ"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "پورٹریٹ"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "صفحے کا ناپ"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "پی ڈی ایف صفحوں کی تدوین کریں"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -557,7 +514,7 @@ msgstr "Browse"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -739,6 +696,10 @@ msgstr "ٹیبلز کا تجزیہ"
msgid "Export"
msgstr "برآمد"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "ڈیٹا ڈتشنری"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "ٹریکڈ ٹیبلز"
@@ -1678,8 +1639,7 @@ msgstr "en"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr ""
@@ -2142,6 +2102,46 @@ msgstr ""
msgid "Format of imported file"
msgstr ""
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "دکھائیں PDF schema"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "گرِڈ دکھائیں"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "کلر دکھائیں"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "ٹیبلز کی جسامت دیکھیں"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "سارے ٹیبلز یکساں چوڑائی کے ساتھ دیکھیں"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "صرف کیز دیکھیں"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "ڈیٹا ڈکشنری فارمیٹ"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "لینڈسکیپ"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "پورٹریٹ"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "صفحے کا ناپ"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -2963,7 +2963,7 @@ msgstr ""
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr ""
@@ -4407,7 +4407,7 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4542,7 +4542,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr ""
@@ -4686,23 +4686,29 @@ msgstr ""
msgid "Create a page"
msgstr ""
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "صفحہ نمبر"
+
+#: pdf_pages.php:307
+msgid "Automatic layout based on"
msgstr ""
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr ""
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr ""
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr ""
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/uz.po b/po/uz.po
index 039a4f6..5a88a66 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic <uz(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Барчасини кўрсатиш"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -43,30 +43,31 @@ msgid "Search"
msgstr "Қидириш"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -332,57 +333,13 @@ msgstr ""
"Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. "
"Сабабларини аниқлаш учун %sбу ерга%s босинг."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF-схемани кўрсатиш"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "Тўрни кўрсатиш"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Рангда кўрсатиш"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Жадвал ўлчамларини кўрсатиш"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Бир хил кенгликдаги барча жадвалларни кўрсатиш"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Маълумотлар луғати"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Фақат калитларни кўрсатиш"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Маълумотлар луғати саҳифаси йўналиши"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Албом шаклида"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Китоб шаклида"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Қоғоз ўлчами"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF-саҳифаларни таҳрирлаш"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -558,7 +515,7 @@ msgstr "Кўриб чиқиш"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -740,6 +697,10 @@ msgstr "Жадвал таҳлили"
msgid "Export"
msgstr "Экспорт"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Маълумотлар луғати"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Кузатилган жадваллар"
@@ -1780,8 +1741,7 @@ msgstr "Юборилди"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Документация"
@@ -2272,6 +2232,46 @@ msgstr "Файл бошидаги эътибор бериш керак бўлм
msgid "Format of imported file"
msgstr "Импорт қилинаётган файл формати"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF-схемани кўрсатиш"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "Тўрни кўрсатиш"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Рангда кўрсатиш"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Жадвал ўлчамларини кўрсатиш"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Бир хил кенгликдаги барча жадвалларни кўрсатиш"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Фақат калитларни кўрсатиш"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Маълумотлар луғати саҳифаси йўналиши"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Албом шаклида"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Китоб шаклида"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Қоғоз ўлчами"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3142,7 +3142,7 @@ msgstr "Такрорий қаторларга эътибор бермаслик"
msgid "Column names in first row"
msgstr "Биринчи қаторга устун номлари"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Майдон номлари"
@@ -4778,7 +4778,7 @@ msgstr "Жадвал тури"
msgid "PARTITION definition"
msgstr "Бўлакларни (PARTITIONS) белгилаш"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4954,7 +4954,7 @@ msgstr "Интерфейс"
msgid "Custom color"
msgstr "Рангни танлаш"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Тозалаш"
@@ -5128,23 +5128,31 @@ msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш
msgid "Create a page"
msgstr "Янги саҳифа тузиш"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Саҳифа рақами: "
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Автоматик раскладка"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Ички алоқалар"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Жадвалларни танланг"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Кўрсатиш"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index b0feb5f..0d55a09 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "Barchasini ko‘rsatish"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "Qidirish"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -333,57 +334,13 @@ msgstr ""
"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. "
"Sabablarini aniqlash uchun %sbu yerga%s bosing."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "PDF-sxemani ko‘rsatish"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "To‘rni ko‘rsatish"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "Rangda ko‘rsatish"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "Jadval o‘lchamlarini ko‘rsatish"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "Bir xil kenglikdagi barcha jadvallarni ko‘rsatish"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "Ma`lumotlar lug‘ati"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "Faqat kalitlarni ko‘rsatish"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "Ma`lumotlar lug‘ati sahifasi yo‘nalishi"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "Albom shaklida"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "Kitob shaklida"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "Qog‘oz o‘lchami"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "PDF-sahifalarni tahrirlash"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -559,7 +516,7 @@ msgstr "Ko‘rib chiqish"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -742,6 +699,10 @@ msgstr "Jadval tahlili"
msgid "Export"
msgstr "Eksport"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "Ma`lumotlar lug‘ati"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "Kuzatilgan jadvallar"
@@ -1787,8 +1748,7 @@ msgstr "Yuborildi"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "Dokumentatsiya"
@@ -2280,6 +2240,46 @@ msgstr ""
msgid "Format of imported file"
msgstr "Import qilinayotgan fayl formati"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "PDF-sxemani ko‘rsatish"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "To‘rni ko‘rsatish"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "Rangda ko‘rsatish"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "Jadval o‘lchamlarini ko‘rsatish"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "Bir xil kenglikdagi barcha jadvallarni ko‘rsatish"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "Faqat kalitlarni ko‘rsatish"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "Ma`lumotlar lug‘ati sahifasi yo‘nalishi"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "Albom shaklida"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "Kitob shaklida"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "Qog‘oz o‘lchami"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3156,7 +3156,7 @@ msgstr "Takroriy qatorlarga e`tibor bermaslik"
msgid "Column names in first row"
msgstr "Birinchi qatorga ustun nomlari"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "Maydon nomlari"
@@ -4808,7 +4808,7 @@ msgstr "Jadval turi"
msgid "PARTITION definition"
msgstr "Bo‘laklarni (PARTITIONS) belgilash"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4987,7 +4987,7 @@ msgstr "Interfeys"
msgid "Custom color"
msgstr "Rangni tanlash"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "Tozalash"
@@ -5162,23 +5162,31 @@ msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash"
msgid "Create a page"
msgstr "Yangi sahifa tuzish"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "Sahifa raqami: "
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "Avtomatik raskladka"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "Ichki aloqalar"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "Jadvallarni tanlang"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "Ko‘rsatish"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 6bc1edc..ed53c63 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-05-17 04:57+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
msgid "Show all"
msgstr "全部显示"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -44,30 +44,31 @@ msgid "Search"
msgstr "搜索"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "执行"
@@ -325,57 +326,13 @@ msgid ""
"deactivated. To find out why click %shere%s."
msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。"
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "显示 PDF 大纲"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "显示网格"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "显示颜色"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "显示表格大小"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "以相同宽度显示所有的表"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "数据字典"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr "仅显示键"
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "数据字典格式"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "横向"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "纵向"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "纸张大小"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "编辑 PDF 页"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -550,7 +507,7 @@ msgstr "浏览"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -730,6 +687,10 @@ msgstr "分析表"
msgid "Export"
msgstr "导出"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "数据字典"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr "已追踪的表"
@@ -1674,8 +1635,7 @@ msgstr "zh"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "文档"
@@ -2147,6 +2107,46 @@ msgstr "跳过查询的数量"
msgid "Format of imported file"
msgstr "导入文件的格式"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "显示 PDF 大纲"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "显示网格"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "显示颜色"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "显示表格大小"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "以相同宽度显示所有的表"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr "仅显示键"
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "数据字典格式"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "横向"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "纵向"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "纸张大小"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -2987,7 +2987,7 @@ msgstr "忽略重复行"
msgid "Column names in first row"
msgstr "忽略首行 (首行为字段名)"
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "字段名"
@@ -4507,7 +4507,7 @@ msgstr "存储引擎"
msgid "PARTITION definition"
msgstr "分区定义"
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4665,7 +4665,7 @@ msgstr "界面"
msgid "Custom color"
msgstr "自定义颜色"
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "重置"
@@ -4826,23 +4826,31 @@ msgstr "请选择需要编辑的页"
msgid "Create a page"
msgstr "创建新页"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "页码:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "自动排版"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "内联"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "选择表"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "切换刮板"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 2ed67d2..fc3fe83 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:30+0200\n"
+"POT-Creation-Date: 2010-05-31 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional <zh_TW(a)li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
msgid "Show all"
msgstr "顯示全部"
-#: browse_foreigners.php:82 db_operations.php:648
-#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394
+#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
msgid "Page number:"
@@ -43,30 +43,31 @@ msgid "Search"
msgstr "搜索"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
-#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_search.php:362 db_structure.php:567 js/messages.php:48
-#: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311
+#: db_operations.php:495 db_operations.php:603 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
-#: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614
-#: libraries/replication_gui.lib.php:73 libraries/replication_gui.lib.php:369
-#: libraries/select_server.lib.php:104 libraries/sql_query_form.lib.php:400
-#: libraries/sql_query_form.lib.php:477 libraries/sql_query_form.lib.php:552
-#: libraries/tbl_properties.inc.php:782 main.php:128 navigation.php:238
-#: pdf_pages.php:285 pdf_pages.php:309 pdf_pages.php:511 pdf_pages.php:553
-#: pmd_pdf.php:116 server_binlog.php:142 server_privileges.php:625
-#: server_privileges.php:1585 server_privileges.php:1932
-#: server_privileges.php:1979 server_privileges.php:2018
-#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
-#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
-#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
-#: tbl_structure.php:562 tbl_structure.php:597 tbl_tracking.php:395
-#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73
+#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104
+#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477
+#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
+#: main.php:128 navigation.php:238 pdf_pages.php:285 pdf_pages.php:321
+#: pdf_pages.php:523 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:625 server_privileges.php:1585
+#: server_privileges.php:1932 server_privileges.php:1979
+#: server_privileges.php:2018 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
+#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:263
+#: tbl_operations.php:300 tbl_operations.php:497 tbl_operations.php:559
+#: tbl_operations.php:679 tbl_select.php:327 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "執行"
@@ -331,57 +332,13 @@ msgid ""
"deactivated. To find out why click %shere%s."
msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因."
-#: db_operations.php:645 pdf_pages.php:528
-msgid "Display PDF schema"
-msgstr "顯示 PDF 概要"
-
-#: db_operations.php:661 pdf_pages.php:529
-msgid "Show grid"
-msgstr "顯示框格"
-
-#: db_operations.php:664 pdf_pages.php:530
-msgid "Show color"
-msgstr "顯示顏色"
-
-#: db_operations.php:666 pdf_pages.php:531
-msgid "Show dimension of tables"
-msgstr "顯示表格大小"
-
-#: db_operations.php:669 pdf_pages.php:532
-msgid "Display all tables with the same width"
-msgstr "以相同寬度顯示所有資料表?"
-
-#: db_operations.php:672 db_structure.php:606 pdf_pages.php:533
-msgid "Data Dictionary"
-msgstr "數據字典"
-
-#: db_operations.php:674 pdf_pages.php:534
-msgid "Only show keys"
-msgstr ""
-
-#: db_operations.php:676 pdf_pages.php:535
-msgid "Data Dictionary Format"
-msgstr "數據字典格式"
-
-#: db_operations.php:678 pdf_pages.php:537
-msgid "Landscape"
-msgstr "橫向"
-
-#: db_operations.php:679 pdf_pages.php:538
-msgid "Portrait"
-msgstr "直向"
-
-#: db_operations.php:682 pdf_pages.php:541
-msgid "Paper size"
-msgstr "紙張大小"
-
-#: db_operations.php:706
+#: db_operations.php:642
msgid "Edit PDF Pages"
msgstr "編輯 PDF 頁碼"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:405 server_privileges.php:1626
+#: libraries/header.inc.php:126 pdf_pages.php:417 server_privileges.php:1626
#: server_privileges.php:1682 server_privileges.php:1946
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
@@ -557,7 +514,7 @@ msgstr "瀏覽"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
-#: pdf_pages.php:281 pdf_pages.php:406 pdf_pages.php:442 pdf_pages.php:470
+#: pdf_pages.php:281 pdf_pages.php:418 pdf_pages.php:454 pdf_pages.php:482
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
@@ -737,6 +694,10 @@ msgstr "分析資料表"
msgid "Export"
msgstr "輸出"
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr "數據字典"
+
#: db_tracking.php:66
msgid "Tracked tables"
msgstr ""
@@ -1740,8 +1701,7 @@ msgstr "zh"
#: libraries/common.lib.php:450 libraries/dbg/setup.php:25
#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97
#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
-#: main.php:229 pdf_pages.php:37 pdf_pages.php:43 pdf_pages.php:49
-#: pdf_pages.php:54 setup/lib/FormDisplay.tpl.php:124
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr "說明文件"
@@ -2209,6 +2169,46 @@ msgstr "開始時略過多少行記錄 (語法)"
msgid "Format of imported file"
msgstr "載入檔案格式"
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr "顯示 PDF 概要"
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr "顯示框格"
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr "顯示顏色"
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr "顯示表格大小"
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr "以相同寬度顯示所有資料表?"
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr "數據字典格式"
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr "橫向"
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr "直向"
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr "紙張大小"
+
#: libraries/display_select_lang.lib.php:45
#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
msgid "Language"
@@ -3050,7 +3050,7 @@ msgstr "略過重覆列"
msgid "Column names in first row"
msgstr ""
-#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:483
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:495
#: view_create.php:148
msgid "Column names"
msgstr "欄位名稱"
@@ -4521,7 +4521,7 @@ msgstr "儲存引擎"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:776 pdf_pages.php:484
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:496
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
#: tbl_relation.php:566
@@ -4673,7 +4673,7 @@ msgstr ""
msgid "Custom color"
msgstr ""
-#: main.php:163 pdf_pages.php:344 setup/lib/FormDisplay.tpl.php:216
+#: main.php:163 pdf_pages.php:356 setup/lib/FormDisplay.tpl.php:216
#: tbl_change.php:1175
msgid "Reset"
msgstr "重設"
@@ -4826,23 +4826,31 @@ msgstr "請選擇需要編輯的頁碼"
msgid "Create a page"
msgstr "建立新一頁"
-#: pdf_pages.php:303 pdf_pages.php:306
-msgid "Automatic layout"
+#: pdf_pages.php:303
+#, fuzzy
+#| msgid "Page number:"
+msgid "Page name"
+msgstr "頁碼:"
+
+#: pdf_pages.php:307
+#, fuzzy
+#| msgid "Automatic layout"
+msgid "Automatic layout based on"
msgstr "自動格式"
-#: pdf_pages.php:303
+#: pdf_pages.php:309
msgid "Internal relations"
msgstr "內部關聯"
-#: pdf_pages.php:320
+#: pdf_pages.php:332
msgid "Select Tables"
msgstr "選擇資料表"
-#: pdf_pages.php:343
+#: pdf_pages.php:355
msgid "Toggle scratchboard"
msgstr "轉換便條"
-#: pdf_pages.php:506
+#: pdf_pages.php:518
msgid ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4481-gc6a28b4
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via c6a28b42e6a54502ec1ffc0c07d338fc47cb6105 (commit)
via 3865f1a81f12ead51eac582c8cbd0cb25c1e617e (commit)
from 81dfcbedc1ca53186cbea44246ced1d1e586bb3c (commit)
- Log -----------------------------------------------------------------
commit c6a28b42e6a54502ec1ffc0c07d338fc47cb6105
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:05:41 2010 +0200
Single place to define PDF schema form.
commit 3865f1a81f12ead51eac582c8cbd0cb25c1e617e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 14:00:16 2010 +0200
Better look for PDF page creation dialog.
-----------------------------------------------------------------------
Summary of changes:
db_operations.php | 72 ++--------------------------------
libraries/display_pdf_schema.lib.php | 71 +++++++++++++++++++++++++++++++++
pdf_pages.php | 56 ++++++++------------------
3 files changed, 93 insertions(+), 106 deletions(-)
create mode 100644 libraries/display_pdf_schema.lib.php
diff --git a/db_operations.php b/db_operations.php
index 8ba13a2..44e93b2 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -121,7 +121,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) {
if ($this_what != 'nocopy') {
// keep the triggers from the original db+table
- // (third param is empty because delimiters are only intended
+ // (third param is empty because delimiters are only intended
// for importing via the mysql client or our Import feature)
$triggers = PMA_DBI_get_triggers($db, $each_table, '');
@@ -141,7 +141,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) {
}
unset($trigger);
}
- unset($triggers);
+ unset($triggers);
// this does not apply to a rename operation
if (isset($GLOBALS['add_constraints']) && !empty($GLOBALS['sql_constraints_query'])) {
@@ -631,72 +631,8 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?>
WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'';
$test_rs = PMA_query_as_controluser($test_query, null, PMA_DBI_QUERY_STORE);
- if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) { ?>
- <!-- PDF schema -->
- <form method="post" action="pdf_schema.php">
- <fieldset>
- <legend>
- <?php
- echo PMA_generate_common_hidden_inputs($db);
- if ($cfg['PropertiesIconic']) {
- echo '<img class="icon" src="' . $pmaThemeImage . 'b_view.png"'
- .' alt="" width="16" height="16" />';
- }
- echo __('Display PDF schema');
- ?>:
- </legend>
- <label for="pdf_page_number_opt"><?php echo __('Page number:'); ?></label>
- <select name="pdf_page_number" id="pdf_page_number_opt">
- <?php
- while ($pages = @PMA_DBI_fetch_assoc($test_rs)) {
- echo ' <option value="' . $pages['page_nr'] . '">'
- . $pages['page_nr'] . ': ' . htmlspecialchars($pages['page_descr']) . '</option>' . "\n";
- } // end while
- PMA_DBI_free_result($test_rs);
- unset($test_rs);
- ?>
- </select><br />
-
- <input type="checkbox" name="show_grid" id="show_grid_opt" />
- <label for="show_grid_opt"><?php echo __('Show grid'); ?></label><br />
- <input type="checkbox" name="show_color" id="show_color_opt"
- checked="checked" />
- <label for="show_color_opt"><?php echo __('Show color'); ?></label><br />
- <input type="checkbox" name="show_table_dimension" id="show_table_dim_opt" />
- <label for="show_table_dim_opt"><?php echo __('Show dimension of tables'); ?>
- </label><br />
- <input type="checkbox" name="all_tab_same_wide" id="all_tab_same_wide" />
- <label for="all_tab_same_wide"><?php echo __('Display all tables with the same width'); ?>
- </label><br />
- <input type="checkbox" name="with_doc" id="with_doc" checked="checked" />
- <label for="with_doc"><?php echo __('Data Dictionary'); ?></label><br />
- <input type="checkbox" name="show_keys" id="show_keys" />
- <label for="show_keys"><?php echo __('Only show keys'); ?></label><br />
-
- <label for="orientation_opt"><?php echo __('Data Dictionary Format'); ?></label>
- <select name="orientation" id="orientation_opt">
- <option value="L"><?php echo __('Landscape');?></option>
- <option value="P"><?php echo __('Portrait');?></option>
- </select><br />
-
- <label for="paper_opt"><?php echo __('Paper size'); ?></label>
- <select name="paper" id="paper_opt">
- <?php
- foreach ($cfg['PDFPageSizes'] AS $key => $val) {
- echo '<option value="' . $val . '"';
- if ($val == $cfg['PDFDefaultPageSize']) {
- echo ' selected="selected"';
- }
- echo ' >' . $val . '</option>' . "\n";
- }
- ?>
- </select>
- </fieldset>
- <fieldset class="tblFooters">
- <input type="submit" value="<?php echo __('Go'); ?>" />
- </fieldset>
- </form>
- <?php
+ if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) {
+ include('./libraries/display_pdf_schema.lib.php');
} // end if
echo '<br /><a href="pdf_pages.php?' . $url_query . '">';
if ($cfg['PropertiesIconic']) {
diff --git a/libraries/display_pdf_schema.lib.php b/libraries/display_pdf_schema.lib.php
new file mode 100644
index 0000000..ad12fc3
--- /dev/null
+++ b/libraries/display_pdf_schema.lib.php
@@ -0,0 +1,71 @@
+<!-- PDF schema -->
+<form method="post" action="pdf_schema.php">
+<fieldset>
+ <legend>
+ <?php
+ echo PMA_generate_common_hidden_inputs($db);
+ if ($cfg['PropertiesIconic']) {
+ echo '<img class="icon" src="' . $pmaThemeImage . 'b_view.png"'
+ .' alt="" width="16" height="16" />';
+ }
+ echo __('Display PDF schema');
+ ?>:
+ </legend>
+ <?php
+ if (isset($test_rs)) {
+ ?>
+ <label for="pdf_page_number_opt"><?php echo __('Page number:'); ?></label>
+ <select name="pdf_page_number" id="pdf_page_number_opt">
+ <?php
+ while ($pages = @PMA_DBI_fetch_assoc($test_rs)) {
+ echo ' <option value="' . $pages['page_nr'] . '">'
+ . $pages['page_nr'] . ': ' . htmlspecialchars($pages['page_descr']) . '</option>' . "\n";
+ } // end while
+ PMA_DBI_free_result($test_rs);
+ unset($test_rs);
+ ?>
+ </select><br />
+ <?php } else { ?>
+ <input type="hidden" name="pdf_page_number" value="<?php echo htmlspecialchars($chpage); ?>" />
+ <?php } ?>
+
+ <input type="checkbox" name="show_grid" id="show_grid_opt" />
+ <label for="show_grid_opt"><?php echo __('Show grid'); ?></label><br />
+ <input type="checkbox" name="show_color" id="show_color_opt"
+ checked="checked" />
+ <label for="show_color_opt"><?php echo __('Show color'); ?></label><br />
+ <input type="checkbox" name="show_table_dimension" id="show_table_dim_opt" />
+ <label for="show_table_dim_opt"><?php echo __('Show dimension of tables'); ?>
+ </label><br />
+ <input type="checkbox" name="all_tab_same_wide" id="all_tab_same_wide" />
+ <label for="all_tab_same_wide"><?php echo __('Display all tables with the same width'); ?>
+ </label><br />
+ <input type="checkbox" name="with_doc" id="with_doc" checked="checked" />
+ <label for="with_doc"><?php echo __('Data Dictionary'); ?></label><br />
+ <input type="checkbox" name="show_keys" id="show_keys" />
+ <label for="show_keys"><?php echo __('Only show keys'); ?></label><br />
+
+ <label for="orientation_opt"><?php echo __('Data Dictionary Format'); ?></label>
+ <select name="orientation" id="orientation_opt">
+ <option value="L"><?php echo __('Landscape');?></option>
+ <option value="P"><?php echo __('Portrait');?></option>
+ </select><br />
+
+ <label for="paper_opt"><?php echo __('Paper size'); ?></label>
+ <select name="paper" id="paper_opt">
+ <?php
+ foreach ($cfg['PDFPageSizes'] AS $key => $val) {
+ echo '<option value="' . $val . '"';
+ if ($val == $cfg['PDFDefaultPageSize']) {
+ echo ' selected="selected"';
+ }
+ echo ' >' . $val . '</option>' . "\n";
+ }
+ ?>
+ </select>
+</fieldset>
+<fieldset class="tblFooters">
+ <input type="submit" value="<?php echo __('Go'); ?>" />
+</fieldset>
+</form>
+
diff --git a/pdf_pages.php b/pdf_pages.php
index 5ad7899..ac5e215 100644
--- a/pdf_pages.php
+++ b/pdf_pages.php
@@ -298,14 +298,26 @@ if ($cfgRelation['pdfwork']) {
</legend>
<?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
<input type="hidden" name="do" value="createpage" />
- <input type="text" name="newpage" size="20" maxlength="50" />
- <input type="checkbox" name="auto_layout_internal" />
-<?php echo '(' . __('Automatic layout') . ' / ' . __('Internal relations') . ')';
+ <table>
+ <tr>
+ <td><label for="id_newpage"><?php echo __('Page name'); ?></label></td>
+ <td><input type="text" name="newpage" id="id_newpage" size="20" maxlength="50" /></td>
+ </tr>
+ <tr>
+ <td><?php echo __('Automatic layout based on'); ?></td>
+ <td>
+ <input type="checkbox" name="auto_layout_internal" id="id_auto_layout_internal" /><label for="id_auto_layout_internal"><?php echo __('Internal relations'); ?></label><br />
+<?php
if (PMA_StorageEngine::isValid('InnoDB') || PMA_StorageEngine::isValid('PBXT')) {
- echo '<input type="checkbox" name="auto_layout_foreign" />'
- . '(' . __('Automatic layout') . ' / FOREIGN KEY)';
+?>
+ <input type="checkbox" name="auto_layout_foreign" id="id_auto_layout_foreign" /><label for="id_auto_layout_foreign">FOREIGN KEY</label><br />
+<?php
}
?>
+ </td></tr>
+ </table>
+ </fieldset>
+ <fieldset class="tblFooters">
<input type="submit" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
@@ -520,39 +532,7 @@ function resetDrag() {
&& ($do == 'edcoord'
|| ($do == 'choosepage' && isset($chpage))
|| ($do == 'createpage' && isset($chpage)))) {
- ?>
-<form method="post" action="pdf_schema.php" name="pdfoptions">
- <?php echo PMA_generate_common_hidden_inputs($db); ?>
- <input type="hidden" name="pdf_page_number" value="<?php echo htmlspecialchars($chpage); ?>" />
-
- <?php echo '<br /><strong>' . __('Display PDF schema') . '</strong>'; ?>: <br />
- <input type="checkbox" name="show_grid" id="show_grid_opt" /><label for="show_grid_opt"><?php echo __('Show grid'); ?></label><br />
- <input type="checkbox" name="show_color" id="show_color_opt" checked="checked" /><label for="show_color_opt"><?php echo __('Show color'); ?></label><br />
- <input type="checkbox" name="show_table_dimension" id="show_table_dim_opt" /><label for="show_table_dim_opt"><?php echo __('Show dimension of tables'); ?></label><br />
- <input type="checkbox" name="all_tab_same_wide" id="all_tab_same_wide" /><label for="all_tab_same_wide"><?php echo __('Display all tables with the same width'); ?></label><br />
- <input type="checkbox" name="with_doc" id="with_doc" checked="checked" /><label for="with_doc"><?php echo __('Data Dictionary'); ?></label><br />
- <input type="checkbox" name="show_keys" id="show_keys" /><label for="show_keys"><?php echo __('Only show keys'); ?></label><br />
- <label for="orientation_opt"><?php echo __('Data Dictionary Format'); ?></label>
- <select id="orientation_opt" name="orientation" <?php echo ($cfg['WYSIWYG-PDF'] ? 'onchange="refreshDragOption(\'pdflayout\');"' : ''); ?>>
- <option value="L"><?php echo __('Landscape');?></option>
- <option value="P"><?php echo __('Portrait');?></option>
- </select><br />
-
- <label for="paper_opt"><?php echo __('Paper size'); ?></label>
- <select id="paper_opt" name="paper" <?php echo ($cfg['WYSIWYG-PDF'] ? 'onchange="refreshDragOption(\'pdflayout\');"' : ''); ?>>
-<?php
- foreach ($cfg['PDFPageSizes'] AS $key => $val) {
- echo '<option value="' . $val . '"';
- if ($val == $cfg['PDFDefaultPageSize']) {
- echo ' selected="selected"';
- }
- echo ' >' . $val . '</option>' . "\n";
- }
-?>
- </select><br />
- <input type="submit" value="<?php echo __('Go'); ?>" />
-</form>
-<?php
+ include('./libraries/display_pdf_schema.lib.php');
if ((isset($showwysiwyg) && $showwysiwyg == '1')) {
?>
<script type="text/javascript">
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4479-g81dfcbe
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via 81dfcbedc1ca53186cbea44246ced1d1e586bb3c (commit)
via 0a16cd9d687884072bd73cff5765cfe51b48982f (commit)
from 10cb2de1fefa20d321fdac38813f0ef172748aed (commit)
- Log -----------------------------------------------------------------
commit 81dfcbedc1ca53186cbea44246ced1d1e586bb3c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 13:46:03 2010 +0200
Use standard way for showing documentation links.
commit 0a16cd9d687884072bd73cff5765cfe51b48982f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 13:43:54 2010 +0200
Properly include page footer.
-----------------------------------------------------------------------
Summary of changes:
pdf_pages.php | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/pdf_pages.php b/pdf_pages.php
index dc9c64e..5ad7899 100644
--- a/pdf_pages.php
+++ b/pdf_pages.php
@@ -34,25 +34,25 @@ $query_default_option = PMA_DBI_QUERY_STORE;
*/
if (!$cfgRelation['relwork']) {
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'relation', 'config.inc.php') . '<br />' . "\n"
- . '<a href="./Documentation.html#relation" target="documentation">' . __('Documentation') . '</a>' . "\n";
+ . PMA_showDocu('relation') . "\n";
require_once './libraries/footer.inc.php';
}
if (!$cfgRelation['displaywork']) {
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'table_info', 'config.inc.php') . '<br />' . "\n"
- . '<a href="./Documentation.html#table_info" target="documentation">' . __('Documentation') . '</a>' . "\n";
+ . PMA_showDocu('table_info') . "\n";
require_once './libraries/footer.inc.php';
}
if (!isset($cfgRelation['table_coords'])){
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'table_coords', 'config.inc.php') . '<br />' . "\n"
- . '<a href="./Documentation.html#table_coords" target="documentation">' . __('Documentation') . '</a>' . "\n";
- exit();
+ . PMA_showDocu('table_coords') . "\n";
+ require_once './libraries/footer.inc.php';
}
if (!isset($cfgRelation['pdf_pages'])) {
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'pdf_page', 'config.inc.php') . '<br />' . "\n"
- . '<a href="./Documentation.html#pdf_pages" target="documentation">' . __('Documentation') . '</a>' . "\n";
- exit();
+ . PMA_showDocu('pdf_pages') . "\n";
+ require_once './libraries/footer.inc.php';
}
if ($cfgRelation['pdfwork']) {
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 23e400cd99290b59d2c641e25f451931834f11d3
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via 23e400cd99290b59d2c641e25f451931834f11d3 (commit)
via 7bb889f7576fba7289cc3373b745b93ccc9119b6 (commit)
via 1121516695391e471016255d30258adc12d9fb79 (commit)
via 5af3aa8864ec40f67849f135c17e570d897704ea (commit)
via 823b9445dab0d69aae705b2fb2b367308d072479 (commit)
from 3f618c6bc70b4e3ba55c1e060593c69f39fb2518 (commit)
- Log -----------------------------------------------------------------
commit 23e400cd99290b59d2c641e25f451931834f11d3
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 31 09:31:54 2010 +0200
Refresh.
commit 7bb889f7576fba7289cc3373b745b93ccc9119b6
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:23:12 2010 +0200
Translation update done using Pootle.
commit 1121516695391e471016255d30258adc12d9fb79
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:19:14 2010 +0200
Translation update done using Pootle.
commit 5af3aa8864ec40f67849f135c17e570d897704ea
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:18:56 2010 +0200
Translation update done using Pootle.
commit 823b9445dab0d69aae705b2fb2b367308d072479
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:18:21 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/nl.po | 22 ++++++++++++----------
pot/ca-full.pot | 13 +------------
pot/ca-html.pot | 2 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 13 +------------
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 4 ++--
pot/de-html.pot | 2 +-
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 13 +------------
pot/en_GB-html.pot | 2 +-
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 13 +------------
pot/es-html.pot | 2 +-
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 13 +------------
pot/fi-html.pot | 2 +-
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 13 +------------
pot/fr-html.pot | 2 +-
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 13 +------------
pot/gl-html.pot | 2 +-
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 13 +------------
pot/hu-html.pot | 2 +-
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 13 +------------
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 13 +------------
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 13 +------------
pot/ja-html.pot | 2 +-
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 13 +------------
pot/ka-html.pot | 2 +-
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 13 +------------
pot/lt-html.pot | 2 +-
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 13 +------------
pot/mn-html.pot | 2 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 13 +------------
pot/nb-html.pot | 2 +-
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 13 +------------
pot/nl-html.pot | 2 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 13 +------------
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 13 +------------
pot/pt_BR-html.pot | 2 +-
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 13 +------------
pot/ro-html.pot | 2 +-
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 13 +------------
pot/sk-html.pot | 2 +-
pot/sk-txt.pot | 2 +-
pot/sv-full.pot | 13 +------------
pot/sv-html.pot | 2 +-
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 13 +------------
pot/tr-html.pot | 2 +-
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 13 +------------
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 13 +------------
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
76 files changed, 88 insertions(+), 350 deletions(-)
diff --git a/po/nl.po b/po/nl.po
index 907c217..512a18b 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: 2010-02-15 13:42+0200\n"
-"Last-Translator: <thyone(a)thyone.org>\n"
+"PO-Revision-Date: 2010-05-31 00:23+0200\n"
+"Last-Translator: Bjorn <inbox(a)bjornroesbeke.be>\n"
"Language-Team: none\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -213,13 +213,12 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: ../phpmyadmin/Documentation.html:85
-#, fuzzy
msgid ""
"To support upload progress bars, see <a href=\"#faq2_9\"> <abbr title="
"\"Frequently Asked Questions\">FAQ</abbr> 2.9</a>."
msgstr ""
-"<a href=\"Documentation.html#faq\"><abbr title=\"Frequently Asked Questions"
-"\"> FAQ</abbr></a>"
+"Bekijk <a href=\"Documentation.html#faq\"><abbr title=\"Veelgestelde vragen\"> "
+"FAQ</abbr> 2.9</a> om upload voortgangsbalken te ondersteunen."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:89
@@ -258,9 +257,8 @@ msgstr "Tot nu toe kan phpMyAdmin:"
# "views": Een letterlijke vertaling lijkt hier foutief te zijn.
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:104
-#, fuzzy
msgid "browse and drop databases, tables, views, fields and indexes"
-msgstr "tabellen, velden en indexen verkennen en verwijderen"
+msgstr "databases, tabellen, velden en indexen verkennen en verwijderen"
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:105
@@ -410,11 +408,9 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:142
-#, fuzzy
msgid ""
"communicate in <a href=\"./translators.html\">58 different languages</a>"
-msgstr ""
-"communicatie in <a href=\"./translators.html\">57 verschillende talen</a>"
+msgstr "communiceer in <a href=\"./translators.html\">58 verschillende talen</a>"
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:144
@@ -604,6 +600,12 @@ msgid ""
"graphical installation. Creating a <tt>config.inc.php</tt> is still a quick "
"way to get started and needed for some advanced features."
msgstr ""
+"Nu moet u uw installatie configureren. Er zijn twee methoden die gebruikt "
+"kunnen worden. Volgens de traditie moet men <tt>config.inc.php</tt> bewerken "
+"maar nu wordt een configuratiewizard ter beschikking gesteld voor degenen "
+"die liever een grafische installatie uitvoeren. Een bestand genaamd "
+"<tt>config.inc.php</tt> aanmaken is nog steeds een snelle manier om te "
+"beginnen en dit is nodig om enkele geavanceerde mogelijkheden te gebruiken."
#. type: Content of: <html><body><div><ol><li><ul><li>
#: ../phpmyadmin/Documentation.html:218
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 2e6c507..36e307f 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ca-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ca-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index 95e6e5f..74b6b7a 100644
--- a/pot/ca-html.pot
+++ b/pot/ca-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/ca-txt.pot
+++ b/pot/ca-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-full.pot b/pot/cs-full.pot
index 0c7e5a1..36feb41 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# cs-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# cs-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index f1c31f8..8b7b1af 100644
--- a/pot/cs-html.pot
+++ b/pot/cs-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index 61758af..55960ba 100644
--- a/pot/cs-txt.pot
+++ b/pot/cs-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-full.pot b/pot/de-full.pot
index 0711873..8bfc7b2 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -9,7 +9,7 @@ msgstr ""
"#-#-#-#-# de-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# de-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-html.pot b/pot/de-html.pot
index 268d8b5..de17c50 100644
--- a/pot/de-html.pot
+++ b/pot/de-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index f7b3cc1..6c77e48 100644
--- a/pot/de-txt.pot
+++ b/pot/de-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-full.pot b/pot/en_GB-full.pot
index a46ce7d..ee7d9c3 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# en_GB-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li
.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# en_GB-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 567658b..5309ffd 100644
--- a/pot/en_GB-html.pot
+++ b/pot/en_GB-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index 155eea0..6c77e48 100644
--- a/pot/en_GB-txt.pot
+++ b/pot/en_GB-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-full.pot b/pot/es-full.pot
index 1bbae80..1a5db25 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# es-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# es-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-html.pot b/pot/es-html.pot
index e8d1f54..e352885 100644
--- a/pot/es-html.pot
+++ b/pot/es-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index f7b3cc1..55960ba 100644
--- a/pot/es-txt.pot
+++ b/pot/es-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-full.pot b/pot/fi-full.pot
index 0c46951..a3819e7 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fi-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# fi-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index 6a04621..0c2f39b 100644
--- a/pot/fi-html.pot
+++ b/pot/fi-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/fi-txt.pot
+++ b/pot/fi-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-full.pot b/pot/fr-full.pot
index cb8faba..a5a2df1 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# fr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index d0bcc8a..0a83fea 100644
--- a/pot/fr-html.pot
+++ b/pot/fr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index 61758af..55960ba 100644
--- a/pot/fr-txt.pot
+++ b/pot/fr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-full.pot b/pot/gl-full.pot
index 3cbeba2..091bc02 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# gl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# gl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index ffb7802..66af43a 100644
--- a/pot/gl-html.pot
+++ b/pot/gl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index 61758af..55960ba 100644
--- a/pot/gl-txt.pot
+++ b/pot/gl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-full.pot b/pot/hu-full.pot
index 40f5840..a2e8084 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hu-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# hu-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index c7a508e..1fa0dac 100644
--- a/pot/hu-html.pot
+++ b/pot/hu-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/hu-txt.pot
+++ b/pot/hu-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-full.pot b/pot/hy-full.pot
index 902682b..102aba2 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hy-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# hy-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index e9e97bc..c43fa51 100644
--- a/pot/hy-html.pot
+++ b/pot/hy-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index 155eea0..6c77e48 100644
--- a/pot/hy-txt.pot
+++ b/pot/hy-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-full.pot b/pot/it-full.pot
index 5377e8c..d56dc70 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# it-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# it-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-html.pot b/pot/it-html.pot
index c42e828..62f2b67 100644
--- a/pot/it-html.pot
+++ b/pot/it-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index 61758af..55960ba 100644
--- a/pot/it-txt.pot
+++ b/pot/it-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-full.pot b/pot/ja-full.pot
index e33a6a2..d3abc14 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ja-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ja-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index d18f3eb..b8b4c88 100644
--- a/pot/ja-html.pot
+++ b/pot/ja-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index 61758af..55960ba 100644
--- a/pot/ja-txt.pot
+++ b/pot/ja-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-full.pot b/pot/ka-full.pot
index 72b4062..f598ab6 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ka-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ka-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 3f04353..6050b73 100644
--- a/pot/ka-html.pot
+++ b/pot/ka-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/ka-txt.pot
+++ b/pot/ka-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-full.pot b/pot/lt-full.pot
index 414b4a6..c713d21 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# lt-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# lt-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index ed5ade2..e7e1c8b 100644
--- a/pot/lt-html.pot
+++ b/pot/lt-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index f7b3cc1..6c77e48 100644
--- a/pot/lt-txt.pot
+++ b/pot/lt-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-full.pot b/pot/mn-full.pot
index 94fd610..1166e8c 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# mn-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# mn-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index e1a0778..b7cd7a9 100644
--- a/pot/mn-html.pot
+++ b/pot/mn-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index f7b3cc1..6c77e48 100644
--- a/pot/mn-txt.pot
+++ b/pot/mn-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-full.pot b/pot/nb-full.pot
index 424b7c6..67b2eab 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nb-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# nb-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index ae30d2b..680c91f 100644
--- a/pot/nb-html.pot
+++ b/pot/nb-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index f7b3cc1..55960ba 100644
--- a/pot/nb-txt.pot
+++ b/pot/nb-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-full.pot b/pot/nl-full.pot
index f7615ba..82174a9 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# nl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index 00014d0..38687b0 100644
--- a/pot/nl-html.pot
+++ b/pot/nl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/nl-txt.pot
+++ b/pot/nl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-full.pot b/pot/pl-full.pot
index 9dc77a0..74b2373 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# pl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-html.pot b/pot/pl-html.pot
index 3d4c784..b08ca49 100644
--- a/pot/pl-html.pot
+++ b/pot/pl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-txt.pot b/pot/pl-txt.pot
index 61758af..55960ba 100644
--- a/pot/pl-txt.pot
+++ b/pot/pl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:07+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-full.pot b/pot/pt_BR-full.pot
index e3f87de..8981821 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pt_BR-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# pt_BR-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index 87e8e96..5ff48f2 100644
--- a/pot/pt_BR-html.pot
+++ b/pot/pt_BR-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index 155eea0..6c77e48 100644
--- a/pot/pt_BR-txt.pot
+++ b/pot/pt_BR-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-full.pot b/pot/ro-full.pot
index 0cfa494..2a5ab62 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ro-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ro-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-html.pot b/pot/ro-html.pot
index b6e73d2..a9a67fe 100644
--- a/pot/ro-html.pot
+++ b/pot/ro-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-txt.pot b/pot/ro-txt.pot
index f7b3cc1..6c77e48 100644
--- a/pot/ro-txt.pot
+++ b/pot/ro-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:09+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-full.pot b/pot/sk-full.pot
index 070218f..b29c1bd 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sk-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# sk-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-html.pot b/pot/sk-html.pot
index 4bbd0dc..9580ab9 100644
--- a/pot/sk-html.pot
+++ b/pot/sk-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-txt.pot b/pot/sk-txt.pot
index 155eea0..6c77e48 100644
--- a/pot/sk-txt.pot
+++ b/pot/sk-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-full.pot b/pot/sv-full.pot
index a145a65..13de5ba 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sv-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# sv-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-html.pot b/pot/sv-html.pot
index 27aaead..26b3c9f 100644
--- a/pot/sv-html.pot
+++ b/pot/sv-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-txt.pot b/pot/sv-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/sv-txt.pot
+++ b/pot/sv-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-full.pot b/pot/tr-full.pot
index 581697d..41f7a47 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# tr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# tr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-html.pot b/pot/tr-html.pot
index 1920b2b..fd8b9d3 100644
--- a/pot/tr-html.pot
+++ b/pot/tr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:41+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-txt.pot b/pot/tr-txt.pot
index 7d23e90..55960ba 100644
--- a/pot/tr-txt.pot
+++ b/pot/tr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:08+0300\n"
+"POT-Creation-Date: 2010-05-31 09:19+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-full.pot b/pot/zh_CN-full.pot
index 4064d10..d1e97b8 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_CN-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# zh_CN-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index 57ca2b1..68f7835 100644
--- a/pot/zh_CN-html.pot
+++ b/pot/zh_CN-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index 155eea0..6c77e48 100644
--- a/pot/zh_CN-txt.pot
+++ b/pot/zh_CN-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-full.pot b/pot/zh_TW-full.pot
index 56cc57b..156290c 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_TW-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# zh_TW-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index 46a2e35..9a23246 100644
--- a/pot/zh_TW-html.pot
+++ b/pot/zh_TW-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-25 14:42+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index 155eea0..6c77e48 100644
--- a/pot/zh_TW-txt.pot
+++ b/pot/zh_TW-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-24 12:10+0300\n"
+"POT-Creation-Date: 2010-05-31 09:20+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
hooks/post-receive
--
phpMyAdmin localized documentation
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4477-g10cb2de
by Michal Čihař 31 May '10
by Michal Čihař 31 May '10
31 May '10
The branch, master has been updated
via 10cb2de1fefa20d321fdac38813f0ef172748aed (commit)
via 00224d845189319062bae0367de7d142352ecc31 (commit)
via 6fadb5b89437d95e06d82a839dca68c11dd8f45c (commit)
via dbdd4b4d8d77b907e42c0f42ccdcc521a63cd5ec (commit)
via f77b8642f15dd47bf1e30018a88fd938f7398288 (commit)
via edbd7a1154bee86df9660d951bf8091b7d3256ef (commit)
via 5467540cf5402b074867d83f0ad451fba501f6d9 (commit)
via 0a95aef0495a4ea9e2ad67a3976da2bb46d9daa3 (commit)
via e4ace839c7d3da7f7a10f2df4563e336d86c63a2 (commit)
via 37b3188e7d7e6c3cacbe4c471a51e5075e19a823 (commit)
via 59bd44365ea08bf050d9741aa169bbd4ad512b45 (commit)
via d1225033d68e85cfd3a6a7d55f438543ab2f15bb (commit)
via 3f2f817eb2dae7b7e1da2ad36ce12ba7907d6f01 (commit)
via 52cd80c03a76afd81c457c6203afe0c663297763 (commit)
via 596446bf20d7d3ffe001e02a82f5fe9094216771 (commit)
via 8a776f0f761fb4ac62fa30be02d62e095097d5a6 (commit)
via 8f51b7fc6e42985ebc9da52b3ee4fb30a5ad90d9 (commit)
via 7453b6fd44b281912ecbfb428d6b5ab6d706f016 (commit)
via 6d250dfad88144473d873bb60063266e20e2225b (commit)
via 838ebc593cdf9ae53b7fc19e4d9797b44df83497 (commit)
via 078a28632c697df798a71775b08fb059523134b1 (commit)
via 83cb629b8cac60e66fda16384e3d080bbff56e62 (commit)
via 83b84136c571fe796f9c3ef49be730786de5cdeb (commit)
via 9fd55823840bfc8d4e16275c60f89721c3ae9458 (commit)
via 7f35c6044875cc52cf9c56e9522c9e575f42d8f2 (commit)
via 30923513a7f73855ceb12a6e6d7bccd846cd06e3 (commit)
via b7ebd26f8266b33ce23c240ceaac8bb22b837bcb (commit)
via a47bfce41d6f983eadb20df883c3dd571e5d4b23 (commit)
via b1c3c0d889d6328657ac29ace38340cf2dfe994f (commit)
via d48bcb01f95d5046b0ae31d4f8b8a2552666329c (commit)
via f23329813dfe05b8262747359b3d3342a35dd300 (commit)
via 27a9f00c10e26585193c41cfde76e2af86877e4b (commit)
via c98903451ff1875133a64e0b93952e18314ae8f3 (commit)
via 011f9bba6fef6d1cf4f13141368813be4531969b (commit)
via 46464ee0b51aa49beb9420fae9334bed4daf7691 (commit)
via a160faddd59c374cfd947ff41bdf230a36a7f2a3 (commit)
via 4ff79a088c4a886e29b94c5ba48780f4a1b07471 (commit)
via da907061ecbdb335e5eecd6354926933ff44bcfa (commit)
via cdc514177e040e79338985f7406c4ee0c87f34a2 (commit)
via c48be721ef3540538650e66b6e2f2241f2de64cd (commit)
via f74d6846b2c686aa8fae7950547cdec338631d21 (commit)
via a0c7a38bae872aef34c7792127b9763f81cd56c2 (commit)
via 30eed06ac3a27edb9a9a7e7843d19d56de7af8a3 (commit)
via 9d7cca04916bdd8c8ce714f5cb04a33007413086 (commit)
via 7d849ad7a5d7babb35a3ef77eefa697490ecf8fb (commit)
via 4d8ed9a1d33388e0b10708396c2595ffdf341350 (commit)
via 4ff00683442d956e1e27518def5be44ea6c57399 (commit)
via a008b5d23cff7b895e7012029effea05d8a92680 (commit)
via 4a4ebbdba3e46c7330b042f945f023dbf7e33d2b (commit)
via 503398f929487337bf275d206ccd251a666f94b2 (commit)
via 5daa3b76a20a6190b519c076fc500d0cb93aa46b (commit)
via 1538322b8d59de9f800ea6357b89f0cb2e3e45f9 (commit)
via 4904ed24ed2f66ddd7c933e45d2f1d82d3f8a27d (commit)
via b54b59a70e001c9c4ac50b56c614f8f1453e60fe (commit)
via 4918dda27d41dfa43a5e8ed0bec6019b99a024ee (commit)
via 5606941b193af2ff7e01fdd6f4be6455d250dc88 (commit)
via cfd5f7c8f687632b2c73cf0dace2b1d3688ebc07 (commit)
via bf0e85a46179a8baa6ee1b9985731d7d21236846 (commit)
via be2c70eb36583f885963354483647560c0cf127c (commit)
via 57620936eaa3c70085503802557489ef26537f74 (commit)
via a0c8d6c0dc26ddbe4dd77fa49f2b7956fd3d72ad (commit)
via cdf918716aa895d1f67133ee7dd303db7f1d9317 (commit)
via 7163e3cebba22dd49f7fe2008e09665cf3ee4f83 (commit)
via fd6b3dce681f1a64b476a365953a3d1a5507e76a (commit)
via 53a123046e0f43816c82fc72800782a2ade781bd (commit)
via 9840ed817310d2a78d974f9c5dae8ac7fa421c28 (commit)
via b5c5c8a7228addffb2917677cff59fa04fc694f3 (commit)
via 994a1108dde2badfe46d72d8090e475eb29e796c (commit)
via f8dd3921b39940dc6455fc534011a10d316aa1ce (commit)
via 5235c48a2b9ac8a05d2f363220c8a85242eb445d (commit)
via dd75e9e03f680982f00ea06400cc56b750768bdf (commit)
via eadd53d4765ec04cb080e751f86cefa6c8c7888c (commit)
via e58b33000e03f420f3ddeb963ba597733aff7992 (commit)
via 90a8863dc80bd39cfa5eb69c2faf6022601b5250 (commit)
via 6f46bbfdcd9c1329534c0fc45b2a86d3ab6817dd (commit)
via d9f0325ce348465f076777042b431cdc547ad3de (commit)
via 8b705eae700554ce3f7f3707232cf5d6d694bdfe (commit)
via 584f1b60ab86d7b8b009ecc4f9853ced18203315 (commit)
via 0fe61c9b44dc6cab58246a3deb044e7306a30c24 (commit)
via ef05314322ac1a0448acf17ae548c31e17ff28c8 (commit)
via eb4d0fab790d58cb040032aa906fb2662331397e (commit)
via 3f45fe4c70f2f1c77c202765a49019e1db763367 (commit)
from d18a3eb3c01cfc3c559985fe97869bfbb8f3511c (commit)
- Log -----------------------------------------------------------------
commit 10cb2de1fefa20d321fdac38813f0ef172748aed
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 31 08:25:21 2010 +0200
Translation update done using Pootle.
commit 00224d845189319062bae0367de7d142352ecc31
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 31 08:25:10 2010 +0200
Translation update done using Pootle.
commit 6fadb5b89437d95e06d82a839dca68c11dd8f45c
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 31 08:24:59 2010 +0200
Translation update done using Pootle.
commit dbdd4b4d8d77b907e42c0f42ccdcc521a63cd5ec
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 31 08:23:24 2010 +0200
Translation update done using Pootle.
commit f77b8642f15dd47bf1e30018a88fd938f7398288
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:57:43 2010 +0200
Translation update done using Pootle.
commit edbd7a1154bee86df9660d951bf8091b7d3256ef
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:54:28 2010 +0200
Translation update done using Pootle.
commit 5467540cf5402b074867d83f0ad451fba501f6d9
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:53:38 2010 +0200
Translation update done using Pootle.
commit 0a95aef0495a4ea9e2ad67a3976da2bb46d9daa3
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:52:30 2010 +0200
Translation update done using Pootle.
commit e4ace839c7d3da7f7a10f2df4563e336d86c63a2
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:50:54 2010 +0200
Translation update done using Pootle.
commit 37b3188e7d7e6c3cacbe4c471a51e5075e19a823
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:50:19 2010 +0200
Translation update done using Pootle.
commit 59bd44365ea08bf050d9741aa169bbd4ad512b45
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:48:11 2010 +0200
Translation update done using Pootle.
commit d1225033d68e85cfd3a6a7d55f438543ab2f15bb
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:47:43 2010 +0200
Translation update done using Pootle.
commit 3f2f817eb2dae7b7e1da2ad36ce12ba7907d6f01
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:45:24 2010 +0200
Translation update done using Pootle.
commit 52cd80c03a76afd81c457c6203afe0c663297763
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:45:00 2010 +0200
Translation update done using Pootle.
commit 596446bf20d7d3ffe001e02a82f5fe9094216771
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:44:05 2010 +0200
Translation update done using Pootle.
commit 8a776f0f761fb4ac62fa30be02d62e095097d5a6
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:42:56 2010 +0200
Translation update done using Pootle.
commit 8f51b7fc6e42985ebc9da52b3ee4fb30a5ad90d9
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:42:01 2010 +0200
Translation update done using Pootle.
commit 7453b6fd44b281912ecbfb428d6b5ab6d706f016
Author: Domen <dbc334(a)gmail.com>
Date: Mon May 31 01:41:48 2010 +0200
Translation update done using Pootle.
commit 6d250dfad88144473d873bb60063266e20e2225b
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 01:06:07 2010 +0200
Translation update done using Pootle.
commit 838ebc593cdf9ae53b7fc19e4d9797b44df83497
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 01:02:23 2010 +0200
Translation update done using Pootle.
commit 078a28632c697df798a71775b08fb059523134b1
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:59:28 2010 +0200
Translation update done using Pootle.
commit 83cb629b8cac60e66fda16384e3d080bbff56e62
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:57:21 2010 +0200
Translation update done using Pootle.
commit 83b84136c571fe796f9c3ef49be730786de5cdeb
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:56:18 2010 +0200
Translation update done using Pootle.
commit 9fd55823840bfc8d4e16275c60f89721c3ae9458
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:55:53 2010 +0200
Translation update done using Pootle.
commit 7f35c6044875cc52cf9c56e9522c9e575f42d8f2
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:54:52 2010 +0200
Translation update done using Pootle.
commit 30923513a7f73855ceb12a6e6d7bccd846cd06e3
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:54:37 2010 +0200
Translation update done using Pootle.
commit b7ebd26f8266b33ce23c240ceaac8bb22b837bcb
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:53:51 2010 +0200
Translation update done using Pootle.
commit a47bfce41d6f983eadb20df883c3dd571e5d4b23
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:53:35 2010 +0200
Translation update done using Pootle.
commit b1c3c0d889d6328657ac29ace38340cf2dfe994f
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:53:22 2010 +0200
Translation update done using Pootle.
commit d48bcb01f95d5046b0ae31d4f8b8a2552666329c
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:53:03 2010 +0200
Translation update done using Pootle.
commit f23329813dfe05b8262747359b3d3342a35dd300
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:50:26 2010 +0200
Translation update done using Pootle.
commit 27a9f00c10e26585193c41cfde76e2af86877e4b
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:48:08 2010 +0200
Translation update done using Pootle.
commit c98903451ff1875133a64e0b93952e18314ae8f3
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:47:52 2010 +0200
Translation update done using Pootle.
commit 011f9bba6fef6d1cf4f13141368813be4531969b
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:47:46 2010 +0200
Translation update done using Pootle.
commit 46464ee0b51aa49beb9420fae9334bed4daf7691
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:47:39 2010 +0200
Translation update done using Pootle.
commit a160faddd59c374cfd947ff41bdf230a36a7f2a3
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:47:00 2010 +0200
Translation update done using Pootle.
commit 4ff79a088c4a886e29b94c5ba48780f4a1b07471
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:45:23 2010 +0200
Translation update done using Pootle.
commit da907061ecbdb335e5eecd6354926933ff44bcfa
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:45:15 2010 +0200
Translation update done using Pootle.
commit cdc514177e040e79338985f7406c4ee0c87f34a2
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:45:05 2010 +0200
Translation update done using Pootle.
commit c48be721ef3540538650e66b6e2f2241f2de64cd
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:44:22 2010 +0200
Translation update done using Pootle.
commit f74d6846b2c686aa8fae7950547cdec338631d21
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:42:15 2010 +0200
Translation update done using Pootle.
commit a0c7a38bae872aef34c7792127b9763f81cd56c2
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:41:12 2010 +0200
Translation update done using Pootle.
commit 30eed06ac3a27edb9a9a7e7843d19d56de7af8a3
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:40:42 2010 +0200
Translation update done using Pootle.
commit 9d7cca04916bdd8c8ce714f5cb04a33007413086
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:40:07 2010 +0200
Translation update done using Pootle.
commit 7d849ad7a5d7babb35a3ef77eefa697490ecf8fb
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:38:36 2010 +0200
Translation update done using Pootle.
commit 4d8ed9a1d33388e0b10708396c2595ffdf341350
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:37:26 2010 +0200
Translation update done using Pootle.
commit 4ff00683442d956e1e27518def5be44ea6c57399
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:36:40 2010 +0200
Translation update done using Pootle.
commit a008b5d23cff7b895e7012029effea05d8a92680
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:35:30 2010 +0200
Translation update done using Pootle.
commit 4a4ebbdba3e46c7330b042f945f023dbf7e33d2b
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:34:57 2010 +0200
Translation update done using Pootle.
commit 503398f929487337bf275d206ccd251a666f94b2
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:34:13 2010 +0200
Translation update done using Pootle.
commit 5daa3b76a20a6190b519c076fc500d0cb93aa46b
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:33:56 2010 +0200
Translation update done using Pootle.
commit 1538322b8d59de9f800ea6357b89f0cb2e3e45f9
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:33:18 2010 +0200
Translation update done using Pootle.
commit 4904ed24ed2f66ddd7c933e45d2f1d82d3f8a27d
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:31:32 2010 +0200
Translation update done using Pootle.
commit b54b59a70e001c9c4ac50b56c614f8f1453e60fe
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:30:30 2010 +0200
Translation update done using Pootle.
commit 4918dda27d41dfa43a5e8ed0bec6019b99a024ee
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:29:27 2010 +0200
Translation update done using Pootle.
commit 5606941b193af2ff7e01fdd6f4be6455d250dc88
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:28:05 2010 +0200
Translation update done using Pootle.
commit cfd5f7c8f687632b2c73cf0dace2b1d3688ebc07
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:27:56 2010 +0200
Translation update done using Pootle.
commit bf0e85a46179a8baa6ee1b9985731d7d21236846
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:27:48 2010 +0200
Translation update done using Pootle.
commit be2c70eb36583f885963354483647560c0cf127c
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:27:37 2010 +0200
Translation update done using Pootle.
commit 57620936eaa3c70085503802557489ef26537f74
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:27:26 2010 +0200
Translation update done using Pootle.
commit a0c8d6c0dc26ddbe4dd77fa49f2b7956fd3d72ad
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:27:07 2010 +0200
Translation update done using Pootle.
commit cdf918716aa895d1f67133ee7dd303db7f1d9317
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:40 2010 +0200
Translation update done using Pootle.
commit 7163e3cebba22dd49f7fe2008e09665cf3ee4f83
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:36 2010 +0200
Translation update done using Pootle.
commit fd6b3dce681f1a64b476a365953a3d1a5507e76a
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:31 2010 +0200
Translation update done using Pootle.
commit 53a123046e0f43816c82fc72800782a2ade781bd
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:25 2010 +0200
Translation update done using Pootle.
commit 9840ed817310d2a78d974f9c5dae8ac7fa421c28
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:20 2010 +0200
Translation update done using Pootle.
commit b5c5c8a7228addffb2917677cff59fa04fc694f3
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:14 2010 +0200
Translation update done using Pootle.
commit 994a1108dde2badfe46d72d8090e475eb29e796c
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:26:10 2010 +0200
Translation update done using Pootle.
commit f8dd3921b39940dc6455fc534011a10d316aa1ce
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:57 2010 +0200
Translation update done using Pootle.
commit 5235c48a2b9ac8a05d2f363220c8a85242eb445d
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:53 2010 +0200
Translation update done using Pootle.
commit dd75e9e03f680982f00ea06400cc56b750768bdf
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:47 2010 +0200
Translation update done using Pootle.
commit eadd53d4765ec04cb080e751f86cefa6c8c7888c
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:42 2010 +0200
Translation update done using Pootle.
commit e58b33000e03f420f3ddeb963ba597733aff7992
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:36 2010 +0200
Translation update done using Pootle.
commit 90a8863dc80bd39cfa5eb69c2faf6022601b5250
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:31 2010 +0200
Translation update done using Pootle.
commit 6f46bbfdcd9c1329534c0fc45b2a86d3ab6817dd
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:27 2010 +0200
Translation update done using Pootle.
commit d9f0325ce348465f076777042b431cdc547ad3de
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:22 2010 +0200
Translation update done using Pootle.
commit 8b705eae700554ce3f7f3707232cf5d6d694bdfe
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:18 2010 +0200
Translation update done using Pootle.
commit 584f1b60ab86d7b8b009ecc4f9853ced18203315
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:13 2010 +0200
Translation update done using Pootle.
commit 0fe61c9b44dc6cab58246a3deb044e7306a30c24
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:25:07 2010 +0200
Translation update done using Pootle.
commit ef05314322ac1a0448acf17ae548c31e17ff28c8
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:24:59 2010 +0200
Translation update done using Pootle.
commit eb4d0fab790d58cb040032aa906fb2662331397e
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:24:45 2010 +0200
Translation update done using Pootle.
commit 3f45fe4c70f2f1c77c202765a49019e1db763367
Author: Bjorn Roesbeke <inbox(a)bjornroesbeke.be>
Date: Mon May 31 00:24:06 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/nb.po | 16 +--
po/nl.po | 526 +++++++++++---------------------------------------------------
po/sl.po | 39 ++++-
3 files changed, 130 insertions(+), 451 deletions(-)
diff --git a/po/nb.po b/po/nb.po
index 2bdc435..08b4d6e 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-25 14:30+0200\n"
-"PO-Revision-Date: 2010-05-18 10:59+0200\n"
+"PO-Revision-Date: 2010-05-31 08:25+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
"Language: nb\n"
@@ -416,12 +416,12 @@ msgid "Last check"
msgstr "Sist kontrollert"
#: db_printview.php:222 db_structure.php:480
-#, fuzzy, php-format
+#, php-format
#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
-msgstr[0] "%s tabell(er)"
-msgstr[1] "%s tabell(er)"
+msgstr[0] "%s tabell"
+msgstr[1] "%s tabeller"
#: db_qbe.php:29 libraries/Message.class.php:191
#: libraries/display_tbl.lib.php:1981 libraries/sql_query_form.lib.php:140
@@ -4784,6 +4784,8 @@ msgid ""
"Converts an (IPv4) Internet network address into a string in Internet "
"standard dotted format."
msgstr ""
+"Konverterer en (IPv4) Internett nettverksadresse til en streng i "
+"Internettstandard prikkete format."
#: libraries/transformations/text_plain__sql.inc.php:10
msgid "Formats text as SQL query with syntax highlighting."
@@ -5312,7 +5314,6 @@ msgid "Do not change the password"
msgstr "Ikke endre passordet"
#: server_privileges.php:804 server_privileges.php:2166
-#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ingen bruker(e) funnet."
@@ -5671,7 +5672,6 @@ msgid "Error management:"
msgstr "Feilbehandling:"
#: server_replication.php:334
-#, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!"
@@ -8440,7 +8440,3 @@ msgstr "Endre tabellens navn"
#~ msgstr ""
#~ "Kan ikke starte sessjonen uten feil, kontroller feilmeldinger i din PHP "
#~ "og/eller webtjenerloggfil og konfigurer din PHP innstallasjon korrekt."
-
-#~| msgid "Import currencies ($5.00 to 5.00)"
-#~ msgid "Import currencies (.00 to 5.00)"
-#~ msgstr "Importer valuta (.00 til 5.00)"
diff --git a/po/nl.po b/po/nl.po
index fd1df5d..336883a 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-25 14:30+0200\n"
-"PO-Revision-Date: 2010-03-26 15:46+0200\n"
-"Last-Translator: <rink(a)initfour.nl>\n"
+"PO-Revision-Date: 2010-05-31 01:06+0200\n"
+"Last-Translator: Bjorn <inbox(a)bjornroesbeke.be>\n"
"Language-Team: dutch <nl(a)li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -298,11 +298,10 @@ msgid "Damaged"
msgstr "Beschadigd"
#: db_operations.php:562
-#, fuzzy
#| msgid "Repair"
msgctxt "BLOB repository"
msgid "Repair"
-msgstr "Repareer"
+msgstr "Herstel"
#: db_operations.php:570
#, fuzzy
@@ -1049,10 +1048,9 @@ msgstr "Kies weer te geven veld"
#. l10n: Display text for calendar close link
#: js/messages.php:73
-#, fuzzy
#| msgid "Donate"
msgid "Done"
-msgstr "Doneer"
+msgstr "Klaar"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:75
@@ -1071,72 +1069,64 @@ msgstr "Volgende"
#. l10n: Display text for current month link in calendar
#: js/messages.php:79
-#, fuzzy
#| msgid "Total"
msgid "Today"
-msgstr "Totaal"
+msgstr "Vandaag"
#: js/messages.php:82
-#, fuzzy
#| msgid "Binary"
msgid "January"
-msgstr " Binair "
+msgstr "Januari"
#: js/messages.php:83
msgid "February"
-msgstr ""
+msgstr "Februari"
#: js/messages.php:84
-#, fuzzy
#| msgid "Mar"
msgid "March"
-msgstr "Mar"
+msgstr "Maart"
#: js/messages.php:85
-#, fuzzy
#| msgid "Apr"
msgid "April"
-msgstr "Apr"
+msgstr "April"
#: js/messages.php:86
msgid "May"
msgstr "Mei"
#: js/messages.php:87
-#, fuzzy
#| msgid "Jun"
msgid "June"
-msgstr "Jun"
+msgstr "Juni"
#: js/messages.php:88
-#, fuzzy
#| msgid "Jul"
msgid "July"
-msgstr "Jul"
+msgstr "Juli"
#: js/messages.php:89
-#, fuzzy
#| msgid "Aug"
msgid "August"
-msgstr "Aug"
+msgstr "Augustus"
#: js/messages.php:90
msgid "September"
-msgstr ""
+msgstr "September"
#: js/messages.php:91
-#, fuzzy
#| msgid "Oct"
msgid "October"
-msgstr "Oct"
+msgstr "Oktober"
#: js/messages.php:92
msgid "November"
-msgstr ""
+msgstr "November"
#: js/messages.php:93
msgid "December"
-msgstr ""
+msgstr "December"
#. l10n: Short month name
#: js/messages.php:97 libraries/common.lib.php:1555
@@ -1202,40 +1192,36 @@ msgid "Dec"
msgstr "Dec"
#: js/messages.php:122
-#, fuzzy
#| msgid "Sun"
msgid "Sunday"
-msgstr "Zo"
+msgstr "Zondag"
#: js/messages.php:123
-#, fuzzy
#| msgid "Mon"
msgid "Monday"
-msgstr "Ma"
+msgstr "Maandag"
#: js/messages.php:124
-#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
-msgstr "Di"
+msgstr "Dinsdag"
#: js/messages.php:125
msgid "Wednesday"
-msgstr ""
+msgstr "Woensdag"
#: js/messages.php:126
msgid "Thursday"
-msgstr ""
+msgstr "Donderdag"
#: js/messages.php:127
-#, fuzzy
#| msgid "Fri"
msgid "Friday"
-msgstr "Vr"
+msgstr "Vrijdag"
#: js/messages.php:128
msgid "Saturday"
-msgstr ""
+msgstr "Zaterdag"
#. l10n: Short week day name
#: js/messages.php:132 libraries/common.lib.php:1580
@@ -1274,7 +1260,6 @@ msgstr "Za"
#. l10n: Minimal week day name
#: js/messages.php:148
-#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Zo"
@@ -1316,33 +1301,29 @@ msgstr "Vr"
#. l10n: Minimal week day name
#: js/messages.php:160
-#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Za"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:162
-#, fuzzy
#| msgid "Wiki"
msgid "Wk"
-msgstr "Wiki"
+msgstr "Week"
#: js/messages.php:164
msgid "Hour"
-msgstr ""
+msgstr "Uur"
#: js/messages.php:165
-#, fuzzy
#| msgid "in use"
msgid "Minute"
-msgstr "in gebruik"
+msgstr "Minuut"
#: js/messages.php:166
-#, fuzzy
#| msgid "per second"
msgid "Second"
-msgstr "per seconde"
+msgstr "Seconde"
#: libraries/Config.class.php:1015
msgid "Font size"
@@ -1718,11 +1699,12 @@ msgstr ""
"gevallen ontbreekt er ergens bijvoorbeeld een quote.<br /> Wanneer er een "
"blanco pagina wordt weergegeven zijn er geen problemen."
+# 'kon niet vanuit "%1$s" geladen worden' is juister.
#: libraries/common.inc.php:594
-#, fuzzy, php-format
+#, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
-msgstr "Standaard configuratiebestand kon niet worden geladen vanuit: \"%1$s\""
+msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: \"%1$s\""
#: libraries/common.inc.php:599
msgid ""
@@ -1825,13 +1807,13 @@ msgstr "Valideer SQL"
#: libraries/common.lib.php:1276
msgid "Inline edit of this query"
-msgstr ""
+msgstr "Rechtstreekse bewerking van deze query"
+# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen iets anders.
#: libraries/common.lib.php:1278
-#, fuzzy
#| msgid "Engines"
msgid "Inline"
-msgstr "Engines"
+msgstr "Rechtstreeks"
#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
msgid "Profiling"
@@ -2055,11 +2037,11 @@ msgstr "Type opnieuw"
msgid "Password Hashing"
msgstr "Wachtwoord Hashing"
+# Kan ook vertaald worden als "werkt met ..."
#: libraries/display_change_password.lib.php:66
-#, fuzzy
#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
-msgstr "MySQL 4.0 compatibel"
+msgstr "Compatibel met MySQL 4.0"
#: libraries/display_change_password.lib.php:72
#: libraries/replication_gui.lib.php:360 server_privileges.php:783
@@ -2975,9 +2957,10 @@ msgstr "Gebruik 'INSERT IGNORE'"
msgid "Use hexadecimal for BLOB"
msgstr "Gebruik hexadecimaal voor BLOB"
+# UTC = Universal Time Zone, UTC laten staan.
#: libraries/export/sql.php:120
msgid "Export time in UTC"
-msgstr ""
+msgstr "Exporteer tijd in UTC"
#: libraries/export/sql.php:122
msgid "Export type"
@@ -3069,9 +3052,8 @@ msgid "Open new phpMyAdmin window"
msgstr "Open nieuw phpMyAdmin scherm"
#: libraries/header.inc.php:115
-#, fuzzy
msgid "New table"
-msgstr "Geen Tabellen"
+msgstr "Nieuwe tabel"
#: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55
msgid "SQL result"
@@ -3214,12 +3196,12 @@ msgstr ""
"Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en "
"probeer opnieuw. "
+# Is er een betere vertaling voor 'encoding' ?
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
-#, fuzzy
#| msgid "Recoding engine"
msgid "Encoding conversion"
-msgstr "Hercoderings engine"
+msgstr "Omzetting van de codering"
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:145
@@ -3229,10 +3211,11 @@ msgctxt "None encoding conversion"
msgid "None"
msgstr "Geen"
+# Wat is 'Kana' ?
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:151
msgid "Convert to Kana"
-msgstr ""
+msgstr "Zet om naar Kana"
#. l10n: Text direction, use either ltr or rtl
#: libraries/messages.inc.php:19
@@ -4384,26 +4367,33 @@ msgstr "SQL-geschiedenis"
#: libraries/relation.lib.php:159
msgid "Quick steps to setup advanced features:"
-msgstr ""
+msgstr "Snelle stappen om geavanceerde functies in te stellen:"
#: libraries/relation.lib.php:161
msgid ""
"Create the needed tables with the <code>script/create_tables.sql</code>."
msgstr ""
+"Maak de benodigde tabellen aan met <code>script/create_tables.sql</code>."
+# hem/haar/het past beter maar het geslacht van de gebruiker is onvoorspelbaar.
#: libraries/relation.lib.php:162
msgid "Create a pma user and give access to these tables."
-msgstr ""
+msgstr "Maak een pma gebruiker aan en verleen die toegang tot deze tabellen."
#: libraries/relation.lib.php:163
msgid ""
"Enable advanced features in configuration file (<code>config.inc.php</"
"code>), for example by starting from <code>config.sample.inc.php</code>."
msgstr ""
+"Schakel geavanceerde functionaliteit in het configuratiebestand "
+"(<code>config.inc.php</code>) in, bijvoorbeeld door gebruik te maken van "
+"<code>config.sample.inc.php</code>."
#: libraries/relation.lib.php:164
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
+"Log opnieuw in op phpMyAdmin om het bijgewerkte configuratiebestand te "
+"laden."
#: libraries/relation.lib.php:1173
msgid "no description"
@@ -4746,8 +4736,8 @@ msgstr ""
"(\"'\") moet invoegen in deze waardes, plaats er dan een backslash voor "
"(bijvoorbeeld '\\\\xyz' of 'a\\'b')."
+# "Geen" of indien telbaar: "Geen enkele".
#: libraries/tbl_properties.inc.php:393
-#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
@@ -4901,10 +4891,13 @@ msgstr ""
"prefix als \"http://domein.com/\", de tweede optie is de titel voor de link."
#: libraries/transformations/text_plain__longToIpv4.inc.php:10
+#, fuzzy
msgid ""
"Converts an (IPv4) Internet network address into a string in Internet "
"standard dotted format."
msgstr ""
+"Zet een (IPv4) internet netwerkadres om in een tekenreeks volgens het "
+"standaard formaat met punten."
#: libraries/transformations/text_plain__sql.inc.php:10
msgid "Formats text as SQL query with syntax highlighting."
@@ -5059,6 +5052,10 @@ msgid ""
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
+"Javascript wordt niet door uw browser ondersteund of de ondersteuning ervoor "
+"is uitgeschakeld. Bepaalde functionaliteit van phpMyAdmin zal niet "
+"beschikbaar zijn. Zo zal bijvoorbeeld het navigatievenster zich niet "
+"automatisch vernieuwen."
#: main.php:346
#, php-format
@@ -5077,10 +5074,10 @@ msgid ""
msgstr ""
"De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen."
+# Zowel "frame" als "window" vertalen naar "venster".
#: navigation.php:66 navigation.php:67 navigation.php:70
-#, fuzzy
msgid "Reload navigation frame"
-msgstr "Aanpassen navigatieframe"
+msgstr "Herlaad het navigatievenster."
#: navigation.php:210 server_databases.php:371 server_synchronize.php:1191
msgid "No databases"
@@ -5096,7 +5093,6 @@ msgid "Clear"
msgstr "Clear"
#: navigation.php:350 navigation.php:351
-#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
@@ -5144,7 +5140,7 @@ msgstr ""
"Wilt u deze referenties verwijderen?"
#: pdf_schema.php:636
-#, fuzzy, php-format
+#, php-format
#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "De tabel \"%s\" bestaat niet!"
@@ -5259,14 +5255,16 @@ msgstr ""
"wijzigen, klik het \"Kies weer te geven veld\" icoon gevolgd door het weer "
"te geven veld."
+# Verleden tijd: "is aangemaakt" => "werd aangemaakt", ookal bestaat het nog steeds.
+# Wat doet "%1$s" hier?
#: pmd_pdf.php:63
#, fuzzy
msgid "Page has been created"
-msgstr "Tabel %1$s is aangemaakt."
+msgstr "De pagina werd aangemaakt."
#: pmd_pdf.php:65
msgid "Page creation failed"
-msgstr ""
+msgstr "Het aanmaken van de pagina is mislukt"
#: pmd_pdf.php:85
msgid "Export/Import to scale"
@@ -5358,7 +5356,6 @@ msgid "Slave replication"
msgstr "Slave replicatie"
#: server_databases.php:230
-#, fuzzy
#| msgid "Go to database"
msgid "Jump to database"
msgstr "Ga naar database"
@@ -5397,7 +5394,6 @@ msgid "View dump (schema) of databases"
msgstr "Bekijk dump (schema) van de databases"
#: server_privileges.php:263 server_privileges.php:264
-#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
@@ -5443,11 +5439,11 @@ msgstr "Inloginformatie"
msgid "Do not change the password"
msgstr "Wijzig het wachtwoord niet"
+# Enkelvoud.
#: server_privileges.php:804 server_privileges.php:2166
-#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
-msgstr "Geen gebruiker(s) gevonden."
+msgstr "Geen gebruiker gevonden."
#: server_privileges.php:848
#, php-format
@@ -5810,13 +5806,14 @@ msgstr "%s de IO Thread"
msgid "Error management:"
msgstr "Fouten beheer:"
+# "errors" => "fouten"
+# master and slave _what_?
#: server_replication.php:334
-#, fuzzy
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgid "Skipping errors might lead into unsynchronized master and slave!"
msgstr ""
-"Het overslaan van error(s) kan leiden tot verschillen tussen de master en "
-"slave!"
+"Het overslaan van fouten kan leiden tot verschillen tussen de meester en "
+"slaaf!"
#: server_replication.php:336
msgid "Skip current error"
@@ -5935,8 +5932,9 @@ msgstr "Deze server is ingesteld als master in een replicatie proces."
msgid "This MySQL server works as <b>slave</b> in <b>replication</b> process."
msgstr "Deze server is ingesteld als master in een replicatie proces."
+# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
+# "Deze MySQL-server functioneert als %s in een <b>replicatie</b> proces." weggehaald.
#: server_status.php:366
-#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in <b>replication</b> process. For further "
#| "information about replication status on the server, please visit the <a "
@@ -5945,9 +5943,8 @@ msgid ""
"For further information about replication status on the server, please visit "
"the <a href=#replication>replication section</a>."
msgstr ""
-"Deze MySQL-server functioneert als %s in een <b>replicatie</b> process. Kijk "
-"voor meer informatie over replicatie in de <a href=\"#replication"
-"\">replication status</a> sectie."
+"Kijk voor meer informatie over de replicatiestatus op deze server in de <a "
+"href=\"#replication\">replicatiestatus</a> sectie."
#: server_status.php:383
msgid ""
@@ -6111,19 +6108,18 @@ msgstr "De volgende queries zijn uitgevoerd:"
#: server_synchronize.php:1122
msgid "Enter manually"
-msgstr ""
+msgstr "Geef handmatig op"
#: server_synchronize.php:1123
-#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
-msgstr "Onveilige verbinding"
+msgstr "Huidige verbinding"
#: server_synchronize.php:1152
-#, fuzzy, php-format
+#, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
-msgstr "Configuratiebestand"
+msgstr "Configuratie: %s"
#: server_synchronize.php:1167
msgid "Socket"
@@ -6757,10 +6753,12 @@ msgstr "PMA database"
#: setup/lib/messages.inc.php:133
msgid "Tracking of changes made in database. Requires configured PMA database."
msgstr ""
+"Bijhouden van wijzigingen in de database. Dit vereist een geconfigureerde "
+"PMA database."
#: setup/lib/messages.inc.php:134
msgid "Changes tracking"
-msgstr ""
+msgstr "Wijzigingen bijhouden"
#: setup/lib/messages.inc.php:135
msgid "Customization"
@@ -7432,7 +7430,6 @@ msgid "SQL query history table"
msgstr "SQL-query historie tabel"
#: setup/lib/messages.inc.php:279
-#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
@@ -7440,14 +7437,13 @@ msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-"Laat dit veld leeg om geen SQL-historie te ondersteunen, suggestie: [kbd]"
-"pma_history[/kbd]"
+"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, voorgesteld: "
+"[kbd]pma_history[/kbd]"
#: setup/lib/messages.inc.php:280
-#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
-msgstr "SQL-query historie tabel"
+msgstr "SQL-query opvolgingstabel"
#: setup/lib/messages.inc.php:281
msgid "Hostname where MySQL server is running"
@@ -7541,7 +7537,7 @@ msgstr "SQL-commando om de beschikbare databases op te vragen"
#: setup/lib/messages.inc.php:299
msgid "SHOW DATABASES command"
-msgstr "SHOW DATABASES commando"
+msgstr "SHOW DATABASES opdracht"
#: setup/lib/messages.inc.php:300
msgid ""
@@ -7564,6 +7560,8 @@ msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
+"Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt "
+"of niet."
#: setup/lib/messages.inc.php:304
#, fuzzy
@@ -7581,15 +7579,18 @@ msgstr ""
msgid "Statements to track"
msgstr "Opdrachten"
+# "statement" hier vertalen is geen goed idee.
#: setup/lib/messages.inc.php:307
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
+"Of een DROP VIEW IF EXISTS statement als de eerste lijn toegevoegd zal "
+"worden bij het aanmaken van een weergave of niet."
#: setup/lib/messages.inc.php:308
msgid "Add DROP VIEW"
-msgstr ""
+msgstr "Voeg DROP VIEW toe"
#: setup/lib/messages.inc.php:309
msgid ""
@@ -8560,344 +8561,3 @@ msgstr "Tabel hernoemen naar"
#~ msgid "See image/jpeg: inline"
#~ msgstr "Zie image/jpeg: inline"
-
-#, fuzzy
-#~| msgid "\"zipped\""
-#~ msgid "zipped"
-#~ msgstr "\"Gezipt\""
-
-#, fuzzy
-#~| msgid "\"gzipped\""
-#~ msgid "gzipped"
-#~ msgstr "\"ge-gzipt\""
-
-#, fuzzy
-#~| msgid "\"bzipped\""
-#~ msgid "bzipped"
-#~ msgstr "\"ge-bzipt\""
-
-#, fuzzy
-#~| msgid "Add custom comment into header (\\n splits lines)"
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr "Voeg een commentaar toe in de header (\\n om regels af te breken"
-
-#~ msgid "and"
-#~ msgstr "en"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "Uitgeschakeld"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "Ingeschakeld"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "Repareer"
-
-#~ msgid "Calendar"
-#~ msgstr "Kalender"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "MySQL 4.0 compatibel"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr ""
-#~ "Standaard configuratiebestand kon niet worden geladen vanuit: \"%1$s\""
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "Creëer een index op kolommen %s "
-
-#, fuzzy
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "Maak tabel"
-
-#, fuzzy
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "Schoon de tabel (\"FLUSH\")"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "Ongeldige serverindex: \"%s\""
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "Beschrijving"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "Schema van de \"%s\" database - Pagina %s"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "De tabel \"%s\" bestaat niet!"
-
-#~ msgid ""
-#~ "This MySQL server works as %s in <b>replication</b> process. For further "
-#~ "information about replication status on the server, please visit the <a "
-#~ "href=\"#replication\">replication section</a>."
-#~ msgstr ""
-#~ "Deze MySQL-server functioneert als %s in een <b>replicatie</b> process. "
-#~ "Kijk voor meer informatie over replicatie in de <a href=\"#replication"
-#~ "\">replication status</a> sectie."
-
-#~ msgid "running on %s"
-#~ msgstr "wordt uitgevoerd op %s"
-
-#~ msgid "The scale factor is too small to fit the schema on one page"
-#~ msgstr "De schaalfactor is te klein om het schema op een pagina te zetten"
-
-#~ msgid ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
-#~ msgstr ""
-#~ "De sessie kan niet foutloos worden gestart. Controleer op foutmeldingen "
-#~ "in de PHP- en webserver-log, en herstel deze."
-
-#, fuzzy
-#~| msgid "Import currencies ($5.00 to 5.00)"
-#~ msgid "Import currencies (.00 to 5.00)"
-#~ msgstr "Valuta importeren ($5.00 naar 5.00)"
-
-#, fuzzy
-#~| msgid ""
-#~| "However on last run no data has been parsed, this usually means "
-#~| "phpMyAdmin won't be able to finish this import unless you increase php "
-#~| "time limits."
-#~ msgid ""
-#~ "However on last run no data has been parsed, this usually means "
-#~ "phpMyAdmin won"
-#~ msgstr ""
-#~ "Tijdens de laatste poging is er geen vooruitgang geboekt, meestal "
-#~ "betekend dit dat phpMyAdmin dit niet af kan maken tenzij de "
-#~ "tijdsrestricties van PHP worden versoepeld."
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~| msgid "Grant all privileges on wildcard name (username\\_%)"
-#~ msgid "Grant all privileges on wildcard name (username_%)"
-#~ msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)"
-
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
-#~ msgid "The %s table doesn"
-#~ msgstr "De tabel \"%s\" bestaat niet!"
-
-#, fuzzy
-#~| msgid "Could not load default configuration from: \"%1$s\""
-#~ msgid "Could not load default configuration from: %1"
-#~ msgstr ""
-#~ "Standaard configuratiebestand kon niet worden geladen vanuit: \"%1$s\""
-
-#, fuzzy
-#~| msgid "Invalid hostname for server %1$s. Please review your configuration."
-#~ msgid "Invalid hostname for server %1. Please review your configuration."
-#~ msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie."
-
-#, fuzzy
-#~| msgid "Error renaming table %1$s to %2$s"
-#~ msgid "Error renaming table %1 to %2"
-#~ msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
-
-#, fuzzy
-#~| msgid ""
-#~| "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~| "extension. Please check your PHP configuration."
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
-#~ "Please check your PHP configuration."
-#~ msgstr ""
-#~ "Kan de [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a]-extensie "
-#~ "niet laden. Controleer de PHP configuratie."
-
-#, fuzzy
-#~| msgid ""
-#~| "This server is not configured as master in a replication process. Would "
-#~| "you like to <a href=\"%s\">configure</a> it?"
-#~ msgid ""
-#~ "This server is not configured as master in a replication process. Would "
-#~ "you like to <a href=%s>configure</a> it?"
-#~ msgstr ""
-#~ "Deze server is niet ingesteld als master in een replicatie proces. Wilt u "
-#~ "dit nu <a href=\"%s\">instellen</a>?"
-
-#, fuzzy
-#~| msgid ""
-#~| "This server is not configured as slave in a replication process. Would "
-#~| "you like to <a href=\"%s\">configure</a> it?"
-#~ msgid ""
-#~ "This server is not configured as slave in a replication process. Would "
-#~ "you like to <a href=%s>configure</a> it?"
-#~ msgstr ""
-#~ "Deze server is niet ingesteld als slave in een replicatie proces. Wilt u "
-#~ "dit nu <a href=\"%s\">instellen</a>?"
-
-#, fuzzy
-#~| msgid "Could not connect to MySQL server"
-#~ msgid "(or the local MySQL server"
-#~ msgstr "Er kan geen verbinding worden gemaakt met de server"
-
-#, fuzzy
-#~| msgid ""
-#~| "There is a chance that you may have found a bug in the SQL parser. "
-#~| "Please examine your query closely, and check that the quotes are correct "
-#~| "and not mis-matched. Other possible failure causes may be that you are "
-#~| "uploading a file with binary outside of a quoted text area. You can also "
-#~| "try your query on the MySQL command line interface. The MySQL server "
-#~| "error output below, if there is any, may also help you in diagnosing the "
-#~| "problem. If you still have problems or if the parser fails where the "
-#~| "command line interface succeeds, please reduce your SQL query input to "
-#~| "the single query that causes problems, and submit a bug report with the "
-#~| "data chunk in the CUT section below:"
-#~ msgid ""
-#~ "There is a chance that you may have found a bug in the SQL parser. Please "
-#~ "examine your query closely, and check that the quotes are correct and not "
-#~ "mis-matched. Other possible failure causes may be that you are uploading "
-#~ "a file with binary outside of a quoted text area. You can also try your "
-#~ "query on the MySQL command line interface. The MySQL server error output "
-#~ "be . "
-#~ msgstr ""
-#~ "Er is een kans dat u een fout heeft aangetroffen in de SQL-parser. Let er "
-#~ "goed op, dat in de query op de correcte plaatsen quotes zijn geplaatst. "
-#~ "Een ander mogelijkheid voor deze foutmelding is dat u het ge-quote "
-#~ "tekstgedeelte in binaire mode heeft geplaatst. U kunt ook uw query "
-#~ "proberen in de command line van MySQL. De MySQL-serverfoutmelding "
-#~ "hieronder, mocht die aanwezig zijn, kan ook helpen met het opsporen van "
-#~ "fouten. Blijft u problemen houden of als de parser fouten geeft terwijl "
-#~ "het goed gaat in de command line van MySQL, probeer dan de SQL-query in "
-#~ "te korten en een bug report met het stukje data te sturen van het CUT "
-#~ "gedeelte hieronder:"
-
-#~ msgctxt "$strStrucCSV"
-#~ msgid "CSV"
-#~ msgstr "CSV gegevens"
-
-#~ msgid "Copy"
-#~ msgstr "Kopieer"
-
-#~ msgid "Delete the users and reload the privileges afterwards."
-#~ msgstr "Verwijder de gebruikers en vernieuw de privileges daarna."
-
-#~ msgid ""
-#~ "This is the cleanest way, but reloading the privileges may take a while."
-#~ msgstr ""
-#~ "Dit is de nette manier, maar het vernieuwen van de privileges kan even "
-#~ "duren."
-
-#~ msgid "has been altered."
-#~ msgstr "is veranderd."
-
-#~ msgid "Microsoft Excel 2000"
-#~ msgstr "Microsoft Excel 2000"
-
-#~ msgid "Internet Explorer does not support this function."
-#~ msgstr "Internet Explorer ondersteurd deze functie niet."
-
-#~ msgid ""
-#~ "The "deleted" users will still be able to access the server as "
-#~ "usual until the privileges are reloaded."
-#~ msgstr ""
-#~ "De "verwijderde" gebruikers zullen de server kunnen gebruiken, "
-#~ "zoals altijd, zolang de privileges nog niet zijn vernieuwd."
-
-#~ msgid "Just delete the users from the privilege tables."
-#~ msgstr "Verwijder gewoon de gebruikers van de privileges tabel."
-
-#~ msgid ""
-#~ "Allows running stored procedures; has no effect in this MySQL version."
-#~ msgstr ""
-#~ "Maakt het mogelijk om opgeslagen procedures uit te voeren; Heeft geen "
-#~ "effect in deze MySQL versie."
-
-#~ msgid "Process list"
-#~ msgstr "Processenlijst"
-
-#~ msgid "Reload privileges"
-#~ msgstr "Ververs rechten"
-
-#~ msgid ""
-#~ "The users will still have the USAGE privilege until the privileges are "
-#~ "reloaded."
-#~ msgstr ""
-#~ "De gebruikers zullen nog steeds het USAGE (gebruik) privilege hebben "
-#~ "zolang de privileges nog niet zijn vernieuwd."
-
-#~ msgid "Native MS Excel format"
-#~ msgstr "Native MS Excel data"
-
-#~ msgid "Alter index(s)"
-#~ msgstr "Index(en) bijwerken"
-
-#~ msgid "Tracking Mechanism"
-#~ msgstr "Tracking-mechanisme"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "Selecteer alles"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "Selecteer alles"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "Invoegen"
-
-#, fuzzy
-#~| msgid "Updated"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "Bijgewerkt"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "Verwijderen"
-
-#~ msgid "%1$d row(s) affected."
-#~ msgstr "%1$d rij(en) bijgewerkt."
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "Jan0"
-
-#~ msgid "Jan1"
-#~ msgstr "Jan1"
-
-#~ msgid "Jan2"
-#~ msgstr "Jan2"
-
-#~ msgid ""
-#~ "Structure Difference' ;\n"
-#~ "$strStructureForView = 'Structure for view"
-#~ msgstr "Structuur verschillen"
diff --git a/po/sl.po b/po/sl.po
index 2454e96..1d2bc6a 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-25 14:30+0200\n"
-"PO-Revision-Date: 2010-05-29 15:31+0200\n"
-"Last-Translator: <dbc334(a)gmail.com>\n"
+"PO-Revision-Date: 2010-05-31 01:57+0200\n"
+"Last-Translator: Domen <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
@@ -2555,6 +2555,10 @@ msgid ""
"table data. The default value is 32MB. This memory is used to cache changes "
"to the handle data (.xtd) and row pointer (.xtr) files."
msgstr ""
+"Količina dodeljenega spomina zapisljivemu predpomnilniku, uporabljenemu za "
+"predpomnjenje podatkov tabele. Privzeta vrednost je 32 MB. Ta spomin se "
+"uporablja za predpomnjenje sprememb datotek oprimkov podatkov (.xtd) in "
+"kazalcev vrstic (.xtr)."
#: libraries/engines/pbxt.lib.php:33
msgid "Log cache size"
@@ -2578,30 +2582,36 @@ msgid ""
"The size of a transaction log before rollover, and a new log is created. The "
"default value is 16MB."
msgstr ""
+"Velikost dnevnika transakcij pred prehodom in ustvarjanjem novega dnevnika. "
+"Privzeta vrednost je 16 MB."
#: libraries/engines/pbxt.lib.php:43
msgid "Transaction buffer size"
-msgstr ""
+msgstr "Velikost medpomnilnika transakcij"
#: libraries/engines/pbxt.lib.php:44
msgid ""
"The size of the global transaction log buffer (the engine allocates 2 "
"buffers of this size). The default is 1MB."
msgstr ""
+"Velikost globalnega medpomnilnika dnevnika transakcij (pogon dodeli dva "
+"medpomnilnika te velikosti). Privzeto je 1 MB."
#: libraries/engines/pbxt.lib.php:48
msgid "Checkpoint frequency"
-msgstr ""
+msgstr "Pogostnost nadzornih točk"
#: libraries/engines/pbxt.lib.php:49
msgid ""
"The amount of data written to the transaction log before a checkpoint is "
"performed. The default value is 24MB."
msgstr ""
+"Količina podatkov, zapisanih v dnevnik transakcij, preden se izvede nadzorna "
+"točka. Privzeta vrednost je 24 MB."
#: libraries/engines/pbxt.lib.php:53
msgid "Data log threshold"
-msgstr ""
+msgstr "Omejitev podatkovnega dnevnika"
#: libraries/engines/pbxt.lib.php:54
msgid ""
@@ -2610,20 +2620,26 @@ msgid ""
"value of this variable can be increased to increase the total amount of data "
"that can be stored in the database."
msgstr ""
+"Največja velikost podatkovnega dnevnika. Privzeta vrednost je 64 MB. PBXT "
+"lahko ustvari največ 32000 podatkovnih dnevnikov, katere uporabljajo vse "
+"tabele. Tako se lahko ta vrednost poveča za povečanje skupne količine "
+"podatkov, ki so lahko shranjeni v zbirki podatkov."
#: libraries/engines/pbxt.lib.php:58
msgid "Garbage threshold"
-msgstr ""
+msgstr "Omejitev smeti"
#: libraries/engines/pbxt.lib.php:59
msgid ""
"The percentage of garbage in a data log file before it is compacted. This is "
"a value between 1 and 99. The default is 50."
msgstr ""
+"Odstotek smeti v dnevniški datoteki, preden je ta stisnjena. Vrednost je med "
+"1 in 99. Privzeto je 50."
#: libraries/engines/pbxt.lib.php:63
msgid "Log buffer size"
-msgstr ""
+msgstr "Velikost medpomnilnika dnevnikov"
#: libraries/engines/pbxt.lib.php:64
msgid ""
@@ -2631,6 +2647,9 @@ msgid ""
"The engine allocates one buffer per thread, but only if the thread is "
"required to write a data log."
msgstr ""
+"Velikost medpomnilnika uporabljenega med pisanjem podatkovnega dnevnika. "
+"Privzeto je 256 MB. Pogon vsaki niti dodeli en medpomnilnik, vendar samo v "
+"primeru, če mora nit zapisovati v podatkovni dnevnik."
#: libraries/engines/pbxt.lib.php:68
msgid "Data file grow size"
@@ -2650,7 +2669,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:78
msgid "Log file count"
-msgstr ""
+msgstr "Število dnevniških datotek"
#: libraries/engines/pbxt.lib.php:79
msgid ""
@@ -2659,6 +2678,10 @@ msgid ""
"will be deleted, otherwise they are renamed and given the next highest "
"number."
msgstr ""
+"Število datotek transakcijskih dnevnikov (pbxt/system/xlog*.xt), ki jih "
+"vzdržuje sistem. Če število dnevnikov presega to vrednost, bodo stari "
+"dnevniki izbrani, v naprotnem primeru pa bodo preimenovani in dodeljena jim "
+"bo naslednja najvišja številka."
#: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88
#: tbl_printview.php:376 tbl_structure.php:737
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4395-gd18a3eb
by Marc Delisle 30 May '10
by Marc Delisle 30 May '10
30 May '10
The branch, master has been updated
via d18a3eb3c01cfc3c559985fe97869bfbb8f3511c (commit)
via cfcec687faaacc74a5318273450c1f14d98bb7e5 (commit)
from 3f1170639eaa53653a1d28f8bce15252fe6f6ea4 (commit)
- Log -----------------------------------------------------------------
commit d18a3eb3c01cfc3c559985fe97869bfbb8f3511c
Merge: 3f1170639eaa53653a1d28f8bce15252fe6f6ea4 cfcec687faaacc74a5318273450c1f14d98bb7e5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun May 30 08:44:33 2010 -0400
Merge branch 'QA_3_3'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/sqlparser.lib.php | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d1ad534..832f8ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -90,6 +90,7 @@ $Id$
+ [lang] Greek update, thanks to Panagiotis Papazoglou - panos78
+ [lang] Updated lot of translation based on work done in master branch.
- bug #3008411 [databases] Last dropped database remains active in navi
+- bug #2986383 [parser] Not all data being shown / counted
3.3.3.0 (2010-05-10)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php
index 349d010..136612f 100644
--- a/libraries/sqlparser.lib.php
+++ b/libraries/sqlparser.lib.php
@@ -2220,6 +2220,10 @@ if (! defined('PMA_MINIMUM_COMMON')) {
$after = '';
$before = '';
}
+ // for example SELECT 1 somealias
+ if ($typearr[1] == 'digit_integer') {
+ $before = ' ';
+ }
if (($typearr[3] == 'alpha_columnType') || ($typearr[3] == 'alpha_identifier')) {
$after .= ' ';
}
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_3-28-gcfcec68
by Marc Delisle 30 May '10
by Marc Delisle 30 May '10
30 May '10
The branch, QA_3_3 has been updated
via cfcec687faaacc74a5318273450c1f14d98bb7e5 (commit)
from 7e5584ed2eff694e6d0b354b684b04412274b59d (commit)
- Log -----------------------------------------------------------------
commit cfcec687faaacc74a5318273450c1f14d98bb7e5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun May 30 08:43:41 2010 -0400
bug #2986383 Not all data being shown / counted
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/sqlparser.lib.php | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index c15c9a6..23a8c38 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ [lang] Greek update, thanks to Panagiotis Papazoglou - panos78
+ [lang] Updated lot of translation based on work done in master branch.
- bug #3008411 [databases] Last dropped database remains active in navi
+- bug #2986383 [parser] Not all data being shown / counted
3.3.3.0 (2010-05-10)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php
index 0974741..53f239a 100644
--- a/libraries/sqlparser.lib.php
+++ b/libraries/sqlparser.lib.php
@@ -2217,6 +2217,10 @@ if (! defined('PMA_MINIMUM_COMMON')) {
$after = '';
$before = '';
}
+ // for example SELECT 1 somealias
+ if ($typearr[1] == 'digit_integer') {
+ $before = ' ';
+ }
if (($typearr[3] == 'alpha_columnType') || ($typearr[3] == 'alpha_identifier')) {
$after .= ' ';
}
hooks/post-receive
--
phpMyAdmin
1
0