From d5eca34f4f8bebc2dcef253fa6dad1aaaaf22546 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Mon, 11 Jul 2011 15:19:14 +0800 Subject: [PATCH 001/960] Try to use qtip to display hint in browse-mode --- js/makegrid.js | 88 +++++++++++++++++++------------------------------- 1 file changed, 33 insertions(+), 55 deletions(-) diff --git a/js/makegrid.js b/js/makegrid.js index 970ed595ef..43955c7eea 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -10,17 +10,16 @@ colOrder: new Array(), // array of column order colVisib: new Array(), // array of column visibility tableCreateTime: null, // table creation time, only available in "Browse tab" - hintShown: false, // true if hint balloon is shown, used by updateHint() method + qtip: null, // qtip API reorderHint: '', // string, hint for column reordering sortHint: '', // string, hint for column sorting markHint: '', // string, hint for column marking colVisibHint: '', // string, hint for column visibility drop-down - showAllColText: '', // string, text for "show all" button under column visibility list showReorderHint: false, showSortHint: false, showMarkHint: false, showColVisibHint: false, - hintIsHiding: false, // true when hint is still shown, but hideHint() already called + showAllColText: '', // string, text for "show all" button under column visibility list visibleHeadersCount: 0, // number of visible data headers // functions @@ -63,8 +62,8 @@ objTop: objPos.top, objLeft: objPos.left }; + this.qtip.hide(); $('body').css('cursor', 'move'); - this.hideHint(); $('body').noSelect(); }, @@ -166,7 +165,7 @@ */ reposRsz: function() { $(this.cRsz).find('div').hide(); - $firstRowCols = $(this.t).find('tr:first th.draggable:visible'); + var $firstRowCols = $(this.t).find('tr:first th.draggable:visible'); for (var n = 0; n < $firstRowCols.length; n++) { $this = $($firstRowCols[n]); $cb = $(g.cRsz).find('div:eq(' + n + ')'); // column border @@ -325,53 +324,14 @@ } // hide the hint if no text - if (!text) { - this.hideHint(); - return; - } + this.qtip.disable(!text && e.type == 'mouseenter'); - $(this.dHint).html(text); - if (!this.hintShown || this.hintIsHiding) { - $(this.dHint) - .stop(true, true) - .css({ - top: e.clientY, - left: e.clientX + 15 - }) - .show('fast'); - this.hintShown = true; - this.hintIsHiding = false; - } + this.qtip.updateContent(text, false); + } else { + this.qtip.disable(true); } }, - /** - * Hide the hint. - */ - hideHint: function() { - if (this.hintShown) { - $(this.dHint) - .stop(true, true) - .hide(300, function() { - g.hintShown = false; - g.hintIsHiding = false; - }); - this.hintIsHiding = true; - } - }, - - /** - * Update hint position. - */ - updateHint: function(e) { - if (this.hintShown) { - $(this.dHint).css({ - top: e.clientY, - left: e.clientX + 15 - }); - } - }, - /** * Toggle column's visibility. * After calling this function and it returns true, afterToggleCol() must be called. @@ -487,7 +447,6 @@ g.cRsz = document.createElement('div'); // column resizer g.cCpy = document.createElement('div'); // column copy, to store copy of dragged column header g.cPointer = document.createElement('div'); // column pointer, used when reordering column - g.dHint = document.createElement('div'); // draggable hint g.cDrop = document.createElement('div'); // column drop-down arrows g.cList = document.createElement('div'); // column visibility list @@ -499,10 +458,6 @@ g.cPointer.className = 'cPointer'; $(g.cPointer).css('visibility', 'hidden'); - // adjust g.dHint - g.dHint.className = 'dHint'; - $(g.dHint).hide(); - // adjust g.cDrop g.cDrop.className = 'cDrop'; @@ -632,6 +587,22 @@ }); g.reposRsz(); + // bind event to update currently hovered qtip API + $(t).find('th').mouseenter(function(e) { + g.qtip = $(this).qtip('api'); + }); + + // create qtip for each with draggable class + $(t).find('th.draggable').qtip({ + style: { + tip: true, + name: 'dark' + }, + position: { + corner: { target: 'topRight', tooltip: 'bottomLeft' } + } + }); + // register events if (g.reorderHint) { // make sure columns is reorderable $(t).find('th.draggable') @@ -656,6 +627,15 @@ } if ($firstRowCols.length > 1) { $(t).find('th:not(.draggable)') + .qtip({ + style: { + tip: true, + name: 'dark' + }, + position: { + corner: { target: 'topRight', tooltip: 'bottomLeft' } + } + }) .mouseenter(function(e) { g.showColVisibHint = true; g.showHint(e); @@ -686,7 +666,6 @@ }); $(document).mousemove(function(e) { g.dragMove(e); - g.updateHint(e); }); $(document).mouseup(function(e) { g.dragEnd(e); @@ -708,7 +687,6 @@ $(g.gDiv).append(g.cPointer); $(g.gDiv).append(g.cDrop); $(g.gDiv).append(g.cList); - $(g.gDiv).append(g.dHint); $(g.gDiv).append(g.cCpy); // some adjustment From 66db8f21a16d885f9450531be8503ab953d474a4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:32:41 +0200 Subject: [PATCH 002/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index c9ec4f401c..56502bd413 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-07 19:23+0200\n" +"PO-Revision-Date: 2011-07-13 17:32+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -2213,10 +2213,9 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" #: libraries/common.lib.php:2456 -#, fuzzy #| msgid "Click to select" msgid "Click to toggle" -msgstr "Seçmek için tıklayın" +msgstr "Değiştirmek için tıklayın" #: libraries/common.lib.php:2727 libraries/common.lib.php:2734 #: libraries/common.lib.php:2921 libraries/config/setup.forms.php:296 From 5a4b3447b651be3169b8643afabe5590bb002d41 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:36:44 +0200 Subject: [PATCH 003/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 56502bd413..ebf1980fb1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:32+0200\n" +"PO-Revision-Date: 2011-07-13 17:36+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6539,10 +6539,9 @@ msgid "Generate Password" msgstr "Parola Üret" #: libraries/rte/rte_events.lib.php:24 -#, fuzzy #| msgid "Add an event" msgid "Add event" -msgstr "Bir olay ekle" +msgstr "Olay ekle" #: libraries/rte/rte_events.lib.php:26 #, php-format From 4b3aaa7f39c7283f2505d8c78a990fcb52e7bd9b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:36:49 +0200 Subject: [PATCH 004/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index ebf1980fb1..0438e65d7f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6549,10 +6549,9 @@ msgid "Export of event %s" msgstr "%s olayını dışa aktarma" #: libraries/rte/rte_events.lib.php:27 -#, fuzzy #| msgid "Event" msgid "event" -msgstr "Olay" +msgstr "olay" #: libraries/rte/rte_events.lib.php:28 #, fuzzy From 273cd8e7090b6eb1870efa10aeb66d2d5348bebb Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:37:22 +0200 Subject: [PATCH 005/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0438e65d7f..dac4508613 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:36+0200\n" +"PO-Revision-Date: 2011-07-13 17:37+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6554,10 +6554,9 @@ msgid "event" msgstr "olay" #: libraries/rte/rte_events.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new event" -msgstr "Yeni bir yordam oluşturmak için gerekli izinlere sahip değilsiniz" +msgstr "Yeni bir olay oluşturmak için gerekli izinlere sahip değilsiniz" #: libraries/rte/rte_events.lib.php:29 #, fuzzy, php-format From 6fe4793dec5f642823786bf7c56a2dba02109d4f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:37:50 +0200 Subject: [PATCH 006/960] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index dac4508613..71455e83d4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6559,10 +6559,10 @@ msgid "You do not have the necessary privileges to create a new event" msgstr "Yeni bir olay oluşturmak için gerekli izinlere sahip değilsiniz" #: libraries/rte/rte_events.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" -msgstr "%s veritabanında %s adıyla olay bulunamadı" +msgstr "%2$s veritabanında %1$s adıyla olay bulunamadı" #: libraries/rte/rte_events.lib.php:30 msgid "There are no events to display." From 0e4a7cde21a155318a1fc44425ae828b4ab6b6f4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:38:07 +0200 Subject: [PATCH 007/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 71455e83d4..9244b3d1fd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:37+0200\n" +"PO-Revision-Date: 2011-07-13 17:38+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6580,10 +6580,9 @@ msgid "The following query has failed: \"%s\"" msgstr "Aşağıdaki sorgu başarısız oldu: \"%s\"" #: libraries/rte/rte_events.lib.php:105 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." -msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu." +msgstr "Üzgünüm, kaldırılmış olayı geri yükleme başarısız oldu." #: libraries/rte/rte_events.lib.php:106 libraries/rte/rte_routines.lib.php:274 #: libraries/rte/rte_triggers.lib.php:98 From 13ffcabeffce4756966d68c7cf4aa9ef6973e05c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:38:17 +0200 Subject: [PATCH 008/960] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9244b3d1fd..3105391287 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6590,10 +6590,10 @@ msgid "The backed up query was:" msgstr "Yedeklenmiş sorgu:" #: libraries/rte/rte_events.lib.php:110 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." -msgstr "Yordam %1$s değiştirildi." +msgstr "Olay %1$s değiştirildi." #: libraries/rte/rte_events.lib.php:122 #, fuzzy, php-format From baf77c1ef178d7e98477c6d2a32cc9ca4e421eb4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:38:27 +0200 Subject: [PATCH 009/960] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 3105391287..52e1723e9d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6596,10 +6596,10 @@ msgid "Event %1$s has been modified." msgstr "Olay %1$s değiştirildi." #: libraries/rte/rte_events.lib.php:122 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Event %1$s has been created." -msgstr "Tablo %1$s oluşturuldu." +msgstr "Olay %1$s oluşturuldu." #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:299 #: libraries/rte/rte_triggers.lib.php:122 From af52274136a915841cbbbee85db456438bcaed77 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:39:24 +0200 Subject: [PATCH 010/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 52e1723e9d..c33042fb55 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:38+0200\n" +"PO-Revision-Date: 2011-07-13 17:39+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6607,10 +6607,9 @@ msgid "One or more errors have occured while processing your request:" msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" #: libraries/rte/rte_events.lib.php:170 -#, fuzzy #| msgid "Create view" msgid "Create event" -msgstr "Görünüm oluştur" +msgstr "Olay oluştur" #: libraries/rte/rte_events.lib.php:174 #, fuzzy From 64f9fc95009fd32197369483314523ee20e14e98 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:39:34 +0200 Subject: [PATCH 011/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index c33042fb55..e281451ae0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6612,10 +6612,9 @@ msgid "Create event" msgstr "Olay oluştur" #: libraries/rte/rte_events.lib.php:174 -#, fuzzy #| msgid "Edit server" msgid "Edit event" -msgstr "Sunucuyu düzenle" +msgstr "Olay düzenle" #: libraries/rte/rte_events.lib.php:201 libraries/rte/rte_routines.lib.php:375 #: libraries/rte/rte_routines.lib.php:1326 From 5daedc8f93e4091a5b60709260a1a805e4c80d5a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:40:18 +0200 Subject: [PATCH 012/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index e281451ae0..0f7d56291d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:39+0200\n" +"PO-Revision-Date: 2011-07-13 17:40+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6629,10 +6629,9 @@ msgid "Details" msgstr "Ayrıntılar" #: libraries/rte/rte_events.lib.php:363 -#, fuzzy #| msgid "Event type" msgid "Event name" -msgstr "Olay türü" +msgstr "Olay adı" #: libraries/rte/rte_events.lib.php:384 server_binlog.php:182 msgid "Event type" From 7f6fc8bf536f5fd8a6189bca61c0519b3b397e21 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:40:47 +0200 Subject: [PATCH 013/960] Translation update done using Pootle. --- po/tr.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 0f7d56291d..daf58ee472 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6643,7 +6643,6 @@ msgid "Change to %s" msgstr "%s'a değiştir" #: libraries/rte/rte_events.lib.php:411 -#, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "Çalıştır" From ed8612bcbb52f93cfa789b570f6e538f55cb6aac Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:48:17 +0200 Subject: [PATCH 014/960] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index daf58ee472..ec528a95fc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:40+0200\n" +"PO-Revision-Date: 2011-07-13 17:48+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6645,7 +6645,7 @@ msgstr "%s'a değiştir" #: libraries/rte/rte_events.lib.php:411 #| msgid "Execute" msgid "Execute at" -msgstr "Çalıştır" +msgstr "Çalıştırma" #: libraries/rte/rte_events.lib.php:419 #, fuzzy From cfc0770f6d2b3569c78cdb40edcbb46321771997 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:48:44 +0200 Subject: [PATCH 015/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index ec528a95fc..82614eddf9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6648,10 +6648,9 @@ msgid "Execute at" msgstr "Çalıştırma" #: libraries/rte/rte_events.lib.php:419 -#, fuzzy #| msgid "Execute" msgid "Execute every" -msgstr "Çalıştır" +msgstr "Çalıştır; her" #: libraries/rte/rte_events.lib.php:438 #, fuzzy From 0e4e75a51e562c44b8a3b1873975a8d6a77ec9ca Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:48:51 +0200 Subject: [PATCH 016/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 82614eddf9..a0501edf18 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6645,7 +6645,7 @@ msgstr "%s'a değiştir" #: libraries/rte/rte_events.lib.php:411 #| msgid "Execute" msgid "Execute at" -msgstr "Çalıştırma" +msgstr "Çalıştır" #: libraries/rte/rte_events.lib.php:419 #| msgid "Execute" From a55fe56e0b3a61d3899f8712d644619912a6de29 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:49:07 +0200 Subject: [PATCH 017/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index a0501edf18..44f623a921 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:48+0200\n" +"PO-Revision-Date: 2011-07-13 17:49+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6653,10 +6653,9 @@ msgid "Execute every" msgstr "Çalıştır; her" #: libraries/rte/rte_events.lib.php:438 -#, fuzzy #| msgid "Startup" msgid "Start" -msgstr "Başlangıç" +msgstr "Başlama" #: libraries/rte/rte_events.lib.php:454 libraries/rte/rte_routines.lib.php:952 #: libraries/rte/rte_triggers.lib.php:356 From 3d72f3a7ef92fb044012a96198ffede57ee420a0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:50:01 +0200 Subject: [PATCH 018/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 44f623a921..e1f0e5b8cc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:49+0200\n" +"PO-Revision-Date: 2011-07-13 17:50+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6663,10 +6663,9 @@ msgid "Definition" msgstr "Tanım" #: libraries/rte/rte_events.lib.php:460 -#, fuzzy #| msgid "complete inserts" msgid "On completion preserve" -msgstr "tam eklemeler" +msgstr "Tamamlamada koruma" #: libraries/rte/rte_events.lib.php:464 libraries/rte/rte_routines.lib.php:962 #: libraries/rte/rte_triggers.lib.php:362 From 6a1e8c3cb20cd7f69d59bcf3cf53f040d76881b9 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:50:54 +0200 Subject: [PATCH 019/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index e1f0e5b8cc..5f94ade3fc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6676,7 +6676,7 @@ msgstr "Tanımlayıcı" #: libraries/rte/rte_routines.lib.php:1024 #: libraries/rte/rte_triggers.lib.php:400 msgid "The definer must be in the \"username@hostname\" format" -msgstr "" +msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır" #: libraries/rte/rte_events.lib.php:514 #, fuzzy From bc792cbff12eba235481818d8bddb1e83c181b0d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:51:07 +0200 Subject: [PATCH 020/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5f94ade3fc..6925e5687a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:50+0200\n" +"PO-Revision-Date: 2011-07-13 17:51+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6679,10 +6679,9 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır" #: libraries/rte/rte_events.lib.php:514 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide an event name" -msgstr "Bir yordam adı vermek zorundasınız" +msgstr "Bir olay adı vermek zorundasınız" #: libraries/rte/rte_events.lib.php:526 #, fuzzy From 5a8adbb8638344232201cbacba1f983b7106e14a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:52:11 +0200 Subject: [PATCH 021/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 6925e5687a..308847adb1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:51+0200\n" +"PO-Revision-Date: 2011-07-13 17:52+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6684,10 +6684,9 @@ msgid "You must provide an event name" msgstr "Bir olay adı vermek zorundasınız" #: libraries/rte/rte_events.lib.php:526 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." -msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız." +msgstr "Her olay için geçerli aralık değeri vermek zorundasınız." #: libraries/rte/rte_events.lib.php:538 #, fuzzy From c776357d3482622f2cbe8c80fa806dabc28645c6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:52:58 +0200 Subject: [PATCH 022/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 308847adb1..374002f7bd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6689,10 +6689,9 @@ msgid "You must provide a valid interval value for the event." msgstr "Her olay için geçerli aralık değeri vermek zorundasınız." #: libraries/rte/rte_events.lib.php:538 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." -msgstr "Bir yordam tanımı sağlamalısınız." +msgstr "Olay için geçerli bir çalıştırma zamanı vermek zorundasınız." #: libraries/rte/rte_events.lib.php:542 #, fuzzy From ab7a739e14b742c0b406eae77f2421a9a72ac754 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:53:32 +0200 Subject: [PATCH 023/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 374002f7bd..1cac5f60c0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:52+0200\n" +"PO-Revision-Date: 2011-07-13 17:53+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6694,10 +6694,9 @@ msgid "You must provide a valid execution time for the event." msgstr "Olay için geçerli bir çalıştırma zamanı vermek zorundasınız." #: libraries/rte/rte_events.lib.php:542 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." -msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız." +msgstr "Olay için geçerli bir tür vermek zorundasınız." #: libraries/rte/rte_events.lib.php:561 #, fuzzy From 935c71bfe3ff0589660adfe4a9abd63bef09b0e1 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:03 +0200 Subject: [PATCH 024/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 1cac5f60c0..c1556234a0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:53+0200\n" +"PO-Revision-Date: 2011-07-13 17:54+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6699,10 +6699,9 @@ msgid "You must provide a valid type for the event." msgstr "Olay için geçerli bir tür vermek zorundasınız." #: libraries/rte/rte_events.lib.php:561 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide an event definition." -msgstr "Bir yordam tanımı sağlamalısınız." +msgstr "Bir olay tanımı vermek zorundasınız." #: libraries/rte/rte_footer.lib.php:29 msgid "New" From bccc4c7bd94b44bc0947b7dbedcb95a6335ac37e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:08 +0200 Subject: [PATCH 025/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index c1556234a0..444d8beaf5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6705,7 +6705,7 @@ msgstr "Bir olay tanımı vermek zorundasınız." #: libraries/rte/rte_footer.lib.php:29 msgid "New" -msgstr "" +msgstr "Yeni" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" From 738aa3ebff04a705186aa9ea4acc0445bbe9c4fc Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:14 +0200 Subject: [PATCH 026/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 444d8beaf5..a8436d4ae2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6709,7 +6709,7 @@ msgstr "Yeni" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" -msgstr "" +msgstr "KAPALI" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" From 4d09924bdfb43e90b4653d7e18be0e1df1c3bd64 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:19 +0200 Subject: [PATCH 027/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index a8436d4ae2..a8d5bf2764 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6713,7 +6713,7 @@ msgstr "KAPALI" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" -msgstr "" +msgstr "AÇIK" #: libraries/rte/rte_footer.lib.php:108 #, fuzzy From c2488b59949537654dc26a0320498d7a89ab2fc4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:33 +0200 Subject: [PATCH 028/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index a8d5bf2764..cb70da1e82 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6716,10 +6716,9 @@ msgid "ON" msgstr "AÇIK" #: libraries/rte/rte_footer.lib.php:108 -#, fuzzy #| msgid "The event scheduler is enabled" msgid "Event scheduler status" -msgstr "Olay zamanlayıcısı etkin" +msgstr "Olay zamanlayıcısı durumu" #: libraries/rte/rte_list.lib.php:52 #, fuzzy From 9e52a367ac1c1d580faf08e717c3a6ca45568320 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:41 +0200 Subject: [PATCH 029/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index cb70da1e82..5de9880859 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6721,10 +6721,9 @@ msgid "Event scheduler status" msgstr "Olay zamanlayıcısı durumu" #: libraries/rte/rte_list.lib.php:52 -#, fuzzy #| msgid "Return type" msgid "Returns" -msgstr "Dönüş türü" +msgstr "Dönüşler" #: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:328 #: server_status.php:800 sql.php:943 From 1a66c1db36db282f44d0f4d976be4b5ddeab5083 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:54:54 +0200 Subject: [PATCH 030/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5de9880859..3a89974c60 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6744,10 +6744,9 @@ msgid "Export of routine %s" msgstr "%s yordamını dışa aktarma" #: libraries/rte/rte_routines.lib.php:27 -#, fuzzy #| msgid "Routines" msgid "routine" -msgstr "Yordamlar" +msgstr "yordam" #: libraries/rte/rte_routines.lib.php:28 msgid "You do not have the necessary privileges to create a new routine" From b4675960a2f68c006924be3e4bfd81f13dd7aae6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:55:18 +0200 Subject: [PATCH 031/960] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 3a89974c60..d34001e333 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:54+0200\n" +"PO-Revision-Date: 2011-07-13 17:55+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6863,8 +6863,8 @@ msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -"ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/" -"değerler sağlamalısınız." +"ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için " +"uzunluk/değerler vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1096 msgid "You must provide a name and a type for each routine parameter." From 21e76ff91cd825546b4bd14329193083d3cf6bb6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:55:29 +0200 Subject: [PATCH 032/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index d34001e333..86a718dd43 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6868,7 +6868,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1096 msgid "You must provide a name and a type for each routine parameter." -msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız." +msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1121 #, fuzzy From 2136a301f3abd6593afc8e4708488c24cc3c0253 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:56:23 +0200 Subject: [PATCH 033/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 86a718dd43..3d39277c1a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:55+0200\n" +"PO-Revision-Date: 2011-07-13 17:56+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6871,10 +6871,9 @@ msgid "You must provide a name and a type for each routine parameter." msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1121 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." -msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız." +msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1171 msgid "You must provide a routine definition." From a4893ff67c14e12f24dd6197cea9e85217ffb613 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:56:31 +0200 Subject: [PATCH 034/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 3d39277c1a..5bded00e7d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6877,7 +6877,7 @@ msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1171 msgid "You must provide a routine definition." -msgstr "Bir yordam tanımı sağlamalısınız." +msgstr "Bir yordam tanımı vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1260 #, php-format From b4c4d07c2379a68f0cbc5ced25ea942a0d0b0831 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:57:20 +0200 Subject: [PATCH 035/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5bded00e7d..642c231f5b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:56+0200\n" +"PO-Revision-Date: 2011-07-13 17:57+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6987,10 +6987,9 @@ msgid "You must provide a valid timing for the trigger" msgstr "Bir yordam adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:417 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" -msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız." +msgstr "Tetikleyici için geçerli bir olay vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:423 #, fuzzy From be237e3dfd4049cbf56ed22cd353e839f71bccfc Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:57:44 +0200 Subject: [PATCH 036/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 642c231f5b..a46fb0372d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6998,10 +6998,9 @@ msgid "You must provide a valid table name" msgstr "Bir yordam adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:429 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." -msgstr "Bir yordam tanımı sağlamalısınız." +msgstr "Bir tetikleyici tanımı vermek zorundasınız." #: libraries/schema/Dia_Relation_Schema.class.php:222 #: libraries/schema/Eps_Relation_Schema.class.php:395 From c6ae975223ee44e0601ed9d32e8bb780936ffa2d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:58:41 +0200 Subject: [PATCH 037/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index a46fb0372d..fa7409fbbd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:57+0200\n" +"PO-Revision-Date: 2011-07-13 17:58+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6975,10 +6975,9 @@ msgid "Trigger name" msgstr "Tetikleyiciler" #: libraries/rte/rte_triggers.lib.php:407 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a trigger name" -msgstr "Bir yordam adı vermek zorundasınız" +msgstr "Bir tetikleyici adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:412 #, fuzzy From 0e4e7cd07d034563c8c20d471ff93e2f9e11691f Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:59:21 +0200 Subject: [PATCH 038/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index fa7409fbbd..a7287c8f30 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:58+0200\n" +"PO-Revision-Date: 2011-07-13 17:59+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6980,10 +6980,9 @@ msgid "You must provide a trigger name" msgstr "Bir tetikleyici adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:412 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" -msgstr "Bir yordam adı vermek zorundasınız" +msgstr "Tetikleyici için geçerli bir zamanlama vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:417 #| msgid "You must provide a name and a type for each routine parameter." From ac1c8ea8925e2fc4c7d414b383c898552f56464a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 17:59:45 +0200 Subject: [PATCH 039/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index a7287c8f30..edbaeb7c4c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6990,10 +6990,9 @@ msgid "You must provide a valid event for the trigger" msgstr "Tetikleyici için geçerli bir olay vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:423 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid table name" -msgstr "Bir yordam adı vermek zorundasınız" +msgstr "Geçerli bir tablo adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:429 #| msgid "You must provide a routine definition." From 469e7be5e0a153e02a576934ee9094a0b432293c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:00:12 +0200 Subject: [PATCH 040/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index edbaeb7c4c..7e56b14317 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 17:59+0200\n" +"PO-Revision-Date: 2011-07-13 18:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6906,10 +6906,9 @@ msgid "Function" msgstr "İşlev" #: libraries/rte/rte_triggers.lib.php:24 -#, fuzzy #| msgid "Add a trigger" msgid "Add trigger" -msgstr "Bir tetikleyici ekle" +msgstr "Tetikleyici ekle" #: libraries/rte/rte_triggers.lib.php:26 #, php-format From 4ab7c1ab30cab7ad58a35b9057f7e753c2a8f802 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:00:21 +0200 Subject: [PATCH 041/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 7e56b14317..d5f731cd12 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6916,10 +6916,9 @@ msgid "Export of trigger %s" msgstr "%s tetikleyicisini dışa aktarma" #: libraries/rte/rte_triggers.lib.php:27 -#, fuzzy #| msgid "Triggers" msgid "trigger" -msgstr "Tetikleyiciler" +msgstr "tetikleyici" #: libraries/rte/rte_triggers.lib.php:28 #, fuzzy From 2b3505b7eb2a065a2dad760ffae878fbab840268 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:00:47 +0200 Subject: [PATCH 042/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index d5f731cd12..5eb58c0918 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6921,10 +6921,9 @@ msgid "trigger" msgstr "tetikleyici" #: libraries/rte/rte_triggers.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new trigger" -msgstr "Yeni bir yordam oluşturmak için gerekli izinlere sahip değilsiniz" +msgstr "Yeni bir tetikleyici oluşturmak için gerekli izinlere sahip değilsiniz" #: libraries/rte/rte_triggers.lib.php:29 #, fuzzy, php-format From eea7c9bb620017ee62492d4ddc0c398ffbe16db6 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:04:36 +0200 Subject: [PATCH 043/960] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5eb58c0918..5486b085ce 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 18:00+0200\n" +"PO-Revision-Date: 2011-07-13 18:04+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6926,10 +6926,10 @@ msgid "You do not have the necessary privileges to create a new trigger" msgstr "Yeni bir tetikleyici oluşturmak için gerekli izinlere sahip değilsiniz" #: libraries/rte/rte_triggers.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" -msgstr "%1$s veritabanında %2$s adıyla yordam bulunamadı" +msgstr "%2$s veritabanında %1$s adıyla tetikleyici bulunamadı" #: libraries/rte/rte_triggers.lib.php:30 msgid "There are no triggers to display." From 45cf43f1cec3a6fc9e6a97af440b4774137a149d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:05:03 +0200 Subject: [PATCH 044/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5486b085ce..5f2d8c8b29 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 18:04+0200\n" +"PO-Revision-Date: 2011-07-13 18:05+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6936,10 +6936,9 @@ msgid "There are no triggers to display." msgstr "Görüntülemek için tetikleyiciler yok." #: libraries/rte/rte_triggers.lib.php:97 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." -msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu." +msgstr "Üzgünüm, kaldırılmış tetikleyiciyi geri yükleme başarısız oldu." #: libraries/rte/rte_triggers.lib.php:102 #, fuzzy, php-format From 8521e834c9ad9a32c7fbc18ff3e17ae6964aeaf1 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:05:31 +0200 Subject: [PATCH 045/960] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5f2d8c8b29..a69fb2a753 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6941,10 +6941,10 @@ msgid "Sorry, we failed to restore the dropped trigger." msgstr "Üzgünüm, kaldırılmış tetikleyiciyi geri yükleme başarısız oldu." #: libraries/rte/rte_triggers.lib.php:102 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." -msgstr "Yordam %1$s değiştirildi." +msgstr "Tetikleyici %1$s değiştirildi." #: libraries/rte/rte_triggers.lib.php:114 #, fuzzy, php-format From d6d2106e1fcc50c7bac0a752a778a6843ff80e43 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:05:48 +0200 Subject: [PATCH 046/960] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index a69fb2a753..b1753fa569 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6947,10 +6947,10 @@ msgid "Trigger %1$s has been modified." msgstr "Tetikleyici %1$s değiştirildi." #: libraries/rte/rte_triggers.lib.php:114 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." -msgstr "Tablo %1$s oluşturuldu." +msgstr "Tetikleyici %1$s oluşturuldu." #: libraries/rte/rte_triggers.lib.php:165 #, fuzzy From d37cec5b94f31f76c60486d008402e7bd49f6ff7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:05:57 +0200 Subject: [PATCH 047/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index b1753fa569..77d025006d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6953,10 +6953,9 @@ msgid "Trigger %1$s has been created." msgstr "Tetikleyici %1$s oluşturuldu." #: libraries/rte/rte_triggers.lib.php:165 -#, fuzzy #| msgid "Create view" msgid "Create trigger" -msgstr "Görünüm oluştur" +msgstr "Tetikleyici oluştur" #: libraries/rte/rte_triggers.lib.php:169 #, fuzzy From 014355fd9ebff80afb096c70b59065a36df6eca4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:06:04 +0200 Subject: [PATCH 048/960] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 77d025006d..39d5130956 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 18:05+0200\n" +"PO-Revision-Date: 2011-07-13 18:06+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6958,10 +6958,9 @@ msgid "Create trigger" msgstr "Tetikleyici oluştur" #: libraries/rte/rte_triggers.lib.php:169 -#, fuzzy #| msgid "Add a trigger" msgid "Edit trigger" -msgstr "Bir tetikleyici ekle" +msgstr "Tetikleyici ekle" #: libraries/rte/rte_triggers.lib.php:309 #, fuzzy From 82cc1fd0a9538f1327d59ee7770f45bc43bd17b3 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:06:16 +0200 Subject: [PATCH 049/960] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 39d5130956..cb332e2476 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6960,7 +6960,7 @@ msgstr "Tetikleyici oluştur" #: libraries/rte/rte_triggers.lib.php:169 #| msgid "Add a trigger" msgid "Edit trigger" -msgstr "Tetikleyici ekle" +msgstr "Tetikleyiciyi düzenle" #: libraries/rte/rte_triggers.lib.php:309 #, fuzzy From 28cd1e8f92afd3eba040e0bc9224198ed91e6f65 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 13 Jul 2011 18:06:23 +0200 Subject: [PATCH 050/960] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index cb332e2476..8b7b31e0e3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6963,10 +6963,9 @@ msgid "Edit trigger" msgstr "Tetikleyiciyi düzenle" #: libraries/rte/rte_triggers.lib.php:309 -#, fuzzy #| msgid "Triggers" msgid "Trigger name" -msgstr "Tetikleyiciler" +msgstr "Tetikleyici adı" #: libraries/rte/rte_triggers.lib.php:407 #| msgid "You must provide a routine name" From b31412575985b8f0caa191a1a4e3d04113f7b1ec Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Wed, 13 Jul 2011 23:56:41 +0700 Subject: [PATCH 051/960] Hint in browse-mode: Add PMA_createqTip function in 'function.js' file and make qTip style to match previous hint style --- js/functions.js | 39 +++++++++++++++++++++++++++++++++++++++ js/makegrid.js | 25 +++++-------------------- 2 files changed, 44 insertions(+), 20 deletions(-) diff --git a/js/functions.js b/js/functions.js index 898389efe9..bf695367c3 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2702,3 +2702,42 @@ $(document).ready(function() { }; //end noSelect })(jQuery); +/** + * Create default PMA tooltip for the element specified. The default appearance + * can be overriden by specifying optional "options" parameter (see qTip options). + */ +function PMA_createqTip($elements, content, options) { + var o = { + content: content, + style: { + background: '#333', + border: { + radius: 5 + }, + fontSize: '0.8em', + padding: '0 0.5em', + name: 'dark' + }, + position: { + target: 'mouse', + corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, + adjust: { x: 20 } + }, + show: { + delay: 0, + effect: { + type: 'grow', + length: 100 + } + }, + hide: { + effect: { + type: 'grow', + length: 150 + } + } + } + + $elements.qtip($.extend(true, o, options)); +} + diff --git a/js/makegrid.js b/js/makegrid.js index 43955c7eea..3fb22466c2 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -593,15 +593,7 @@ }); // create qtip for each with draggable class - $(t).find('th.draggable').qtip({ - style: { - tip: true, - name: 'dark' - }, - position: { - corner: { target: 'topRight', tooltip: 'bottomLeft' } - } - }); + PMA_createqTip($(t).find('th.draggable')); // register events if (g.reorderHint) { // make sure columns is reorderable @@ -626,17 +618,10 @@ }); } if ($firstRowCols.length > 1) { - $(t).find('th:not(.draggable)') - .qtip({ - style: { - tip: true, - name: 'dark' - }, - position: { - corner: { target: 'topRight', tooltip: 'bottomLeft' } - } - }) - .mouseenter(function(e) { + var $colVisibTh = $(t).find('th:not(.draggable)'); + + PMA_createqTip($colVisibTh); + $colVisibTh.mouseenter(function(e) { g.showColVisibHint = true; g.showHint(e); }) From b2e4728fc89a302ff5607fe4cb6c6bf848db30de Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Wed, 13 Jul 2011 23:59:50 +0700 Subject: [PATCH 052/960] Change showHint function name to updateHint (in file makegrid.js) --- js/makegrid.js | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/js/makegrid.js b/js/makegrid.js index 3fb22466c2..a5bbdb89cf 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -300,9 +300,10 @@ }, /** - * Show hint with the text supplied. + * Update current hint using the boolean values (showReorderHint, showSortHint, etc.). + * It will hide the hint if all the boolean values is false. */ - showHint: function(e) { + updateHint: function(e) { if (!this.colRsz && !this.colMov) { // if not resizing or dragging var text = ''; if (this.showReorderHint && this.reorderHint) { @@ -610,11 +611,11 @@ } else { $(this).css('cursor', 'inherit'); } - g.showHint(e); + g.updateHint(e); }) .mouseleave(function(e) { g.showReorderHint = false; - g.showHint(e); + g.updateHint(e); }); } if ($firstRowCols.length > 1) { @@ -623,31 +624,31 @@ PMA_createqTip($colVisibTh); $colVisibTh.mouseenter(function(e) { g.showColVisibHint = true; - g.showHint(e); + g.updateHint(e); }) .mouseleave(function(e) { g.showColVisibHint = false; - g.showHint(e); + g.updateHint(e); }); } $(t).find('th.draggable a') .attr('title', '') // hide default tooltip for sorting .mouseenter(function(e) { g.showSortHint = true; - g.showHint(e); + g.updateHint(e); }) .mouseleave(function(e) { g.showSortHint = false; - g.showHint(e); + g.updateHint(e); }); $(t).find('th.marker') .mouseenter(function(e) { g.showMarkHint = true; - g.showHint(e); + g.updateHint(e); }) .mouseleave(function(e) { g.showMarkHint = false; - g.showHint(e); + g.updateHint(e); }); $(document).mousemove(function(e) { g.dragMove(e); From 26e20d8da38e8223f6a7464ba9493de097915ff8 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Thu, 14 Jul 2011 00:20:17 +0700 Subject: [PATCH 053/960] Fixed qTip conflict with column highlighting in horizontal mode --- js/sql.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/js/sql.js b/js/sql.js index de0151714a..ad37a72a35 100644 --- a/js/sql.js +++ b/js/sql.js @@ -1171,9 +1171,10 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings, } /** - * Starting from some th, change the class of all td under it + * Starting from some th, change the class of all td under it. + * If isAddClass is specified, it will be used to determine whether to add or remove the class. */ -function PMA_changeClassForColumn($this_th, newclass) { +function PMA_changeClassForColumn($this_th, newclass, isAddClass) { // index 0 is the th containing the big T var th_index = $this_th.index(); var has_big_t = !$this_th.closest('tr').children(':first').hasClass('column_heading'); @@ -1182,12 +1183,10 @@ function PMA_changeClassForColumn($this_th, newclass) { th_index--; } var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')'); - if ($this_th.data('has_class_'+newclass)) { - $tds.removeClass(newclass); - $this_th.data('has_class_'+newclass, false); + if (isAddClass == undefined) { + $tds.toggleClass(newclass); } else { - $tds.addClass(newclass); - $this_th.data('has_class_'+newclass, true); + $tds.toggleClass(newclass, isAddClass); } } @@ -1204,8 +1203,8 @@ $(document).ready(function() { /** * vertical column highlighting in horizontal mode when hovering over the column header */ - $('.column_heading.pointer').live('hover', function() { - PMA_changeClassForColumn($(this), 'hover'); + $('.column_heading.pointer').live('hover', function(e) { + PMA_changeClassForColumn($(this), 'hover', e.type == 'mouseenter'); }); /** From 7e5c10887c4c310a56c790b81afabebfbe670c68 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:30:25 +0200 Subject: [PATCH 054/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index aee617b4f4..1694baee52 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-11 20:39+0200\n" +"PO-Revision-Date: 2011-07-13 19:30+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2945,7 +2945,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" -msgstr "" +msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" #: libraries/config/messages.inc.php:160 msgid "Developer" From 2a29fa1b745c360cc6d560f34edb1f9625684cf4 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:30:37 +0200 Subject: [PATCH 055/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 1694baee52..aabf044ce8 100644 --- a/po/br.po +++ b/po/br.po @@ -2949,7 +2949,7 @@ msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" #: libraries/config/messages.inc.php:160 msgid "Developer" -msgstr "" +msgstr "Diorroer" #: libraries/config/messages.inc.php:161 msgid "Settings for phpMyAdmin developers" From 43dcabe0ba87082ca575b3727f685c36df0feecf Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:30:58 +0200 Subject: [PATCH 056/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index aabf044ce8..6a6ede401b 100644 --- a/po/br.po +++ b/po/br.po @@ -2953,7 +2953,7 @@ msgstr "Diorroer" #: libraries/config/messages.inc.php:161 msgid "Settings for phpMyAdmin developers" -msgstr "" +msgstr "Arventennoù evit diorroerien phpMyAdmin" #: libraries/config/messages.inc.php:162 msgid "Edit mode" From 01761c7c645bc2545775f9412e9ab687358e4e73 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:31:11 +0200 Subject: [PATCH 057/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 6a6ede401b..ae2e6860f6 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:30+0200\n" +"PO-Revision-Date: 2011-07-13 19:31+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2957,7 +2957,7 @@ msgstr "Arventennoù evit diorroerien phpMyAdmin" #: libraries/config/messages.inc.php:162 msgid "Edit mode" -msgstr "" +msgstr "Mod aozañ" #: libraries/config/messages.inc.php:163 msgid "Customize edit mode" From 0839d2242ade292a34a2a2e275b153a24c69ea4b Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:31:23 +0200 Subject: [PATCH 058/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index ae2e6860f6..ce413f3131 100644 --- a/po/br.po +++ b/po/br.po @@ -2961,7 +2961,7 @@ msgstr "Mod aozañ" #: libraries/config/messages.inc.php:163 msgid "Customize edit mode" -msgstr "" +msgstr "Personelaat ar mod aozañ" #: libraries/config/messages.inc.php:165 msgid "Export defaults" From 97efea4a0b771a9ada2230becc861029dd6f9664 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:31:39 +0200 Subject: [PATCH 059/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index ce413f3131..35277b3b09 100644 --- a/po/br.po +++ b/po/br.po @@ -2965,7 +2965,7 @@ msgstr "Personelaat ar mod aozañ" #: libraries/config/messages.inc.php:165 msgid "Export defaults" -msgstr "" +msgstr "Talvoudoù dre ziouer evit an ezporzhiañ" #: libraries/config/messages.inc.php:166 msgid "Customize default export options" From 8dbb8c333bc9b659cc6037a083a91c1295b60243 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:32:19 +0200 Subject: [PATCH 060/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 35277b3b09..943ba2b0a9 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:31+0200\n" +"PO-Revision-Date: 2011-07-13 19:32+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2969,7 +2969,7 @@ msgstr "Talvoudoù dre ziouer evit an ezporzhiañ" #: libraries/config/messages.inc.php:166 msgid "Customize default export options" -msgstr "" +msgstr "Personelaat an talvoudoù ezporzhiañ implijet dre ziouer" #: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 #: setup/frames/menu.inc.php:16 From b6f18fdb2853234c893af302128873d10e8fc0c5 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:32:27 +0200 Subject: [PATCH 061/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 943ba2b0a9..c442af21f9 100644 --- a/po/br.po +++ b/po/br.po @@ -2974,7 +2974,7 @@ msgstr "Personelaat an talvoudoù ezporzhiañ implijet dre ziouer" #: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 #: setup/frames/menu.inc.php:16 msgid "Features" -msgstr "" +msgstr "Dezverkoù" #: libraries/config/messages.inc.php:168 msgid "General" From 4dfbbe012c800bc3c97a2a402aee68cebdd99d2b Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:32:36 +0200 Subject: [PATCH 062/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index c442af21f9..2d2604ee24 100644 --- a/po/br.po +++ b/po/br.po @@ -2978,7 +2978,7 @@ msgstr "Dezverkoù" #: libraries/config/messages.inc.php:168 msgid "General" -msgstr "" +msgstr "Hollek" #: libraries/config/messages.inc.php:169 msgid "Set some commonly used options" From 2ccec6d56801d261fc1ad60af0336a7d4f0e8a17 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:32:50 +0200 Subject: [PATCH 063/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 2d2604ee24..c7caa03e21 100644 --- a/po/br.po +++ b/po/br.po @@ -2978,7 +2978,7 @@ msgstr "Dezverkoù" #: libraries/config/messages.inc.php:168 msgid "General" -msgstr "Hollek" +msgstr "Dre-vras" #: libraries/config/messages.inc.php:169 msgid "Set some commonly used options" From f468ac1799c978ddd5b85d7f770aa6f88f40e51f Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:33:24 +0200 Subject: [PATCH 064/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index c7caa03e21..204bad41eb 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:32+0200\n" +"PO-Revision-Date: 2011-07-13 19:33+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2982,7 +2982,7 @@ msgstr "Dre-vras" #: libraries/config/messages.inc.php:169 msgid "Set some commonly used options" -msgstr "" +msgstr "Termeniñ un nebeud dibarzhioù implijet ingal" #: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 From 9e942f643b3a4fff5817e9cd39cb3fa6da852c2a Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:33:32 +0200 Subject: [PATCH 065/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 204bad41eb..4f36bc852a 100644 --- a/po/br.po +++ b/po/br.po @@ -2988,7 +2988,7 @@ msgstr "Termeniñ un nebeud dibarzhioù implijet ingal" #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:231 setup/frames/menu.inc.php:20 msgid "Import" -msgstr "" +msgstr "Enporzhiañ" #: libraries/config/messages.inc.php:171 msgid "Import defaults" From cf494bce7544d9f1b62af110ee8f3f9f5f28671c Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:33:58 +0200 Subject: [PATCH 066/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 4f36bc852a..3ad799af5d 100644 --- a/po/br.po +++ b/po/br.po @@ -2992,7 +2992,7 @@ msgstr "Enporzhiañ" #: libraries/config/messages.inc.php:171 msgid "Import defaults" -msgstr "" +msgstr "Talvoudoù enporzhiañ dre ziouer" #: libraries/config/messages.inc.php:172 msgid "Customize default common import options" From fb617f9be28d6a2bf1a4ea3d8a10d70a16853751 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:34:21 +0200 Subject: [PATCH 067/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 3ad799af5d..280f4c1085 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:33+0200\n" +"PO-Revision-Date: 2011-07-13 19:34+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2996,7 +2996,7 @@ msgstr "Talvoudoù enporzhiañ dre ziouer" #: libraries/config/messages.inc.php:172 msgid "Customize default common import options" -msgstr "" +msgstr "Personelaat an talvoudoù implijet dre ziouer" #: libraries/config/messages.inc.php:173 msgid "Import / export" From 80b3cae2bf2653f1aaf03d8e0b7929bbd0e16e81 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:34:41 +0200 Subject: [PATCH 068/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 280f4c1085..13333d524a 100644 --- a/po/br.po +++ b/po/br.po @@ -3000,7 +3000,7 @@ msgstr "Personelaat an talvoudoù implijet dre ziouer" #: libraries/config/messages.inc.php:173 msgid "Import / export" -msgstr "" +msgstr "Enporzhiañ / Ezporzhiañ" #: libraries/config/messages.inc.php:174 msgid "Set import and export directories and compression options" From 3add82f522a2366711d9bf88413f3db364a1c266 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:35:13 +0200 Subject: [PATCH 069/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 13333d524a..272d44326a 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:34+0200\n" +"PO-Revision-Date: 2011-07-13 19:35+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3004,7 +3004,7 @@ msgstr "Enporzhiañ / Ezporzhiañ" #: libraries/config/messages.inc.php:174 msgid "Set import and export directories and compression options" -msgstr "" +msgstr "Kefluniañ ar c'havlec'hioù enporzhiañ hag an dibarzhioù gwaskañ" #: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 msgid "LaTeX" From 5c5e8bf4786c48725a80db1555f66df8fc841f35 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:35:23 +0200 Subject: [PATCH 070/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 272d44326a..acd3ea94f5 100644 --- a/po/br.po +++ b/po/br.po @@ -3008,7 +3008,7 @@ msgstr "Kefluniañ ar c'havlec'hioù enporzhiañ hag an dibarzhioù gwaskañ" #: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 msgid "LaTeX" -msgstr "" +msgstr "LaTex" #: libraries/config/messages.inc.php:178 msgid "Databases display options" From 27e7f1e4735293713818b2dd70947d269ca72199 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:35:51 +0200 Subject: [PATCH 071/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index acd3ea94f5..771c7145d9 100644 --- a/po/br.po +++ b/po/br.po @@ -3012,7 +3012,7 @@ msgstr "LaTex" #: libraries/config/messages.inc.php:178 msgid "Databases display options" -msgstr "" +msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 msgid "Navigation frame" From 3a413a09d9437f4c6a1a15f97bd7408fa808559f Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:36:08 +0200 Subject: [PATCH 072/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 771c7145d9..c69c5bd13b 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:35+0200\n" +"PO-Revision-Date: 2011-07-13 19:36+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3016,7 +3016,7 @@ msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "" +msgstr "Taolenn verdeiñ" #: libraries/config/messages.inc.php:180 msgid "Customize appearance of the navigation frame" From c3e8eded3807c1478bd874d755ddb62f905f88f9 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:36:21 +0200 Subject: [PATCH 073/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index c69c5bd13b..3846200423 100644 --- a/po/br.po +++ b/po/br.po @@ -3020,7 +3020,7 @@ msgstr "Taolenn verdeiñ" #: libraries/config/messages.inc.php:180 msgid "Customize appearance of the navigation frame" -msgstr "" +msgstr "Personelaat tres an daolenn verdeiñ" #: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:36 #: setup/frames/index.inc.php:110 From 3b96631ce3c659a3c1850a112cd59009d0a3191f Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:36:26 +0200 Subject: [PATCH 074/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 3846200423..6cdd80211d 100644 --- a/po/br.po +++ b/po/br.po @@ -3025,7 +3025,7 @@ msgstr "Personelaat tres an daolenn verdeiñ" #: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:36 #: setup/frames/index.inc.php:110 msgid "Servers" -msgstr "" +msgstr "Servijerioù" #: libraries/config/messages.inc.php:182 msgid "Servers display options" From 950ea7d11868068775a3cbb4316dd8e3c80d040f Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:36:46 +0200 Subject: [PATCH 075/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 6cdd80211d..cfc9f19c83 100644 --- a/po/br.po +++ b/po/br.po @@ -3029,7 +3029,7 @@ msgstr "Servijerioù" #: libraries/config/messages.inc.php:182 msgid "Servers display options" -msgstr "" +msgstr "Dibarzhioù diskwel ar servijerioù" #: libraries/config/messages.inc.php:184 msgid "Tables display options" From 08ad14c1cc2eb3c863284810e91eb7bf740acb5b Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:37:01 +0200 Subject: [PATCH 076/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index cfc9f19c83..56b5863d2b 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:36+0200\n" +"PO-Revision-Date: 2011-07-13 19:37+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3033,7 +3033,7 @@ msgstr "Dibarzhioù diskwel ar servijerioù" #: libraries/config/messages.inc.php:184 msgid "Tables display options" -msgstr "" +msgstr "Dibarzhioù diskwel an taolennoù" #: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 msgid "Main frame" From 66e5535a597d0a62711a96482af672eb742e0693 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:37:22 +0200 Subject: [PATCH 077/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 56b5863d2b..7e92693e48 100644 --- a/po/br.po +++ b/po/br.po @@ -3037,7 +3037,7 @@ msgstr "Dibarzhioù diskwel an taolennoù" #: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "" +msgstr "Taolenn bennañ" #: libraries/config/messages.inc.php:186 msgid "Microsoft Office" From 7f00325056309786c43e77976caa650364b4ddbe Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:37:28 +0200 Subject: [PATCH 078/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 7e92693e48..cc5bb9458b 100644 --- a/po/br.po +++ b/po/br.po @@ -3041,7 +3041,7 @@ msgstr "Taolenn bennañ" #: libraries/config/messages.inc.php:186 msgid "Microsoft Office" -msgstr "" +msgstr "Microsoft Office" #: libraries/config/messages.inc.php:188 msgid "Open Document" From 563110fb4a090414424b1b69f41ee27e62c31ea0 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:37:40 +0200 Subject: [PATCH 079/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index cc5bb9458b..0e960dfb96 100644 --- a/po/br.po +++ b/po/br.po @@ -3045,7 +3045,7 @@ msgstr "Microsoft Office" #: libraries/config/messages.inc.php:188 msgid "Open Document" -msgstr "" +msgstr "Testenn Open Document" #: libraries/config/messages.inc.php:190 msgid "Other core settings" From 17fd67f492dd94be073867145fd66bad00dde5db Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:37:55 +0200 Subject: [PATCH 080/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 0e960dfb96..183e408712 100644 --- a/po/br.po +++ b/po/br.po @@ -3049,7 +3049,7 @@ msgstr "Testenn Open Document" #: libraries/config/messages.inc.php:190 msgid "Other core settings" -msgstr "" +msgstr "Arventennoù pouezus all" #: libraries/config/messages.inc.php:191 msgid "Settings that didn't fit enywhere else" From 27f5618093980812b21e7cbfc73f00437384e535 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:38:07 +0200 Subject: [PATCH 081/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 183e408712..1e21121cd8 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:37+0200\n" +"PO-Revision-Date: 2011-07-13 19:38+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3053,7 +3053,7 @@ msgstr "Arventennoù pouezus all" #: libraries/config/messages.inc.php:191 msgid "Settings that didn't fit enywhere else" -msgstr "" +msgstr "Arventennoù a bep seurt" #: libraries/config/messages.inc.php:192 msgid "Page titles" From 75f70a9c67e6057cdcc61cb80e0d90cfa73d257e Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:38:21 +0200 Subject: [PATCH 082/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 1e21121cd8..fdbb954815 100644 --- a/po/br.po +++ b/po/br.po @@ -3057,7 +3057,7 @@ msgstr "Arventennoù a bep seurt" #: libraries/config/messages.inc.php:192 msgid "Page titles" -msgstr "" +msgstr "Titloù pajennoù" #: libraries/config/messages.inc.php:193 msgid "" From 1e689953117bbd8ffc291e6bcf2e927bc1a5914b Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:38:43 +0200 Subject: [PATCH 083/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index fdbb954815..f4443f6ef9 100644 --- a/po/br.po +++ b/po/br.po @@ -3071,7 +3071,7 @@ msgstr "" #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" -msgstr "" +msgstr "Prenestr klask" #: libraries/config/messages.inc.php:195 msgid "Customize query window options" From baf469a552678e21fe832f5861ed873a59a678ed Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:38:58 +0200 Subject: [PATCH 084/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index f4443f6ef9..6df1fc319d 100644 --- a/po/br.po +++ b/po/br.po @@ -3075,7 +3075,7 @@ msgstr "Prenestr klask" #: libraries/config/messages.inc.php:195 msgid "Customize query window options" -msgstr "" +msgstr "Personelaat dibarzhioù ar prenestr klask" #: libraries/config/messages.inc.php:196 msgid "Security" From 2d9c0b632d3970c656c0bf23bd391795f27f1dcd Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:39:03 +0200 Subject: [PATCH 085/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 6df1fc319d..4a1abfa625 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:38+0200\n" +"PO-Revision-Date: 2011-07-13 19:39+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3079,7 +3079,7 @@ msgstr "Personelaat dibarzhioù ar prenestr klask" #: libraries/config/messages.inc.php:196 msgid "Security" -msgstr "" +msgstr "Surentez" #: libraries/config/messages.inc.php:197 msgid "" From cc6e9d1ce86657129e1eaf09613776d294959c34 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:40:30 +0200 Subject: [PATCH 086/960] Translation update done using Pootle. --- po/br.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 4a1abfa625..52d0fea4f3 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:39+0200\n" +"PO-Revision-Date: 2011-07-13 19:40+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3086,6 +3086,8 @@ msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" +"Notennit mat n'eo phpMyAdmin nemet un etrefas ha n'eo ket bevennet e mod " +"ebet MySQL gant an perzhioù anezhi" #: libraries/config/messages.inc.php:198 msgid "Basic settings" From 2f4a6cddb4b706b4b9a4072a9b01b4c4eafab9fd Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:40:39 +0200 Subject: [PATCH 087/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 52d0fea4f3..f5b21d47f1 100644 --- a/po/br.po +++ b/po/br.po @@ -3091,7 +3091,7 @@ msgstr "" #: libraries/config/messages.inc.php:198 msgid "Basic settings" -msgstr "" +msgstr "Arventennoù diazez" #: libraries/config/messages.inc.php:199 msgid "Authentication" From 2eda465092e712a74aa6649e63d97e6b85a1d8e4 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:41:08 +0200 Subject: [PATCH 088/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index f5b21d47f1..10581daeb9 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:40+0200\n" +"PO-Revision-Date: 2011-07-13 19:41+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3103,7 +3103,7 @@ msgstr "" #: libraries/config/messages.inc.php:201 msgid "Server configuration" -msgstr "" +msgstr "Kefluniadur ar servijer" #: libraries/config/messages.inc.php:202 msgid "" From ce219dd2d68c2c63efb2725d1245aa0afbd47e36 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:41:44 +0200 Subject: [PATCH 089/960] Translation update done using Pootle. --- po/br.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/br.po b/po/br.po index 10581daeb9..7c1814bb1d 100644 --- a/po/br.po +++ b/po/br.po @@ -3110,6 +3110,8 @@ msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" +"Kefluniadur pishoc'h; bezit sur e ouzit ar pezh a rit a-raok mont da gemmañ " +"tra pe dra" #: libraries/config/messages.inc.php:203 msgid "Enter server connection parameters" From f230b40bf615f990ee24104e97fbc1827a7246f3 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:42:14 +0200 Subject: [PATCH 090/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 7c1814bb1d..ced225ecb5 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:41+0200\n" +"PO-Revision-Date: 2011-07-13 19:42+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3115,7 +3115,7 @@ msgstr "" #: libraries/config/messages.inc.php:203 msgid "Enter server connection parameters" -msgstr "" +msgstr "Merkañ arventennoù kevreañ ar servijer" #: libraries/config/messages.inc.php:204 msgid "Configuration storage" From 538786dca72195b1281681be43c1505377f7d2e5 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:42:48 +0200 Subject: [PATCH 091/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index ced225ecb5..ce82c26fa6 100644 --- a/po/br.po +++ b/po/br.po @@ -3119,7 +3119,7 @@ msgstr "Merkañ arventennoù kevreañ ar servijer" #: libraries/config/messages.inc.php:204 msgid "Configuration storage" -msgstr "" +msgstr "Mirlec'h ar c'hefluniadurioù" #: libraries/config/messages.inc.php:205 msgid "" From 5f26842126fdc1d1f22de36697355cd2ed43bf15 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:43:27 +0200 Subject: [PATCH 092/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index ce82c26fa6..0cc2f13bb8 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:42+0200\n" +"PO-Revision-Date: 2011-07-13 19:43+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3152,7 +3152,7 @@ msgstr "" #: libraries/config/messages.inc.php:212 msgid "Customize main frame" -msgstr "" +msgstr "Personelaat ar framm pennañ" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 From 95fffb5d643ae66faf7878a8d374ba12fff1b0d6 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:43:40 +0200 Subject: [PATCH 093/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 0cc2f13bb8..304eac24d1 100644 --- a/po/br.po +++ b/po/br.po @@ -3157,7 +3157,7 @@ msgstr "Personelaat ar framm pennañ" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 msgid "SQL queries" -msgstr "" +msgstr "Rekedoù SQL" #: libraries/config/messages.inc.php:215 msgid "SQL Query box" From ef8e63317efe3feabbbd063b335d255252c0a3f3 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:43:49 +0200 Subject: [PATCH 094/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 304eac24d1..81ca873c17 100644 --- a/po/br.po +++ b/po/br.po @@ -3161,7 +3161,7 @@ msgstr "Rekedoù SQL" #: libraries/config/messages.inc.php:215 msgid "SQL Query box" -msgstr "" +msgstr "Boest rekedoù SQL" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" From 7f4f3426f299613d871002dc9e8b655aa54af266 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:44:22 +0200 Subject: [PATCH 095/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 81ca873c17..f393d1be04 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:43+0200\n" +"PO-Revision-Date: 2011-07-13 19:44+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3165,7 +3165,7 @@ msgstr "Boest rekedoù SQL" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Personelaat al liammoù diskwelet er boestoù rekedoù SQL" #: libraries/config/messages.inc.php:219 msgid "SQL queries settings" From 1da71320bed9eb3fe893fbb39b3a92d0a1f0cdac Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:44:34 +0200 Subject: [PATCH 096/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index f393d1be04..ca6575c7e0 100644 --- a/po/br.po +++ b/po/br.po @@ -3169,7 +3169,7 @@ msgstr "Personelaat al liammoù diskwelet er boestoù rekedoù SQL" #: libraries/config/messages.inc.php:219 msgid "SQL queries settings" -msgstr "" +msgstr "Arventennoù ar rekedoù SQL" #: libraries/config/messages.inc.php:220 msgid "SQL Validator" From 63fdb391bcacf230f699bd79333898deac396212 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:45:11 +0200 Subject: [PATCH 097/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index ca6575c7e0..3bc5776912 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:44+0200\n" +"PO-Revision-Date: 2011-07-13 19:45+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3173,7 +3173,7 @@ msgstr "Arventennoù ar rekedoù SQL" #: libraries/config/messages.inc.php:220 msgid "SQL Validator" -msgstr "" +msgstr "Kadarnataer SQL" #: libraries/config/messages.inc.php:221 msgid "" From f5858ad5bece13f865a4497222cbc2ac82838b3b Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:45:28 +0200 Subject: [PATCH 098/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 3bc5776912..cf75fd1b86 100644 --- a/po/br.po +++ b/po/br.po @@ -3185,7 +3185,7 @@ msgstr "" #: libraries/config/messages.inc.php:222 msgid "Startup" -msgstr "" +msgstr "Pajenn deraouiñ" #: libraries/config/messages.inc.php:223 msgid "Customize startup page" From efa03902cc7b54e118773e276e9714ff028d091e Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:45:41 +0200 Subject: [PATCH 099/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index cf75fd1b86..c453bdd1f6 100644 --- a/po/br.po +++ b/po/br.po @@ -3189,7 +3189,7 @@ msgstr "Pajenn deraouiñ" #: libraries/config/messages.inc.php:223 msgid "Customize startup page" -msgstr "" +msgstr "Personelaat ar bajenn deraouiñ" #: libraries/config/messages.inc.php:224 msgid "Tabs" From 67a5c8dff12d5c12f79d1d67ccb15b93ca7d09a4 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:45:48 +0200 Subject: [PATCH 100/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index c453bdd1f6..362af5f358 100644 --- a/po/br.po +++ b/po/br.po @@ -3193,7 +3193,7 @@ msgstr "Personelaat ar bajenn deraouiñ" #: libraries/config/messages.inc.php:224 msgid "Tabs" -msgstr "" +msgstr "Ivinelloù" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" From f6d743a90f12747c839b0fcf2b6821f9eae6f92c Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:46:05 +0200 Subject: [PATCH 101/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 362af5f358..cf1f54f9fc 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:45+0200\n" +"PO-Revision-Date: 2011-07-13 19:46+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3197,7 +3197,7 @@ msgstr "Ivinelloù" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "Personelaat an ivinelloù" #: libraries/config/messages.inc.php:226 msgid "Text fields" From 61e369800a4797ce255cc836fcc82c31e01c0238 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:46:17 +0200 Subject: [PATCH 102/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index cf1f54f9fc..220db7aa48 100644 --- a/po/br.po +++ b/po/br.po @@ -3201,7 +3201,7 @@ msgstr "Personelaat an ivinelloù" #: libraries/config/messages.inc.php:226 msgid "Text fields" -msgstr "" +msgstr "Maeziennoù testenn" #: libraries/config/messages.inc.php:227 msgid "Customize text input fields" From c835018d8f07e811b226c097ed68129cd7de132a Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:46:42 +0200 Subject: [PATCH 103/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 220db7aa48..8fbb091f55 100644 --- a/po/br.po +++ b/po/br.po @@ -3205,7 +3205,7 @@ msgstr "Maeziennoù testenn" #: libraries/config/messages.inc.php:227 msgid "Customize text input fields" -msgstr "" +msgstr "Personelaat ar maeziennoù ebarzhiñ testenn" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" From a66e44f9f67c6bfd3b9968b5e276d0b081caf5b0 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:46:55 +0200 Subject: [PATCH 104/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 8fbb091f55..9386b54e8a 100644 --- a/po/br.po +++ b/po/br.po @@ -3209,7 +3209,7 @@ msgstr "Personelaat ar maeziennoù ebarzhiñ testenn" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" -msgstr "" +msgstr "Testenn Texy!" #: libraries/config/messages.inc.php:230 msgid "Warnings" From 42705e65edd35f0d4945394f5b6f8393e60e12da Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:47:03 +0200 Subject: [PATCH 105/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 9386b54e8a..43d1ae8af9 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 19:46+0200\n" +"PO-Revision-Date: 2011-07-13 19:47+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -3213,7 +3213,7 @@ msgstr "Testenn Texy!" #: libraries/config/messages.inc.php:230 msgid "Warnings" -msgstr "" +msgstr "Kemennoù diwall" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" From 30e3f89e7d00e6d727c11f3ff56e96149141c7bb Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:47:14 +0200 Subject: [PATCH 106/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 43d1ae8af9..bd30cf69ba 100644 --- a/po/br.po +++ b/po/br.po @@ -3227,7 +3227,7 @@ msgstr "" #: libraries/config/messages.inc.php:233 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" From 0160af063c2d588871fd63b25f1b227eb2d866f6 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Wed, 13 Jul 2011 19:47:30 +0200 Subject: [PATCH 107/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index bd30cf69ba..9ece6369e9 100644 --- a/po/br.po +++ b/po/br.po @@ -3231,7 +3231,7 @@ msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" -msgstr "" +msgstr "Arventennoù ouzhpenn evit iconv" #: libraries/config/messages.inc.php:235 msgid "" From e0d8f3ba780eed9b781869454bc35e2fdd581316 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:00:51 +0200 Subject: [PATCH 108/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index a6f050dbff..7fd6381869 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-11 15:49+0200\n" +"PO-Revision-Date: 2011-07-13 22:00+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -423,7 +423,7 @@ msgstr "Skift til" #: db_qbe.php:186 msgid "visual builder" -msgstr "" +msgstr "Visuel Konstruktør" #: db_qbe.php:222 libraries/db_structure.lib.php:90 #: libraries/display_tbl.lib.php:937 From 59a73e26be59f09f3e20ade3471726ba5bfbf71d Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:00 +0200 Subject: [PATCH 109/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 7fd6381869..c1ea601b6a 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:00+0200\n" +"PO-Revision-Date: 2011-07-13 22:01+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -685,7 +685,6 @@ msgstr "Vis (udskriftvenlig)" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a state it should translate to "Tom". #: db_structure.php:503 libraries/common.lib.php:2924 #: libraries/common.lib.php:2925 -#, fuzzy msgid "Empty" msgstr "Tøm" From d131fb29f032fd2bd34b305afc7ac13fc5b56b14 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:07 +0200 Subject: [PATCH 110/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index c1ea601b6a..3bcb4935e9 100644 --- a/po/da.po +++ b/po/da.po @@ -1912,7 +1912,7 @@ msgstr "Godkendelse af hardware mislykkedes" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Ingen gyldig autorisations-nøgle indkoblet" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." From 1b57b5e42e5ee67d43a9e1b621b796d2634127cf Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:13 +0200 Subject: [PATCH 111/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 3bcb4935e9..2ad6cd3a3e 100644 --- a/po/da.po +++ b/po/da.po @@ -2005,10 +2005,9 @@ msgid "Check Privileges" msgstr "Check Privilegier" #: libraries/common.inc.php:588 -#, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" -msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\"" +msgstr "Kunne ikke indlæse konfigurationsfilen" #: libraries/common.inc.php:589 msgid "" From f9ad5dd6973943befc70b29352f5272a01bf2990 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:21 +0200 Subject: [PATCH 112/960] Translation update done using Pootle. --- po/da.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/da.po b/po/da.po index 2ad6cd3a3e..c19a640d2d 100644 --- a/po/da.po +++ b/po/da.po @@ -2014,6 +2014,8 @@ msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" +"Dette betyder ofte at der er en eller flere syntaks-mæssige fejl i den, " +"kontrollér venligst for fejlen(e) vist herunder." #: libraries/common.inc.php:596 #, php-format From 541f73234d8f6269e6502d81c82e404fb61f09a8 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:28 +0200 Subject: [PATCH 113/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index c19a640d2d..4a59394fa6 100644 --- a/po/da.po +++ b/po/da.po @@ -2219,10 +2219,9 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" #: libraries/common.lib.php:2456 -#, fuzzy #| msgid "Click to select" msgid "Click to toggle" -msgstr "Klik for at vælge" +msgstr "Klik for at skifte" #: libraries/common.lib.php:2727 libraries/common.lib.php:2734 #: libraries/common.lib.php:2921 libraries/config/setup.forms.php:296 From a0e72b815ff669ed5b7a59f9836cf4cbd1a9ec0f Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:33 +0200 Subject: [PATCH 114/960] Translation update done using Pootle. --- po/da.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/da.po b/po/da.po index 4a59394fa6..aba8afb31b 100644 --- a/po/da.po +++ b/po/da.po @@ -2808,7 +2808,6 @@ msgstr "Fortsat tabeloverskrift" #: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 #: libraries/export/latex.php:54 libraries/export/latex.php:78 -#, fuzzy msgid "Label key" msgstr "Mærke nøgle" From 8313b7223828225f07aa10623a3a74ff1e0413ff Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:44 +0200 Subject: [PATCH 115/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index aba8afb31b..1ce0a22df8 100644 --- a/po/da.po +++ b/po/da.po @@ -3145,7 +3145,7 @@ msgstr "" #: libraries/config/messages.inc.php:208 msgid "Customize export options" -msgstr "" +msgstr "Tilpas eksport-indstillinger" #: libraries/config/messages.inc.php:210 msgid "Customize import defaults" From 09bb9297d6fd9f5958384eaf9fa8e3a5074d89fc Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:52 +0200 Subject: [PATCH 116/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 1ce0a22df8..a3862bd4f8 100644 --- a/po/da.po +++ b/po/da.po @@ -3149,7 +3149,7 @@ msgstr "Tilpas eksport-indstillinger" #: libraries/config/messages.inc.php:210 msgid "Customize import defaults" -msgstr "" +msgstr "Tilpas import-indstillinger" #: libraries/config/messages.inc.php:211 msgid "Customize navigation frame" From 4e699445b5491764cf89d00168d9d61d32c613ac Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:01:58 +0200 Subject: [PATCH 117/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index a3862bd4f8..b9b966f2be 100644 --- a/po/da.po +++ b/po/da.po @@ -3153,7 +3153,7 @@ msgstr "Tilpas import-indstillinger" #: libraries/config/messages.inc.php:211 msgid "Customize navigation frame" -msgstr "" +msgstr "Tilpas navigations-rammen" #: libraries/config/messages.inc.php:212 msgid "Customize main frame" From e7dab537d131272c2102a208e800bb84bc944896 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:02:01 +0200 Subject: [PATCH 118/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index b9b966f2be..261adb7048 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:01+0200\n" +"PO-Revision-Date: 2011-07-13 22:02+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" From e95c210b9cab9d91878cdacb4cef9e78b72c5bed Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:02:04 +0200 Subject: [PATCH 119/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 261adb7048..4e40fef389 100644 --- a/po/da.po +++ b/po/da.po @@ -3157,7 +3157,7 @@ msgstr "Tilpas navigations-rammen" #: libraries/config/messages.inc.php:212 msgid "Customize main frame" -msgstr "" +msgstr "Tilpas hoved-rammen" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 From 6c33db7564c44101c2b5a568f98027c5575fa61b Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:02:10 +0200 Subject: [PATCH 120/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 4e40fef389..69e93a6ed5 100644 --- a/po/da.po +++ b/po/da.po @@ -3170,7 +3170,7 @@ msgstr "SQL Query-boks" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Tilpas links vist i SQL Query-boksen" #: libraries/config/messages.inc.php:219 #, fuzzy From 1a795fb62fb1ab3a186bedb3e9a6c62617cede46 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:02:36 +0200 Subject: [PATCH 121/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 69e93a6ed5..d60f50401a 100644 --- a/po/da.po +++ b/po/da.po @@ -3173,10 +3173,9 @@ msgid "Customize links shown in SQL Query boxes" msgstr "Tilpas links vist i SQL Query-boksen" #: libraries/config/messages.inc.php:219 -#, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" -msgstr "Server-variabler og indstillinger" +msgstr "Indstillinger til SQL-forespørgsler" #: libraries/config/messages.inc.php:220 #, fuzzy From 80e9cbf80a01e778b92453495012f1631e6d0b8b Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:02:43 +0200 Subject: [PATCH 122/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index d60f50401a..a9bdb1b97a 100644 --- a/po/da.po +++ b/po/da.po @@ -3178,10 +3178,9 @@ msgid "SQL queries settings" msgstr "Indstillinger til SQL-forespørgsler" #: libraries/config/messages.inc.php:220 -#, fuzzy #| msgid "SQL history" msgid "SQL Validator" -msgstr "SQL-historik" +msgstr "SQL Validator" #: libraries/config/messages.inc.php:221 msgid "" From f925a30fd76387e085d995451dde6a8ec271a5c2 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:02:57 +0200 Subject: [PATCH 123/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index a9bdb1b97a..a35d5e0ce5 100644 --- a/po/da.po +++ b/po/da.po @@ -3196,7 +3196,7 @@ msgstr "Opstart" #: libraries/config/messages.inc.php:223 msgid "Customize startup page" -msgstr "" +msgstr "Tilpas opstart-side" #: libraries/config/messages.inc.php:224 msgid "Tabs" From 931cb5c18f54ce2bf58c44d37ca502c0c6abf5a8 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:03:00 +0200 Subject: [PATCH 124/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index a35d5e0ce5..ab938710fd 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:02+0200\n" +"PO-Revision-Date: 2011-07-13 22:03+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" From 0d5f85c05fe5c4c5f8d7e138a1029fb2c4eb4cf1 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:03:06 +0200 Subject: [PATCH 125/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index ab938710fd..23ebe472fb 100644 --- a/po/da.po +++ b/po/da.po @@ -3204,7 +3204,7 @@ msgstr "Faner" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "Vælg hvordan du ønsker at fanerne skal fungere" #: libraries/config/messages.inc.php:226 #, fuzzy From 79921e09218458dc596d81cc89bf72986a4de8e8 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:03:12 +0200 Subject: [PATCH 126/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 23ebe472fb..b110a68400 100644 --- a/po/da.po +++ b/po/da.po @@ -3207,10 +3207,9 @@ msgid "Choose how you want tabs to work" msgstr "Vælg hvordan du ønsker at fanerne skal fungere" #: libraries/config/messages.inc.php:226 -#, fuzzy #| msgid "Use text field" msgid "Text fields" -msgstr "Brug tekstfelt" +msgstr "Tekstfelter" #: libraries/config/messages.inc.php:227 #, fuzzy From 3d6186737d5d003882f041fdc01b519efc98e654 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:03:17 +0200 Subject: [PATCH 127/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index b110a68400..700a56e850 100644 --- a/po/da.po +++ b/po/da.po @@ -3212,10 +3212,9 @@ msgid "Text fields" msgstr "Tekstfelter" #: libraries/config/messages.inc.php:227 -#, fuzzy #| msgid "Use text field" msgid "Customize text input fields" -msgstr "Brug tekstfelt" +msgstr "Tilpas tekstfelter" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" From c0e9f590c32f017e1b247663eb8d8c73cc566fce Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:03:26 +0200 Subject: [PATCH 128/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 700a56e850..84a6832413 100644 --- a/po/da.po +++ b/po/da.po @@ -3218,7 +3218,7 @@ msgstr "Tilpas tekstfelter" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" -msgstr "" +msgstr "Texy! tekst" #: libraries/config/messages.inc.php:230 msgid "Warnings" From c72729e801ebce33bb58debb84f29ff8d588da8f Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:03:35 +0200 Subject: [PATCH 129/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 84a6832413..6eea694513 100644 --- a/po/da.po +++ b/po/da.po @@ -3226,7 +3226,7 @@ msgstr "Advarsler" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Deaktivér nogle af advarslerne som phpMyAdmin viser" #: libraries/config/messages.inc.php:232 msgid "" From 16a06eb81a145c6cbbf00bfbe37b73ab3f05d925 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:04:04 +0200 Subject: [PATCH 130/960] Translation update done using Pootle. --- po/da.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 6eea694513..38f4c1746b 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:03+0200\n" +"PO-Revision-Date: 2011-07-13 22:04+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3233,6 +3233,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" +"Aktivér [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] komprimering for " +"import og eksport-funktionerne" #: libraries/config/messages.inc.php:233 msgid "GZip" From 50879625a57fb22165664490af0ef943d2809fb8 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:04:09 +0200 Subject: [PATCH 131/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 38f4c1746b..df063a0d82 100644 --- a/po/da.po +++ b/po/da.po @@ -3238,7 +3238,7 @@ msgstr "" #: libraries/config/messages.inc.php:233 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" From db6fe341856220ab6a0cc3c0a54ff2997ccf1356 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:04:14 +0200 Subject: [PATCH 132/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index df063a0d82..3d209f3a10 100644 --- a/po/da.po +++ b/po/da.po @@ -3242,7 +3242,7 @@ msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" -msgstr "" +msgstr "Yderligere parametre til iconv" #: libraries/config/messages.inc.php:235 msgid "" From c0d716f789574c81a8dbd99575f1360c8d927e29 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:05:29 +0200 Subject: [PATCH 133/960] Translation update done using Pootle. --- po/da.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 3d209f3a10..d68cca9c38 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:04+0200\n" +"PO-Revision-Date: 2011-07-13 22:05+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3249,6 +3249,8 @@ msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"Hvis aktiveret, vil phpMyAdmin fortsætte med at udføre efterfølgende SQL-" +"forespørgsler selvom et eller flere af dem fejler" #: libraries/config/messages.inc.php:236 msgid "Ignore multiple statement errors" From 85cfb03a09f466e34b9e867d17bf6f21ff0202e7 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:05:33 +0200 Subject: [PATCH 134/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index d68cca9c38..ee08bb8923 100644 --- a/po/da.po +++ b/po/da.po @@ -3254,7 +3254,7 @@ msgstr "" #: libraries/config/messages.inc.php:236 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "Ignorér flere efterfølgende fejl i udtryk" #: libraries/config/messages.inc.php:237 msgid "" From 9eec39705ea26fd996880e90340184f35b720247 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:07:14 +0200 Subject: [PATCH 135/960] Translation update done using Pootle. --- po/da.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index ee08bb8923..2de5da7a54 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:05+0200\n" +"PO-Revision-Date: 2011-07-13 22:07+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3262,6 +3262,9 @@ msgid "" "This might be good way to import large files, however it can break " "transactions." msgstr "" +"Tillad afbrydelse af import hvis script opdager at timeout-tiden snart " +"udløber. Dette kan være godt ved store import-filer, men kan afbryde " +"transaktioner." #: libraries/config/messages.inc.php:238 msgid "Partial import: allow interrupt" From e85138633d61881ededf18cb4023b3a906328502 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:07:18 +0200 Subject: [PATCH 136/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 2de5da7a54..2e4e303aef 100644 --- a/po/da.po +++ b/po/da.po @@ -3268,7 +3268,7 @@ msgstr "" #: libraries/config/messages.inc.php:238 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "Delvis import: Tillad afbrydelse" #: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 From 24e599b46dd968f5a1fe24ea7ca28a66f4a7b3c5 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:07:23 +0200 Subject: [PATCH 137/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 2e4e303aef..631aba681a 100644 --- a/po/da.po +++ b/po/da.po @@ -3273,7 +3273,7 @@ msgstr "Delvis import: Tillad afbrydelse" #: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "Afbryd ikke ved fejl i INSERT" #: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 From f26eb55719df7c6f37ad4712a656e5f8c0dfb5be Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:08:10 +0200 Subject: [PATCH 138/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 631aba681a..dfca1434c0 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:07+0200\n" +"PO-Revision-Date: 2011-07-13 22:08+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3296,7 +3296,6 @@ msgstr "Brug LOCAL nøgleord" #: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 #: libraries/config/messages.inc.php:263 -#, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Indsæt feltnavne i første række" From 2c023730655ba309b672bfb87702c63dba85078a Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:08:30 +0200 Subject: [PATCH 139/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index dfca1434c0..3f2e5285f0 100644 --- a/po/da.po +++ b/po/da.po @@ -3302,7 +3302,7 @@ msgstr "Indsæt feltnavne i første række" #: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 msgid "Do not import empty rows" -msgstr "" +msgstr "Importér ikke tomme rækker" #: libraries/config/messages.inc.php:256 msgid "Import currencies ($5.00 to 5.00)" From 913f54618886fa0e91034b06e8aaf0b5d6eb8a8c Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:08:50 +0200 Subject: [PATCH 140/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 3f2e5285f0..fddae6d89b 100644 --- a/po/da.po +++ b/po/da.po @@ -3306,7 +3306,7 @@ msgstr "Importér ikke tomme rækker" #: libraries/config/messages.inc.php:256 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "Importér valutaer ($5.00 til 5.00)" #: libraries/config/messages.inc.php:257 msgid "Import percentages as proper decimals (12.00% to .12)" From 729b94adc26db2139120a4716e1c1d89ebcb3c01 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:09:35 +0200 Subject: [PATCH 141/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index fddae6d89b..93e8c63611 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:08+0200\n" +"PO-Revision-Date: 2011-07-13 22:09+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3310,7 +3310,7 @@ msgstr "Importér valutaer ($5.00 til 5.00)" #: libraries/config/messages.inc.php:257 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "" +msgstr "Importér procenter med korrekte decimaler (12.00% bliver til .12)" #: libraries/config/messages.inc.php:258 #, fuzzy From 033b72ec6bd28ec6b37e545fcd106b886b2ad8a8 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:10:03 +0200 Subject: [PATCH 142/960] Translation update done using Pootle. --- po/da.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/da.po b/po/da.po index 93e8c63611..42caffee12 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:09+0200\n" +"PO-Revision-Date: 2011-07-13 22:10+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3313,10 +3313,9 @@ msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importér procenter med korrekte decimaler (12.00% bliver til .12)" #: libraries/config/messages.inc.php:258 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" -msgstr "Antal poster (queries) der skal springes over fra start" +msgstr "Antal SQL-forespørgsler der skal springes over fra start" #: libraries/config/messages.inc.php:259 msgid "Partial import: skip queries" From 2f54050611ae7b0f9715cc3bbd332cba994e35b3 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:10:21 +0200 Subject: [PATCH 143/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 42caffee12..1305d94257 100644 --- a/po/da.po +++ b/po/da.po @@ -3319,7 +3319,7 @@ msgstr "Antal SQL-forespørgsler der skal springes over fra start" #: libraries/config/messages.inc.php:259 msgid "Partial import: skip queries" -msgstr "" +msgstr "Delvis import: Spring over forespørgsler" #: libraries/config/messages.inc.php:261 #, fuzzy From 7a65b528547e75a313b1b12d27933b9fb62fb2db Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:10:55 +0200 Subject: [PATCH 144/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 1305d94257..2e514cea99 100644 --- a/po/da.po +++ b/po/da.po @@ -3322,10 +3322,9 @@ msgid "Partial import: skip queries" msgstr "Delvis import: Spring over forespørgsler" #: libraries/config/messages.inc.php:261 -#, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "Tilføj AUTO_INCREMENT værdi" +msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" #: libraries/config/messages.inc.php:264 msgid "Initial state for sliders" From f878a2bf292a0ea2d632bf2b0dac27497d6daa12 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:11:19 +0200 Subject: [PATCH 145/960] Translation update done using Pootle. --- po/da.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 2e514cea99..471c36a65f 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:10+0200\n" +"PO-Revision-Date: 2011-07-13 22:11+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3321,7 +3321,9 @@ msgstr "Antal SQL-forespørgsler der skal springes over fra start" msgid "Partial import: skip queries" msgstr "Delvis import: Spring over forespørgsler" +# zero = null? #: libraries/config/messages.inc.php:261 +#, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" From 924bc24759259d4a86472448f246e11394c8f424 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:12:03 +0200 Subject: [PATCH 146/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 471c36a65f..dbaad54b38 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:11+0200\n" +"PO-Revision-Date: 2011-07-13 22:12+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3330,7 +3330,7 @@ msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" #: libraries/config/messages.inc.php:264 msgid "Initial state for sliders" -msgstr "" +msgstr "Skydernes udgangspunkt" #: libraries/config/messages.inc.php:265 msgid "How many rows can be inserted at one time" From 8de793a6b074aa45f3806202976d584156382c14 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:12:22 +0200 Subject: [PATCH 147/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index dbaad54b38..f1d3e11d53 100644 --- a/po/da.po +++ b/po/da.po @@ -3334,7 +3334,7 @@ msgstr "Skydernes udgangspunkt" #: libraries/config/messages.inc.php:265 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "Hvor mange rækker kan der indsættes på een gang" #: libraries/config/messages.inc.php:266 msgid "Number of inserted rows" From 1460d7445b4afbe185b89622677f1180d563ae61 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:12:36 +0200 Subject: [PATCH 148/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index f1d3e11d53..dec2bfd889 100644 --- a/po/da.po +++ b/po/da.po @@ -3338,7 +3338,7 @@ msgstr "Hvor mange rækker kan der indsættes på een gang" #: libraries/config/messages.inc.php:266 msgid "Number of inserted rows" -msgstr "" +msgstr "Antal indsatte rækker" #: libraries/config/messages.inc.php:267 msgid "Target for quick access icon" From c76cfc57be7d3e77d600e1bf5f9f9bb8622278db Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:13:06 +0200 Subject: [PATCH 149/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index dec2bfd889..1d1605d93e 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:12+0200\n" +"PO-Revision-Date: 2011-07-13 22:13+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3346,7 +3346,7 @@ msgstr "" #: libraries/config/messages.inc.php:268 msgid "Show logo in left frame" -msgstr "" +msgstr "Vis logoet i venstre ramme" #: libraries/config/messages.inc.php:269 msgid "Display logo" From 4982d02b2482cd6f39e89f10ab5ed70d08065a49 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:13:11 +0200 Subject: [PATCH 150/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 1d1605d93e..d9fa3ec913 100644 --- a/po/da.po +++ b/po/da.po @@ -3350,7 +3350,7 @@ msgstr "Vis logoet i venstre ramme" #: libraries/config/messages.inc.php:269 msgid "Display logo" -msgstr "" +msgstr "Vis logo" #: libraries/config/messages.inc.php:270 msgid "Display server choice at the top of the left frame" From c8b234f7e25c6f6818b2a96166b5c8a7fcc3452b Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:13:34 +0200 Subject: [PATCH 151/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index d9fa3ec913..ac3e1806a4 100644 --- a/po/da.po +++ b/po/da.po @@ -3354,7 +3354,7 @@ msgstr "Vis logo" #: libraries/config/messages.inc.php:270 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "Vis servervalg øverst i venstre ramme" #: libraries/config/messages.inc.php:271 msgid "Display servers selection" From 1756d53b9bc050b5402156d62a3bad8c68afc7a9 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:13:53 +0200 Subject: [PATCH 152/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index ac3e1806a4..d9c46afa3f 100644 --- a/po/da.po +++ b/po/da.po @@ -3358,7 +3358,7 @@ msgstr "Vis servervalg øverst i venstre ramme" #: libraries/config/messages.inc.php:271 msgid "Display servers selection" -msgstr "" +msgstr "Vis servervalg" #: libraries/config/messages.inc.php:272 #, fuzzy From 3811afd5b143d43c774944e0126eed277ea9b4e5 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:14:32 +0200 Subject: [PATCH 153/960] Translation update done using Pootle. --- po/da.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/da.po b/po/da.po index d9c46afa3f..f458793604 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:13+0200\n" +"PO-Revision-Date: 2011-07-13 22:14+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3361,10 +3361,9 @@ msgid "Display servers selection" msgstr "Vis servervalg" #: libraries/config/messages.inc.php:272 -#, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" -msgstr "Antallet af tabeller der er åbne." +msgstr "" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" From 759549654378d9e461f5896083a9830f4a5736ae Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:15:29 +0200 Subject: [PATCH 154/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index f458793604..68c01d704a 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:14+0200\n" +"PO-Revision-Date: 2011-07-13 22:15+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3367,7 +3367,7 @@ msgstr "" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" -msgstr "" +msgstr "Streng der inddeler databaser i forskellige niveauer" #: libraries/config/messages.inc.php:274 msgid "Database tree separator" From 459e417d92e7fe65438f529b49011dcbe56e3ec6 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:15:55 +0200 Subject: [PATCH 155/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 68c01d704a..0e84cb64ab 100644 --- a/po/da.po +++ b/po/da.po @@ -3371,7 +3371,7 @@ msgstr "Streng der inddeler databaser i forskellige niveauer" #: libraries/config/messages.inc.php:274 msgid "Database tree separator" -msgstr "" +msgstr "Database niveau inddelings-streng" #: libraries/config/messages.inc.php:275 msgid "" From 695cfcbe062e0259410e95733f32aa1fd0cd0434 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:16:34 +0200 Subject: [PATCH 156/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 0e84cb64ab..58a7c01ee6 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:15+0200\n" +"PO-Revision-Date: 2011-07-13 22:16+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3377,7 +3377,7 @@ msgstr "Database niveau inddelings-streng" msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" -msgstr "" +msgstr "Kun i lille version; vis databaser i træ (afgjort vha. separator)" #: libraries/config/messages.inc.php:276 msgid "Display databases in a tree" From 3ac386c83a1e91420058f6c5f7078d01803c0428 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:16:51 +0200 Subject: [PATCH 157/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 58a7c01ee6..d8a50f3ad4 100644 --- a/po/da.po +++ b/po/da.po @@ -3367,7 +3367,7 @@ msgstr "" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" -msgstr "Streng der inddeler databaser i forskellige niveauer" +msgstr "Streng der inddeler databaser i træ" #: libraries/config/messages.inc.php:274 msgid "Database tree separator" From 4a7c58bd05779faf6154c2e8e73b1259ad771790 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:17:17 +0200 Subject: [PATCH 158/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index d8a50f3ad4..5804d41a01 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:16+0200\n" +"PO-Revision-Date: 2011-07-13 22:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3371,7 +3371,7 @@ msgstr "Streng der inddeler databaser i træ" #: libraries/config/messages.inc.php:274 msgid "Database tree separator" -msgstr "Database niveau inddelings-streng" +msgstr "Separator til database-inddeling" #: libraries/config/messages.inc.php:275 msgid "" From 566935651cf32c31d89f22e1d894c3ce88abbc09 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:17:34 +0200 Subject: [PATCH 159/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 5804d41a01..142be0b9b8 100644 --- a/po/da.po +++ b/po/da.po @@ -3381,7 +3381,7 @@ msgstr "Kun i lille version; vis databaser i træ (afgjort vha. separator)" #: libraries/config/messages.inc.php:276 msgid "Display databases in a tree" -msgstr "" +msgstr "Vis databaser i træ" #: libraries/config/messages.inc.php:277 msgid "Disable this if you want to see all databases at once" From 7cb6a5bafead85837b0f33b4486fc1abaa44ddde Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:17:54 +0200 Subject: [PATCH 160/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 142be0b9b8..4006594bb3 100644 --- a/po/da.po +++ b/po/da.po @@ -3385,7 +3385,7 @@ msgstr "Vis databaser i træ" #: libraries/config/messages.inc.php:277 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "Deaktivér dette hvis du ønsker at se alle databaser på een gang" #: libraries/config/messages.inc.php:278 msgid "Use light version" From bb3ffc8072b9490315b443a9176808980a555c9f Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:18:00 +0200 Subject: [PATCH 161/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 4006594bb3..3094e5f386 100644 --- a/po/da.po +++ b/po/da.po @@ -3389,7 +3389,7 @@ msgstr "Deaktivér dette hvis du ønsker at se alle databaser på een gang" #: libraries/config/messages.inc.php:278 msgid "Use light version" -msgstr "" +msgstr "Brug lille version" #: libraries/config/messages.inc.php:279 msgid "Maximum table tree depth" From 9fe67e581809e13115db0264369e2239b5e94cac Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:18:15 +0200 Subject: [PATCH 162/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 3094e5f386..a6f8476d55 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:17+0200\n" +"PO-Revision-Date: 2011-07-13 22:18+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3393,7 +3393,7 @@ msgstr "Brug lille version" #: libraries/config/messages.inc.php:279 msgid "Maximum table tree depth" -msgstr "" +msgstr "Maksimal dybde på database-træ" #: libraries/config/messages.inc.php:280 msgid "String that separates tables into different tree levels" From f8a2cf121eff02dccbdf99cd49f08289f53a4acc Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:18:43 +0200 Subject: [PATCH 163/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index a6f8476d55..93e16a0c59 100644 --- a/po/da.po +++ b/po/da.po @@ -3397,7 +3397,7 @@ msgstr "Maksimal dybde på database-træ" #: libraries/config/messages.inc.php:280 msgid "String that separates tables into different tree levels" -msgstr "" +msgstr "Streng der inddeler tabeller i træ" #: libraries/config/messages.inc.php:281 msgid "Table tree separator" From c63f292e24492a8cd7fd331add6fc24b485d4733 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:18:56 +0200 Subject: [PATCH 164/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 93e16a0c59..bd0227ab54 100644 --- a/po/da.po +++ b/po/da.po @@ -3401,7 +3401,7 @@ msgstr "Streng der inddeler tabeller i træ" #: libraries/config/messages.inc.php:281 msgid "Table tree separator" -msgstr "" +msgstr "Separator til tabel-inddeling" #: libraries/config/messages.inc.php:282 msgid "URL where logo in the navigation frame will point to" From 5423652b92ae1e299ae0fc4e4fe8e36aab9a2097 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:19:46 +0200 Subject: [PATCH 165/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index bd0227ab54..2c85aab1c4 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:18+0200\n" +"PO-Revision-Date: 2011-07-13 22:19+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3405,7 +3405,7 @@ msgstr "Separator til tabel-inddeling" #: libraries/config/messages.inc.php:282 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "URL som logoet i navigations-rammen vil pege på" #: libraries/config/messages.inc.php:283 msgid "Logo link URL" From b32d3b4b4d5295df2d7e1f7ec75611b6d40b77b5 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Wed, 13 Jul 2011 22:19:56 +0200 Subject: [PATCH 166/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 2c85aab1c4..5f3132f751 100644 --- a/po/da.po +++ b/po/da.po @@ -3409,7 +3409,7 @@ msgstr "URL som logoet i navigations-rammen vil pege på" #: libraries/config/messages.inc.php:283 msgid "Logo link URL" -msgstr "" +msgstr "Logo link-URL" #: libraries/config/messages.inc.php:284 msgid "" From 9475296d9b9fbfda167a382419a5cd00599801a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:07:39 +0200 Subject: [PATCH 167/960] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 5926f7c295..3d145a7593 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-07 16:22+0200\n" +"PO-Revision-Date: 2011-07-14 02:07+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -2235,10 +2235,9 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" #: libraries/common.lib.php:2456 -#, fuzzy #| msgid "Click to select" msgid "Click to toggle" -msgstr "Clic para seleccionar" +msgstr "Pulse para conmutar" #: libraries/common.lib.php:2727 libraries/common.lib.php:2734 #: libraries/common.lib.php:2921 libraries/config/setup.forms.php:296 From cc5470a3dd7c406d39a48c8e83c3905cd11e23f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:07:52 +0200 Subject: [PATCH 168/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 3d145a7593..aff29f8270 100644 --- a/po/es.po +++ b/po/es.po @@ -6629,10 +6629,9 @@ msgid "Generate Password" msgstr "Generar la contraseña" #: libraries/rte/rte_events.lib.php:24 -#, fuzzy #| msgid "Add an event" msgid "Add event" -msgstr "Añadir un evento" +msgstr "Añadir evento" #: libraries/rte/rte_events.lib.php:26 #, php-format From f9f6c0c06f284ba97da09afadff4d93a2aaf6bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:07:56 +0200 Subject: [PATCH 169/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index aff29f8270..36d6881bb2 100644 --- a/po/es.po +++ b/po/es.po @@ -6639,10 +6639,9 @@ msgid "Export of event %s" msgstr "Exportar evento %s" #: libraries/rte/rte_events.lib.php:27 -#, fuzzy #| msgid "Event" msgid "event" -msgstr "Evento" +msgstr "evento" #: libraries/rte/rte_events.lib.php:28 #, fuzzy From 0e5f8511e717ca5f294476bee2a63bc7937569e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:08:05 +0200 Subject: [PATCH 170/960] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 36d6881bb2..c78c049f6f 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:07+0200\n" +"PO-Revision-Date: 2011-07-14 02:08+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -6644,10 +6644,9 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_events.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new event" -msgstr "No posee los privilegios necesarios para crear una nueva rutina" +msgstr "No posee los privilegios necesarios para crear un nuevo evento" #: libraries/rte/rte_events.lib.php:29 #, fuzzy, php-format From 3b798cc719e6ae49bb0cc7da844d987009ab7a82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:08:24 +0200 Subject: [PATCH 171/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index c78c049f6f..66c8afd6eb 100644 --- a/po/es.po +++ b/po/es.po @@ -6649,10 +6649,10 @@ msgid "You do not have the necessary privileges to create a new event" msgstr "No posee los privilegios necesarios para crear un nuevo evento" #: libraries/rte/rte_events.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" -msgstr "No se encontró evento con nombre %s en la base de datos %s" +msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s" #: libraries/rte/rte_events.lib.php:30 msgid "There are no events to display." From 08304ab8e30c597534d6f97a218af0a73a9caa4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:08:38 +0200 Subject: [PATCH 172/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 66c8afd6eb..00cd9706c5 100644 --- a/po/es.po +++ b/po/es.po @@ -6670,10 +6670,9 @@ msgid "The following query has failed: \"%s\"" msgstr "Falló la siguiente consulta: \"%s\"" #: libraries/rte/rte_events.lib.php:105 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." -msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada." +msgstr "Pedimos disculpas por no haber podido recuperar el evento eliminado." #: libraries/rte/rte_events.lib.php:106 libraries/rte/rte_routines.lib.php:274 #: libraries/rte/rte_triggers.lib.php:98 From 5b5ccf084c21aafe722db42d62a604646ba12bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:08:49 +0200 Subject: [PATCH 173/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 00cd9706c5..1e48bf9d54 100644 --- a/po/es.po +++ b/po/es.po @@ -6680,10 +6680,10 @@ msgid "The backed up query was:" msgstr "La consulta respaldada era:" #: libraries/rte/rte_events.lib.php:110 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." -msgstr "Se modificó la rutina %1$s." +msgstr "Se modificó el evento %1$s." #: libraries/rte/rte_events.lib.php:122 #, fuzzy, php-format From 56779320f14442a2b05de4b51daae9dc1dfd8d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:06 +0200 Subject: [PATCH 174/960] Translation update done using Pootle. --- po/es.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 1e48bf9d54..4952614193 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:08+0200\n" +"PO-Revision-Date: 2011-07-14 02:09+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -6686,10 +6686,10 @@ msgid "Event %1$s has been modified." msgstr "Se modificó el evento %1$s." #: libraries/rte/rte_events.lib.php:122 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Event %1$s has been created." -msgstr "La Tabla %1$s se creó." +msgstr "Se creó el evento %1$s." #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:299 #: libraries/rte/rte_triggers.lib.php:122 From 508703ac86b20825dc80dbc21b1e8d80971567a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:14 +0200 Subject: [PATCH 175/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 4952614193..fcab8630b5 100644 --- a/po/es.po +++ b/po/es.po @@ -6697,10 +6697,9 @@ msgid "One or more errors have occured while processing your request:" msgstr "Ocurrieron uno o más errores al procesar el pedido:" #: libraries/rte/rte_events.lib.php:170 -#, fuzzy #| msgid "Create view" msgid "Create event" -msgstr "Crear vista" +msgstr "Crear evento" #: libraries/rte/rte_events.lib.php:174 #, fuzzy From 34ecac4bbc2ca662fdd48730dde56edf5d0a9df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:21 +0200 Subject: [PATCH 176/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index fcab8630b5..cd77dee8e1 100644 --- a/po/es.po +++ b/po/es.po @@ -6702,10 +6702,9 @@ msgid "Create event" msgstr "Crear evento" #: libraries/rte/rte_events.lib.php:174 -#, fuzzy #| msgid "Edit server" msgid "Edit event" -msgstr "Editar los parámetros del servidor" +msgstr "Editar evento" #: libraries/rte/rte_events.lib.php:201 libraries/rte/rte_routines.lib.php:375 #: libraries/rte/rte_routines.lib.php:1326 From 0225bab824a05b3ee58c7d51f082378f6c8068c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:31 +0200 Subject: [PATCH 177/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index cd77dee8e1..eab7f9b013 100644 --- a/po/es.po +++ b/po/es.po @@ -6719,10 +6719,9 @@ msgid "Details" msgstr "Detalles" #: libraries/rte/rte_events.lib.php:363 -#, fuzzy #| msgid "Event type" msgid "Event name" -msgstr "Tipo de evento" +msgstr "Nombre del evento" #: libraries/rte/rte_events.lib.php:384 server_binlog.php:182 msgid "Event type" From c9eedc7d1dd06a761e2d8ab2ea77bd004ce002ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:37 +0200 Subject: [PATCH 178/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index eab7f9b013..66192339c4 100644 --- a/po/es.po +++ b/po/es.po @@ -6733,10 +6733,9 @@ msgid "Change to %s" msgstr "Cambiar a %s" #: libraries/rte/rte_events.lib.php:411 -#, fuzzy #| msgid "Execute" msgid "Execute at" -msgstr "Ejecutar" +msgstr "Ejecutar en" #: libraries/rte/rte_events.lib.php:419 #, fuzzy From 654eab1c552a81e2cf0bc223ebdc65df7c2114c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:41 +0200 Subject: [PATCH 179/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 66192339c4..6fddac44c5 100644 --- a/po/es.po +++ b/po/es.po @@ -6738,10 +6738,9 @@ msgid "Execute at" msgstr "Ejecutar en" #: libraries/rte/rte_events.lib.php:419 -#, fuzzy #| msgid "Execute" msgid "Execute every" -msgstr "Ejecutar" +msgstr "Ejecutar cada" #: libraries/rte/rte_events.lib.php:438 #, fuzzy From bebde5922ca8531f12aa023c2ba6fd235c024f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:47 +0200 Subject: [PATCH 180/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 6fddac44c5..76e0cdf153 100644 --- a/po/es.po +++ b/po/es.po @@ -6743,10 +6743,9 @@ msgid "Execute every" msgstr "Ejecutar cada" #: libraries/rte/rte_events.lib.php:438 -#, fuzzy #| msgid "Startup" msgid "Start" -msgstr "Inicio" +msgstr "Iniciar" #: libraries/rte/rte_events.lib.php:454 libraries/rte/rte_routines.lib.php:952 #: libraries/rte/rte_triggers.lib.php:356 From 54e97f97923a121258695b832fcd39839e43944a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:09:57 +0200 Subject: [PATCH 181/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 76e0cdf153..dffef311c7 100644 --- a/po/es.po +++ b/po/es.po @@ -6753,10 +6753,9 @@ msgid "Definition" msgstr "Definición" #: libraries/rte/rte_events.lib.php:460 -#, fuzzy #| msgid "complete inserts" msgid "On completion preserve" -msgstr "INSERTs completos" +msgstr "Preservar al completar" #: libraries/rte/rte_events.lib.php:464 libraries/rte/rte_routines.lib.php:962 #: libraries/rte/rte_triggers.lib.php:362 From 85c7cba14198071ccebb1690eb3167e4171224d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:10:17 +0200 Subject: [PATCH 182/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index dffef311c7..5bd67d03dd 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:09+0200\n" +"PO-Revision-Date: 2011-07-14 02:10+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -6766,7 +6766,7 @@ msgstr "Definidor" #: libraries/rte/rte_routines.lib.php:1024 #: libraries/rte/rte_triggers.lib.php:400 msgid "The definer must be in the \"username@hostname\" format" -msgstr "" +msgstr "El definidor tiene que ser en el formato \"usuario@sistema\"" #: libraries/rte/rte_events.lib.php:514 #, fuzzy From 2ad3c511216268ae358e0bc033226d9ac24ad862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:10:23 +0200 Subject: [PATCH 183/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5bd67d03dd..bd1a08425d 100644 --- a/po/es.po +++ b/po/es.po @@ -6769,10 +6769,9 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "El definidor tiene que ser en el formato \"usuario@sistema\"" #: libraries/rte/rte_events.lib.php:514 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide an event name" -msgstr "Debe proveer un nombre de rutina" +msgstr "Debe proveer un nombre de evento" #: libraries/rte/rte_events.lib.php:526 #, fuzzy From 0225bbb75791dcf54314f8a9ca044a1638a209a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:10:48 +0200 Subject: [PATCH 184/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index bd1a08425d..98e5e39d4e 100644 --- a/po/es.po +++ b/po/es.po @@ -6774,10 +6774,9 @@ msgid "You must provide an event name" msgstr "Debe proveer un nombre de evento" #: libraries/rte/rte_events.lib.php:526 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." -msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina." +msgstr "Debe proveer un valor de intervalo válido para el evento." #: libraries/rte/rte_events.lib.php:538 #, fuzzy From 01fbf156c744294efe2082ba62717d5dcbb4d1f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:11:12 +0200 Subject: [PATCH 185/960] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 98e5e39d4e..ebaf005889 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:10+0200\n" +"PO-Revision-Date: 2011-07-14 02:11+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -6779,10 +6779,9 @@ msgid "You must provide a valid interval value for the event." msgstr "Debe proveer un valor de intervalo válido para el evento." #: libraries/rte/rte_events.lib.php:538 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." -msgstr "Debe proveer una definición de rutina." +msgstr "Debe proveer un tiempo de ejecución válido para el evento." #: libraries/rte/rte_events.lib.php:542 #, fuzzy From 5ff0e06e1e548733551a103d55f24364975a7147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:11:26 +0200 Subject: [PATCH 186/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index ebaf005889..a1956aca9a 100644 --- a/po/es.po +++ b/po/es.po @@ -6784,10 +6784,9 @@ msgid "You must provide a valid execution time for the event." msgstr "Debe proveer un tiempo de ejecución válido para el evento." #: libraries/rte/rte_events.lib.php:542 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." -msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina." +msgstr "Debe proveer un tipo válido para el evento." #: libraries/rte/rte_events.lib.php:561 #, fuzzy From efbb456ef8f588626d8b801b6e968bffae0daf4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:11:42 +0200 Subject: [PATCH 187/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index a1956aca9a..5623446385 100644 --- a/po/es.po +++ b/po/es.po @@ -6789,10 +6789,9 @@ msgid "You must provide a valid type for the event." msgstr "Debe proveer un tipo válido para el evento." #: libraries/rte/rte_events.lib.php:561 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide an event definition." -msgstr "Debe proveer una definición de rutina." +msgstr "Debe proveer una definición de evento." #: libraries/rte/rte_footer.lib.php:29 msgid "New" From bae59334bb5bc73eeec6cfa758455a208d096c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:11:46 +0200 Subject: [PATCH 188/960] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 5623446385..f0463aea5b 100644 --- a/po/es.po +++ b/po/es.po @@ -6795,7 +6795,7 @@ msgstr "Debe proveer una definición de evento." #: libraries/rte/rte_footer.lib.php:29 msgid "New" -msgstr "" +msgstr "Nuevo" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" From fa3855fd033d7f68b037b78e503e8097754a787d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:11:51 +0200 Subject: [PATCH 189/960] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index f0463aea5b..d533cdc0cc 100644 --- a/po/es.po +++ b/po/es.po @@ -6799,7 +6799,7 @@ msgstr "Nuevo" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" -msgstr "" +msgstr "Apagado" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" From ace1f039586bf1423ca865354f5ada877031da5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:11:54 +0200 Subject: [PATCH 190/960] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index d533cdc0cc..a212cc9911 100644 --- a/po/es.po +++ b/po/es.po @@ -6803,7 +6803,7 @@ msgstr "Apagado" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" -msgstr "" +msgstr "Encendido" #: libraries/rte/rte_footer.lib.php:108 #, fuzzy From e79ce9462339942f2734131d8d414363a4ace2cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:12:11 +0200 Subject: [PATCH 191/960] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index a212cc9911..dc91f10e12 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:11+0200\n" +"PO-Revision-Date: 2011-07-14 02:12+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -6806,10 +6806,9 @@ msgid "ON" msgstr "Encendido" #: libraries/rte/rte_footer.lib.php:108 -#, fuzzy #| msgid "The event scheduler is enabled" msgid "Event scheduler status" -msgstr "El planificador de eventos está activado" +msgstr "Estado del planificador de eventos" #: libraries/rte/rte_list.lib.php:52 #, fuzzy From d74bb1359ff47c8f76ba4ce4b4126a30fcc9fce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:12:18 +0200 Subject: [PATCH 192/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index dc91f10e12..b628bc235f 100644 --- a/po/es.po +++ b/po/es.po @@ -6811,10 +6811,9 @@ msgid "Event scheduler status" msgstr "Estado del planificador de eventos" #: libraries/rte/rte_list.lib.php:52 -#, fuzzy #| msgid "Return type" msgid "Returns" -msgstr "Retornar el tipo" +msgstr "Retorna" #: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:328 #: server_status.php:800 sql.php:943 From 3f86e8c579385d1a91d9f0d7d46a326123a14fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:12:26 +0200 Subject: [PATCH 193/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b628bc235f..7dead46c0f 100644 --- a/po/es.po +++ b/po/es.po @@ -6834,10 +6834,9 @@ msgid "Export of routine %s" msgstr "Exportar la rutina %s" #: libraries/rte/rte_routines.lib.php:27 -#, fuzzy #| msgid "Routines" msgid "routine" -msgstr "Rutinas" +msgstr "rutina" #: libraries/rte/rte_routines.lib.php:28 msgid "You do not have the necessary privileges to create a new routine" From c382501ed6e0c007a5f49f3587be03c4512dc406 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:12:55 +0200 Subject: [PATCH 194/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 7dead46c0f..5eab5b974a 100644 --- a/po/es.po +++ b/po/es.po @@ -6961,10 +6961,9 @@ msgid "You must provide a name and a type for each routine parameter." msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina." #: libraries/rte/rte_routines.lib.php:1121 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." -msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina." +msgstr "Debe proveer un tipo de retorno válido para la rutina." #: libraries/rte/rte_routines.lib.php:1171 msgid "You must provide a routine definition." From 94a1a70c210373ce7f877a470ccd1cad811ad7a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:00 +0200 Subject: [PATCH 195/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5eab5b974a..1657540a6e 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:12+0200\n" +"PO-Revision-Date: 2011-07-14 02:13+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -6958,7 +6958,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1096 msgid "You must provide a name and a type for each routine parameter." -msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina." +msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina." #: libraries/rte/rte_routines.lib.php:1121 #| msgid "You must provide a name and a type for each routine parameter." From 1c24e9ee47efde163707ba72ca4a1e35496688ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:07 +0200 Subject: [PATCH 196/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1657540a6e..cf9e904982 100644 --- a/po/es.po +++ b/po/es.po @@ -6997,10 +6997,9 @@ msgid "Function" msgstr "Función" #: libraries/rte/rte_triggers.lib.php:24 -#, fuzzy #| msgid "Add a trigger" msgid "Add trigger" -msgstr "Agregar un disparador" +msgstr "Agregar disparador" #: libraries/rte/rte_triggers.lib.php:26 #, php-format From c0c80df6c273bf8ecac6356630ad13ec5b859d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:13 +0200 Subject: [PATCH 197/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index cf9e904982..ef37b73850 100644 --- a/po/es.po +++ b/po/es.po @@ -7007,10 +7007,9 @@ msgid "Export of trigger %s" msgstr "Exportar disparador %s" #: libraries/rte/rte_triggers.lib.php:27 -#, fuzzy #| msgid "Triggers" msgid "trigger" -msgstr "Disparadores" +msgstr "disparador" #: libraries/rte/rte_triggers.lib.php:28 #, fuzzy From d9a9a29484350f07ff505176d2e5b36d19de9488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:21 +0200 Subject: [PATCH 198/960] Translation update done using Pootle. --- po/es.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/es.po b/po/es.po index ef37b73850..b210c957ca 100644 --- a/po/es.po +++ b/po/es.po @@ -7012,7 +7012,6 @@ msgid "trigger" msgstr "disparador" #: libraries/rte/rte_triggers.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new trigger" msgstr "No posee los privilegios necesarios para crear una nueva rutina" From 6485d39ca4b683d84e61d66aa01e9586c490eeb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:36 +0200 Subject: [PATCH 199/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b210c957ca..e68e0517dc 100644 --- a/po/es.po +++ b/po/es.po @@ -7017,10 +7017,10 @@ msgid "You do not have the necessary privileges to create a new trigger" msgstr "No posee los privilegios necesarios para crear una nueva rutina" #: libraries/rte/rte_triggers.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" -msgstr "No se encontró rutina con nombre %1$s en la base de datos %2$s" +msgstr "No se encontró disparador con nombre %1$s en la base de datos %2$s" #: libraries/rte/rte_triggers.lib.php:30 msgid "There are no triggers to display." From 80a4041067a5820261d489425a17b8a964ede543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:47 +0200 Subject: [PATCH 200/960] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e68e0517dc..7fa5211eea 100644 --- a/po/es.po +++ b/po/es.po @@ -7014,7 +7014,7 @@ msgstr "disparador" #: libraries/rte/rte_triggers.lib.php:28 #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new trigger" -msgstr "No posee los privilegios necesarios para crear una nueva rutina" +msgstr "No posee los privilegios necesarios para crear un nuevo disparador" #: libraries/rte/rte_triggers.lib.php:29 #, php-format From f41ff3fabacaa39c17b0bd0e1162baaf6904a60f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:13:59 +0200 Subject: [PATCH 201/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 7fa5211eea..bf748a6185 100644 --- a/po/es.po +++ b/po/es.po @@ -7027,10 +7027,10 @@ msgid "There are no triggers to display." msgstr "No hay disparadores para mostrar." #: libraries/rte/rte_triggers.lib.php:97 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." -msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada." +msgstr "" +"Pedimos disculpas por no haber podido recuperar el disparador eliminado." #: libraries/rte/rte_triggers.lib.php:102 #, fuzzy, php-format From 8f14e81437911cdfdccf98f98d907452f494c7b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:14:08 +0200 Subject: [PATCH 202/960] Translation update done using Pootle. --- po/es.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index bf748a6185..29dfa34101 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:13+0200\n" +"PO-Revision-Date: 2011-07-14 02:14+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -7033,10 +7033,10 @@ msgstr "" "Pedimos disculpas por no haber podido recuperar el disparador eliminado." #: libraries/rte/rte_triggers.lib.php:102 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." -msgstr "Se modificó la rutina %1$s." +msgstr "Se modificó el disparador %1$s." #: libraries/rte/rte_triggers.lib.php:114 #, fuzzy, php-format From 7397e8bfb10345a569a78dff892b390fc0f66d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:14:18 +0200 Subject: [PATCH 203/960] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 29dfa34101..e57583335c 100644 --- a/po/es.po +++ b/po/es.po @@ -7039,10 +7039,10 @@ msgid "Trigger %1$s has been modified." msgstr "Se modificó el disparador %1$s." #: libraries/rte/rte_triggers.lib.php:114 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." -msgstr "La Tabla %1$s se creó." +msgstr "Disparador %1$s creado." #: libraries/rte/rte_triggers.lib.php:165 #, fuzzy From de7ede9034310e46aad992b6211a1acf844ed9ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:14:24 +0200 Subject: [PATCH 204/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index e57583335c..cce1c79d15 100644 --- a/po/es.po +++ b/po/es.po @@ -7045,10 +7045,9 @@ msgid "Trigger %1$s has been created." msgstr "Disparador %1$s creado." #: libraries/rte/rte_triggers.lib.php:165 -#, fuzzy #| msgid "Create view" msgid "Create trigger" -msgstr "Crear vista" +msgstr "Crear disparador" #: libraries/rte/rte_triggers.lib.php:169 #, fuzzy From 652a7d7f97fdcf29f383efced59833e33db0327c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:14:32 +0200 Subject: [PATCH 205/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index cce1c79d15..60d8455d36 100644 --- a/po/es.po +++ b/po/es.po @@ -7050,10 +7050,9 @@ msgid "Create trigger" msgstr "Crear disparador" #: libraries/rte/rte_triggers.lib.php:169 -#, fuzzy #| msgid "Add a trigger" msgid "Edit trigger" -msgstr "Agregar un disparador" +msgstr "Editar disparador" #: libraries/rte/rte_triggers.lib.php:309 #, fuzzy From 20f15cd2e9083c75bd7a3a72f459ada62c6b4fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:14:41 +0200 Subject: [PATCH 206/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 60d8455d36..afdddb8394 100644 --- a/po/es.po +++ b/po/es.po @@ -7055,10 +7055,9 @@ msgid "Edit trigger" msgstr "Editar disparador" #: libraries/rte/rte_triggers.lib.php:309 -#, fuzzy #| msgid "Triggers" msgid "Trigger name" -msgstr "Disparadores" +msgstr "Nombre del disparador" #: libraries/rte/rte_triggers.lib.php:407 #, fuzzy From aaaa5b19f7408ff4f3272b267fd667b8b4014a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:14:51 +0200 Subject: [PATCH 207/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index afdddb8394..d60ae999c5 100644 --- a/po/es.po +++ b/po/es.po @@ -7060,10 +7060,9 @@ msgid "Trigger name" msgstr "Nombre del disparador" #: libraries/rte/rte_triggers.lib.php:407 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a trigger name" -msgstr "Debe proveer un nombre de rutina" +msgstr "Debe proveer un nombre de disparador" #: libraries/rte/rte_triggers.lib.php:412 #, fuzzy From 21b1d9418ac626811a1f935fc2cdcc3b6743920b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:15:18 +0200 Subject: [PATCH 208/960] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index d60ae999c5..5f9114e771 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 02:14+0200\n" +"PO-Revision-Date: 2011-07-14 02:15+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -7065,10 +7065,9 @@ msgid "You must provide a trigger name" msgstr "Debe proveer un nombre de disparador" #: libraries/rte/rte_triggers.lib.php:412 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" -msgstr "Debe proveer un nombre de rutina" +msgstr "Debe proveer una sincronización válida para el disparador" #: libraries/rte/rte_triggers.lib.php:417 #, fuzzy From 0749e971af0167a03dba4802a1c70b9bdc1b6841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:15:30 +0200 Subject: [PATCH 209/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 5f9114e771..ab5d872b9b 100644 --- a/po/es.po +++ b/po/es.po @@ -7070,10 +7070,9 @@ msgid "You must provide a valid timing for the trigger" msgstr "Debe proveer una sincronización válida para el disparador" #: libraries/rte/rte_triggers.lib.php:417 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" -msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina." +msgstr "Debe proveer un evento válido para el disparador" #: libraries/rte/rte_triggers.lib.php:423 #, fuzzy From a7c2463c137217c1fc82e7bf89b1b88fa42f0af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:15:40 +0200 Subject: [PATCH 210/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index ab5d872b9b..036f13edc9 100644 --- a/po/es.po +++ b/po/es.po @@ -7075,10 +7075,9 @@ msgid "You must provide a valid event for the trigger" msgstr "Debe proveer un evento válido para el disparador" #: libraries/rte/rte_triggers.lib.php:423 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid table name" -msgstr "Debe proveer un nombre de rutina" +msgstr "Debe proveer un nombre de tabla válido" #: libraries/rte/rte_triggers.lib.php:429 #, fuzzy From 118a4e2fdd05eabc9dd7a139256be8ee33d92f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Thu, 14 Jul 2011 02:15:56 +0200 Subject: [PATCH 211/960] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 036f13edc9..f20aacaacb 100644 --- a/po/es.po +++ b/po/es.po @@ -7080,10 +7080,9 @@ msgid "You must provide a valid table name" msgstr "Debe proveer un nombre de tabla válido" #: libraries/rte/rte_triggers.lib.php:429 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." -msgstr "Debe proveer una definición de rutina." +msgstr "Debe proveer una definición del disparador." #: libraries/schema/Dia_Relation_Schema.class.php:222 #: libraries/schema/Eps_Relation_Schema.class.php:395 From 8f7a46f1af7e28aa94d6e66d20a18814649476ad Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:26:19 +0200 Subject: [PATCH 212/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 5f3132f751..f41e98ab1f 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 22:19+0200\n" +"PO-Revision-Date: 2011-07-14 08:26+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3323,7 +3323,6 @@ msgstr "Delvis import: Spring over forespørgsler" # zero = null? #: libraries/config/messages.inc.php:261 -#, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" From cbd599cd1c8cc1d89129d801c15a1d4970abc594 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:27:01 +0200 Subject: [PATCH 213/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index f41e98ab1f..923cefbb62 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:26+0200\n" +"PO-Revision-Date: 2011-07-14 08:27+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3362,7 +3362,7 @@ msgstr "Vis servervalg" #: libraries/config/messages.inc.php:272 #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" -msgstr "" +msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" From 04602cbb76e640275fdd350380cc300a523ffc96 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:28:15 +0200 Subject: [PATCH 214/960] Translation update done using Pootle. --- po/da.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 923cefbb62..a36852c5b9 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:27+0200\n" +"PO-Revision-Date: 2011-07-14 08:28+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3415,6 +3415,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" +"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt " +"([kbd]new[/kbd])" #: libraries/config/messages.inc.php:285 msgid "Logo link target" From 475102ab12bd61bb270b8ab9021b26b955101af0 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:28:31 +0200 Subject: [PATCH 215/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index a36852c5b9..54daa6b644 100644 --- a/po/da.po +++ b/po/da.po @@ -3420,7 +3420,7 @@ msgstr "" #: libraries/config/messages.inc.php:285 msgid "Logo link target" -msgstr "" +msgstr "Logo link target" #: libraries/config/messages.inc.php:286 msgid "Highlight server under the mouse cursor" From 1e74ebec1c74a57bf2f4560ba00975c8fd34f45f Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:28:55 +0200 Subject: [PATCH 216/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 54daa6b644..e8b14b82e0 100644 --- a/po/da.po +++ b/po/da.po @@ -3424,7 +3424,7 @@ msgstr "Logo link target" #: libraries/config/messages.inc.php:286 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "Fremhæv server under musepil" #: libraries/config/messages.inc.php:287 msgid "Enable highlighting" From 1736d28f5274b1340470b182862108af5bfeef1f Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:29:06 +0200 Subject: [PATCH 217/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index e8b14b82e0..ab3ba92c62 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:28+0200\n" +"PO-Revision-Date: 2011-07-14 08:29+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3428,7 +3428,7 @@ msgstr "Fremhæv server under musepil" #: libraries/config/messages.inc.php:287 msgid "Enable highlighting" -msgstr "" +msgstr "Aktivér fremhævning" #: libraries/config/messages.inc.php:288 msgid "Maximum number of recently used tables; set 0 to disable" From 620348e402fdf83f78d7f57447c12364ea6c51f0 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:29:35 +0200 Subject: [PATCH 218/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index ab3ba92c62..6c3fb3abbc 100644 --- a/po/da.po +++ b/po/da.po @@ -3432,7 +3432,7 @@ msgstr "Aktivér fremhævning" #: libraries/config/messages.inc.php:288 msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "" +msgstr "Højeste antal af tidligere brugte tabeller; sæt til 0 for at deaktivere" #: libraries/config/messages.inc.php:289 #, fuzzy From b160971f6e9dcceb2b831a24065b8c0e1840745f Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:29:58 +0200 Subject: [PATCH 219/960] Translation update done using Pootle. --- po/da.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index 6c3fb3abbc..a020e0aae7 100644 --- a/po/da.po +++ b/po/da.po @@ -3435,10 +3435,9 @@ msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Højeste antal af tidligere brugte tabeller; sæt til 0 for at deaktivere" #: libraries/config/messages.inc.php:289 -#, fuzzy #| msgid "Analyze table" msgid "Recently used tables" -msgstr "Analysér tabel" +msgstr "Tidligere anvendte tabeller" #: libraries/config/messages.inc.php:290 msgid "Use less graphically intense tabs" From 6c3a38c19ee7b245bffa19b853aa6faf7a5dc3f6 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:30:07 +0200 Subject: [PATCH 220/960] Translation update done using Pootle. --- po/da.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index a020e0aae7..91cbe28915 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:29+0200\n" +"PO-Revision-Date: 2011-07-14 08:30+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3432,7 +3432,8 @@ msgstr "Aktivér fremhævning" #: libraries/config/messages.inc.php:288 msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "Højeste antal af tidligere brugte tabeller; sæt til 0 for at deaktivere" +msgstr "" +"Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere" #: libraries/config/messages.inc.php:289 #| msgid "Analyze table" From dfeb6d740551dc4cd1dd2d1f96a75dcbd0e606ba Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:30:53 +0200 Subject: [PATCH 221/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index 91cbe28915..f19d07f157 100644 --- a/po/da.po +++ b/po/da.po @@ -3442,7 +3442,7 @@ msgstr "Tidligere anvendte tabeller" #: libraries/config/messages.inc.php:290 msgid "Use less graphically intense tabs" -msgstr "" +msgstr "Brug faner med mindre grafik" #: libraries/config/messages.inc.php:291 msgid "Light tabs" From 5bee9bbbc38e2f307c76fd7c22f8bedd0f2d155d Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:33:05 +0200 Subject: [PATCH 222/960] Translation update done using Pootle. --- po/da.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/da.po b/po/da.po index f19d07f157..bf57c94f39 100644 --- a/po/da.po +++ b/po/da.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:30+0200\n" +"PO-Revision-Date: 2011-07-14 08:33+0200\n" "Last-Translator: \n" "Language-Team: danish \n" "Language: da\n" @@ -3455,7 +3455,7 @@ msgstr "" #: libraries/config/messages.inc.php:293 msgid "Limit column characters" -msgstr "" +msgstr "Begræns antal karakterer i kolonne" #: libraries/config/messages.inc.php:294 msgid "" From cec76e87853ed4b87df514637f2e56da66144a02 Mon Sep 17 00:00:00 2001 From: jacobkamphansen Date: Thu, 14 Jul 2011 08:33:22 +0200 Subject: [PATCH 223/960] Translation update done using Pootle. --- po/da.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/da.po b/po/da.po index bf57c94f39..0fce032763 100644 --- a/po/da.po +++ b/po/da.po @@ -3466,7 +3466,7 @@ msgstr "" #: libraries/config/messages.inc.php:295 msgid "Delete all cookies on logout" -msgstr "" +msgstr "Slet alle cookies når der logges ud" #: libraries/config/messages.inc.php:296 msgid "" From 2a2fcc3a4905bc2e12382fbe8bb9e9e85a47ea9f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 08:43:50 +0200 Subject: [PATCH 224/960] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index a420de68f0..f70191b04d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-13 10:06+0200\n" +"PO-Revision-Date: 2011-07-14 08:43+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2220,10 +2220,9 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" #: libraries/common.lib.php:2456 -#, fuzzy #| msgid "Click to select" msgid "Click to toggle" -msgstr "Kliknite pre vybranie" +msgstr "Kliknite pre prepnutie" #: libraries/common.lib.php:2727 libraries/common.lib.php:2734 #: libraries/common.lib.php:2921 libraries/config/setup.forms.php:296 From c6c6ee8f3471b52bbbbc4a2384de02e3dd834a49 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 08:48:52 +0200 Subject: [PATCH 225/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index f70191b04d..dd2435009a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:43+0200\n" +"PO-Revision-Date: 2011-07-14 08:48+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2660,6 +2660,8 @@ msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Vypnúť hromadné operácie pre údržbu tabuliek, ako je optimalizácia alebo " +"opravy vybraných tabuliek v databáze." #: libraries/config/messages.inc.php:61 msgid "Disable multi table maintenance" From ad385471a58032268c2e79ba6d4c9a1c13d31d56 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 08:52:59 +0200 Subject: [PATCH 226/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index dd2435009a..3e749ab4eb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:48+0200\n" +"PO-Revision-Date: 2011-07-14 08:52+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3717,7 +3717,7 @@ msgstr "Prekódovací nástroj" #: libraries/config/messages.inc.php:350 msgid "When browsing tables, the sorting of each table is remembered" -msgstr "" +msgstr "Pri prechádzaní tabuliek sa pre každú uloží nastavenie triedenia" #: libraries/config/messages.inc.php:351 msgid "Remember table's sorting" From 0fd3a37e1d9951ebb6056fbd7425d8387a2089d2 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:02:04 +0200 Subject: [PATCH 227/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3e749ab4eb..0678efbddb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 08:52+0200\n" +"PO-Revision-Date: 2011-07-14 09:02+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4326,6 +4326,8 @@ msgstr "Zobraziť komentáre tabuľky vo vyskakovacom okne nápovedy" msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" +"Označiť použité tabuľky a umožniť zobrazovanie databáz s uzamknutými " +"tabuľkami" #: libraries/config/messages.inc.php:472 msgid "Skip locked tables" From d144d2cc2130b89c3fd3386a5f7ba0884a5e0cb3 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:05:55 +0200 Subject: [PATCH 228/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 0678efbddb..7f5f90d21e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:02+0200\n" +"PO-Revision-Date: 2011-07-14 09:05+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4377,6 +4377,8 @@ msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" +"Navrhnúť mano novej databázy vo formulári pre vytváranie databázy (pokiaľ je " +"to možné) alebo nechať prázdne pole" #: libraries/config/messages.inc.php:485 msgid "Suggest new database name" From c7da9e0f95dbbf95c41e991eb0a7246e809a3728 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:07:29 +0200 Subject: [PATCH 229/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 7f5f90d21e..5da679af89 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:05+0200\n" +"PO-Revision-Date: 2011-07-14 09:07+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4387,6 +4387,8 @@ msgstr "Navrhnúť meno novej databázy" #: libraries/config/messages.inc.php:486 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" +"Na hlavnej stránke je zobrazené varovanie pokiaľ je detekované rozšírenie " +"Suhosin" #: libraries/config/messages.inc.php:487 msgid "Suhosin warning" From 98b75a84591a80d64aeef41f4147ddc029d0c585 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:10:13 +0200 Subject: [PATCH 230/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 5da679af89..63c84401f0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:07+0200\n" +"PO-Revision-Date: 2011-07-14 09:10+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4399,6 +4399,8 @@ msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"Veľkosť editačného okna (počet stĺpcov). Táto hodnota bude zväčšená pre okná " +"SQL dopytov (*2) a pre dopytové okno (*1,25)" #: libraries/config/messages.inc.php:489 msgid "Textarea columns" From 360e5d8f077ffbfc9a8714e941405d6a40210c29 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:10:48 +0200 Subject: [PATCH 231/960] Translation update done using Pootle. --- po/sk.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sk.po b/po/sk.po index 63c84401f0..ae909f47f0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4411,6 +4411,8 @@ msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"Veľkosť editačného okna (počet riadkov). Táto hodnota bude zväčšená pre okná " +"SQL dopytov (*2) a pre dopytové okno (*1,25)" #: libraries/config/messages.inc.php:491 msgid "Textarea rows" From 532b04242f0afdde6120ae3eb96136423a3ef75a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:13:15 +0200 Subject: [PATCH 232/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index ae909f47f0..1c77d2b035 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:10+0200\n" +"PO-Revision-Date: 2011-07-14 09:13+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4448,7 +4448,7 @@ msgstr "" #: libraries/config/messages.inc.php:501 msgid "List of trusted proxies for IP allow/deny" -msgstr "" +msgstr "Zoznam dôveryhodných proxy pre povolenie/zakázanie IP adresy" #: libraries/config/messages.inc.php:502 msgid "Directory on server where you can upload files for import" From 35a715d49729478f56f2ed3d4d4feb7920bde1d9 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:15:03 +0200 Subject: [PATCH 233/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1c77d2b035..fd078be925 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:13+0200\n" +"PO-Revision-Date: 2011-07-14 09:15+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4471,6 +4471,8 @@ msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" +"Pokiaľ je vypnuté, užívatelia nemôžu zmeniť žiadne z nižšie uvedených " +"nastavení, bez ohľadu na zaškrtávacie pole vpravo" #: libraries/config/messages.inc.php:507 msgid "Enable the Developer tab in settings" From 878e097bb2a0a3e9402d1fa27a98af98e1193faa Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:17:09 +0200 Subject: [PATCH 234/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index fd078be925..4be0bd0752 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:15+0200\n" +"PO-Revision-Date: 2011-07-14 09:17+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4657,7 +4657,7 @@ msgstr "Oprávnenia" #: libraries/db_links.inc.php:97 libraries/rte/rte_routines.lib.php:31 msgid "Routines" -msgstr "" +msgstr "Rutiny" #: libraries/db_links.inc.php:101 libraries/export/sql.php:609 #: libraries/rte/rte_events.lib.php:31 From 85962c3003c0041ed8f09a9f04e48d573b9164dd Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:17:22 +0200 Subject: [PATCH 235/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 4be0bd0752..49aa6ccc25 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4668,7 +4668,7 @@ msgstr "Udalosti" #: libraries/export/xml.php:38 libraries/rte/rte_triggers.lib.php:31 #: libraries/tbl_links.inc.php:103 msgid "Triggers" -msgstr "" +msgstr "Spúšťače" #: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2084 msgid "" From 41263716d835c10d52987b5bd4ca455adc81a46d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:18:25 +0200 Subject: [PATCH 236/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 49aa6ccc25..103d8407f8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:17+0200\n" +"PO-Revision-Date: 2011-07-14 09:18+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4780,7 +4780,7 @@ msgstr "" #: libraries/display_export.lib.php:122 msgid "Custom - display all possible options" -msgstr "" +msgstr "Vlastné - zobrazí všetky voľby nastavení" #: libraries/display_export.lib.php:130 msgid "Database(s):" From 981c025ca2d124d6f4bb3305812622a2b57146ce Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:19:23 +0200 Subject: [PATCH 237/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 103d8407f8..86fce3428f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:18+0200\n" +"PO-Revision-Date: 2011-07-14 09:19+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4808,7 +4808,7 @@ msgstr "Začať od riadku:" #: libraries/display_export.lib.php:166 msgid "Dump all rows" -msgstr "" +msgstr "Vypísať všetky riadky" #: libraries/display_export.lib.php:174 libraries/display_export.lib.php:195 msgid "Output:" From f071da23ce62963df4aaae7d58fc10481d57973b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:20:22 +0200 Subject: [PATCH 238/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 86fce3428f..a4b419eecf 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:19+0200\n" +"PO-Revision-Date: 2011-07-14 09:20+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4829,7 +4829,7 @@ msgstr "Šablóna pre názov súboru:" #: libraries/display_export.lib.php:222 msgid "@SERVER@ will become the server name" -msgstr "" +msgstr "@SERVER@ bude nahradený menom servera" #: libraries/display_export.lib.php:224 msgid ", @DATABASE@ will become the database name" From f5091f79ab3ce9c79f19bf2440b13e4eee7a6341 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:21:06 +0200 Subject: [PATCH 239/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a4b419eecf..33f78eddf0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:20+0200\n" +"PO-Revision-Date: 2011-07-14 09:21+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4833,7 +4833,7 @@ msgstr "@SERVER@ bude nahradený menom servera" #: libraries/display_export.lib.php:224 msgid ", @DATABASE@ will become the database name" -msgstr "" +msgstr ", @DATABASE@ bude nahradená menom databázy" #: libraries/display_export.lib.php:226 msgid ", @TABLE@ will become the table name" From 6dedbcf66013f0c54deea1e0048560971971d816 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:22:14 +0200 Subject: [PATCH 240/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 33f78eddf0..97dd6cd0ad 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:21+0200\n" +"PO-Revision-Date: 2011-07-14 09:22+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4837,7 +4837,7 @@ msgstr ", @DATABASE@ bude nahradená menom databázy" #: libraries/display_export.lib.php:226 msgid ", @TABLE@ will become the table name" -msgstr "" +msgstr ", meno tabuľky bude zmenené na @TABLE@ " #: libraries/display_export.lib.php:230 #, php-format From ad2c392f4c0b4139df7b7b7d98b12c56d00af154 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:23:55 +0200 Subject: [PATCH 241/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 97dd6cd0ad..922576ff9b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:22+0200\n" +"PO-Revision-Date: 2011-07-14 09:23+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -101,7 +101,7 @@ msgstr "Použiť túto hodnotu" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:326 msgid "No blob streaming server configured!" -msgstr "Nie je nastavený žiadny streamovacie server!" +msgstr "Nie je nastavený žiadny streamovací server!" #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" From 290981fb61e567c884d5f42ddf362de958f241e0 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:26:33 +0200 Subject: [PATCH 242/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 922576ff9b..3eaef2f192 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:23+0200\n" +"PO-Revision-Date: 2011-07-14 09:26+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4829,7 +4829,7 @@ msgstr "Šablóna pre názov súboru:" #: libraries/display_export.lib.php:222 msgid "@SERVER@ will become the server name" -msgstr "@SERVER@ bude nahradený menom servera" +msgstr "Meno servera bude zmenené na @SERVER@" #: libraries/display_export.lib.php:224 msgid ", @DATABASE@ will become the database name" From 6a8e03e064b147714eed09e3fea332d95167d1d8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:27:05 +0200 Subject: [PATCH 243/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3eaef2f192..1b359ccad3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:26+0200\n" +"PO-Revision-Date: 2011-07-14 09:27+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4833,7 +4833,7 @@ msgstr "Meno servera bude zmenené na @SERVER@" #: libraries/display_export.lib.php:224 msgid ", @DATABASE@ will become the database name" -msgstr ", @DATABASE@ bude nahradená menom databázy" +msgstr ", meno databázy bude zmenené na @DATABASE@" #: libraries/display_export.lib.php:226 msgid ", @TABLE@ will become the table name" From cbce02fb8c5d08afbd01bb61b63cb2e9497a2d33 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:44:24 +0200 Subject: [PATCH 244/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 1b359ccad3..b2f74c8451 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:27+0200\n" +"PO-Revision-Date: 2011-07-14 09:44+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4900,6 +4900,8 @@ msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" +"Posuňte sa nižšie pre nastavenie vybraného formátu a ignorujte nastavenia " +"ostatných." #: libraries/display_export.lib.php:340 libraries/display_import.lib.php:260 msgid "Encoding Conversion:" From 65d50084917c4e95d8140df3aaf7d3c4dbb41505 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:45:48 +0200 Subject: [PATCH 245/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b2f74c8451..32836716c7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:44+0200\n" +"PO-Revision-Date: 2011-07-14 09:45+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4926,6 +4926,8 @@ msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" +"Súbor sa načítava, buďte prosím trpezliví. Podrobnosti o nahrávaní nie sú " +"dostupné." #: libraries/display_import.lib.php:129 msgid "Importing into the current server" From fdf97ce5bbe24058c914778ca82c13f5f99bdd1c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:48:03 +0200 Subject: [PATCH 246/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 32836716c7..5d01d4b4d4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:45+0200\n" +"PO-Revision-Date: 2011-07-14 09:48+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4957,6 +4957,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" +"Meno komprimovaného súboru musí končiť na .[formát].[kompresia]. " +"Napríklad: .sql.zip" #: libraries/display_import.lib.php:178 msgid "File uploads are not allowed on this server." From 2abf495ae6a099f08ff4c2c00ebcefab2f498a59 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:48:27 +0200 Subject: [PATCH 247/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 5d01d4b4d4..1939374954 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5000,10 +5000,9 @@ msgid "Language" msgstr "Jazyk" #: libraries/display_tbl.lib.php:397 -#, fuzzy #| msgid "Textarea columns" msgid "Restore column order" -msgstr "Stĺpce s textovou oblasťou" +msgstr "Obnoviť poradie stĺpcov" #: libraries/display_tbl.lib.php:417 msgid "Drag to reorder" From 0661b1d1425f11881064d1ebe6654ff911dae489 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:49:10 +0200 Subject: [PATCH 248/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 1939374954..4cfcb95f0c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:48+0200\n" +"PO-Revision-Date: 2011-07-14 09:49+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5006,7 +5006,7 @@ msgstr "Obnoviť poradie stĺpcov" #: libraries/display_tbl.lib.php:417 msgid "Drag to reorder" -msgstr "" +msgstr "Usporiadajte pretiahnutím" #: libraries/display_tbl.lib.php:418 #, fuzzy From 202ed5bd4dd3737d1d8565c60bb81e45ef969ae1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:49:23 +0200 Subject: [PATCH 249/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4cfcb95f0c..c2de73cf9a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5009,10 +5009,9 @@ msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" #: libraries/display_tbl.lib.php:418 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "Kliknite pre vybranie" +msgstr "Kliknite pre zoradenie" #: libraries/display_tbl.lib.php:419 msgid "Click to mark/unmark" From dc7342b402a32dd50853fc7d3722edf3be6d4b55 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:49:41 +0200 Subject: [PATCH 250/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index c2de73cf9a..df854823ef 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5015,7 +5015,7 @@ msgstr "Kliknite pre zoradenie" #: libraries/display_tbl.lib.php:419 msgid "Click to mark/unmark" -msgstr "" +msgstr "Kliknite pre označenie/odznačenie" #: libraries/display_tbl.lib.php:420 msgid "Click the drop-down arrow
to toggle column's visibility" From fbf2af501417aae9d0486a47e9f0e7c454dc7f13 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:56:13 +0200 Subject: [PATCH 251/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index df854823ef..291e7887da 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:49+0200\n" +"PO-Revision-Date: 2011-07-14 09:56+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8850,7 +8850,7 @@ msgid "" "the replication section." msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." +"href=\"#replication\">sekciu replikácie." #: server_status.php:659 msgid "Replication status" From f5e6fa0fbf46c874e519a154499fb966dad92fad Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:59:19 +0200 Subject: [PATCH 252/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 291e7887da..8a8a28efc5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:56+0200\n" +"PO-Revision-Date: 2011-07-14 09:59+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1776,7 +1776,7 @@ msgstr "Tabuľka %s bola premenovaná na %s" #: libraries/Table.class.php:1273 msgid "Could not save table UI preferences" -msgstr "" +msgstr "Nepodarilo sa uložiť nastavenia tabuľky" #: libraries/Theme.class.php:143 #, php-format From 3d4bb41d00c0be4745b1f90f6042d7cf81545b8d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 09:59:42 +0200 Subject: [PATCH 253/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8a8a28efc5..866ef2fbcb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3777,7 +3777,7 @@ msgstr "" #: libraries/config/messages.inc.php:366 msgid "HTTP Realm" -msgstr "" +msgstr "HTTP Realm" #: libraries/config/messages.inc.php:367 msgid "" From 52a7b5ec9e4a553b21e17b6bffd8f1a6c23c05d2 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:04:11 +0200 Subject: [PATCH 254/960] Translation update done using Pootle. --- po/sk.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 866ef2fbcb..6ddc0e120e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 09:59+0200\n" +"PO-Revision-Date: 2011-07-14 10:04+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4238,6 +4238,7 @@ msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Určuje, či sa má zobraziť voľba smeru vypisovania pri prechádzaní tabuľky" #: libraries/config/messages.inc.php:454 msgid "Show display direction" From 20bed58ab0d386dbdc283f5ef82c5c503dccc65a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:04:35 +0200 Subject: [PATCH 255/960] Translation update done using Pootle. --- po/sk.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 6ddc0e120e..3850e3d89f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4531,8 +4531,9 @@ msgid "HTTP authentication" msgstr "HTTP overovanie" #: libraries/config/setup.forms.php:51 +#, fuzzy msgid "Signon authentication" -msgstr "" +msgstr "Signon authentication" #: libraries/config/setup.forms.php:245 #: libraries/config/user_preferences.forms.php:147 libraries/import/ldi.php:35 From 4540ac071cdd223e147aea0c8d1d86f353c789df Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:07:04 +0200 Subject: [PATCH 256/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 3850e3d89f..ea16b30355 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:04+0200\n" +"PO-Revision-Date: 2011-07-14 10:07+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5021,7 +5021,7 @@ msgstr "Kliknite pre označenie/odznačenie" #: libraries/display_tbl.lib.php:420 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "Kliknite na šípku
pre zmenu viditeľnosti stĺpca" #: libraries/display_tbl.lib.php:431 #, php-format From 1d3aa145e9ed73b56608ec017869a42ab5e2da13 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:07:35 +0200 Subject: [PATCH 257/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index ea16b30355..30ff54c43c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5061,7 +5061,7 @@ msgstr "vertikálnom" #: libraries/display_tbl.lib.php:452 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "Opakovať hlavičku každých %s riadkov" #: libraries/display_tbl.lib.php:546 msgid "Sort by key" From ce6d67f77db078623fb98c5fce565b1c435243a4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:07:52 +0200 Subject: [PATCH 258/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 30ff54c43c..7618d2fd6f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5095,9 +5095,8 @@ msgid "Full texts" msgstr "Plné texty" #: libraries/display_tbl.lib.php:625 -#, fuzzy msgid "Relational key" -msgstr "Relačná schéma" +msgstr "Relačný kľúč" #: libraries/display_tbl.lib.php:626 msgid "Relational display column" From 47fc0e508a17e610d68124c1577363bc323381b9 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:08:26 +0200 Subject: [PATCH 259/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7618d2fd6f..267a1d8eef 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:07+0200\n" +"PO-Revision-Date: 2011-07-14 10:08+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5104,7 +5104,7 @@ msgstr "Relačné zobrazenie stĺpcov" #: libraries/display_tbl.lib.php:633 msgid "Show binary contents" -msgstr "" +msgstr "Zobraziť binárny obsah" #: libraries/display_tbl.lib.php:635 msgid "Show BLOB contents" From 69c7e42a348a8c0b62777aa646c0e0d122a38ce1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:08:42 +0200 Subject: [PATCH 260/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 267a1d8eef..290e42d99e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5108,7 +5108,7 @@ msgstr "Zobraziť binárny obsah" #: libraries/display_tbl.lib.php:635 msgid "Show BLOB contents" -msgstr "" +msgstr "Zobraziť obsah BLOBu" #: libraries/display_tbl.lib.php:645 libraries/relation.lib.php:112 #: libraries/tbl_properties.inc.php:146 transformation_overview.php:46 From 704093189a891eb97c23bdeb9e76293174178922 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:09:00 +0200 Subject: [PATCH 261/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 290e42d99e..10529eec19 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:08+0200\n" +"PO-Revision-Date: 2011-07-14 10:09+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5117,7 +5117,7 @@ msgstr "Transformácia pri prehliadaní" #: libraries/display_tbl.lib.php:650 msgid "Geometry" -msgstr "" +msgstr "Geometria" #: libraries/display_tbl.lib.php:651 msgid "Well Known Text" From bfd700fa9ddba0a7329fee0644f23a184d62cb39 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:11:19 +0200 Subject: [PATCH 262/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 10529eec19..19f03f567e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:09+0200\n" +"PO-Revision-Date: 2011-07-14 10:11+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5121,7 +5121,7 @@ msgstr "Geometria" #: libraries/display_tbl.lib.php:651 msgid "Well Known Text" -msgstr "" +msgstr "Text (Well Known Text)" #: libraries/display_tbl.lib.php:652 msgid "Well Known Binary" From 23a4fd1a902dbabddcf5f969318e37f20bc9e93c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:12:04 +0200 Subject: [PATCH 263/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 19f03f567e..5c7d61e342 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:11+0200\n" +"PO-Revision-Date: 2011-07-14 10:12+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5125,7 +5125,7 @@ msgstr "Text (Well Known Text)" #: libraries/display_tbl.lib.php:652 msgid "Well Known Binary" -msgstr "" +msgstr "Well Known Binary" #: libraries/display_tbl.lib.php:1303 msgid "Copy" From 14161290382e8230526414fc5dc53b311c5145d5 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:12:14 +0200 Subject: [PATCH 264/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 5c7d61e342..58662ff2b0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5129,7 +5129,7 @@ msgstr "Well Known Binary" #: libraries/display_tbl.lib.php:1303 msgid "Copy" -msgstr "" +msgstr "Kopírovať" #: libraries/display_tbl.lib.php:1318 libraries/display_tbl.lib.php:1330 msgid "The row has been deleted" From 4df1cf9ee782bc0abca8a41c982c1f134c40d5e3 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:13:09 +0200 Subject: [PATCH 265/960] Translation update done using Pootle. --- po/sk.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/sk.po b/po/sk.po index 58662ff2b0..90c40317db 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:12+0200\n" +"PO-Revision-Date: 2011-07-14 10:13+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3946,10 +3946,10 @@ msgid "" "alphabetical order." msgstr "" "Môžete použiť nahradzujúce znaky (% a _). Pokiaľ ich potrebujete použiť v " -"ich pôvodnom význame, vložte spätné lomítko \\ pred, napríklad [kbd]'moja" -"\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby môžete " -"ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť [kbd]*[/" -"kbd] na konci pre zobrazenie ostatných v abecednom poradí." +"ich pôvodnom význame, vložte spätné lomítko \\ pred, napríklad " +"[kbd]'moja\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby " +"môžete ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť " +"[kbd]*[/kbd] na konci pre zobrazenie ostatných v abecednom poradí." #: libraries/config/messages.inc.php:400 msgid "Show only listed databases" From 54a4d49c4a4b69329d73c47861c265be9b4e9e05 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:13:32 +0200 Subject: [PATCH 266/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 90c40317db..a7953ee7c3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4770,7 +4770,7 @@ msgstr "Exportujem tabuľky z databázy \"%s\"" #: libraries/display_export.lib.php:84 #, php-format msgid "Exporting rows from \"%s\" table" -msgstr "Exportujem riadky z tabuľky \"%s\"" +msgstr "Exportujem riadky z tabuľky \"%s\"" #: libraries/display_export.lib.php:90 msgid "Export Method:" From 8fd561eaa4abca697487330296e85f65140f30ef Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:13:45 +0200 Subject: [PATCH 267/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a7953ee7c3..89fa2a02bd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4839,7 +4839,7 @@ msgstr ", meno databázy bude zmenené na @DATABASE@" #: libraries/display_export.lib.php:226 msgid ", @TABLE@ will become the table name" -msgstr ", meno tabuľky bude zmenené na @TABLE@ " +msgstr ", meno tabuľky bude zmenené na @TABLE@" #: libraries/display_export.lib.php:230 #, php-format From 2fc653731945c967510a19c0851ef10b7a3e97e1 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:14:52 +0200 Subject: [PATCH 268/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 89fa2a02bd..5b061b8e7c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:13+0200\n" +"PO-Revision-Date: 2011-07-14 10:14+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1094,7 +1094,7 @@ msgstr "Ostatné" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1322 msgid "," -msgstr " " +msgstr "." #. l10n: Decimal separator #: js/messages.php:76 libraries/common.lib.php:1324 From a7931dab2af6a34b1f1859ecad550633cb243c7c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:15:38 +0200 Subject: [PATCH 269/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 5b061b8e7c..289bc0d311 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:14+0200\n" +"PO-Revision-Date: 2011-07-14 10:15+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" From bd2cd1f7c08a58315ea0fd8da63066df80ac8c24 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:16:26 +0200 Subject: [PATCH 270/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 289bc0d311..1c188cdea5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:15+0200\n" +"PO-Revision-Date: 2011-07-14 10:16+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" From a989a0ac2faf2b984c4692d83059f0ba554ad7e8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:17:12 +0200 Subject: [PATCH 271/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 1c188cdea5..0afd111314 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:16+0200\n" +"PO-Revision-Date: 2011-07-14 10:17+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3946,7 +3946,7 @@ msgid "" "alphabetical order." msgstr "" "Môžete použiť nahradzujúce znaky (% a _). Pokiaľ ich potrebujete použiť v " -"ich pôvodnom význame, vložte spätné lomítko \\ pred, napríklad " +"ich pôvodnom význame, vložte spätné lomítko pred, napríklad " "[kbd]'moja\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby " "môžete ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť " "[kbd]*[/kbd] na konci pre zobrazenie ostatných v abecednom poradí." From 40458875f82bf04aec89c0dd796a5db6097f812e Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:18:00 +0200 Subject: [PATCH 272/960] Translation update done using Pootle. --- po/sk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0afd111314..74c47a6900 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:17+0200\n" +"PO-Revision-Date: 2011-07-14 10:18+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -117,8 +117,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na www." -"phpmyadmin.net." +"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na " +"www.phpmyadmin.net stránke." #: db_create.php:58 #, php-format From 96f98377a6ed28c640ce5a9e1c7a0c24430c9706 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:19:33 +0200 Subject: [PATCH 273/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 74c47a6900..08666983fb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:18+0200\n" +"PO-Revision-Date: 2011-07-14 10:19+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1901,7 +1901,7 @@ msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý." #: libraries/auth/signon.auth.lib.php:87 msgid "Can not find signon authentication script:" -msgstr "Nepodarilo sa nájsť autorizačný skript pre prihlásenie." +msgstr "Nepodarilo sa nájsť autorizačný skript pre prihlásenie:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format From 4f35f733f61bb19a5cea5f72a7b028dc81cb7c38 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:19:41 +0200 Subject: [PATCH 274/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 08666983fb..da4ab0d0ef 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5035,10 +5035,9 @@ msgid "Start row" msgstr "Štart" #: libraries/display_tbl.lib.php:438 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Počet riadkov:" +msgstr "Počet riadkov" #: libraries/display_tbl.lib.php:443 #, fuzzy From 35ef1664ea1d16de30d2a3bb889cf0eb84bea34c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:20:14 +0200 Subject: [PATCH 275/960] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index da4ab0d0ef..50de3a2d17 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:19+0200\n" +"PO-Revision-Date: 2011-07-14 10:20+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6452,10 +6452,9 @@ msgid "event" msgstr "Udalosť" #: libraries/rte/rte_events.lib.php:28 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a new event" -msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" +msgstr "Nemáte dostatočné práva na vytvorenie novej udalosti" #: libraries/rte/rte_events.lib.php:29 #, fuzzy, php-format From 8f9d9326ed472acaa20b1c143f55401a2c803639 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:20:44 +0200 Subject: [PATCH 276/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 50de3a2d17..465728a24b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6463,10 +6463,9 @@ msgid "No event with name %1$s found in database %2$s" msgstr "V databáze %2$s nebola nájdená udalosť s menom %1$s" #: libraries/rte/rte_events.lib.php:30 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no events to display." -msgstr "Žiadny súbor pre nahrávanie" +msgstr "Nie sú žiadne udalosti na zobrazenie." #: libraries/rte/rte_events.lib.php:91 libraries/rte/rte_events.lib.php:96 #: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_routines.lib.php:259 From 593c8c4f6128ac787921b0ba54dc5dc86b40989c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:20:51 +0200 Subject: [PATCH 277/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 465728a24b..fc443c3cf9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6525,10 +6525,9 @@ msgstr "Chyba pri spracovaní požiadavky" #: libraries/rte/rte_events.lib.php:360 libraries/rte/rte_routines.lib.php:857 #: libraries/rte/rte_triggers.lib.php:306 -#, fuzzy #| msgid "Details..." msgid "Details" -msgstr "Podrobnosti..." +msgstr "Podrobnosti" #: libraries/rte/rte_events.lib.php:363 #, fuzzy From d897432929be81a77f984c5eeaf7e3b26ac4207b Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:21:17 +0200 Subject: [PATCH 278/960] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index fc443c3cf9..0eb4373adc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:20+0200\n" +"PO-Revision-Date: 2011-07-14 10:21+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6656,10 +6656,9 @@ msgid "routine" msgstr "Pridať index" #: libraries/rte/rte_routines.lib.php:28 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a new routine" -msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" +msgstr "Nemáte dostatočné práva na vytvorenie novej rutiny" #: libraries/rte/rte_routines.lib.php:29 #, php-format From ed2345fa2b1c3cb462563b0aab81806faef81e95 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:21:47 +0200 Subject: [PATCH 279/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 0eb4373adc..b2eaae9b99 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6666,10 +6666,9 @@ msgid "No routine with name %1$s found in database %2$s" msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s" #: libraries/rte/rte_routines.lib.php:30 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "Žiadny súbor pre nahrávanie" +msgstr "Neboli nájdené žiadne rutiny." #: libraries/rte/rte_routines.lib.php:68 msgid "" From 3cb5e4a7f29a8c181a6bf2ef1a1d5b7d36691713 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:22:14 +0200 Subject: [PATCH 280/960] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index b2eaae9b99..7c84f059f9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:21+0200\n" +"PO-Revision-Date: 2011-07-14 10:22+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6841,10 +6841,9 @@ msgid "trigger" msgstr "Pridať nového používateľa" #: libraries/rte/rte_triggers.lib.php:28 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a new trigger" -msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" +msgstr "Nemáte dostatočné práva na vytvorenie nového spúšťača" #: libraries/rte/rte_triggers.lib.php:29 #, fuzzy, php-format From f9409eea436d2b4a6b33b1177828f18d3ed673bc Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:22:43 +0200 Subject: [PATCH 281/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 7c84f059f9..97f9931637 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6852,10 +6852,9 @@ msgid "No trigger with name %1$s found in database %2$s" msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s" #: libraries/rte/rte_triggers.lib.php:30 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "Žiadny súbor pre nahrávanie" +msgstr "Neboli nájdené žiadne spúšťače." #: libraries/rte/rte_triggers.lib.php:97 #, fuzzy From a2cffb3646099df099bfe19def79656e791efa15 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:23:02 +0200 Subject: [PATCH 282/960] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 97f9931637..4da015f467 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:22+0200\n" +"PO-Revision-Date: 2011-07-14 10:23+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8480,10 +8480,9 @@ msgid "wildcard" msgstr "nahradzujúci znak" #: server_privileges.php:2295 -#, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." -msgstr "Pohľad %s bol odstránený" +msgstr "Užívateľ bol pridaný." #: server_replication.php:49 msgid "Unknown error" From fdb44eb94c0d3aad7050374b3292804cd18b4df8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:23:19 +0200 Subject: [PATCH 283/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4da015f467..04ca735e93 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8758,10 +8758,9 @@ msgid "All status variables" msgstr "" #: server_status.php:413 server_status.php:439 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate:" -msgstr "Obnoviť" +msgstr "Obnovovacia frekvencia:" #: server_status.php:462 #, fuzzy From 651d57e58d154ef5377522925878ac9914cebdc4 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:23:42 +0200 Subject: [PATCH 284/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 04ca735e93..9c4fba8813 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8763,10 +8763,9 @@ msgid "Refresh rate:" msgstr "Obnovovacia frekvencia:" #: server_status.php:462 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Nezmeniť heslo" +msgstr "Obsahujúca slovo:" #: server_status.php:467 #, fuzzy From b3cc3e439bf23d16dffb254bfba09f519feaa66d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:23:52 +0200 Subject: [PATCH 285/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9c4fba8813..518205f20f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8778,10 +8778,9 @@ msgid "Filter by category..." msgstr "" #: server_status.php:484 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "Súvisiace odkazy" +msgstr "Súvisiace odkazy:" #: server_status.php:528 server_status.php:563 server_status.php:676 #: server_status.php:721 From 5068cd42e3ffaa3452ea0bcd7feb6d243f26b2e2 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:24:29 +0200 Subject: [PATCH 286/960] Translation update done using Pootle. --- po/sk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sk.po b/po/sk.po index 518205f20f..e64b9c9704 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:23+0200\n" +"PO-Revision-Date: 2011-07-14 10:24+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -8886,10 +8886,9 @@ msgid "ID" msgstr "ID" #: server_status.php:856 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Nepodarilo sa pripojiť k MySQL serveru" +msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." #: server_status.php:857 msgid "" From a9768d370ee3f1a212a3783e8584c3a229c388a8 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:24:39 +0200 Subject: [PATCH 287/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e64b9c9704..bdfb03bca1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10067,10 +10067,9 @@ msgid "Stacked" msgstr "" #: tbl_chart.php:94 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "Názov výpisu:" +msgstr "Názov grafu" #: tbl_chart.php:99 msgid "X-Axis:" From 6eb61b309db734ee31daca57f1937fa3e97ab157 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:24:48 +0200 Subject: [PATCH 288/960] Translation update done using Pootle. --- po/sk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bdfb03bca1..6524f3a637 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10076,10 +10076,9 @@ msgid "X-Axis:" msgstr "" #: tbl_chart.php:113 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL dopyty" +msgstr "Série:" #: tbl_chart.php:115 #, fuzzy From 045703631969e3874905a4cb105d5306606c2e6a Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:26:16 +0200 Subject: [PATCH 289/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 6524f3a637..485f0dff73 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:24+0200\n" +"PO-Revision-Date: 2011-07-14 10:26+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -1744,7 +1744,7 @@ msgstr "" #: libraries/StorageEngine.class.php:316 #, php-format msgid "%s is available on this MySQL server." -msgstr "Úložný systém %s je dostupný na tomto MySQL serveri." +msgstr "%s je dostupný na tomto MySQL serveri." #: libraries/StorageEngine.class.php:319 #, php-format From cc08336d91c5f5fd2d5c6fd3b76a4be4323a8d5d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:26:29 +0200 Subject: [PATCH 290/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 485f0dff73..b66060d2ae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1749,7 +1749,7 @@ msgstr "%s je dostupný na tomto MySQL serveri." #: libraries/StorageEngine.class.php:319 #, php-format msgid "%s has been disabled for this MySQL server." -msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri." +msgstr "%s bol zakázaný na tomto MySQL serveri." #: libraries/StorageEngine.class.php:323 #, php-format From 09d47e873e1a0abfb7f267bd87e45134366d0895 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:27:43 +0200 Subject: [PATCH 291/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index b66060d2ae..f34a09d413 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:26+0200\n" +"PO-Revision-Date: 2011-07-14 10:27+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2022,7 +2022,7 @@ msgstr "" #: libraries/common.inc.php:596 #, php-format msgid "Could not load default configuration from: %1$s" -msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\"" +msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s" #: libraries/common.inc.php:601 msgid "" From bc7b8443697785c6c5f1c98124c7c43bf9c5f128 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:28:24 +0200 Subject: [PATCH 292/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index f34a09d413..510ea09ecb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:27+0200\n" +"PO-Revision-Date: 2011-07-14 10:28+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6676,7 +6676,7 @@ msgid "" "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" -"Používate zastaralé \"mysql\" rozšírenie PHP, ktoré nedokáže pracovať so " +"Používate zastaralé 'mysql' rozšírenie PHP, ktoré nedokáže pracovať so " "zloženými dopytmi. Vykonanie niektorých uložených rutín môže zlyhať! " "Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie \"mysqli\"." From 5cfd88211138d029628776cd86e74abc9fce6a25 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:28:33 +0200 Subject: [PATCH 293/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 510ea09ecb..b448834378 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6919,7 +6919,7 @@ msgstr "" #: libraries/schema/Visio_Relation_Schema.class.php:210 #, php-format msgid "The %s table doesn't exist!" -msgstr "Tabuľka \"%s\" neexistuje!" +msgstr "Tabuľka %s neexistuje!" #: libraries/schema/Dia_Relation_Schema.class.php:248 #: libraries/schema/Eps_Relation_Schema.class.php:436 From c5d86156d0c7e9069fb4705b03acafc1b4d17176 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:28:46 +0200 Subject: [PATCH 294/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index b448834378..e81f61f02c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6936,7 +6936,7 @@ msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" #: libraries/schema/Visio_Relation_Schema.class.php:497 #, php-format msgid "Schema of the %s database - Page %s" -msgstr "Schéma databázy \"%s\" - Strana %s" +msgstr "Schéma databázy %s - Strana %s" #: libraries/schema/Export_Relation_Schema.class.php:170 msgid "This page does not contain any tables!" From 5bd822a6170bb78a096b90ce7862a68c085828ed Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:29:11 +0200 Subject: [PATCH 295/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e81f61f02c..3cde77655b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:28+0200\n" +"PO-Revision-Date: 2011-07-14 10:29+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7481,7 +7481,7 @@ msgstr "" "Zobrazí iba časť reťazca. Prvý parameter je posun od začiatku (predvolený je " "0) a druhý určuje dĺžku textu, ktorá sa ma zobraziť, ak nie je zadaný bude " "zobrazený zvyšok textu. Tretí parameter určuje znaky, ktoré budú pridané na " -"koniec skráteného textu (predvolené je ...)." +"koniec skráteného textu (predvolené je \"...\")." #: libraries/user_preferences.inc.php:32 msgid "Manage your settings" From 857458607af98f45fce6b43185528bdf760f7207 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:29:42 +0200 Subject: [PATCH 296/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 3cde77655b..9fb4d97ca0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10172,7 +10172,7 @@ msgstr "Názov tabuľky" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" -msgstr "Názov primárneho kľúča musí byť... PRIMARY!" +msgstr "Názov primárneho kľúča musí byť \"PRIMARY\"!" #: tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" From dce87a651bb8728f8a63512b3fcee0613dbc44bb Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:30:23 +0200 Subject: [PATCH 297/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9fb4d97ca0..8bf0dc99bb 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:29+0200\n" +"PO-Revision-Date: 2011-07-14 10:30+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -6678,7 +6678,7 @@ msgid "" msgstr "" "Používate zastaralé 'mysql' rozšírenie PHP, ktoré nedokáže pracovať so " "zloženými dopytmi. Vykonanie niektorých uložených rutín môže zlyhať! " -"Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie \"mysqli\"." +"Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie 'mysqli'." #: libraries/rte/rte_routines.lib.php:252 #: libraries/rte/rte_routines.lib.php:1032 From 4f022c912ae76660b473494a7e1e64c1f2ee7f1c Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:31:03 +0200 Subject: [PATCH 298/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 8bf0dc99bb..a6a453ae09 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:30+0200\n" +"PO-Revision-Date: 2011-07-14 10:31+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2829,7 +2829,7 @@ msgstr "Uložiť na server" #: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 msgid "Overwrite existing file(s)" -msgstr "Prepísať existujúci súbor(y)" +msgstr "Prepísať existujúce súbory" #: libraries/config/messages.inc.php:118 msgid "Remember file name template" From ed776f7a7e4bb56ac4adc4f9e129a1b4c1c25017 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:33:02 +0200 Subject: [PATCH 299/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index a6a453ae09..9adb4f831e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:31+0200\n" +"PO-Revision-Date: 2011-07-14 10:33+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -2695,7 +2695,7 @@ msgstr "Chyby ikon" msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -msgstr "Nastavte dĺžku behu skriptu v sekundách (([kbd]0[/kbd] bez obmedzení)" +msgstr "Nastavte dĺžku behu skriptu v sekundách ([kbd]0[/kbd] bez obmedzení)" #: libraries/config/messages.inc.php:69 msgid "Maximum execution time" From 4b5f69b8d712a9e8c64677c708e3a36014404089 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:34:19 +0200 Subject: [PATCH 300/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 9adb4f831e..de6619a7af 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:33+0200\n" +"PO-Revision-Date: 2011-07-14 10:34+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4039,7 +4039,7 @@ msgid "" "[/a] for an example" msgstr "" "Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy " -"overovania/a]" +"overovania[/a]" #: libraries/config/messages.inc.php:416 msgid "Signon session name" From 39ba83ba5f82a7db65aacefa0b69b8971b89ef29 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:36:07 +0200 Subject: [PATCH 301/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index de6619a7af..4d10b85e5a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:34+0200\n" +"PO-Revision-Date: 2011-07-14 10:36+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -7396,7 +7396,7 @@ msgstr "" #: libraries/transformations/image_jpeg__link.inc.php:9 msgid "Displays a link to download this image." -msgstr "Zobrazí odkaz na obrázok (napr. stiahnutie poľa blob)." +msgstr "Zobrazí odkaz pre stiahnutie tohto obrázka." #: libraries/transformations/text_plain__dateformat.inc.php:9 msgid "" From 38221d33b7bc2b568033411c7ffdd3d6071f2196 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:38:06 +0200 Subject: [PATCH 302/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 4d10b85e5a..fb748d736d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:36+0200\n" +"PO-Revision-Date: 2011-07-14 10:38+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9043,7 +9043,7 @@ msgstr "Počet interných príkazov ROLLBACK." #: server_status.php:877 msgid "The number of requests to update a row in a table." -msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke." +msgstr "Počet požiadavkov na zmenu riadku v tabuľke." #: server_status.php:878 msgid "The number of requests to insert a row in a table." From d49717797d3de135f6fe88bc9ff93549378653ac Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:38:21 +0200 Subject: [PATCH 303/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index fb748d736d..aa8010bf10 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9047,7 +9047,7 @@ msgstr "Počet požiadavkov na zmenu riadku v tabuľke." #: server_status.php:878 msgid "The number of requests to insert a row in a table." -msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky." +msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky." #: server_status.php:879 msgid "The number of pages containing data (dirty or clean)." From 679cc1755d81c89d4b7e632ce6e67aabc657ff8d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:38:37 +0200 Subject: [PATCH 304/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index aa8010bf10..8828a3cbdd 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9253,7 +9253,7 @@ msgstr "Koľkokrát sa muselo čakať na zámok na riadok." #: server_status.php:918 msgid "The number of rows deleted from InnoDB tables." -msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek." +msgstr "Počet riadkov odstránených z InnoDB tabuliek." #: server_status.php:919 msgid "The number of rows inserted in InnoDB tables." From 34d3a641b5b8effad39082fe369d85d6dab89ff5 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:38:51 +0200 Subject: [PATCH 305/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 8828a3cbdd..616ea30d30 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9257,7 +9257,7 @@ msgstr "Počet riadkov odstránených z InnoDB tabuliek." #: server_status.php:919 msgid "The number of rows inserted in InnoDB tables." -msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek." +msgstr "Počet riadkov vložených do InnoDB tabuliek." #: server_status.php:920 msgid "The number of rows read from InnoDB tables." From f1b7d470431470ab7c3d05c41645325f44e34e0e Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:39:03 +0200 Subject: [PATCH 306/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 616ea30d30..f96f9852c3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:38+0200\n" +"PO-Revision-Date: 2011-07-14 10:39+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -9261,7 +9261,7 @@ msgstr "Počet riadkov vložených do InnoDB tabuliek." #: server_status.php:920 msgid "The number of rows read from InnoDB tables." -msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek." +msgstr "Počet načítaných riadkov z InnoDB tabuliek." #: server_status.php:921 msgid "The number of rows updated in InnoDB tables." From 1b6b13bb02fe28e2ed4e521bb56d9fca9456d879 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:39:11 +0200 Subject: [PATCH 307/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index f96f9852c3..81343b61a3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9265,7 +9265,7 @@ msgstr "Počet načítaných riadkov z InnoDB tabuliek." #: server_status.php:921 msgid "The number of rows updated in InnoDB tables." -msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách." +msgstr "Počet upravených riadkov v InnoDB tabuľkách." #: server_status.php:922 msgid "" From 72adbc9ebafd730f23c3f02be0038d2fa5c7b400 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 10:39:37 +0200 Subject: [PATCH 308/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 81343b61a3..20cc9b30d0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -9540,7 +9540,7 @@ msgstr "" #: server_status.php:964 msgid "The number of threads that are not sleeping." -msgstr "Počet aktívnych (nespiacich) vlákien." +msgstr "Počet nespiacich vlákien." #: server_synchronize.php:92 msgid "Could not connect to the source" From 938e3594b5020fce2f04e6de5a495b055079bba0 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 11:16:06 +0200 Subject: [PATCH 309/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index 20cc9b30d0..a544ecf950 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 10:39+0200\n" +"PO-Revision-Date: 2011-07-14 11:16+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3588,7 +3588,7 @@ msgstr "Toto sú odkazy na Upraviť, Upraviť tu, Kopírovať a Odstrániť" #: libraries/config/messages.inc.php:320 msgid "Where to show the table row links" -msgstr "" +msgstr "Kde zobraziť linky riadkov tabuľky" #: libraries/config/messages.inc.php:321 msgid "Use natural order for sorting table and database names" From 814c98513da6ca34ca7e2014b0e5594f93921f42 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 11:17:53 +0200 Subject: [PATCH 310/960] Translation update done using Pootle. --- po/sk.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index a544ecf950..2d39e31b76 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 11:16+0200\n" +"PO-Revision-Date: 2011-07-14 11:17+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4094,6 +4094,8 @@ msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" +"Nechajte prázdne pre vypnutie podpory \"trvalého\" ukladania nastavení, " +"navrhované: [kbd]pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:427 msgid "UI preferences table" From f5c3366ff429f67fa5c0a21d4aae28cd95ad2692 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 11:19:27 +0200 Subject: [PATCH 311/960] Translation update done using Pootle. --- po/sk.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 2d39e31b76..bcc9a234d0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 11:17+0200\n" +"PO-Revision-Date: 2011-07-14 11:19+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4602,6 +4602,7 @@ msgstr "Nepodarilo sa pripojiť k MySQL serveru" #: libraries/config/validate.lib.php:228 msgid "Empty username while using config authentication method" msgstr "" +"Pri použití nastavenej autorizačnej metódy nebolo vyplnené užívateľské meno" #: libraries/config/validate.lib.php:232 msgid "Empty signon session name while using signon authentication method" From 3407237338af09f475646e1752cbbd03ae3d3573 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 11:21:12 +0200 Subject: [PATCH 312/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index bcc9a234d0..da97321195 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 11:19+0200\n" +"PO-Revision-Date: 2011-07-14 11:21+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -3773,7 +3773,7 @@ msgstr "Povoliť prihlásenia užívateľa root" #: libraries/config/messages.inc.php:365 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" -msgstr "" +msgstr "Názov pre zobrazenie pri použití HTTP autorizácie" #: libraries/config/messages.inc.php:366 msgid "HTTP Realm" From 5013a86e8882d13d1b5264188c0fa592b9a3f05f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 11:24:04 +0200 Subject: [PATCH 313/960] Translation update done using Pootle. --- po/sk.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index da97321195..94d2d05ab0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 11:21+0200\n" +"PO-Revision-Date: 2011-07-14 11:24+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -4226,6 +4226,10 @@ 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 "" +"Berte prosím na vedomie, že povolenie tejto voľby nemá žiadny vplyv na " +"prihlasovaciu metódu [kbd]config[/kbd], pretože heslo je uložené v " +"konfiguračnom súbore; toto nemá vplyv na možnosť vykonať rovnaký príkaz " +"priamo" #: libraries/config/messages.inc.php:451 msgid "Show password change form" From 2847ebe8d527258493fe1ac5649485671a76b6de Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:26:09 +0200 Subject: [PATCH 314/960] Translation update done using Pootle. --- po/de.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 36faedebfa..007c220c47 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-12 23:07+0200\n" +"PO-Revision-Date: 2011-07-14 13:26+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -2236,10 +2236,9 @@ msgstr "" "Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" #: libraries/common.lib.php:2456 -#, fuzzy #| msgid "Click to select" msgid "Click to toggle" -msgstr "Zur Auswahl anklicken" +msgstr "Zum Umschalten anklicken" #: libraries/common.lib.php:2727 libraries/common.lib.php:2734 #: libraries/common.lib.php:2921 libraries/config/setup.forms.php:296 From 4b335fc15a9ce63b6a519ce7e90cb009da46dd45 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:26:23 +0200 Subject: [PATCH 315/960] Translation update done using Pootle. --- po/de.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/de.po b/po/de.po index 007c220c47..a614ed40e9 100644 --- a/po/de.po +++ b/po/de.po @@ -6575,7 +6575,6 @@ msgid "Generate Password" msgstr "Passwort generieren" #: libraries/rte/rte_events.lib.php:24 -#, fuzzy #| msgid "Add an event" msgid "Add event" msgstr "Ein Ereignis hinzufügen" From 690c9d87b328bdbf8bf3653a53bce4c2d0982618 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:31:06 +0200 Subject: [PATCH 316/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index a614ed40e9..3107e08010 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:26+0200\n" +"PO-Revision-Date: 2011-07-14 13:31+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6584,8 +6584,8 @@ msgstr "Ein Ereignis hinzufügen" msgid "Export of event %s" msgstr "Export des Ereignisses %s" +# Ereignis is the common term of "Event" in a RDBMS, see also http://publib.boulder.ibm.com/infocenter/wbevents/v7r0m1/index.jsp?topic=/com.ibm.wbe.appdev.doc/doc/definingatechnologyrdbmseventconnector.html (Event-Connector --> Ereignisconnector ) #: libraries/rte/rte_events.lib.php:27 -#, fuzzy #| msgid "Event" msgid "event" msgstr "Ereignis" From 25e0ed0bcc945a9b1863b9c4acd9050be093992e Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:31:25 +0200 Subject: [PATCH 317/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 3107e08010..7fde90f41e 100644 --- a/po/de.po +++ b/po/de.po @@ -6591,10 +6591,9 @@ msgid "event" msgstr "Ereignis" #: libraries/rte/rte_events.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new event" -msgstr "Sie haben nicht genug Rechte um eine neue Routine zu erstellen" +msgstr "Sie haben nicht genug Rechte um ein neues Ereignis zu erstellen" #: libraries/rte/rte_events.lib.php:29 #, fuzzy, php-format From 3d7a48b6ecc8eb7d68cf04a233076199c94f09a4 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:31:33 +0200 Subject: [PATCH 318/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 7fde90f41e..dcf782043e 100644 --- a/po/de.po +++ b/po/de.po @@ -6596,7 +6596,7 @@ msgid "You do not have the necessary privileges to create a new event" msgstr "Sie haben nicht genug Rechte um ein neues Ereignis zu erstellen" #: libraries/rte/rte_events.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" msgstr "Es wurde kein Ereignis mit dem Namen %s in Datenbank %s gefunden" From 44b31d63515c63d839dc4aa19080568a3105b4c1 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:31:44 +0200 Subject: [PATCH 319/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index dcf782043e..ed2a87f699 100644 --- a/po/de.po +++ b/po/de.po @@ -6617,10 +6617,9 @@ msgid "The following query has failed: \"%s\"" msgstr "Die folgende Abfrage ist fehlgeschlagen: \"%s\"" #: libraries/rte/rte_events.lib.php:105 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." -msgstr "Das wiederherstellen der gelöschten Routine schlug fehl." +msgstr "Das wiederherstellen des gelöschten Ereignisses schlug fehl." #: libraries/rte/rte_events.lib.php:106 libraries/rte/rte_routines.lib.php:274 #: libraries/rte/rte_triggers.lib.php:98 From 6573b98ce28df21bc541463fcaa25c885f416104 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:31:51 +0200 Subject: [PATCH 320/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index ed2a87f699..f07a3ef14d 100644 --- a/po/de.po +++ b/po/de.po @@ -6627,10 +6627,10 @@ msgid "The backed up query was:" msgstr "Die gesicherte Abfrage war:" #: libraries/rte/rte_events.lib.php:110 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." -msgstr "Routine %1$s wurde geändert." +msgstr "Ereignis %1$s wurde geändert." #: libraries/rte/rte_events.lib.php:122 #, fuzzy, php-format From 9f4aed832cb8dac10d8be1f864c1256cc498eb8e Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:32:02 +0200 Subject: [PATCH 321/960] Translation update done using Pootle. --- po/de.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index f07a3ef14d..5b88aff297 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:31+0200\n" +"PO-Revision-Date: 2011-07-14 13:32+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6633,10 +6633,10 @@ msgid "Event %1$s has been modified." msgstr "Ereignis %1$s wurde geändert." #: libraries/rte/rte_events.lib.php:122 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Event %1$s has been created." -msgstr "Die Tabelle %1$s wurde erzeugt." +msgstr "Ereignis %1$s wurde erzeugt." #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:299 #: libraries/rte/rte_triggers.lib.php:122 From 93da132ac0684569899a845f7088fd2840899856 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:32:09 +0200 Subject: [PATCH 322/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 5b88aff297..42371bdbaa 100644 --- a/po/de.po +++ b/po/de.po @@ -6646,10 +6646,9 @@ msgstr "" "wurde:" #: libraries/rte/rte_events.lib.php:170 -#, fuzzy #| msgid "Create view" msgid "Create event" -msgstr "Erzeuge View" +msgstr "Erzeuge Ereignis" #: libraries/rte/rte_events.lib.php:174 #, fuzzy From 9190180355e0e99745312feace4297744490f273 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:32:15 +0200 Subject: [PATCH 323/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 42371bdbaa..d2c6f1aed0 100644 --- a/po/de.po +++ b/po/de.po @@ -6651,10 +6651,9 @@ msgid "Create event" msgstr "Erzeuge Ereignis" #: libraries/rte/rte_events.lib.php:174 -#, fuzzy #| msgid "Edit server" msgid "Edit event" -msgstr "Server bearbeiten" +msgstr "Event bearbeiten" #: libraries/rte/rte_events.lib.php:201 libraries/rte/rte_routines.lib.php:375 #: libraries/rte/rte_routines.lib.php:1326 From 765e29727e28f83ae803ca8e41d90f5a86921916 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:32:36 +0200 Subject: [PATCH 324/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index d2c6f1aed0..156197101c 100644 --- a/po/de.po +++ b/po/de.po @@ -6668,10 +6668,9 @@ msgid "Details" msgstr "Details" #: libraries/rte/rte_events.lib.php:363 -#, fuzzy #| msgid "Event type" msgid "Event name" -msgstr "Ereignistyp" +msgstr "Ereignis-Name" #: libraries/rte/rte_events.lib.php:384 server_binlog.php:182 msgid "Event type" From da1e142cb01fa16044d5093147268b147ff38c4c Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:32:47 +0200 Subject: [PATCH 325/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 156197101c..626705d5ed 100644 --- a/po/de.po +++ b/po/de.po @@ -6682,10 +6682,9 @@ msgid "Change to %s" msgstr "Wechseln zu %s" #: libraries/rte/rte_events.lib.php:411 -#, fuzzy #| msgid "Execute" msgid "Execute at" -msgstr "Ausführen" +msgstr "Ausführen um" #: libraries/rte/rte_events.lib.php:419 #, fuzzy From 516a29a26ef302d34960eb8905873437e85ff18e Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:32:55 +0200 Subject: [PATCH 326/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 626705d5ed..0bb7429cbb 100644 --- a/po/de.po +++ b/po/de.po @@ -6687,10 +6687,9 @@ msgid "Execute at" msgstr "Ausführen um" #: libraries/rte/rte_events.lib.php:419 -#, fuzzy #| msgid "Execute" msgid "Execute every" -msgstr "Ausführen" +msgstr "Abfrage ausführen" #: libraries/rte/rte_events.lib.php:438 #, fuzzy From 721780bf8a1c30ec4b8c2b2d2fad87eaf99f55f3 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:33:10 +0200 Subject: [PATCH 327/960] Translation update done using Pootle. --- po/de.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 0bb7429cbb..93ec4e53d3 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:32+0200\n" +"PO-Revision-Date: 2011-07-14 13:33+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6691,11 +6691,11 @@ msgstr "Ausführen um" msgid "Execute every" msgstr "Abfrage ausführen" +# Maybe the better term #: libraries/rte/rte_events.lib.php:438 -#, fuzzy #| msgid "Startup" msgid "Start" -msgstr "Start" +msgstr "Anfang" #: libraries/rte/rte_events.lib.php:454 libraries/rte/rte_routines.lib.php:952 #: libraries/rte/rte_triggers.lib.php:356 From 90fcb2918e5a299f1a07a4e44768daf17140fe6f Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:33:38 +0200 Subject: [PATCH 328/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 93ec4e53d3..7695d436ef 100644 --- a/po/de.po +++ b/po/de.po @@ -6703,10 +6703,9 @@ msgid "Definition" msgstr "Beschreibung" #: libraries/rte/rte_events.lib.php:460 -#, fuzzy #| msgid "complete inserts" msgid "On completion preserve" -msgstr "Vollständige 'INSERT's" +msgstr "Nach Abschluss erhalten" #: libraries/rte/rte_events.lib.php:464 libraries/rte/rte_routines.lib.php:962 #: libraries/rte/rte_triggers.lib.php:362 From f9fd7d08e1e787b8b5e583fc9301562415446658 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:34:18 +0200 Subject: [PATCH 329/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 7695d436ef..a564c2c0dd 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:33+0200\n" +"PO-Revision-Date: 2011-07-14 13:34+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6716,7 +6716,7 @@ msgstr "Ersteller" #: libraries/rte/rte_routines.lib.php:1024 #: libraries/rte/rte_triggers.lib.php:400 msgid "The definer must be in the \"username@hostname\" format" -msgstr "" +msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein" #: libraries/rte/rte_events.lib.php:514 #, fuzzy From c1a717baa728e97042261c23f374651fa6f9b0de Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:34:26 +0200 Subject: [PATCH 330/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index a564c2c0dd..9d178897fb 100644 --- a/po/de.po +++ b/po/de.po @@ -6719,10 +6719,9 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein" #: libraries/rte/rte_events.lib.php:514 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide an event name" -msgstr "Sie müssen einen Routinen-Namen angeben" +msgstr "Sie müssen einen Event-Namen angeben" #: libraries/rte/rte_events.lib.php:526 #, fuzzy From d0136ed9443ba1be3d3515b5afc2f50ee15a56b5 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:35:11 +0200 Subject: [PATCH 331/960] Translation update done using Pootle. --- po/de.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/de.po b/po/de.po index 9d178897fb..8a786432f3 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:34+0200\n" +"PO-Revision-Date: 2011-07-14 13:35+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6724,11 +6724,9 @@ msgid "You must provide an event name" msgstr "Sie müssen einen Event-Namen angeben" #: libraries/rte/rte_events.lib.php:526 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." -msgstr "" -"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben." +msgstr "Sie müssen einen gültigen Intervall für dieses Event hinterlegen" #: libraries/rte/rte_events.lib.php:538 #, fuzzy From 8b888b8f23e44372df7f903f734adb05fb2ec8a0 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:35:36 +0200 Subject: [PATCH 332/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 8a786432f3..6ad9f711aa 100644 --- a/po/de.po +++ b/po/de.po @@ -6729,10 +6729,9 @@ msgid "You must provide a valid interval value for the event." msgstr "Sie müssen einen gültigen Intervall für dieses Event hinterlegen" #: libraries/rte/rte_events.lib.php:538 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." -msgstr "Sie müssen die Definition der Routine angeben." +msgstr "Sie müssen eine gültige Ausführungszeit für dieses Event angeben." #: libraries/rte/rte_events.lib.php:542 #, fuzzy From 93f1450ee409d4114e5c59c41ce14d193ec3e231 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:35:45 +0200 Subject: [PATCH 333/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 6ad9f711aa..e19dfc7083 100644 --- a/po/de.po +++ b/po/de.po @@ -6726,7 +6726,7 @@ msgstr "Sie müssen einen Event-Namen angeben" #: libraries/rte/rte_events.lib.php:526 #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." -msgstr "Sie müssen einen gültigen Intervall für dieses Event hinterlegen" +msgstr "Sie müssen einen gültigen Intervall für dieses Event angeben." #: libraries/rte/rte_events.lib.php:538 #| msgid "You must provide a routine definition." From 052e462da7189c6a95d0097f359527dc79ce20e5 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:35:56 +0200 Subject: [PATCH 334/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index e19dfc7083..07ef90a3a4 100644 --- a/po/de.po +++ b/po/de.po @@ -6721,7 +6721,7 @@ msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein" #: libraries/rte/rte_events.lib.php:514 #| msgid "You must provide a routine name" msgid "You must provide an event name" -msgstr "Sie müssen einen Event-Namen angeben" +msgstr "Sie müssen einen Ereignis-Namen angeben" #: libraries/rte/rte_events.lib.php:526 #| msgid "You must provide a name and a type for each routine parameter." From 95a4ba39cfb5f0d9bf889af6b57e5143149a6c74 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:04 +0200 Subject: [PATCH 335/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 07ef90a3a4..54cdcbd83d 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:35+0200\n" +"PO-Revision-Date: 2011-07-14 13:36+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6726,7 +6726,7 @@ msgstr "Sie müssen einen Ereignis-Namen angeben" #: libraries/rte/rte_events.lib.php:526 #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." -msgstr "Sie müssen einen gültigen Intervall für dieses Event angeben." +msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben." #: libraries/rte/rte_events.lib.php:538 #| msgid "You must provide a routine definition." From 4f67bc67496639c24b7ef922f286d97d475d9a1a Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:13 +0200 Subject: [PATCH 336/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 54cdcbd83d..f3106cc972 100644 --- a/po/de.po +++ b/po/de.po @@ -6731,7 +6731,7 @@ msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben." #: libraries/rte/rte_events.lib.php:538 #| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." -msgstr "Sie müssen eine gültige Ausführungszeit für dieses Event angeben." +msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben." #: libraries/rte/rte_events.lib.php:542 #, fuzzy From e5f3723e7c91f9344ef1e7d3dc79f57b4e5f75c6 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:32 +0200 Subject: [PATCH 337/960] Translation update done using Pootle. --- po/de.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index f3106cc972..3d12e0b574 100644 --- a/po/de.po +++ b/po/de.po @@ -6734,11 +6734,9 @@ msgid "You must provide a valid execution time for the event." msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben." #: libraries/rte/rte_events.lib.php:542 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." -msgstr "" -"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben." +msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." #: libraries/rte/rte_events.lib.php:561 #, fuzzy From 5b04336aeb068a62b0b832e4bb49de0dba68b8f4 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:43 +0200 Subject: [PATCH 338/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 3d12e0b574..fb7db0cf93 100644 --- a/po/de.po +++ b/po/de.po @@ -6739,10 +6739,9 @@ msgid "You must provide a valid type for the event." msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." #: libraries/rte/rte_events.lib.php:561 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide an event definition." -msgstr "Sie müssen die Definition der Routine angeben." +msgstr "Sie müssen die Definition des Ereignisses angeben." #: libraries/rte/rte_footer.lib.php:29 msgid "New" From 1f3f40208b954e369d5868b2d442d4d2da68032f Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:47 +0200 Subject: [PATCH 339/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index fb7db0cf93..ca3df3ea12 100644 --- a/po/de.po +++ b/po/de.po @@ -6745,7 +6745,7 @@ msgstr "Sie müssen die Definition des Ereignisses angeben." #: libraries/rte/rte_footer.lib.php:29 msgid "New" -msgstr "" +msgstr "Neu" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" From a5649c13e8d6ec7211832fc886db83cde18d404b Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:50 +0200 Subject: [PATCH 340/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index ca3df3ea12..d550f88456 100644 --- a/po/de.po +++ b/po/de.po @@ -6749,7 +6749,7 @@ msgstr "Neu" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" -msgstr "" +msgstr "AUS" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" From 09c9d461141bac906fa802045ecdb79f51ab79ff Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:36:53 +0200 Subject: [PATCH 341/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index d550f88456..c7d68e0334 100644 --- a/po/de.po +++ b/po/de.po @@ -6753,7 +6753,7 @@ msgstr "AUS" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" -msgstr "" +msgstr "AN" #: libraries/rte/rte_footer.lib.php:108 #, fuzzy From efe4482ca5e1e352211b0e340ac59d661b7f68f4 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:37:10 +0200 Subject: [PATCH 342/960] Translation update done using Pootle. --- po/de.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index c7d68e0334..52da200a4e 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:36+0200\n" +"PO-Revision-Date: 2011-07-14 13:37+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6756,10 +6756,9 @@ msgid "ON" msgstr "AN" #: libraries/rte/rte_footer.lib.php:108 -#, fuzzy #| msgid "The event scheduler is enabled" msgid "Event scheduler status" -msgstr "Der Ereignisplaner ist aktiviert" +msgstr "Ereignis-Planer-Statistiken" #: libraries/rte/rte_list.lib.php:52 #, fuzzy From 59f216f17b2bac1096131f77d953b1c72fda9bdf Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:37:23 +0200 Subject: [PATCH 343/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 52da200a4e..cf78f27ba5 100644 --- a/po/de.po +++ b/po/de.po @@ -6761,10 +6761,9 @@ msgid "Event scheduler status" msgstr "Ereignis-Planer-Statistiken" #: libraries/rte/rte_list.lib.php:52 -#, fuzzy #| msgid "Return type" msgid "Returns" -msgstr "Rückgabe-Typ" +msgstr "Rückgabe-Wert" #: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:328 #: server_status.php:800 sql.php:943 From f57c3534c38a8efe8ce6d97a0dfbb9435425d395 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:37:31 +0200 Subject: [PATCH 344/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index cf78f27ba5..4a03049968 100644 --- a/po/de.po +++ b/po/de.po @@ -6768,7 +6768,7 @@ msgstr "Rückgabe-Wert" #: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:328 #: server_status.php:800 sql.php:943 msgid "Time" -msgstr "Dauer" +msgstr "Zeit" #: libraries/rte/rte_list.lib.php:59 libraries/rte/rte_triggers.lib.php:342 msgid "Event" From a51bedc966423554a066acf8ac935c1c49b3c88f Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:38:05 +0200 Subject: [PATCH 345/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 4a03049968..32603773d2 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:37+0200\n" +"PO-Revision-Date: 2011-07-14 13:38+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" From b1754644846bd4119e9d06eba7ba80d24e37df13 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:38:15 +0200 Subject: [PATCH 346/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 32603773d2..89e3574f6f 100644 --- a/po/de.po +++ b/po/de.po @@ -6784,10 +6784,9 @@ msgid "Export of routine %s" msgstr "Exportieren der Routine %s" #: libraries/rte/rte_routines.lib.php:27 -#, fuzzy #| msgid "Routines" msgid "routine" -msgstr "Routinen" +msgstr "Routine" #: libraries/rte/rte_routines.lib.php:28 msgid "You do not have the necessary privileges to create a new routine" From d550715d14c54888caaa5de51f6085717ad613a3 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:38:55 +0200 Subject: [PATCH 347/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 89e3574f6f..12621c54e7 100644 --- a/po/de.po +++ b/po/de.po @@ -6790,7 +6790,7 @@ msgstr "Routine" #: libraries/rte/rte_routines.lib.php:28 msgid "You do not have the necessary privileges to create a new routine" -msgstr "Sie haben nicht genug Rechte um eine neue Routine zu erstellen" +msgstr "Sie haben nicht genug Rechte um eine neue Prozedur zu erstellen" #: libraries/rte/rte_routines.lib.php:29 #, php-format From c3a44a3f07efbe09d28aa208e17c3f1b9a7bcff7 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:39:05 +0200 Subject: [PATCH 348/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 12621c54e7..209dece5bc 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:38+0200\n" +"PO-Revision-Date: 2011-07-14 13:39+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6786,7 +6786,7 @@ msgstr "Exportieren der Routine %s" #: libraries/rte/rte_routines.lib.php:27 #| msgid "Routines" msgid "routine" -msgstr "Routine" +msgstr "Prozedur" #: libraries/rte/rte_routines.lib.php:28 msgid "You do not have the necessary privileges to create a new routine" From 237c433dc71313a06c4eba49446e727238ef6e96 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:39:18 +0200 Subject: [PATCH 349/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 209dece5bc..7905f1b672 100644 --- a/po/de.po +++ b/po/de.po @@ -6776,7 +6776,7 @@ msgstr "Ereignis" #: libraries/rte/rte_routines.lib.php:24 msgid "Add routine" -msgstr "Routine hinzufügen" +msgstr "Prozedur hinzufügen" #: libraries/rte/rte_routines.lib.php:26 #, php-format From 552532efb7b6f11aedcc7eb0bf8540b128c3458e Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:39:26 +0200 Subject: [PATCH 350/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 7905f1b672..56d4b7a87c 100644 --- a/po/de.po +++ b/po/de.po @@ -6781,7 +6781,7 @@ msgstr "Prozedur hinzufügen" #: libraries/rte/rte_routines.lib.php:26 #, php-format msgid "Export of routine %s" -msgstr "Exportieren der Routine %s" +msgstr "Exportieren der Prozedur %s" #: libraries/rte/rte_routines.lib.php:27 #| msgid "Routines" From 63524320d792066d7d2d36f2f9ca244acc30e932 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:39:42 +0200 Subject: [PATCH 351/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 56d4b7a87c..ce60956272 100644 --- a/po/de.po +++ b/po/de.po @@ -6795,7 +6795,7 @@ msgstr "Sie haben nicht genug Rechte um eine neue Prozedur zu erstellen" #: libraries/rte/rte_routines.lib.php:29 #, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "Keine Routine namens %1$s in der Datenbank %2$s gefunden" +msgstr "Keine Prozedur mit dem Namen %1$s in der Datenbank %2$s gefunden" #: libraries/rte/rte_routines.lib.php:30 msgid "There are no routines to display." From b9d6697b3ee06014d4cf7a15d6d2ddc96b5a47bc Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:39:49 +0200 Subject: [PATCH 352/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index ce60956272..1b82567689 100644 --- a/po/de.po +++ b/po/de.po @@ -6799,7 +6799,7 @@ msgstr "Keine Prozedur mit dem Namen %1$s in der Datenbank %2$s gefunden" #: libraries/rte/rte_routines.lib.php:30 msgid "There are no routines to display." -msgstr "Es sind keine Routinen zum Anzeigen vorhanden." +msgstr "Es sind keine Prozeduren zum Anzeigen vorhanden." #: libraries/rte/rte_routines.lib.php:68 msgid "" From 1716843580b243c1030a8e2c5f29d1a2314cee46 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:40:21 +0200 Subject: [PATCH 353/960] Translation update done using Pootle. --- po/de.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/de.po b/po/de.po index 1b82567689..e93e8b2bf4 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:39+0200\n" +"PO-Revision-Date: 2011-07-14 13:40+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6807,11 +6807,11 @@ msgid "" "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" -"Sie verwenden die von PHP als 'veraltet' gekennzeichnete 'mysql'-" -"Erweiterung, die nicht in der Lage ist mehrere Abfrage zu verarbeiten. " -"Die Ausführung von einigen gespeicherten Prozeduren könnte fehlschlagen! Bitte verwenden Sie die verbesserte 'mysqli'-Erweiterung um Probleme zu " -"vermeiden." +"Sie verwenden die von PHP als 'veraltet' gekennzeichnete " +"'mysql'-Erweiterung, die nicht in der Lage ist, mehrere Abfragen zu " +"verarbeiten. Die Ausführung von einigen gespeicherten Prozeduren könnte " +"fehlschlagen! Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um " +"Probleme zu vermeiden." #: libraries/rte/rte_routines.lib.php:252 #: libraries/rte/rte_routines.lib.php:1032 From c486a73ff579c2f16bdbd62d1200df1eb36c7520 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:40:28 +0200 Subject: [PATCH 354/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index e93e8b2bf4..15c8723130 100644 --- a/po/de.po +++ b/po/de.po @@ -6817,7 +6817,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1032 #, php-format msgid "Invalid routine type: \"%s\"" -msgstr "Ungültiger Routinen-Typ: \"%s\"" +msgstr "Ungültiger Prozeduren-Typ: \"%s\"" #: libraries/rte/rte_routines.lib.php:273 msgid "Sorry, we failed to restore the dropped routine." From 7da0d1ceea66091228cb2380853d99782bd40c72 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:40:34 +0200 Subject: [PATCH 355/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 15c8723130..b94d832c65 100644 --- a/po/de.po +++ b/po/de.po @@ -6821,7 +6821,7 @@ msgstr "Ungültiger Prozeduren-Typ: \"%s\"" #: libraries/rte/rte_routines.lib.php:273 msgid "Sorry, we failed to restore the dropped routine." -msgstr "Das wiederherstellen der gelöschten Routine schlug fehl." +msgstr "Das wiederherstellen der gelöschten Prozedur schlug fehl." #: libraries/rte/rte_routines.lib.php:278 #, php-format From 380cbb6f7d7964cea51c9dc486db5eed0a2b0d86 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:40:44 +0200 Subject: [PATCH 356/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index b94d832c65..73479b7549 100644 --- a/po/de.po +++ b/po/de.po @@ -6826,7 +6826,7 @@ msgstr "Das wiederherstellen der gelöschten Prozedur schlug fehl." #: libraries/rte/rte_routines.lib.php:278 #, php-format msgid "Routine %1$s has been modified." -msgstr "Routine %1$s wurde geändert." +msgstr "Prozedur %1$s wurde geändert." #: libraries/rte/rte_routines.lib.php:291 #, php-format From 49a72e35ca8dd1e1791b645ebea50f4d3188603e Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:40:50 +0200 Subject: [PATCH 357/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 73479b7549..2a228022ac 100644 --- a/po/de.po +++ b/po/de.po @@ -6831,7 +6831,7 @@ msgstr "Prozedur %1$s wurde geändert." #: libraries/rte/rte_routines.lib.php:291 #, php-format msgid "Routine %1$s has been created." -msgstr "Die Routine %1$s wurde erstellt." +msgstr "Die Prozedur %1$s wurde erstellt." #: libraries/rte/rte_routines.lib.php:345 msgid "Create routine" From b12d68d83df015ef28e6406ac87caf364543a871 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:40:56 +0200 Subject: [PATCH 358/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 2a228022ac..ecc564ed75 100644 --- a/po/de.po +++ b/po/de.po @@ -6835,7 +6835,7 @@ msgstr "Die Prozedur %1$s wurde erstellt." #: libraries/rte/rte_routines.lib.php:345 msgid "Create routine" -msgstr "Erzeuge Routine" +msgstr "Erzeuge Prozedur" #: libraries/rte/rte_routines.lib.php:349 msgid "Edit routine" From 6ee125ba4f397a579e51b26aaa7e2f6250d7d37a Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:41:02 +0200 Subject: [PATCH 359/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index ecc564ed75..39914ec929 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:40+0200\n" +"PO-Revision-Date: 2011-07-14 13:41+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6839,7 +6839,7 @@ msgstr "Erzeuge Prozedur" #: libraries/rte/rte_routines.lib.php:349 msgid "Edit routine" -msgstr "Bearbeite Routine" +msgstr "Bearbeite Prozedur" #: libraries/rte/rte_routines.lib.php:860 msgid "Routine name" From afec8d29f71f775cdb8e8f257fd2adc6a22d380a Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:41:09 +0200 Subject: [PATCH 360/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 39914ec929..c424695a01 100644 --- a/po/de.po +++ b/po/de.po @@ -6843,7 +6843,7 @@ msgstr "Bearbeite Prozedur" #: libraries/rte/rte_routines.lib.php:860 msgid "Routine name" -msgstr "Routinen Name" +msgstr "Prozeduren-Name" #: libraries/rte/rte_routines.lib.php:883 msgid "Parameters" From 085b346ac7cf23c9bdaa4f2a05923612ad204ddf Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:42:48 +0200 Subject: [PATCH 361/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index c424695a01..6566494527 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:41+0200\n" +"PO-Revision-Date: 2011-07-14 13:42+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6891,7 +6891,7 @@ msgstr "SQL-Daten Zugriff" #: libraries/rte/rte_routines.lib.php:1037 msgid "You must provide a routine name" -msgstr "Sie müssen einen Routinen-Namen angeben" +msgstr "Sie müssen einen Prozeduren-Namen angeben" #: libraries/rte/rte_routines.lib.php:1060 #, php-format From 969f183196ac7db5e0d50824ca9ecc5da83e91e3 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:43:06 +0200 Subject: [PATCH 362/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 6566494527..7327bec21e 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:42+0200\n" +"PO-Revision-Date: 2011-07-14 13:43+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6904,7 +6904,7 @@ msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -"Sie müssen Länge/Werte Angaben für Routinen Parameter des Typs ENUM, SET, " +"Sie müssen Länge/Werte Angaben für Prozeduren Parameter des Typs ENUM, SET, " "VARCHAR und VARBINARY angeben." #: libraries/rte/rte_routines.lib.php:1096 From d7c0e7009466f847ecc0778d83ac81022b038568 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:43:16 +0200 Subject: [PATCH 363/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 7327bec21e..967674dbf2 100644 --- a/po/de.po +++ b/po/de.po @@ -6910,7 +6910,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1096 msgid "You must provide a name and a type for each routine parameter." msgstr "" -"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben." +"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Paramter angeben." #: libraries/rte/rte_routines.lib.php:1121 #, fuzzy From f3defa7ce8b76dd4c9c1939a967abbc764c7748a Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:43:35 +0200 Subject: [PATCH 364/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 967674dbf2..fc9932f879 100644 --- a/po/de.po +++ b/po/de.po @@ -6910,7 +6910,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1096 msgid "You must provide a name and a type for each routine parameter." msgstr "" -"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Paramter angeben." +"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." #: libraries/rte/rte_routines.lib.php:1121 #, fuzzy From cbe5ad5bddc51cc4239954e404cdb0fd1e58b2e1 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:43:48 +0200 Subject: [PATCH 365/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index fc9932f879..b5d20535b9 100644 --- a/po/de.po +++ b/po/de.po @@ -6913,11 +6913,10 @@ msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." #: libraries/rte/rte_routines.lib.php:1121 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." msgstr "" -"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben." +"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." #: libraries/rte/rte_routines.lib.php:1171 msgid "You must provide a routine definition." From b9d0bff2b0525b68411612725affb7846d8a6e9e Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:43:55 +0200 Subject: [PATCH 366/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index b5d20535b9..15345e5e8f 100644 --- a/po/de.po +++ b/po/de.po @@ -6920,7 +6920,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1171 msgid "You must provide a routine definition." -msgstr "Sie müssen die Definition der Routine angeben." +msgstr "Sie müssen die Definition der Prozedur angeben." #: libraries/rte/rte_routines.lib.php:1260 #, php-format From 58f45cafef3319c61cefaa77b2adc77c45db0faf Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:44:07 +0200 Subject: [PATCH 367/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 15345e5e8f..cd21608229 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:43+0200\n" +"PO-Revision-Date: 2011-07-14 13:44+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6934,7 +6934,7 @@ msgstr[1] "" #: libraries/rte/rte_routines.lib.php:1276 #, php-format msgid "Execution results of routine %s" -msgstr "Ergebnisse der ausgeführten Routine %s" +msgstr "Ergebnisse der ausgeführten Prozedur %s" #: libraries/rte/rte_routines.lib.php:1350 #: libraries/rte/rte_routines.lib.php:1356 From 2a45af1b6463e2c532e7ea2aae1e399385b2b9d5 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:44:13 +0200 Subject: [PATCH 368/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index cd21608229..96da07d15a 100644 --- a/po/de.po +++ b/po/de.po @@ -6939,7 +6939,7 @@ msgstr "Ergebnisse der ausgeführten Prozedur %s" #: libraries/rte/rte_routines.lib.php:1350 #: libraries/rte/rte_routines.lib.php:1356 msgid "Execute routine" -msgstr "Führe Routine aus" +msgstr "Führe Prozedur aus" #: libraries/rte/rte_routines.lib.php:1407 #: libraries/rte/rte_routines.lib.php:1410 From cf57c972b53d73282166bbeae72e16ec8383f535 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:44:19 +0200 Subject: [PATCH 369/960] Translation update done using Pootle. --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 96da07d15a..66ab52d595 100644 --- a/po/de.po +++ b/po/de.po @@ -6944,7 +6944,7 @@ msgstr "Führe Prozedur aus" #: libraries/rte/rte_routines.lib.php:1407 #: libraries/rte/rte_routines.lib.php:1410 msgid "Routine parameters" -msgstr "Routinen Parameter" +msgstr "Prozeduren-Parameter" #: libraries/rte/rte_routines.lib.php:1417 tbl_change.php:287 #: tbl_change.php:325 From b785500f262d9b3cb122358372913d269ea1aa49 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:01 +0200 Subject: [PATCH 370/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 66ab52d595..0d508c7b69 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:44+0200\n" +"PO-Revision-Date: 2011-07-14 13:45+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -6951,8 +6951,8 @@ msgstr "Prozeduren-Parameter" msgid "Function" msgstr "Funktion" +# Trigger is the better term, it's more commen then Auslöser #: libraries/rte/rte_triggers.lib.php:24 -#, fuzzy #| msgid "Add a trigger" msgid "Add trigger" msgstr "Einen Trigger hinzufügen" From ce09d57b876e802ade04ac47d3c1a63e4e022e51 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:03 +0200 Subject: [PATCH 371/960] Translation update done using Pootle. --- po/de.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/de.po b/po/de.po index 0d508c7b69..9b7dc33472 100644 --- a/po/de.po +++ b/po/de.po @@ -6963,7 +6963,6 @@ msgid "Export of trigger %s" msgstr "Export des Triggers %s" #: libraries/rte/rte_triggers.lib.php:27 -#, fuzzy #| msgid "Triggers" msgid "trigger" msgstr "Trigger" From 815d115387b985f0dff61c78bc31a210dc50932d Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:14 +0200 Subject: [PATCH 372/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 9b7dc33472..a2647f2079 100644 --- a/po/de.po +++ b/po/de.po @@ -6968,10 +6968,9 @@ msgid "trigger" msgstr "Trigger" #: libraries/rte/rte_triggers.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new trigger" -msgstr "Sie haben nicht genug Rechte um eine neue Routine zu erstellen" +msgstr "Sie haben nicht genug Rechte um einen neuen Trigger zu erstellen" #: libraries/rte/rte_triggers.lib.php:29 #, fuzzy, php-format From e16978c3e87ecb605ab3e8aa3a60ea3412036ba1 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:28 +0200 Subject: [PATCH 373/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index a2647f2079..190b94caff 100644 --- a/po/de.po +++ b/po/de.po @@ -6973,10 +6973,10 @@ msgid "You do not have the necessary privileges to create a new trigger" msgstr "Sie haben nicht genug Rechte um einen neuen Trigger zu erstellen" #: libraries/rte/rte_triggers.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" -msgstr "Keine Routine namens %1$s in der Datenbank %2$s gefunden" +msgstr "Keine Trigger namens %1$s in der Datenbank %2$s gefunden" #: libraries/rte/rte_triggers.lib.php:30 msgid "There are no triggers to display." From b610553785beecaf295a08f6a7845f353ff69ea8 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:39 +0200 Subject: [PATCH 374/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 190b94caff..97794866c6 100644 --- a/po/de.po +++ b/po/de.po @@ -6983,10 +6983,9 @@ msgid "There are no triggers to display." msgstr "Es sind keine Trigger zum Anzeigen vorhanden." #: libraries/rte/rte_triggers.lib.php:97 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." -msgstr "Das wiederherstellen der gelöschten Routine schlug fehl." +msgstr "Das Wiederherstellen der gelöschten Trigger schlug fehl." #: libraries/rte/rte_triggers.lib.php:102 #, fuzzy, php-format From 20957ebff1eb5a3108500c715f5df89d4e16d1f4 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:45 +0200 Subject: [PATCH 375/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 97794866c6..b4c072d86c 100644 --- a/po/de.po +++ b/po/de.po @@ -6988,10 +6988,10 @@ msgid "Sorry, we failed to restore the dropped trigger." msgstr "Das Wiederherstellen der gelöschten Trigger schlug fehl." #: libraries/rte/rte_triggers.lib.php:102 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." -msgstr "Routine %1$s wurde geändert." +msgstr "Trigger %1$s wurde geändert." #: libraries/rte/rte_triggers.lib.php:114 #, fuzzy, php-format From 94911b33a304dfc751caf96443414decac708b93 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:45:53 +0200 Subject: [PATCH 376/960] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index b4c072d86c..342f4da324 100644 --- a/po/de.po +++ b/po/de.po @@ -6994,10 +6994,10 @@ msgid "Trigger %1$s has been modified." msgstr "Trigger %1$s wurde geändert." #: libraries/rte/rte_triggers.lib.php:114 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." -msgstr "Die Tabelle %1$s wurde erzeugt." +msgstr "Trigger %1$s wurde erzeugt." #: libraries/rte/rte_triggers.lib.php:165 #, fuzzy From 7c51c91edaf320b56cfd9c1f2b8d24bf1dc65d9f Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:02 +0200 Subject: [PATCH 377/960] Translation update done using Pootle. --- po/de.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 342f4da324..3c7f848530 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 13:45+0200\n" +"PO-Revision-Date: 2011-07-14 13:46+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -7000,10 +7000,9 @@ msgid "Trigger %1$s has been created." msgstr "Trigger %1$s wurde erzeugt." #: libraries/rte/rte_triggers.lib.php:165 -#, fuzzy #| msgid "Create view" msgid "Create trigger" -msgstr "Erzeuge View" +msgstr "Erzeuge Trigger" #: libraries/rte/rte_triggers.lib.php:169 #, fuzzy From 875918006337f31fd8275f6e8fbc50810185fa5a Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:07 +0200 Subject: [PATCH 378/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 3c7f848530..8dc0359cc3 100644 --- a/po/de.po +++ b/po/de.po @@ -7005,10 +7005,9 @@ msgid "Create trigger" msgstr "Erzeuge Trigger" #: libraries/rte/rte_triggers.lib.php:169 -#, fuzzy #| msgid "Add a trigger" msgid "Edit trigger" -msgstr "Einen Trigger hinzufügen" +msgstr "Einen Trigger bearbeiten" #: libraries/rte/rte_triggers.lib.php:309 #, fuzzy From a30d7f28ebf4b3b7bb869d47c7340e69294ce481 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:11 +0200 Subject: [PATCH 379/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 8dc0359cc3..e8170481c8 100644 --- a/po/de.po +++ b/po/de.po @@ -7010,10 +7010,9 @@ msgid "Edit trigger" msgstr "Einen Trigger bearbeiten" #: libraries/rte/rte_triggers.lib.php:309 -#, fuzzy #| msgid "Triggers" msgid "Trigger name" -msgstr "Trigger" +msgstr "Trigger-Name" #: libraries/rte/rte_triggers.lib.php:407 #, fuzzy From 3fcffaadd268b3280cb09cf9be7ef25e0ec3576c Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:16 +0200 Subject: [PATCH 380/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index e8170481c8..cdab1ddbe8 100644 --- a/po/de.po +++ b/po/de.po @@ -7015,10 +7015,9 @@ msgid "Trigger name" msgstr "Trigger-Name" #: libraries/rte/rte_triggers.lib.php:407 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a trigger name" -msgstr "Sie müssen einen Routinen-Namen angeben" +msgstr "Sie müssen einen Trigger-Namen angeben" #: libraries/rte/rte_triggers.lib.php:412 #, fuzzy From 0f69ab3199f09172b0b1f762e72ce3b59480572f Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:21 +0200 Subject: [PATCH 381/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index cdab1ddbe8..18d89e650e 100644 --- a/po/de.po +++ b/po/de.po @@ -7020,10 +7020,9 @@ msgid "You must provide a trigger name" msgstr "Sie müssen einen Trigger-Namen angeben" #: libraries/rte/rte_triggers.lib.php:412 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" -msgstr "Sie müssen einen Routinen-Namen angeben" +msgstr "Sie müssen einen Trigger-Namen angeben" #: libraries/rte/rte_triggers.lib.php:417 #, fuzzy From f01c13e380aefdcc3611d78394932bf4a1032d77 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:30 +0200 Subject: [PATCH 382/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 18d89e650e..eda46d4960 100644 --- a/po/de.po +++ b/po/de.po @@ -7025,11 +7025,10 @@ msgid "You must provide a valid timing for the trigger" msgstr "Sie müssen einen Trigger-Namen angeben" #: libraries/rte/rte_triggers.lib.php:417 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" msgstr "" -"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben." +"Sie müssen einen Namen und einen Typ für jeden Trugger-Parameter angeben." #: libraries/rte/rte_triggers.lib.php:423 #, fuzzy From f4ebaae5acc8207da8eeef32b66b45fb73a0a400 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:49 +0200 Subject: [PATCH 383/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index eda46d4960..7667ed6900 100644 --- a/po/de.po +++ b/po/de.po @@ -7031,10 +7031,9 @@ msgstr "" "Sie müssen einen Namen und einen Typ für jeden Trugger-Parameter angeben." #: libraries/rte/rte_triggers.lib.php:423 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid table name" -msgstr "Sie müssen einen Routinen-Namen angeben" +msgstr "Sie müssen einen gültigen Tabellen-Namen angeben" #: libraries/rte/rte_triggers.lib.php:429 #, fuzzy From 4e1d635d4f487584a75e2b09c19a215bd57148c4 Mon Sep 17 00:00:00 2001 From: mrbendig Date: Thu, 14 Jul 2011 13:46:57 +0200 Subject: [PATCH 384/960] Translation update done using Pootle. --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 7667ed6900..cc4fd6dab9 100644 --- a/po/de.po +++ b/po/de.po @@ -7036,10 +7036,9 @@ msgid "You must provide a valid table name" msgstr "Sie müssen einen gültigen Tabellen-Namen angeben" #: libraries/rte/rte_triggers.lib.php:429 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." -msgstr "Sie müssen die Definition der Routine angeben." +msgstr "Sie müssen die Definition des Triggers angeben." #: libraries/schema/Dia_Relation_Schema.class.php:222 #: libraries/schema/Eps_Relation_Schema.class.php:395 From 526419d1a127ff0784df634eaf0ee2f4f73a6474 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Thu, 14 Jul 2011 13:57:05 +0100 Subject: [PATCH 385/960] Renamed some functions to avoid conflicts of redefinition in unit tests --- db_events.php | 1 + db_routines.php | 1 + db_triggers.php | 1 + libraries/rte/rte_events.lib.php | 28 +------------- libraries/rte/rte_main.inc.php | 20 +++++++--- libraries/rte/rte_routines.lib.php | 28 +------------- libraries/rte/rte_triggers.lib.php | 28 +------------- libraries/rte/rte_words.lib.php | 60 ++++++++++++++++++++++++++++++ 8 files changed, 83 insertions(+), 84 deletions(-) create mode 100644 libraries/rte/rte_words.lib.php diff --git a/db_events.php b/db_events.php index f65960770a..c4397e79b9 100644 --- a/db_events.php +++ b/db_events.php @@ -28,6 +28,7 @@ require_once './libraries/rte/rte_events.lib.php'; /** * Do the magic */ +$_PMA_RTE = 'EVN'; require_once './libraries/rte/rte_main.inc.php'; ?> diff --git a/db_routines.php b/db_routines.php index efac9ea380..739e69a5d2 100644 --- a/db_routines.php +++ b/db_routines.php @@ -30,6 +30,7 @@ require_once './libraries/rte/rte_routines.lib.php'; /** * Do the magic */ +$_PMA_RTE = 'RTN'; require_once './libraries/rte/rte_main.inc.php'; ?> diff --git a/db_triggers.php b/db_triggers.php index 1bd792ec41..aef164266d 100644 --- a/db_triggers.php +++ b/db_triggers.php @@ -27,6 +27,7 @@ require_once './libraries/rte/rte_triggers.lib.php'; /** * Do the magic */ +$_PMA_RTE = 'TRI'; require_once './libraries/rte/rte_main.inc.php'; ?> diff --git a/libraries/rte/rte_events.lib.php b/libraries/rte/rte_events.lib.php index d7ffbc57dc..a449ff2e8d 100644 --- a/libraries/rte/rte_events.lib.php +++ b/libraries/rte/rte_events.lib.php @@ -43,34 +43,10 @@ function PMA_EVN_setGlobals() 'MINUTE_SECOND'); } -/** - * This function is defined in: rte_routines.lib.php, rte_triggers.lib.php and - * rte_events.lib.php. It is used to retreive some language strings that are - * used in functionalities that are common to routines, triggers and events. - * - * @param string $index The index of the string to get - * - * @return string The requested string or an empty string, if not available - */ -function PMA_RTE_getWord($index) -{ - $words = array( - 'add' => __('Add event'), - 'docu' => 'EVENTS', - 'export' => __('Export of event %s'), - 'human' => __('event'), - 'no_create' => __('You do not have the necessary privileges to create a new event'), - 'not_found' => __('No event with name %1$s found in database %2$s'), - 'nothing' => __('There are no events to display.'), - 'title' => __('Events'), - ); - return isset($words[$index]) ? $words[$index] : ''; -} // end PMA_RTE_getWord() - /** * Main function for the events functionality */ -function PMA_RTE_main() +function PMA_EVN_main() { global $db; @@ -95,7 +71,7 @@ function PMA_RTE_main() * toggle the state of the event scheduler. */ echo PMA_EVN_getFooterLinks(); -} // end PMA_RTE_main() +} // end PMA_EVN_main() /** * Handles editor requests for adding or editing an item diff --git a/libraries/rte/rte_main.inc.php b/libraries/rte/rte_main.inc.php index dd3e4c0351..d2950bfca1 100644 --- a/libraries/rte/rte_main.inc.php +++ b/libraries/rte/rte_main.inc.php @@ -13,6 +13,7 @@ if (! defined('PHPMYADMIN')) { * Include all other files that are common * to routines, triggers and events. */ +require_once './libraries/rte/rte_words.lib.php'; require_once './libraries/rte/rte_export.lib.php'; require_once './libraries/rte/rte_list.lib.php'; require_once './libraries/rte/rte_footer.lib.php'; @@ -71,14 +72,21 @@ $titles = PMA_buildActionTitles(); */ $errors = array(); + /** - * The below function is defined in rte_routines.lib.php, - * rte_triggers.lib.php and rte_events.lib.php - * - * The appropriate function will now be called based on which one - * of these files was included earlier in the top-level folder + * Call the appropriate main function */ -PMA_RTE_main(); +switch ($_PMA_RTE) { +case 'RTN': + PMA_RTN_main(); + break; +case 'TRI': + PMA_TRI_main(); + break; +case 'EVN': + PMA_EVN_main(); + break; +} /** * Display the footer, if necessary diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index 9a9c8f23f2..5ac8536632 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -28,34 +28,10 @@ function PMA_RTN_setGlobals() 'MODIFIES SQL DATA'); } -/** - * This function is defined in: rte_routines.lib.php, rte_triggers.lib.php and - * rte_events.lib.php. It is used to retreive some language strings that are - * used in functionalities that are common to routines, triggers and events. - * - * @param string $index The index of the string to get - * - * @return string The requested string or an empty string, if not available - */ -function PMA_RTE_getWord($index) -{ - $words = array( - 'add' => __('Add routine'), - 'docu' => 'STORED_ROUTINES', - 'export' => __('Export of routine %s'), - 'human' => __('routine'), - 'no_create' => __('You do not have the necessary privileges to create a new routine'), - 'not_found' => __('No routine with name %1$s found in database %2$s'), - 'nothing' => __('There are no routines to display.'), - 'title' => __('Routines'), - ); - return isset($words[$index]) ? $words[$index] : ''; -} // end PMA_RTE_getWord() - /** * Main function for the routines functionality */ -function PMA_RTE_main() +function PMA_RTN_main() { global $db; @@ -93,7 +69,7 @@ function PMA_RTE_main() E_USER_WARNING ); } -} // end PMA_RTE_main() +} // end PMA_RTN_main() /** * This function parses a string containing one parameter of a routine, diff --git a/libraries/rte/rte_triggers.lib.php b/libraries/rte/rte_triggers.lib.php index 61b9943169..8c65a6781d 100644 --- a/libraries/rte/rte_triggers.lib.php +++ b/libraries/rte/rte_triggers.lib.php @@ -24,34 +24,10 @@ function PMA_TRI_setGlobals() 'DELETE'); } -/** - * This function is defined in: rte_routines.lib.php, rte_triggers.lib.php and - * rte_events.lib.php. It is used to retreive some language strings that are - * used in functionalities that are common to routines, triggers and events. - * - * @param string $index The index of the string to get - * - * @return string The requested string or an empty string, if not available - */ -function PMA_RTE_getWord($index) -{ - $words = array( - 'add' => __('Add trigger'), - 'docu' => 'TRIGGERS', - 'export' => __('Export of trigger %s'), - 'human' => __('trigger'), - 'no_create' => __('You do not have the necessary privileges to create a new trigger'), - 'not_found' => __('No trigger with name %1$s found in database %2$s'), - 'nothing' => __('There are no triggers to display.'), - 'title' => __('Triggers'), - ); - return isset($words[$index]) ? $words[$index] : ''; -} // end PMA_RTE_getWord() - /** * Main function for the triggers functionality */ -function PMA_RTE_main() +function PMA_TRI_main() { global $db, $table; @@ -71,7 +47,7 @@ function PMA_RTE_main() * if the user has the necessary privileges */ echo PMA_TRI_getFooterLinks(); -} // end PMA_RTE_main() +} // end PMA_TRI_main() /** * Handles editor requests for adding or editing an item diff --git a/libraries/rte/rte_words.lib.php b/libraries/rte/rte_words.lib.php new file mode 100644 index 0000000000..657bec1821 --- /dev/null +++ b/libraries/rte/rte_words.lib.php @@ -0,0 +1,60 @@ + __('Add routine'), + 'docu' => 'STORED_ROUTINES', + 'export' => __('Export of routine %s'), + 'human' => __('routine'), + 'no_create' => __('You do not have the necessary privileges to create a new routine'), + 'not_found' => __('No routine with name %1$s found in database %2$s'), + 'nothing' => __('There are no routines to display.'), + 'title' => __('Routines'), + ); + break; + case 'TRI': + $words = array( + 'add' => __('Add trigger'), + 'docu' => 'TRIGGERS', + 'export' => __('Export of trigger %s'), + 'human' => __('trigger'), + 'no_create' => __('You do not have the necessary privileges to create a new trigger'), + 'not_found' => __('No trigger with name %1$s found in database %2$s'), + 'nothing' => __('There are no triggers to display.'), + 'title' => __('Triggers'), + ); + break; + case 'EVN': + $words = array( + 'add' => __('Add event'), + 'docu' => 'EVENTS', + 'export' => __('Export of event %s'), + 'human' => __('event'), + 'no_create' => __('You do not have the necessary privileges to create a new event'), + 'not_found' => __('No event with name %1$s found in database %2$s'), + 'nothing' => __('There are no events to display.'), + 'title' => __('Events'), + ); + break; + default: + $words = array(); + break; + } + + return isset($words[$index]) ? $words[$index] : ''; +} // end PMA_RTE_getWord() + +?> From 4b5da2869b3b8197b741b03c4c3fa7e760335b30 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:08:29 +0200 Subject: [PATCH 386/960] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 9562a83d02..453bba3726 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-09 16:40+0200\n" +"PO-Revision-Date: 2011-07-14 15:08+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -2210,10 +2210,9 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" #: libraries/common.lib.php:2456 -#, fuzzy #| msgid "Click to select" msgid "Click to toggle" -msgstr "Click to select" +msgstr "Click to toggle" #: libraries/common.lib.php:2727 libraries/common.lib.php:2734 #: libraries/common.lib.php:2921 libraries/config/setup.forms.php:296 From 6228e070a8438d0f814f5bc267bf5723daf68e61 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:08:38 +0200 Subject: [PATCH 387/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 453bba3726..06553c0cc6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6489,10 +6489,9 @@ msgid "Generate Password" msgstr "Generate Password" #: libraries/rte/rte_events.lib.php:24 -#, fuzzy #| msgid "Add an event" msgid "Add event" -msgstr "Add an event" +msgstr "Add event" #: libraries/rte/rte_events.lib.php:26 #, php-format From 3c62018847b9e3943b693b75af08dec01fffb08f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:08:46 +0200 Subject: [PATCH 388/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 06553c0cc6..cbfec68efd 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6499,10 +6499,9 @@ msgid "Export of event %s" msgstr "Export of event %s" #: libraries/rte/rte_events.lib.php:27 -#, fuzzy #| msgid "Event" msgid "event" -msgstr "Event" +msgstr "event" #: libraries/rte/rte_events.lib.php:28 #, fuzzy From fda295221d30a330484bcc9337a2c2b7c8d7ede1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:08:55 +0200 Subject: [PATCH 389/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index cbfec68efd..35b86f6876 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6504,10 +6504,9 @@ msgid "event" msgstr "event" #: libraries/rte/rte_events.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new event" -msgstr "You do not have the necessary privileges to create a new routine" +msgstr "You do not have the necessary privileges to create a new event" #: libraries/rte/rte_events.lib.php:29 #, fuzzy, php-format From 7e92f2a56a3acefc69355bec5bb383d950eb10e5 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:09:09 +0200 Subject: [PATCH 390/960] Translation update done using Pootle. --- po/en_GB.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 35b86f6876..0aac1a23d6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:08+0200\n" +"PO-Revision-Date: 2011-07-14 15:09+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6509,10 +6509,10 @@ msgid "You do not have the necessary privileges to create a new event" msgstr "You do not have the necessary privileges to create a new event" #: libraries/rte/rte_events.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" -msgstr "No event with name %s found in database %s" +msgstr "No event with name %1$s found in database %2$s" #: libraries/rte/rte_events.lib.php:30 msgid "There are no events to display." From 6845c60828bbc71afbe2162b1a385887984f45d5 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:09:31 +0200 Subject: [PATCH 391/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0aac1a23d6..1290571eb6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6530,10 +6530,9 @@ msgid "The following query has failed: \"%s\"" msgstr "The following query has failed: \"%s\"" #: libraries/rte/rte_events.lib.php:105 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." -msgstr "Sorry, we failed to restore the dropped routine." +msgstr "Sorry, we failed to restore the dropped event." #: libraries/rte/rte_events.lib.php:106 libraries/rte/rte_routines.lib.php:274 #: libraries/rte/rte_triggers.lib.php:98 From 84b2c8c75a74abac07334096ef6e199621bcbe16 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:09:41 +0200 Subject: [PATCH 392/960] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 1290571eb6..19d2d1d00d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6540,10 +6540,10 @@ msgid "The backed up query was:" msgstr "The backed up query was:" #: libraries/rte/rte_events.lib.php:110 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." -msgstr "Routine %1$s has been modified." +msgstr "Event %1$s has been modified." #: libraries/rte/rte_events.lib.php:122 #, fuzzy, php-format From a4f6476df81c15ecdec465196fe055e43d789879 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:09:50 +0200 Subject: [PATCH 393/960] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 19d2d1d00d..5c5a7e678d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6546,10 +6546,10 @@ msgid "Event %1$s has been modified." msgstr "Event %1$s has been modified." #: libraries/rte/rte_events.lib.php:122 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Event %1$s has been created." -msgstr "Table %1$s has been created." +msgstr "Event %1$s has been created." #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:299 #: libraries/rte/rte_triggers.lib.php:122 From 56acf0e08c8972b3cbaf76d3b3fbaab314889180 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:09:58 +0200 Subject: [PATCH 394/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 5c5a7e678d..bfdf8113d6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6557,10 +6557,9 @@ msgid "One or more errors have occured while processing your request:" msgstr "One or more errors have occurred while processing your request:" #: libraries/rte/rte_events.lib.php:170 -#, fuzzy #| msgid "Create view" msgid "Create event" -msgstr "Create view" +msgstr "Create event" #: libraries/rte/rte_events.lib.php:174 #, fuzzy From 2c4f1d5af19411be4b7f2b380d0b8b10d801158b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:06 +0200 Subject: [PATCH 395/960] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index bfdf8113d6..04ce16711b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:09+0200\n" +"PO-Revision-Date: 2011-07-14 15:10+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6562,10 +6562,9 @@ msgid "Create event" msgstr "Create event" #: libraries/rte/rte_events.lib.php:174 -#, fuzzy #| msgid "Edit server" msgid "Edit event" -msgstr "Edit server" +msgstr "Edit event" #: libraries/rte/rte_events.lib.php:201 libraries/rte/rte_routines.lib.php:375 #: libraries/rte/rte_routines.lib.php:1326 From 15b3e9b3427e0534c5a34f8708ceb2c821227233 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:13 +0200 Subject: [PATCH 396/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 04ce16711b..919cc1f6bf 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6579,10 +6579,9 @@ msgid "Details" msgstr "Details" #: libraries/rte/rte_events.lib.php:363 -#, fuzzy #| msgid "Event type" msgid "Event name" -msgstr "Event type" +msgstr "Event name" #: libraries/rte/rte_events.lib.php:384 server_binlog.php:182 msgid "Event type" From 2b54fac4576658bbf7916eaeeca9c950dd50deee Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:21 +0200 Subject: [PATCH 397/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 919cc1f6bf..0884921ab2 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6593,10 +6593,9 @@ msgid "Change to %s" msgstr "Change to %s" #: libraries/rte/rte_events.lib.php:411 -#, fuzzy #| msgid "Execute" msgid "Execute at" -msgstr "Execute" +msgstr "Execute at" #: libraries/rte/rte_events.lib.php:419 #, fuzzy From 0965727ca91ab54dc357c0914b869cd1ec2259ee Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:29 +0200 Subject: [PATCH 398/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0884921ab2..67c9f46f01 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6598,10 +6598,9 @@ msgid "Execute at" msgstr "Execute at" #: libraries/rte/rte_events.lib.php:419 -#, fuzzy #| msgid "Execute" msgid "Execute every" -msgstr "Execute" +msgstr "Execute every" #: libraries/rte/rte_events.lib.php:438 #, fuzzy From 95f7739f8521e079d0f90aedf9c3ecd34564ab72 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:40 +0200 Subject: [PATCH 399/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 67c9f46f01..c23233efd9 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6603,10 +6603,9 @@ msgid "Execute every" msgstr "Execute every" #: libraries/rte/rte_events.lib.php:438 -#, fuzzy #| msgid "Startup" msgid "Start" -msgstr "Startup" +msgstr "Start" #: libraries/rte/rte_events.lib.php:454 libraries/rte/rte_routines.lib.php:952 #: libraries/rte/rte_triggers.lib.php:356 From 409135ac333c315a0f6a7fb637d69c50ce76fd30 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:47 +0200 Subject: [PATCH 400/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index c23233efd9..3fbc2449ab 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6613,10 +6613,9 @@ msgid "Definition" msgstr "Definition" #: libraries/rte/rte_events.lib.php:460 -#, fuzzy #| msgid "complete inserts" msgid "On completion preserve" -msgstr "complete inserts" +msgstr "On completion preserve" #: libraries/rte/rte_events.lib.php:464 libraries/rte/rte_routines.lib.php:962 #: libraries/rte/rte_triggers.lib.php:362 From ce77a107b2ddfc775d88db41876558b1831fedf7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:10:56 +0200 Subject: [PATCH 401/960] Translation update done using Pootle. --- po/en_GB.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/en_GB.po b/po/en_GB.po index 3fbc2449ab..d35fa3d221 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6626,7 +6626,7 @@ msgstr "Definer" #: libraries/rte/rte_routines.lib.php:1024 #: libraries/rte/rte_triggers.lib.php:400 msgid "The definer must be in the \"username@hostname\" format" -msgstr "" +msgstr "The definer must be in the \"username@hostname\" format" #: libraries/rte/rte_events.lib.php:514 #, fuzzy From 7b384d5e6eb38053c47a6ec513cccfa8b583d596 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:11:05 +0200 Subject: [PATCH 402/960] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index d35fa3d221..ef10aded8a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:10+0200\n" +"PO-Revision-Date: 2011-07-14 15:11+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6629,10 +6629,9 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "The definer must be in the \"username@hostname\" format" #: libraries/rte/rte_events.lib.php:514 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide an event name" -msgstr "You must provide a routine name" +msgstr "You must provide an event name" #: libraries/rte/rte_events.lib.php:526 #, fuzzy From a38920a6845bbed71aeae8d59f593de060f6ad8d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:11:16 +0200 Subject: [PATCH 403/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index ef10aded8a..a52d97ff30 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6634,10 +6634,9 @@ msgid "You must provide an event name" msgstr "You must provide an event name" #: libraries/rte/rte_events.lib.php:526 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." -msgstr "You must provide a name and a type for each routine parameter." +msgstr "You must provide a valid interval value for the event." #: libraries/rte/rte_events.lib.php:538 #, fuzzy From 4dfaf375516f720a46aaab05f18ad117cf5edae3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:11:25 +0200 Subject: [PATCH 404/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index a52d97ff30..7ae844770b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6639,10 +6639,9 @@ msgid "You must provide a valid interval value for the event." msgstr "You must provide a valid interval value for the event." #: libraries/rte/rte_events.lib.php:538 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." -msgstr "You must provide a routine definition." +msgstr "You must provide a valid execution time for the event." #: libraries/rte/rte_events.lib.php:542 #, fuzzy From 9add42f3f12be08ebb6815f0d37e9548b7cae379 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:11:34 +0200 Subject: [PATCH 405/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 7ae844770b..926d3dcd25 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6644,10 +6644,9 @@ msgid "You must provide a valid execution time for the event." msgstr "You must provide a valid execution time for the event." #: libraries/rte/rte_events.lib.php:542 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." -msgstr "You must provide a name and a type for each routine parameter." +msgstr "You must provide a valid type for the event." #: libraries/rte/rte_events.lib.php:561 #, fuzzy From a7d0710f1681aa98729879978f86a8779d829d3e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:11:42 +0200 Subject: [PATCH 406/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 926d3dcd25..01b57816f4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6649,10 +6649,9 @@ msgid "You must provide a valid type for the event." msgstr "You must provide a valid type for the event." #: libraries/rte/rte_events.lib.php:561 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide an event definition." -msgstr "You must provide a routine definition." +msgstr "You must provide an event definition." #: libraries/rte/rte_footer.lib.php:29 msgid "New" From efc4044be848e85b7ae1d5fee70882a30eff9977 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:11:53 +0200 Subject: [PATCH 407/960] Translation update done using Pootle. --- po/en_GB.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/en_GB.po b/po/en_GB.po index 01b57816f4..af8a81564b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6655,7 +6655,7 @@ msgstr "You must provide an event definition." #: libraries/rte/rte_footer.lib.php:29 msgid "New" -msgstr "" +msgstr "New" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" From a3082ee5c18ea2b1a93afc9d670013a329d9cf27 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:01 +0200 Subject: [PATCH 408/960] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index af8a81564b..3fc0a589c9 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:11+0200\n" +"PO-Revision-Date: 2011-07-14 15:12+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6659,7 +6659,7 @@ msgstr "New" #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" -msgstr "" +msgstr "OFF" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" From e4642a111bb5b68a1e78e531483e6d83e99c8e41 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:10 +0200 Subject: [PATCH 409/960] Translation update done using Pootle. --- po/en_GB.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/en_GB.po b/po/en_GB.po index 3fc0a589c9..b1ad372b4e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6663,7 +6663,7 @@ msgstr "OFF" #: libraries/rte/rte_footer.lib.php:96 msgid "ON" -msgstr "" +msgstr "ON" #: libraries/rte/rte_footer.lib.php:108 #, fuzzy From 2dd094e82049ad82eb4cd173a676adfb89a68c3d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:20 +0200 Subject: [PATCH 410/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index b1ad372b4e..ba6d69a940 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6666,10 +6666,9 @@ msgid "ON" msgstr "ON" #: libraries/rte/rte_footer.lib.php:108 -#, fuzzy #| msgid "The event scheduler is enabled" msgid "Event scheduler status" -msgstr "The event scheduler is enabled" +msgstr "Event scheduler status" #: libraries/rte/rte_list.lib.php:52 #, fuzzy From cbfb5562c5ef3a727cdc5def099e92e4c8381c04 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:28 +0200 Subject: [PATCH 411/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index ba6d69a940..4c0c61c5ed 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6671,10 +6671,9 @@ msgid "Event scheduler status" msgstr "Event scheduler status" #: libraries/rte/rte_list.lib.php:52 -#, fuzzy #| msgid "Return type" msgid "Returns" -msgstr "Return type" +msgstr "Returns" #: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:328 #: server_status.php:800 sql.php:943 From 1bb8ef904be587c4b2ce3c888bfaef6d20993a92 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:35 +0200 Subject: [PATCH 412/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 4c0c61c5ed..ab5fae5d50 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6694,10 +6694,9 @@ msgid "Export of routine %s" msgstr "Export of routine %s" #: libraries/rte/rte_routines.lib.php:27 -#, fuzzy #| msgid "Routines" msgid "routine" -msgstr "Routines" +msgstr "routine" #: libraries/rte/rte_routines.lib.php:28 msgid "You do not have the necessary privileges to create a new routine" From 6ef4602f725be4bfa27b3c0b12b63d65b5454a57 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:45 +0200 Subject: [PATCH 413/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index ab5fae5d50..259a11883f 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6820,10 +6820,9 @@ msgid "You must provide a name and a type for each routine parameter." msgstr "You must provide a name and a type for each routine parameter." #: libraries/rte/rte_routines.lib.php:1121 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." -msgstr "You must provide a name and a type for each routine parameter." +msgstr "You must provide a valid return type for the routine.." #: libraries/rte/rte_routines.lib.php:1171 msgid "You must provide a routine definition." From c1a930f8052c3491e0613d91b5aeaa88b3d9cfc7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:12:59 +0200 Subject: [PATCH 414/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 259a11883f..691addcd37 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6856,10 +6856,9 @@ msgid "Function" msgstr "Function" #: libraries/rte/rte_triggers.lib.php:24 -#, fuzzy #| msgid "Add a trigger" msgid "Add trigger" -msgstr "Add a trigger" +msgstr "Add trigger" #: libraries/rte/rte_triggers.lib.php:26 #, php-format From 3beee0cc91a1366fa303632f0e63169a7cb7c807 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:13:06 +0200 Subject: [PATCH 415/960] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 691addcd37..b01beeb9f2 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:12+0200\n" +"PO-Revision-Date: 2011-07-14 15:13+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6866,10 +6866,9 @@ msgid "Export of trigger %s" msgstr "Export of trigger %s" #: libraries/rte/rte_triggers.lib.php:27 -#, fuzzy #| msgid "Triggers" msgid "trigger" -msgstr "Triggers" +msgstr "trigger" #: libraries/rte/rte_triggers.lib.php:28 #, fuzzy From b57c3c478ade2d2ac2f18ba9c354c389083ef2ba Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:13:17 +0200 Subject: [PATCH 416/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index b01beeb9f2..68344d2999 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6871,10 +6871,9 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_triggers.lib.php:28 -#, fuzzy #| msgid "You do not have the necessary privileges to create a new routine" msgid "You do not have the necessary privileges to create a new trigger" -msgstr "You do not have the necessary privileges to create a new routine" +msgstr "You do not have the necessary privileges to create a new trigger" #: libraries/rte/rte_triggers.lib.php:29 #, fuzzy, php-format From ab6dbc355d464f1e39cbd0517e69491b7aae7a3c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:14:33 +0200 Subject: [PATCH 417/960] Translation update done using Pootle. --- po/en_GB.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 68344d2999..f4f8bbb5d6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:13+0200\n" +"PO-Revision-Date: 2011-07-14 15:14+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6876,10 +6876,10 @@ msgid "You do not have the necessary privileges to create a new trigger" msgstr "You do not have the necessary privileges to create a new trigger" #: libraries/rte/rte_triggers.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" -msgstr "No routine with name %1$s found in database %2$s" +msgstr "No trigger with name %1$s found in database %2$s" #: libraries/rte/rte_triggers.lib.php:30 msgid "There are no triggers to display." From dcf2f2a940899b509e89d808054e6489ac1989d7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:14:43 +0200 Subject: [PATCH 418/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index f4f8bbb5d6..c1af8d964c 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6886,10 +6886,9 @@ msgid "There are no triggers to display." msgstr "There are no triggers to display." #: libraries/rte/rte_triggers.lib.php:97 -#, fuzzy #| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." -msgstr "Sorry, we failed to restore the dropped routine." +msgstr "Sorry, we failed to restore the dropped trigger." #: libraries/rte/rte_triggers.lib.php:102 #, fuzzy, php-format From 211ea41ab8d1dfc561984fc513a1bebcb71979b4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:14:51 +0200 Subject: [PATCH 419/960] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index c1af8d964c..0ec467f17b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6891,10 +6891,10 @@ msgid "Sorry, we failed to restore the dropped trigger." msgstr "Sorry, we failed to restore the dropped trigger." #: libraries/rte/rte_triggers.lib.php:102 -#, fuzzy, php-format +#, php-format #| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." -msgstr "Routine %1$s has been modified." +msgstr "Trigger %1$s has been modified." #: libraries/rte/rte_triggers.lib.php:114 #, fuzzy, php-format From 1edf887db074cf9aa07baaa7213557abc68f0cc2 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:14:58 +0200 Subject: [PATCH 420/960] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0ec467f17b..35cd99ba42 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6897,10 +6897,10 @@ msgid "Trigger %1$s has been modified." msgstr "Trigger %1$s has been modified." #: libraries/rte/rte_triggers.lib.php:114 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." -msgstr "Table %1$s has been created." +msgstr "Trigger %1$s has been created." #: libraries/rte/rte_triggers.lib.php:165 #, fuzzy From 9e29ab4a752c823d2dc7dcd3a168fb8da1252d1e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:15:03 +0200 Subject: [PATCH 421/960] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 35cd99ba42..fa6030140d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:14+0200\n" +"PO-Revision-Date: 2011-07-14 15:15+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6903,10 +6903,9 @@ msgid "Trigger %1$s has been created." msgstr "Trigger %1$s has been created." #: libraries/rte/rte_triggers.lib.php:165 -#, fuzzy #| msgid "Create view" msgid "Create trigger" -msgstr "Create view" +msgstr "Create trigger" #: libraries/rte/rte_triggers.lib.php:169 #, fuzzy From 02b44ef60d1149c8b5e9881ec6046772812fd12a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:15:10 +0200 Subject: [PATCH 422/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index fa6030140d..0b73b573da 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6908,10 +6908,9 @@ msgid "Create trigger" msgstr "Create trigger" #: libraries/rte/rte_triggers.lib.php:169 -#, fuzzy #| msgid "Add a trigger" msgid "Edit trigger" -msgstr "Add a trigger" +msgstr "Edit trigger" #: libraries/rte/rte_triggers.lib.php:309 #, fuzzy From 70149e8efd6ae5ebf0f544cddb7101c7b3290886 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:15:17 +0200 Subject: [PATCH 423/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0b73b573da..296c125664 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6913,10 +6913,9 @@ msgid "Edit trigger" msgstr "Edit trigger" #: libraries/rte/rte_triggers.lib.php:309 -#, fuzzy #| msgid "Triggers" msgid "Trigger name" -msgstr "Triggers" +msgstr "Trigger name" #: libraries/rte/rte_triggers.lib.php:407 #, fuzzy From 6f4334bf95d8db159b0a29ee86e4c8eb4c9fe0ee Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:15:26 +0200 Subject: [PATCH 424/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 296c125664..af7ee0c6ae 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6918,10 +6918,9 @@ msgid "Trigger name" msgstr "Trigger name" #: libraries/rte/rte_triggers.lib.php:407 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a trigger name" -msgstr "You must provide a routine name" +msgstr "You must provide a trigger name" #: libraries/rte/rte_triggers.lib.php:412 #, fuzzy From b97940eaeba68b32f3e97b6593d3f878f2af05b8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:15:42 +0200 Subject: [PATCH 425/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index af7ee0c6ae..e0fdf7c8a9 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6923,10 +6923,9 @@ msgid "You must provide a trigger name" msgstr "You must provide a trigger name" #: libraries/rte/rte_triggers.lib.php:412 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" -msgstr "You must provide a routine name" +msgstr "You must provide a valid timing for the trigger" #: libraries/rte/rte_triggers.lib.php:417 #, fuzzy From 8d24eea3c0ba2ad3fc35fb964d1d4db409592df2 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:15:51 +0200 Subject: [PATCH 426/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index e0fdf7c8a9..df9caa18a3 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6928,10 +6928,9 @@ msgid "You must provide a valid timing for the trigger" msgstr "You must provide a valid timing for the trigger" #: libraries/rte/rte_triggers.lib.php:417 -#, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" -msgstr "You must provide a name and a type for each routine parameter." +msgstr "You must provide a valid event for the trigger" #: libraries/rte/rte_triggers.lib.php:423 #, fuzzy From 1a7d9341ae6e0637f4afdde2ee9536d90b5c54de Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:16:01 +0200 Subject: [PATCH 427/960] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index df9caa18a3..a2dce74081 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:15+0200\n" +"PO-Revision-Date: 2011-07-14 15:16+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -6933,10 +6933,9 @@ msgid "You must provide a valid event for the trigger" msgstr "You must provide a valid event for the trigger" #: libraries/rte/rte_triggers.lib.php:423 -#, fuzzy #| msgid "You must provide a routine name" msgid "You must provide a valid table name" -msgstr "You must provide a routine name" +msgstr "You must provide a valid table name" #: libraries/rte/rte_triggers.lib.php:429 #, fuzzy From bd47e08e908bb55729b0d369998cae84b2bb7c23 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 14 Jul 2011 15:16:10 +0200 Subject: [PATCH 428/960] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index a2dce74081..3d2e9a873a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6938,10 +6938,9 @@ msgid "You must provide a valid table name" msgstr "You must provide a valid table name" #: libraries/rte/rte_triggers.lib.php:429 -#, fuzzy #| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." -msgstr "You must provide a routine definition." +msgstr "You must provide a trigger definition." #: libraries/schema/Dia_Relation_Schema.class.php:222 #: libraries/schema/Eps_Relation_Schema.class.php:395 From 285be3453d88daf2c3f6975924119f629318a65d Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 15:27:20 +0200 Subject: [PATCH 429/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 94d2d05ab0..e926b08779 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 11:24+0200\n" +"PO-Revision-Date: 2011-07-14 15:27+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" From 7380bf1616a9622f868f2ed1a50ff1338fa98716 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 15:28:19 +0200 Subject: [PATCH 430/960] Translation update done using Pootle. --- po/sk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sk.po b/po/sk.po index e926b08779..25ba32486d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:27+0200\n" +"PO-Revision-Date: 2011-07-14 15:28+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5177,7 +5177,7 @@ msgstr "Zobraziť graf" #: libraries/display_tbl.lib.php:2509 msgid "Visualize GIS data" -msgstr "" +msgstr "Zobraziť GIS data" #: libraries/display_tbl.lib.php:2529 #, fuzzy From d7225a010d8b5b6edfc5367b2e5aa9e05f594975 Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 15:28:57 +0200 Subject: [PATCH 431/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 25ba32486d..81dc7603ea 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5374,7 +5374,7 @@ msgstr "" #: libraries/engines/pbms.lib.php:30 msgid "Garbage Threshold" -msgstr "" +msgstr "Hranica odpadu" #: libraries/engines/pbms.lib.php:31 msgid "The percentage of garbage in a repository file before it is compacted." From d3b0b86b0f28018f0770055690254e7037c359aa Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 15:30:22 +0200 Subject: [PATCH 432/960] Translation update done using Pootle. --- po/sk.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index 81dc7603ea..baaa1ae5d3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-13 14:48+0200\n" -"PO-Revision-Date: 2011-07-14 15:28+0200\n" +"PO-Revision-Date: 2011-07-14 15:30+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" "Language: sk\n" @@ -5379,6 +5379,7 @@ msgstr "Hranica odpadu" #: libraries/engines/pbms.lib.php:31 msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" +"Percentuílny podiel odpadu v úložnom súbore predtým, než je súbor zhustený." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:69 #: server_synchronize.php:1174 From 8754b9d228fa8f371da1bd69c89f7c1bcb56802f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Thu, 14 Jul 2011 15:30:49 +0200 Subject: [PATCH 433/960] Translation update done using Pootle. --- po/sk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sk.po b/po/sk.po index baaa1ae5d3..6fecabfc78 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5394,7 +5394,7 @@ msgstr "" #: libraries/engines/pbms.lib.php:40 msgid "Repository Threshold" -msgstr "" +msgstr "Hranica veľkosti úložiska" #: libraries/engines/pbms.lib.php:41 msgid "" From 117dd687575b4af0f24ae6f79773122a5a133a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 14 Jul 2011 18:40:10 +0200 Subject: [PATCH 434/960] Refresh po files --- po/af.po | 28 +++++++------- po/ar.po | 40 ++++++++++---------- po/az.po | 28 +++++++------- po/be.po | 36 +++++++++--------- po/be@latin.po | 48 ++++++++++++------------ po/bg.po | 40 ++++++++++---------- po/bn.po | 40 ++++++++++---------- po/br.po | 40 ++++++++++---------- po/bs.po | 28 +++++++------- po/ca.po | 48 ++++++++++++------------ po/cs.po | 48 ++++++++++++------------ po/cy.po | 32 ++++++++-------- po/da.po | 51 ++++++++++---------------- po/de.po | 93 +++++++++++++++-------------------------------- po/el.po | 52 +++++++++++++------------- po/en_GB.po | 90 ++++++++++++++------------------------------- po/es.po | 77 ++++++++++----------------------------- po/et.po | 28 +++++++------- po/eu.po | 28 +++++++------- po/fa.po | 44 +++++++++++----------- po/fi.po | 42 ++++++++++----------- po/fr.po | 55 ++++++++++++++-------------- po/gl.po | 46 +++++++++++------------ po/he.po | 28 +++++++------- po/hi.po | 36 +++++++++--------- po/hr.po | 40 ++++++++++---------- po/hu.po | 54 +++++++++++++-------------- po/id.po | 36 +++++++++--------- po/it.po | 44 +++++++++++----------- po/ja.po | 41 +++++++++++---------- po/ka.po | 54 +++++++++++++-------------- po/ko.po | 36 +++++++++--------- po/lt.po | 46 +++++++++++------------ po/lv.po | 32 ++++++++-------- po/mk.po | 28 +++++++------- po/ml.po | 28 +++++++------- po/mn.po | 40 ++++++++++---------- po/ms.po | 28 +++++++------- po/nb.po | 42 ++++++++++----------- po/nl.po | 40 ++++++++++---------- po/phpmyadmin.pot | 27 +++++++------- po/pl.po | 54 +++++++++++++-------------- po/pt.po | 36 +++++++++--------- po/pt_BR.po | 32 ++++++++-------- po/ro.po | 36 +++++++++--------- po/ru.po | 40 ++++++++++---------- po/si.po | 40 ++++++++++---------- po/sk.po | 71 ++++++++++++++---------------------- po/sl.po | 28 +++++++------- po/sq.po | 32 ++++++++-------- po/sr.po | 36 +++++++++--------- po/sr@latin.po | 36 +++++++++--------- po/sv.po | 44 +++++++++++----------- po/ta.po | 28 +++++++------- po/te.po | 28 +++++++------- po/th.po | 32 ++++++++-------- po/tr.po | 87 +++++++++++++------------------------------- po/tt.po | 32 ++++++++-------- po/ug.po | 40 ++++++++++---------- po/uk.po | 40 ++++++++++---------- po/ur.po | 36 +++++++++--------- po/uz.po | 58 ++++++++++++++--------------- po/uz@latin.po | 66 ++++++++++++++++----------------- po/zh_CN.po | 36 +++++++++--------- po/zh_TW.po | 32 ++++++++-------- 65 files changed, 1288 insertions(+), 1454 deletions(-) diff --git a/po/af.po b/po/af.po index 0fc20b69a9..5a894516d6 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -649,8 +649,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -895,8 +895,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1918,8 +1918,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4871,8 +4871,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5597,8 +5597,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8396,8 +8396,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/ar.po b/po/ar.po index f889456a4c..1f08058505 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-09 03:43+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" @@ -353,8 +353,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -634,8 +634,8 @@ msgstr "التتبع غير نشط." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -871,8 +871,8 @@ msgstr "تم حفظ الـDump إلى الملف %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل " "المشكلة." @@ -1826,8 +1826,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه." #: libraries/auth/config.auth.lib.php:115 @@ -4745,8 +4745,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5478,8 +5478,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7624,8 +7624,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: main.php:314 msgid "" @@ -8370,8 +8370,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -10683,8 +10683,8 @@ msgstr "أعد تسمية العرض الـ" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" -#~ "sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " +#~ "%sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index fdd32b7e3d..110778974d 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -648,8 +648,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -897,8 +897,8 @@ msgstr "Sxem %s faylına qeyd edildi." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1939,8 +1939,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4929,8 +4929,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5664,8 +5664,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8568,8 +8568,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " diff --git a/po/be.po b/po/be.po index fdca541f68..7dc5cb200c 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -647,11 +647,11 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" -"sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " +"%sдакумэнтацыі%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -903,8 +903,8 @@ msgstr "Дамп захаваны ў файл %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -923,8 +923,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" -"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " +"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:335 @@ -1976,8 +1976,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -5028,8 +5028,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -5834,8 +5834,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8831,8 +8831,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " diff --git a/po/be@latin.po b/po/be@latin.po index adedadf229..6f9001bc30 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -653,11 +653,11 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" -"sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " +"%sdakumentacyi%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -900,8 +900,8 @@ msgstr "Damp zachavany ŭ fajł %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -920,8 +920,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" -"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " +"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:335 @@ -1981,8 +1981,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -5002,8 +5002,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -5811,8 +5811,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7546,8 +7546,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" -"sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " +"%sdakumentacyi%s." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -7747,8 +7747,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " -"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " +"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -8809,8 +8809,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " diff --git a/po/bg.po b/po/bg.po index 56239ae986..bccd8794a4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-07 16:45+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -622,8 +622,8 @@ msgstr "Проследяването е неактивно." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -862,8 +862,8 @@ msgstr "Схемата беше запазена във файл %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." @@ -1814,8 +1814,8 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете." @@ -4687,8 +4687,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5378,8 +5378,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7041,8 +7041,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" -"s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" +"%s." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -7716,8 +7716,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" -"sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " +"%sскрипта за настройки%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -8161,8 +8161,8 @@ msgstr "Изтриване на БД, които имат имена като т msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " @@ -10265,8 +10265,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %" -"s." +"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка " +"%s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/bn.po b/po/bn.po index 85c825b121..a0f67ed60a 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -644,8 +644,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -895,11 +895,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1956,8 +1956,8 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -4992,12 +4992,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5760,8 +5760,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8723,13 +8723,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/br.po b/po/br.po index 117816226f..d74c86a9be 100644 --- a/po/br.po +++ b/po/br.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-13 19:47+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: br\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -626,11 +626,11 @@ msgstr "N'eo ket oberiant an heuliañ." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %" -"steulioù titouriñ%s." +"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " +"%steulioù titouriñ%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -867,11 +867,11 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %" -"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." +"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " +"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1824,11 +1824,11 @@ msgstr "Degemer mat e %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %" -"1$sskript kefluniañ%2$s da sevel unan." +"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " +"%1$sskript kefluniañ%2$s da sevel unan." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4713,8 +4713,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5406,8 +5406,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8057,8 +8057,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/bs.po b/po/bs.po index 4dbc62ef62..5fefb87105 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -648,8 +648,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -897,8 +897,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1931,8 +1931,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4917,8 +4917,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5651,8 +5651,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8553,8 +8553,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/ca.po b/po/ca.po index 26ac767366..b41bbfd9a7 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -626,8 +626,8 @@ msgstr "El seguiment no està actiu." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." @@ -872,11 +872,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Probablement has triat d'enviar un arxiu massa gran. Consulta la %" -"sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu massa gran. Consulta la " +"%sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1866,8 +1866,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -4955,12 +4955,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" -"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: " +"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:268 @@ -5743,8 +5743,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -7471,8 +7471,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" -"sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " +"%sdocumentació%s." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -8637,8 +8637,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " @@ -10203,8 +10203,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" -"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" +"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:266 @@ -10232,8 +10232,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el %" -"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el " +"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/cs.po b/po/cs.po index 2b21a32a28..abfe933c01 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-13 14:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -627,8 +627,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." @@ -867,8 +867,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -1821,8 +1821,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -4851,8 +4851,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -5618,8 +5618,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -7300,8 +7300,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" -"spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " +"%spopisy transformací%s" #: libraries/tbl_properties.inc.php:147 msgid "Transformation options" @@ -7352,8 +7352,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" -"s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " +"%s dělá." #: libraries/tbl_properties.inc.php:609 tbl_structure.php:678 #, php-format @@ -7967,8 +7967,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" -"sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " +"%sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -8407,8 +8407,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -9926,8 +9926,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" -"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" +"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9938,8 +9938,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" -"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " +"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." diff --git a/po/cy.po b/po/cy.po index 8afdfad701..1ef9942dcc 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" @@ -630,8 +630,8 @@ msgstr "Nid yw tracio'n weithredol" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." @@ -872,8 +872,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -1888,11 +1888,11 @@ msgstr "Croeso i %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" -"$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " +"%1$sgript gosod%2$s er mwyn ei chreu." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4880,8 +4880,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5617,8 +5617,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8397,8 +8397,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/da.po b/po/da.po index fdf9dfe5a4..d3a77b0211 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-14 08:33+0200\n" "Last-Translator: \n" "Language-Team: danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -620,8 +620,8 @@ msgstr "Sporing er ikke aktiv." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Viewet har mindst dette antal rækker. Se venligst %sdokumentationen%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -860,11 +860,11 @@ msgstr "Dump er blevet gemt i filen %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %" -"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " +"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst " +"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1816,8 +1816,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -2006,7 +2006,6 @@ msgid "Check Privileges" msgstr "Check Privilegier" #: libraries/common.inc.php:588 -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Kunne ikke indlæse konfigurationsfilen" @@ -2221,7 +2220,6 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" #: libraries/common.lib.php:2447 -#| msgid "Click to select" msgid "Click to toggle" msgstr "Klik for at skifte" @@ -3175,12 +3173,10 @@ msgid "Customize links shown in SQL Query boxes" msgstr "Tilpas links vist i SQL Query-boksen" #: libraries/config/messages.inc.php:219 -#| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Indstillinger til SQL-forespørgsler" #: libraries/config/messages.inc.php:220 -#| msgid "SQL history" msgid "SQL Validator" msgstr "SQL Validator" @@ -3209,12 +3205,10 @@ msgid "Choose how you want tabs to work" msgstr "Vælg hvordan du ønsker at fanerne skal fungere" #: libraries/config/messages.inc.php:226 -#| msgid "Use text field" msgid "Text fields" msgstr "Tekstfelter" #: libraries/config/messages.inc.php:227 -#| msgid "Use text field" msgid "Customize text input fields" msgstr "Tilpas tekstfelter" @@ -3298,7 +3292,6 @@ msgstr "Brug LOCAL nøgleord" #: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 #: libraries/config/messages.inc.php:263 -#| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Indsæt feltnavne i første række" @@ -3315,7 +3308,6 @@ msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importér procenter med korrekte decimaler (12.00% bliver til .12)" #: libraries/config/messages.inc.php:258 -#| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Antal SQL-forespørgsler der skal springes over fra start" @@ -3325,7 +3317,6 @@ msgstr "Delvis import: Spring over forespørgsler" # zero = null? #: libraries/config/messages.inc.php:261 -#| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" @@ -3362,7 +3353,6 @@ msgid "Display servers selection" msgstr "Vis servervalg" #: libraries/config/messages.inc.php:272 -#| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen" @@ -3417,8 +3407,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt " -"([kbd]new[/kbd])" +"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]" +"new[/kbd])" #: libraries/config/messages.inc.php:285 msgid "Logo link target" @@ -3438,7 +3428,6 @@ msgstr "" "Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere" #: libraries/config/messages.inc.php:289 -#| msgid "Analyze table" msgid "Recently used tables" msgstr "Tidligere anvendte tabeller" @@ -4802,8 +4791,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -5566,8 +5555,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8540,14 +8529,14 @@ msgstr "Drop databaser der har samme navne som brugernes." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" -"s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" +"%s før du fortsætter." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/de.po b/po/de.po index 8caadd1ce7..620c75bed2 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-14 13:46+0200\n" "Last-Translator: \n" "Language-Team: german \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -353,8 +353,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" -"s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" +"%s um herauszufinden warum." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -622,8 +622,8 @@ msgstr "Tracking ist nicht aktiviert." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." @@ -866,11 +866,11 @@ msgstr "Dump wurde in Datei %s gespeichert." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" -"sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " +"%sDokumentation%s zur Lösung diese Problems." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1830,8 +1830,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt " "haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine " @@ -2238,7 +2238,6 @@ msgstr "" "Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" #: libraries/common.lib.php:2447 -#| msgid "Click to select" msgid "Click to toggle" msgstr "Zum Umschalten anklicken" @@ -4899,8 +4898,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -5679,8 +5678,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -6577,7 +6576,6 @@ msgid "Generate Password" msgstr "Passwort generieren" #: libraries/rte/rte_events.lib.php:58 -#| msgid "Add an event" msgid "Add event" msgstr "Ein Ereignis hinzufügen" @@ -6587,7 +6585,6 @@ msgid "Export of event %s" msgstr "Export des Ereignisses %s" #: libraries/rte/rte_events.lib.php:61 -#| msgid "Event" msgid "event" msgstr "Ereignis" @@ -6597,8 +6594,8 @@ msgstr "Ereignis" msgid "You do not have the necessary privileges to create an event" msgstr "Sie haben nicht genug Rechte um ein neues Ereignis zu erstellen" -#: libraries/rte/rte_events.lib.php:29 -#| msgid "No event with name %s found in database %s" +#: libraries/rte/rte_events.lib.php:63 +#, php-format msgid "No event with name %1$s found in database %2$s" msgstr "Es wurde kein Ereignis mit dem Namen %s in Datenbank %s gefunden" @@ -6618,8 +6615,7 @@ msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten." msgid "The following query has failed: \"%s\"" msgstr "Die folgende Abfrage ist fehlgeschlagen: \"%s\"" -#: libraries/rte/rte_events.lib.php:105 -#| msgid "Sorry, we failed to restore the dropped routine." +#: libraries/rte/rte_events.lib.php:140 msgid "Sorry, we failed to restore the dropped event." msgstr "Das wiederherstellen des gelöschten Ereignisses schlug fehl." @@ -6630,13 +6626,11 @@ msgstr "Die gesicherte Abfrage war:" #: libraries/rte/rte_events.lib.php:145 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." msgstr "Ereignis %1$s wurde geändert." #: libraries/rte/rte_events.lib.php:157 #, php-format -#| msgid "Table %1$s has been created." msgid "Event %1$s has been created." msgstr "Ereignis %1$s wurde erzeugt." @@ -6648,12 +6642,10 @@ msgstr "" "wurde:
" #: libraries/rte/rte_events.lib.php:205 -#| msgid "Create view" msgid "Create event" msgstr "Erzeuge Ereignis" #: libraries/rte/rte_events.lib.php:209 -#| msgid "Edit server" msgid "Edit event" msgstr "Event bearbeiten" @@ -6670,7 +6662,6 @@ msgid "Details" msgstr "Details" #: libraries/rte/rte_events.lib.php:398 -#| msgid "Event type" msgid "Event name" msgstr "Ereignis-Name" @@ -6684,17 +6675,14 @@ msgid "Change to %s" msgstr "Wechseln zu %s" #: libraries/rte/rte_events.lib.php:446 -#| msgid "Execute" msgid "Execute at" msgstr "Ausführen um" #: libraries/rte/rte_events.lib.php:454 -#| msgid "Execute" msgid "Execute every" msgstr "Abfrage ausführen" #: libraries/rte/rte_events.lib.php:473 -#| msgid "Startup" msgid "Start" msgstr "Anfang" @@ -6704,7 +6692,6 @@ msgid "Definition" msgstr "Beschreibung" #: libraries/rte/rte_events.lib.php:495 -#| msgid "complete inserts" msgid "On completion preserve" msgstr "Nach Abschluss erhalten" @@ -6720,27 +6707,22 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein" #: libraries/rte/rte_events.lib.php:549 -#| msgid "You must provide a routine name" msgid "You must provide an event name" msgstr "Sie müssen einen Ereignis-Namen angeben" #: libraries/rte/rte_events.lib.php:561 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben." #: libraries/rte/rte_events.lib.php:573 -#| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben." #: libraries/rte/rte_events.lib.php:577 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." #: libraries/rte/rte_events.lib.php:596 -#| msgid "You must provide a routine definition." msgid "You must provide an event definition." msgstr "Sie müssen die Definition des Ereignisses angeben." @@ -6757,12 +6739,10 @@ msgid "ON" msgstr "AN" #: libraries/rte/rte_footer.lib.php:108 -#| msgid "The event scheduler is enabled" msgid "Event scheduler status" msgstr "Ereignis-Planer-Statistiken" #: libraries/rte/rte_list.lib.php:52 -#| msgid "Return type" msgid "Returns" msgstr "Rückgabe-Wert" @@ -6785,7 +6765,6 @@ msgid "Export of routine %s" msgstr "Exportieren der Prozedur %s" #: libraries/rte/rte_routines.lib.php:46 -#| msgid "Routines" msgid "routine" msgstr "Prozedur" @@ -6810,11 +6789,11 @@ msgid "" "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" -"Sie verwenden die von PHP als 'veraltet' gekennzeichnete " -"'mysql'-Erweiterung, die nicht in der Lage ist, mehrere Abfragen zu " -"verarbeiten. Die Ausführung von einigen gespeicherten Prozeduren könnte " -"fehlschlagen! Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um " -"Probleme zu vermeiden." +"Sie verwenden die von PHP als 'veraltet' gekennzeichnete 'mysql'-" +"Erweiterung, die nicht in der Lage ist, mehrere Abfragen zu verarbeiten. " +"Die Ausführung von einigen gespeicherten Prozeduren könnte fehlschlagen! Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um Probleme zu " +"vermeiden." #: libraries/rte/rte_routines.lib.php:272 #: libraries/rte/rte_routines.lib.php:1052 @@ -6916,7 +6895,6 @@ msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." #: libraries/rte/rte_routines.lib.php:1126 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." @@ -6964,7 +6942,6 @@ msgid "Export of trigger %s" msgstr "Export des Triggers %s" #: libraries/rte/rte_triggers.lib.php:42 -#| msgid "Triggers" msgid "trigger" msgstr "Trigger" @@ -6974,9 +6951,8 @@ msgstr "Trigger" msgid "You do not have the necessary privileges to create a trigger" msgstr "Sie haben nicht genug Rechte um einen neuen Trigger zu erstellen" -#: libraries/rte/rte_triggers.lib.php:29 +#: libraries/rte/rte_triggers.lib.php:44 #, php-format -#| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" msgstr "Keine Trigger namens %1$s in der Datenbank %2$s gefunden" @@ -6985,60 +6961,49 @@ msgid "There are no triggers to display." msgstr "Es sind keine Trigger zum Anzeigen vorhanden." #: libraries/rte/rte_triggers.lib.php:113 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." msgstr "Das Wiederherstellen der gelöschten Trigger schlug fehl." #: libraries/rte/rte_triggers.lib.php:118 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." msgstr "Trigger %1$s wurde geändert." #: libraries/rte/rte_triggers.lib.php:130 #, php-format -#| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." msgstr "Trigger %1$s wurde erzeugt." #: libraries/rte/rte_triggers.lib.php:181 -#| msgid "Create view" msgid "Create trigger" msgstr "Erzeuge Trigger" #: libraries/rte/rte_triggers.lib.php:185 -#| msgid "Add a trigger" msgid "Edit trigger" msgstr "Einen Trigger bearbeiten" #: libraries/rte/rte_triggers.lib.php:325 -#| msgid "Triggers" msgid "Trigger name" msgstr "Trigger-Name" #: libraries/rte/rte_triggers.lib.php:423 -#| msgid "You must provide a routine name" msgid "You must provide a trigger name" msgstr "Sie müssen einen Trigger-Namen angeben" #: libraries/rte/rte_triggers.lib.php:428 -#| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" msgstr "Sie müssen einen Trigger-Namen angeben" #: libraries/rte/rte_triggers.lib.php:433 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" msgstr "" "Sie müssen einen Namen und einen Typ für jeden Trugger-Parameter angeben." #: libraries/rte/rte_triggers.lib.php:439 -#| msgid "You must provide a routine name" msgid "You must provide a valid table name" msgstr "Sie müssen einen gültigen Tabellen-Namen angeben" #: libraries/rte/rte_triggers.lib.php:445 -#| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." msgstr "Sie müssen die Definition des Triggers angeben." @@ -8558,8 +8523,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " @@ -10164,8 +10129,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" -"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " +"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/el.po b/po/el.po index de26c6ff57..7b798e5d5b 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-13 09:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -622,11 +622,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" -"sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " +"%sτεκμηρίωση%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -864,11 +864,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" -"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " +"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1823,8 +1823,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -4916,8 +4916,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -5530,8 +5530,8 @@ msgid "" "Documentation and further information about PBMS can be found on %sThe " "PrimeBase Media Streaming home page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %" -"sΙστοσελίδα του PrimeBase Media Streaming%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην " +"%sΙστοσελίδα του PrimeBase Media Streaming%s." #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 msgid "Related Links" @@ -5700,11 +5700,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" -"sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " +"%sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7864,8 +7864,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" -"sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " +"%sεδώ%s." #: main.php:314 msgid "" @@ -8604,8 +8604,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -10182,8 +10182,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" -"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" +"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format diff --git a/po/en_GB.po b/po/en_GB.po index 94323e7075..a5cb009417 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-14 15:16+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -622,11 +622,11 @@ msgstr "Tracking is not active." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -862,11 +862,11 @@ msgstr "Dump has been saved to file %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1813,11 +1813,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4838,12 +4838,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5605,11 +5605,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -6508,9 +6508,8 @@ msgstr "event" msgid "You do not have the necessary privileges to create an event" msgstr "You do not have the necessary privileges to create a new event" -#: libraries/rte/rte_events.lib.php:29 +#: libraries/rte/rte_events.lib.php:63 #, php-format -#| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" msgstr "No event with name %1$s found in database %2$s" @@ -6531,7 +6530,6 @@ msgid "The following query has failed: \"%s\"" msgstr "The following query has failed: \"%s\"" #: libraries/rte/rte_events.lib.php:140 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." msgstr "Sorry, we failed to restore the dropped event." @@ -6542,13 +6540,11 @@ msgstr "The backed up query was:" #: libraries/rte/rte_events.lib.php:145 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." msgstr "Event %1$s has been modified." #: libraries/rte/rte_events.lib.php:157 #, php-format -#| msgid "Table %1$s has been created." msgid "Event %1$s has been created." msgstr "Event %1$s has been created." @@ -6558,12 +6554,10 @@ msgid "One or more errors have occured while processing your request:" msgstr "One or more errors have occurred while processing your request:" #: libraries/rte/rte_events.lib.php:205 -#| msgid "Create view" msgid "Create event" msgstr "Create event" #: libraries/rte/rte_events.lib.php:209 -#| msgid "Edit server" msgid "Edit event" msgstr "Edit event" @@ -6580,7 +6574,6 @@ msgid "Details" msgstr "Details" #: libraries/rte/rte_events.lib.php:398 -#| msgid "Event type" msgid "Event name" msgstr "Event name" @@ -6594,17 +6587,14 @@ msgid "Change to %s" msgstr "Change to %s" #: libraries/rte/rte_events.lib.php:446 -#| msgid "Execute" msgid "Execute at" msgstr "Execute at" #: libraries/rte/rte_events.lib.php:454 -#| msgid "Execute" msgid "Execute every" msgstr "Execute every" #: libraries/rte/rte_events.lib.php:473 -#| msgid "Startup" msgid "Start" msgstr "Start" @@ -6614,7 +6604,6 @@ msgid "Definition" msgstr "Definition" #: libraries/rte/rte_events.lib.php:495 -#| msgid "complete inserts" msgid "On completion preserve" msgstr "On completion preserve" @@ -6630,27 +6619,22 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "The definer must be in the \"username@hostname\" format" #: libraries/rte/rte_events.lib.php:549 -#| msgid "You must provide a routine name" msgid "You must provide an event name" msgstr "You must provide an event name" #: libraries/rte/rte_events.lib.php:561 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." msgstr "You must provide a valid interval value for the event." #: libraries/rte/rte_events.lib.php:573 -#| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." msgstr "You must provide a valid execution time for the event." #: libraries/rte/rte_events.lib.php:577 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." msgstr "You must provide a valid type for the event." #: libraries/rte/rte_events.lib.php:596 -#| msgid "You must provide a routine definition." msgid "You must provide an event definition." msgstr "You must provide an event definition." @@ -6667,12 +6651,10 @@ msgid "ON" msgstr "ON" #: libraries/rte/rte_footer.lib.php:108 -#| msgid "The event scheduler is enabled" msgid "Event scheduler status" msgstr "Event scheduler status" #: libraries/rte/rte_list.lib.php:52 -#| msgid "Return type" msgid "Returns" msgstr "Returns" @@ -6695,7 +6677,6 @@ msgid "Export of routine %s" msgstr "Export of routine %s" #: libraries/rte/rte_routines.lib.php:46 -#| msgid "Routines" msgid "routine" msgstr "routine" @@ -6823,7 +6804,6 @@ msgid "You must provide a name and a type for each routine parameter." msgstr "You must provide a name and a type for each routine parameter." #: libraries/rte/rte_routines.lib.php:1126 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." msgstr "You must provide a valid return type for the routine.." @@ -6859,7 +6839,6 @@ msgid "Function" msgstr "Function" #: libraries/rte/rte_triggers.lib.php:39 -#| msgid "Add a trigger" msgid "Add trigger" msgstr "Add trigger" @@ -6869,7 +6848,6 @@ msgid "Export of trigger %s" msgstr "Export of trigger %s" #: libraries/rte/rte_triggers.lib.php:42 -#| msgid "Triggers" msgid "trigger" msgstr "trigger" @@ -6879,9 +6857,8 @@ msgstr "trigger" msgid "You do not have the necessary privileges to create a trigger" msgstr "You do not have the necessary privileges to create a new trigger" -#: libraries/rte/rte_triggers.lib.php:29 +#: libraries/rte/rte_triggers.lib.php:44 #, php-format -#| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" msgstr "No trigger with name %1$s found in database %2$s" @@ -6890,59 +6867,48 @@ msgid "There are no triggers to display." msgstr "There are no triggers to display." #: libraries/rte/rte_triggers.lib.php:113 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." msgstr "Sorry, we failed to restore the dropped trigger." #: libraries/rte/rte_triggers.lib.php:118 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." msgstr "Trigger %1$s has been modified." #: libraries/rte/rte_triggers.lib.php:130 #, php-format -#| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." msgstr "Trigger %1$s has been created." #: libraries/rte/rte_triggers.lib.php:181 -#| msgid "Create view" msgid "Create trigger" msgstr "Create trigger" #: libraries/rte/rte_triggers.lib.php:185 -#| msgid "Add a trigger" msgid "Edit trigger" msgstr "Edit trigger" #: libraries/rte/rte_triggers.lib.php:325 -#| msgid "Triggers" msgid "Trigger name" msgstr "Trigger name" #: libraries/rte/rte_triggers.lib.php:423 -#| msgid "You must provide a routine name" msgid "You must provide a trigger name" msgstr "You must provide a trigger name" #: libraries/rte/rte_triggers.lib.php:428 -#| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" msgstr "You must provide a valid timing for the trigger" #: libraries/rte/rte_triggers.lib.php:433 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" msgstr "You must provide a valid event for the trigger" #: libraries/rte/rte_triggers.lib.php:439 -#| msgid "You must provide a routine name" msgid "You must provide a valid table name" msgstr "You must provide a valid table name" #: libraries/rte/rte_triggers.lib.php:445 -#| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." msgstr "You must provide a trigger definition." @@ -8430,13 +8396,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/es.po b/po/es.po index 3117a51806..d88a6e4090 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-14 02:15+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -626,11 +626,11 @@ msgstr "El seguimiento no está activo." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tiene al menos este número de filas. Por favor refiérase a la %" -"sdocumentation%s." +"Esta vista tiene al menos este número de filas. Por favor refiérase a la " +"%sdocumentation%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -868,8 +868,8 @@ msgstr "El volcado ha sido guardado al archivo %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, " "refiérase a %sla documentation%s para hallar modos de superar esta " @@ -1830,8 +1830,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -2237,7 +2237,6 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" #: libraries/common.lib.php:2447 -#| msgid "Click to select" msgid "Click to toggle" msgstr "Pulse para conmutar" @@ -4937,8 +4936,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -5731,8 +5730,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -6631,7 +6630,6 @@ msgid "Generate Password" msgstr "Generar la contraseña" #: libraries/rte/rte_events.lib.php:58 -#| msgid "Add an event" msgid "Add event" msgstr "Añadir evento" @@ -6641,7 +6639,6 @@ msgid "Export of event %s" msgstr "Exportar evento %s" #: libraries/rte/rte_events.lib.php:61 -#| msgid "Event" msgid "event" msgstr "evento" @@ -6651,9 +6648,8 @@ msgstr "evento" msgid "You do not have the necessary privileges to create an event" msgstr "No posee los privilegios necesarios para crear un nuevo evento" -#: libraries/rte/rte_events.lib.php:29 +#: libraries/rte/rte_events.lib.php:63 #, php-format -#| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s" @@ -6674,7 +6670,6 @@ msgid "The following query has failed: \"%s\"" msgstr "Falló la siguiente consulta: \"%s\"" #: libraries/rte/rte_events.lib.php:140 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." msgstr "Pedimos disculpas por no haber podido recuperar el evento eliminado." @@ -6685,13 +6680,11 @@ msgstr "La consulta respaldada era:" #: libraries/rte/rte_events.lib.php:145 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." msgstr "Se modificó el evento %1$s." #: libraries/rte/rte_events.lib.php:157 #, php-format -#| msgid "Table %1$s has been created." msgid "Event %1$s has been created." msgstr "Se creó el evento %1$s." @@ -6701,12 +6694,10 @@ msgid "One or more errors have occured while processing your request:" msgstr "Ocurrieron uno o más errores al procesar el pedido:" #: libraries/rte/rte_events.lib.php:205 -#| msgid "Create view" msgid "Create event" msgstr "Crear evento" #: libraries/rte/rte_events.lib.php:209 -#| msgid "Edit server" msgid "Edit event" msgstr "Editar evento" @@ -6723,7 +6714,6 @@ msgid "Details" msgstr "Detalles" #: libraries/rte/rte_events.lib.php:398 -#| msgid "Event type" msgid "Event name" msgstr "Nombre del evento" @@ -6737,17 +6727,14 @@ msgid "Change to %s" msgstr "Cambiar a %s" #: libraries/rte/rte_events.lib.php:446 -#| msgid "Execute" msgid "Execute at" msgstr "Ejecutar en" #: libraries/rte/rte_events.lib.php:454 -#| msgid "Execute" msgid "Execute every" msgstr "Ejecutar cada" #: libraries/rte/rte_events.lib.php:473 -#| msgid "Startup" msgid "Start" msgstr "Iniciar" @@ -6757,7 +6744,6 @@ msgid "Definition" msgstr "Definición" #: libraries/rte/rte_events.lib.php:495 -#| msgid "complete inserts" msgid "On completion preserve" msgstr "Preservar al completar" @@ -6773,27 +6759,22 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "El definidor tiene que ser en el formato \"usuario@sistema\"" #: libraries/rte/rte_events.lib.php:549 -#| msgid "You must provide a routine name" msgid "You must provide an event name" msgstr "Debe proveer un nombre de evento" #: libraries/rte/rte_events.lib.php:561 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." msgstr "Debe proveer un valor de intervalo válido para el evento." #: libraries/rte/rte_events.lib.php:573 -#| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." msgstr "Debe proveer un tiempo de ejecución válido para el evento." #: libraries/rte/rte_events.lib.php:577 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." msgstr "Debe proveer un tipo válido para el evento." #: libraries/rte/rte_events.lib.php:596 -#| msgid "You must provide a routine definition." msgid "You must provide an event definition." msgstr "Debe proveer una definición de evento." @@ -6810,12 +6791,10 @@ msgid "ON" msgstr "Encendido" #: libraries/rte/rte_footer.lib.php:108 -#| msgid "The event scheduler is enabled" msgid "Event scheduler status" msgstr "Estado del planificador de eventos" #: libraries/rte/rte_list.lib.php:52 -#| msgid "Return type" msgid "Returns" msgstr "Retorna" @@ -6838,7 +6817,6 @@ msgid "Export of routine %s" msgstr "Exportar la rutina %s" #: libraries/rte/rte_routines.lib.php:46 -#| msgid "Routines" msgid "routine" msgstr "rutina" @@ -6967,7 +6945,6 @@ msgid "You must provide a name and a type for each routine parameter." msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina." #: libraries/rte/rte_routines.lib.php:1126 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." msgstr "Debe proveer un tipo de retorno válido para la rutina." @@ -7003,7 +6980,6 @@ msgid "Function" msgstr "Función" #: libraries/rte/rte_triggers.lib.php:39 -#| msgid "Add a trigger" msgid "Add trigger" msgstr "Agregar disparador" @@ -7013,7 +6989,6 @@ msgid "Export of trigger %s" msgstr "Exportar disparador %s" #: libraries/rte/rte_triggers.lib.php:42 -#| msgid "Triggers" msgid "trigger" msgstr "disparador" @@ -7023,9 +6998,8 @@ msgstr "disparador" msgid "You do not have the necessary privileges to create a trigger" msgstr "No posee los privilegios necesarios para crear un nuevo disparador" -#: libraries/rte/rte_triggers.lib.php:29 +#: libraries/rte/rte_triggers.lib.php:44 #, php-format -#| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" msgstr "No se encontró disparador con nombre %1$s en la base de datos %2$s" @@ -7034,60 +7008,49 @@ msgid "There are no triggers to display." msgstr "No hay disparadores para mostrar." #: libraries/rte/rte_triggers.lib.php:113 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." msgstr "" "Pedimos disculpas por no haber podido recuperar el disparador eliminado." #: libraries/rte/rte_triggers.lib.php:118 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." msgstr "Se modificó el disparador %1$s." #: libraries/rte/rte_triggers.lib.php:130 #, php-format -#| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." msgstr "Disparador %1$s creado." #: libraries/rte/rte_triggers.lib.php:181 -#| msgid "Create view" msgid "Create trigger" msgstr "Crear disparador" #: libraries/rte/rte_triggers.lib.php:185 -#| msgid "Add a trigger" msgid "Edit trigger" msgstr "Editar disparador" #: libraries/rte/rte_triggers.lib.php:325 -#| msgid "Triggers" msgid "Trigger name" msgstr "Nombre del disparador" #: libraries/rte/rte_triggers.lib.php:423 -#| msgid "You must provide a routine name" msgid "You must provide a trigger name" msgstr "Debe proveer un nombre de disparador" #: libraries/rte/rte_triggers.lib.php:428 -#| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" msgstr "Debe proveer una sincronización válida para el disparador" #: libraries/rte/rte_triggers.lib.php:433 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" msgstr "Debe proveer un evento válido para el disparador" #: libraries/rte/rte_triggers.lib.php:439 -#| msgid "You must provide a routine name" msgid "You must provide a valid table name" msgstr "Debe proveer un nombre de tabla válido" #: libraries/rte/rte_triggers.lib.php:445 -#| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." msgstr "Debe proveer una definición del disparador." @@ -7868,8 +7831,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" -"sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " +"%sPulsa aquí para averiguar por qué%s." #: main.php:314 msgid "" @@ -8615,8 +8578,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " diff --git a/po/et.po b/po/et.po index 03a9551e67..27174ceb54 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -645,8 +645,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -897,8 +897,8 @@ msgstr "Väljavõte salvestati faili %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." @@ -1959,8 +1959,8 @@ msgstr "Tere tulemast %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid " "kasutada %1$ssetup script%2$s et seadistada." @@ -4994,8 +4994,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada " "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " @@ -5761,8 +5761,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8721,8 +8721,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " diff --git a/po/eu.po b/po/eu.po index 1d98428d8b..b1159694dc 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -649,8 +649,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -898,8 +898,8 @@ msgstr "Iraulketa %s fitxategian gorde da." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1935,8 +1935,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4922,8 +4922,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5656,8 +5656,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8575,8 +8575,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " diff --git a/po/fa.po b/po/fa.po index 3b20ec8336..3926072113 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -625,8 +625,8 @@ msgstr "پیگردی فعال نمی باشد." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه " "نمایید." @@ -872,8 +872,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1898,8 +1898,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4857,8 +4857,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5581,8 +5581,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7266,9 +7266,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:109 msgid "" @@ -7303,9 +7303,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:355 msgid "ENUM or SET data too long?" @@ -7570,8 +7570,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " -"، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " +"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:251 msgid "" @@ -8362,8 +8362,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/fi.po b/po/fi.po index 1c3519914e..01b1752b16 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -626,11 +626,11 @@ msgstr "Seuranta ei ole käytössä." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" -"sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " +"%sohjeista%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -873,8 +873,8 @@ msgstr "Vedos tallennettiin tiedostoon %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." @@ -1858,11 +1858,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" -"$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " +"%1$sasetusskriptillä%2$s." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -5053,8 +5053,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -5853,8 +5853,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8872,8 +8872,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " @@ -10515,9 +10515,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/fr.po b/po/fr.po index 5e107189d3..1d91086473 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-09 20:07+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -623,11 +623,11 @@ msgstr "Le suivi n'est pas activé." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" -"sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " +"%sdocumentation%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -866,8 +866,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -1827,8 +1827,8 @@ msgstr "Bienvenue dans %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -4894,8 +4894,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -5677,8 +5677,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -5828,7 +5828,8 @@ msgstr "" #: libraries/export/sql.php:43 msgid "Additional custom header comment (\\n splits lines):" -msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" +msgstr "" +"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" #: libraries/export/sql.php:48 msgid "" @@ -7396,8 +7397,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la %" -"sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -8580,8 +8581,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -10058,8 +10059,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" -"s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" +"%s." #: setup/lib/index.lib.php:252 msgid "" @@ -10111,8 +10112,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" -"d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " +"%d)." #: setup/lib/index.lib.php:262 #, php-format @@ -10131,8 +10132,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" -"s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" +"%s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:266 #, php-format @@ -10142,8 +10143,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" -"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " +"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." diff --git a/po/gl.po b/po/gl.po index 6e0018ff23..910947489f 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -650,11 +650,11 @@ msgstr "O seguemento non está activado." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" -"s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" +"%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -897,11 +897,11 @@ msgstr "Gardouse o volcado no ficheiro %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" -"sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " +"%sdocumentación%s para averiguar como evitar este límite." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1987,8 +1987,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -5257,8 +5257,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -6073,8 +6073,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8362,8 +8362,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" -"sdocumentation%s." +"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " +"%sdocumentation%s." #: navigation.php:183 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -9109,8 +9109,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " @@ -10765,9 +10765,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/he.po b/po/he.po index e8bfb3d71a..ba21a4ba29 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -641,8 +641,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -888,8 +888,8 @@ msgstr "הוצאה נשמרה אל קובץ %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1931,8 +1931,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4923,8 +4923,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5654,8 +5654,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8497,8 +8497,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " diff --git a/po/hi.po b/po/hi.po index 4395b4e306..9274c994d1 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -352,8 +352,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" -"shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " +"%shere%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -625,8 +625,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -869,8 +869,8 @@ msgstr "डंप को %s फाइल में सेव किया गय #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." @@ -1847,11 +1847,11 @@ msgstr " %s मे स्वागत है" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" -"$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" +"%2$s का उपयोग करें." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4782,8 +4782,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5489,8 +5489,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8303,8 +8303,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/hr.po b/po/hr.po index f844a8885c..eef29517c0 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -649,8 +649,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." @@ -902,11 +902,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" -"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " +"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1973,8 +1973,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" @@ -5012,8 +5012,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -5817,8 +5817,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8798,8 +8798,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -11395,8 +11395,8 @@ msgstr "Preimenuj prikaz u" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" -#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" +#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index acc5a0786d..f227880c51 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -626,11 +626,11 @@ msgstr "Nyomkövetés inaktív." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" -"sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " +"%sdokumentációban%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -868,11 +868,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" -"sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " +"%sdokumentációban%s a korlátozás feloldása végett." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1858,11 +1858,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" -"$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " +"%1$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4948,8 +4948,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, " "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " @@ -5741,8 +5741,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7487,8 +7487,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" -"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " +"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 @@ -8775,13 +8775,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" -"stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " +"%stöltse be újra a jogokat%s a folytatás előtt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10387,9 +10387,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/id.po b/po/id.po index 3cebf095a7..f391b82972 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-06-18 11:34+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -623,11 +623,11 @@ msgstr "Pelacakan tidak aktif." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" -"sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " +"%sdokumentasi%s" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -868,11 +868,11 @@ msgstr "Dump (Skema) disimpan pada file %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %" -"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " +"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1834,8 +1834,8 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup " "script%2$s untuk membuatnya." @@ -4839,8 +4839,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5592,8 +5592,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8567,8 +8567,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " diff --git a/po/it.po b/po/it.po index a6ea8d0105..294c605c6a 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-13 13:55+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -627,8 +627,8 @@ msgstr "Il tracking non è attivo." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -869,8 +869,8 @@ msgstr "Il dump è stato salvato nel file %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " @@ -1850,8 +1850,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -4958,8 +4958,8 @@ msgstr ", il nome della tabella diventerá @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -5749,8 +5749,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -7946,8 +7946,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" -"sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: " +"%sdocumentation%s per possibili problemi." #: navigation.php:183 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8651,8 +8651,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " @@ -10249,10 +10249,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" -"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " -"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " -"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " +"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" +"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " +"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:268 @@ -10267,8 +10267,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" -"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " +"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/ja.po b/po/ja.po index 490cd39629..4bd6edceb4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-06-27 12:34+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -619,8 +619,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -860,8 +860,8 @@ msgstr "ダンプをファイル %s に保存しました" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" @@ -1816,11 +1816,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" -"$s を利用して設定ファイルを作成してください" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" +"ト%2$s を利用して設定ファイルを作成してください" #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4848,8 +4848,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -5620,8 +5620,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -8459,8 +8459,8 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" @@ -9988,10 +9988,11 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" -"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" -"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" -"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" +"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" +"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" +"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" +"せん。" #: setup/lib/index.lib.php:268 #, php-format diff --git a/po/ka.po b/po/ka.po index a696312d91..dad9a2e294 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -647,11 +647,11 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -900,11 +900,11 @@ msgstr "Dump has been saved to file %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1986,11 +1986,11 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -5196,12 +5196,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5997,8 +5997,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -9022,13 +9022,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10615,9 +10615,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/ko.po b/po/ko.po index ca66d5d713..e2c59777d3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -358,8 +358,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -633,8 +633,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -881,8 +881,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1878,8 +1878,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -4868,8 +4868,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5597,8 +5597,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7645,8 +7645,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: main.php:314 msgid "" @@ -8397,8 +8397,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/lt.po b/po/lt.po index e0d86d574d..7a8b5466c1 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -628,11 +628,11 @@ msgstr "Sekimas yra neaktyvus." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" -"sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " +"%sdokumentacijoje%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -875,11 +875,11 @@ msgstr "Atvaizdis įrašytas faile %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" -"sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " +"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1865,8 +1865,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -4870,8 +4870,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -5608,8 +5608,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8540,8 +8540,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " @@ -10033,9 +10033,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/lv.po b/po/lv.po index 952e5c0527..013bafe22d 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -645,8 +645,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -894,8 +894,8 @@ msgstr "Damps tika saglabāts failā %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1939,8 +1939,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4931,8 +4931,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5665,8 +5665,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8589,13 +8589,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" -"spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " +"%spārlādēt privilēģijas%s pirms Jūs turpināt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/mk.po b/po/mk.po index 69a4dabe56..f5584a357e 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -644,8 +644,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -888,8 +888,8 @@ msgstr "Содржината на базата на податоци е сочу #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1935,8 +1935,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4942,8 +4942,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5696,8 +5696,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8653,8 +8653,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " diff --git a/po/ml.po b/po/ml.po index 97b5d20643..c24da7c5f1 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" "X-Generator: Translate Toolkit 1.7.0\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -616,8 +616,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -853,8 +853,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1780,8 +1780,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4623,8 +4623,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5314,8 +5314,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7931,8 +7931,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/mn.po b/po/mn.po index 6f529e903d..0cb84ddb7d 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -645,8 +645,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -887,8 +887,8 @@ msgstr "Асгалт %s файлд хадгалагдсан." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1942,11 +1942,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" -"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " +"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4932,12 +4932,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" -"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " +"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5691,8 +5691,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8624,8 +8624,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -11034,8 +11034,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" -#~ "s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" +#~ "%s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index bff83115f4..f943bdcaa2 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -648,8 +648,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -894,8 +894,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1924,8 +1924,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4887,8 +4887,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5618,8 +5618,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8433,8 +8433,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/nb.po b/po/nb.po index c691ab1308..77fc1dbdc4 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -624,8 +624,8 @@ msgstr "Overvåkning er ikke aktiv." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -870,8 +870,8 @@ msgstr "Dump har blitt lagret til fila %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." @@ -1861,8 +1861,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -4924,8 +4924,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -5718,8 +5718,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7492,8 +7492,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på %" -"stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på " +"%stransformasjonsbeskrivelser%s" #: libraries/tbl_properties.inc.php:147 msgid "Transformation options" @@ -8659,8 +8659,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -10263,8 +10263,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -10275,9 +10275,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/nl.po b/po/nl.po index dce77c83c4..bab293980d 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -625,8 +625,8 @@ msgstr "Tracking is niet actief." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." @@ -867,11 +867,11 @@ msgstr "Dump is bewaard als %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %" -"sdocumentatie%s voor mogelijkheden om dit te omzeilen." +"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " +"%sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1846,8 +1846,8 @@ msgstr "Welkom op %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -4928,13 +4928,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" -"$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" +"%5$s voor meer details." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5716,11 +5716,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de %" -"sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de " +"%sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -8621,8 +8621,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 240ed995a6..213d823405 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -618,8 +619,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, possible-php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -855,8 +856,8 @@ msgstr "" #: import.php:57 #, possible-php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1782,8 +1783,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4625,8 +4626,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5316,8 +5317,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7933,8 +7934,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/pl.po b/po/pl.po index 1e94509446..f785c711dd 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -635,11 +635,11 @@ msgstr "Monitorowanie nie jest aktywne." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" -"sdocumentation%s." +"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " +"%sdocumentation%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -878,8 +878,8 @@ msgstr "Zrzut został zapisany do pliku %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." @@ -1901,8 +1901,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego " "stworzenia można użyć %1$sskryptu instalacyjnego%2$s." @@ -5063,8 +5063,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć " "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " @@ -5876,8 +5876,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7637,8 +7637,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" -"sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " +"%sdokumentacji%s." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -7688,8 +7688,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" -"sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " +"%sopisy transformacji%s" #: libraries/tbl_properties.inc.php:147 msgid "Transformation options" @@ -8168,8 +8168,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" -"s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" +"%s." #: navigation.php:183 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8912,8 +8912,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -10528,8 +10528,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." @@ -10540,9 +10540,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/pt.po b/po/pt.po index 99ff8ad661..0c954ac53e 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -627,11 +627,11 @@ msgstr "Detecção de Alterações está desactivada." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a %" -"sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a " +"%sdocumentação%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -874,8 +874,8 @@ msgstr "O Dump foi gravado para o ficheiro %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por " "favor reveja a %sdocumentação%s para encontrar formas de contornar este " @@ -1910,11 +1910,11 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" -"2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" +"%2$s pode ser utilizado para criar um." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4912,8 +4912,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5647,8 +5647,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8509,8 +8509,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " diff --git a/po/pt_BR.po b/po/pt_BR.po index 26bc7a8d6a..c14deeedf8 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-11 04:42+0200\n" "Last-Translator: \n" "Language-Team: brazilian_portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -623,11 +623,11 @@ msgstr "Rastreamento não está ativo." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %" -"sdocumentação%s." +"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a " +"%sdocumentação%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -864,8 +864,8 @@ msgstr "Dump foi salvo no arquivo %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." @@ -1847,8 +1847,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "A provável razão para isso é que você não criou o arquivo de configuração. " "Você deve usar o %1$ssetup script%2$s para criar um." @@ -4840,8 +4840,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -5592,8 +5592,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8559,8 +8559,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " diff --git a/po/ro.po b/po/ro.po index ed75f8eda9..9389fc9cdc 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -649,8 +649,8 @@ msgstr "Monitorizarea nu este activată" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." @@ -902,11 +902,11 @@ msgstr "Copia a fost salvată în fișierul %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" -"sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " +"%sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1965,8 +1965,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -5017,12 +5017,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5821,8 +5821,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8817,8 +8817,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " diff --git a/po/ru.po b/po/ru.po index 1c8b4d9e36..94e8655099 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-03 19:50+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -627,8 +627,8 @@ msgstr "Слежение выключено." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -868,8 +868,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -1832,8 +1832,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -4917,8 +4917,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -5699,8 +5699,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -8578,8 +8578,8 @@ msgstr "Удалить базы данных, имена которых совп msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -10164,8 +10164,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - %" -"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - " +"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -10917,8 +10917,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" -"s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " +"%s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/si.po b/po/si.po index fc039c8df6..8046afdab0 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -623,8 +623,8 @@ msgstr "අවධානය අක්‍රීයයි." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." @@ -863,11 +863,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1835,8 +1835,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Probably reason of this is that you did not create configuration file. You " "might want to use %1$ssetup script%2$s to create one." @@ -4749,12 +4749,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -5496,8 +5496,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7506,8 +7506,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" -"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " +"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:112 msgid "Could not save configuration" @@ -8390,8 +8390,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම් msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " diff --git a/po/sk.po b/po/sk.po index 6036aec245..0650cc5a22 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-14 15:30+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -118,8 +118,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na " -"www.phpmyadmin.net stránke." +"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na www." +"phpmyadmin.net stránke." #: db_create.php:58 #, php-format @@ -625,8 +625,8 @@ msgstr "Sledovanie nie je aktívne." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." @@ -865,8 +865,8 @@ msgstr "Výpis bol uložený do súboru %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -1824,8 +1824,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -2222,7 +2222,6 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" #: libraries/common.lib.php:2447 -#| msgid "Click to select" msgid "Click to toggle" msgstr "Kliknite pre prepnutie" @@ -3948,10 +3947,10 @@ msgid "" "alphabetical order." msgstr "" "Môžete použiť nahradzujúce znaky (% a _). Pokiaľ ich potrebujete použiť v " -"ich pôvodnom význame, vložte spätné lomítko pred, napríklad " -"[kbd]'moja\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby " -"môžete ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť " -"[kbd]*[/kbd] na konci pre zobrazenie ostatných v abecednom poradí." +"ich pôvodnom význame, vložte spätné lomítko pred, napríklad [kbd]'moja" +"\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby môžete " +"ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť [kbd]*[/" +"kbd] na konci pre zobrazenie ostatných v abecednom poradí." #: libraries/config/messages.inc.php:400 msgid "Show only listed databases" @@ -4854,8 +4853,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -5011,7 +5010,6 @@ msgid "Language" msgstr "Jazyk" #: libraries/display_tbl.lib.php:397 -#| msgid "Textarea columns" msgid "Restore column order" msgstr "Obnoviť poradie stĺpcov" @@ -5020,7 +5018,6 @@ msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" #: libraries/display_tbl.lib.php:418 -#| msgid "Click to select" msgid "Click to sort" msgstr "Kliknite pre zoradenie" @@ -5044,7 +5041,6 @@ msgid "Start row" msgstr "Štart" #: libraries/display_tbl.lib.php:438 -#| msgid "Number of rows:" msgid "Number of rows" msgstr "Počet riadkov" @@ -5591,8 +5587,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6474,7 +6470,6 @@ msgid "No event with name %1$s found in database %2$s" msgstr "V databáze %2$s nebola nájdená udalosť s menom %1$s" #: libraries/rte/rte_events.lib.php:64 -#| msgid "There are no files to upload" msgid "There are no events to display." msgstr "Nie sú žiadne udalosti na zobrazenie." @@ -6537,7 +6532,6 @@ msgstr "Chyba pri spracovaní požiadavky" #: libraries/rte/rte_events.lib.php:395 libraries/rte/rte_routines.lib.php:877 #: libraries/rte/rte_triggers.lib.php:322 -#| msgid "Details..." msgid "Details" msgstr "Podrobnosti" @@ -6679,7 +6673,6 @@ msgid "No routine with name %1$s found in database %2$s" msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s" #: libraries/rte/rte_routines.lib.php:49 -#| msgid "There are no files to upload" msgid "There are no routines to display." msgstr "Neboli nájdené žiadne rutiny." @@ -6866,7 +6859,6 @@ msgid "No trigger with name %1$s found in database %2$s" msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s" #: libraries/rte/rte_triggers.lib.php:45 -#| msgid "There are no files to upload" msgid "There are no triggers to display." msgstr "Neboli nájdené žiadne spúšťače." @@ -7258,8 +7250,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" -"sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -7953,8 +7945,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" -"sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " +"%sNastavovacieho skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -8394,13 +8386,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" -"sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " +"%sznovunačítanie práv%s predtým ako budete pokračovať." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8494,7 +8486,6 @@ msgid "wildcard" msgstr "nahradzujúci znak" #: server_privileges.php:2295 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "Užívateľ bol pridaný." @@ -8772,12 +8763,10 @@ msgid "All status variables" msgstr "" #: server_status.php:413 server_status.php:439 -#| msgid "Refresh" msgid "Refresh rate:" msgstr "Obnovovacia frekvencia:" #: server_status.php:462 -#| msgid "Do not change the password" msgid "Containing the word:" msgstr "Obsahujúca slovo:" @@ -8792,7 +8781,6 @@ msgid "Filter by category..." msgstr "" #: server_status.php:484 -#| msgid "Related Links" msgid "Related links:" msgstr "Súvisiace odkazy:" @@ -8900,7 +8888,6 @@ msgid "ID" msgstr "ID" #: server_status.php:856 -#| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." @@ -10081,7 +10068,6 @@ msgid "Stacked" msgstr "" #: tbl_chart.php:94 -#| msgid "Report title:" msgid "Chart title" msgstr "Názov grafu" @@ -10090,7 +10076,6 @@ msgid "X-Axis:" msgstr "" #: tbl_chart.php:113 -#| msgid "SQL queries" msgid "Series:" msgstr "Série:" @@ -10909,8 +10894,8 @@ msgstr "Premenovať pohľad na" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" -#~ "s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " +#~ "%s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index c99da43e54..6cc4262ac1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-11 21:13+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\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.5\n" @@ -628,8 +628,8 @@ msgstr "Sledenje ni aktivno." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -867,8 +867,8 @@ msgstr "Dump je shranjen v datoteko %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -1826,8 +1826,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -4868,8 +4868,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -5640,8 +5640,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -8512,8 +8512,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " diff --git a/po/sq.po b/po/sq.po index 53983292bc..4a455ea04c 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -646,8 +646,8 @@ msgstr "Gjurmimi nuk është aktiv." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -896,8 +896,8 @@ msgstr "Dump u ruajt tek file %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1940,8 +1940,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4931,8 +4931,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5665,8 +5665,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8594,8 +8594,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " @@ -10905,8 +10905,8 @@ msgstr "Riemërto tabelën në" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" -#~ "s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " +#~ "%s queries." #, fuzzy #~| msgid "The privileges were reloaded successfully." diff --git a/po/sr.po b/po/sr.po index f46e3e89ef..e4849ca79a 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -643,8 +643,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -895,11 +895,11 @@ msgstr "Садржај базе је сачуван у датотеку %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" -"sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " +"%sдокументацију%s за начине превазилажења овог ограничења." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1960,8 +1960,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -4998,8 +4998,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -5766,8 +5766,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8735,8 +8735,8 @@ msgstr "Одбаци базе које се зову исто као корис msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " diff --git a/po/sr@latin.po b/po/sr@latin.po index fe822b2edb..abaca8a73a 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -637,8 +637,8 @@ msgstr "Praćenje nije aktivno." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -889,11 +889,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" -"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " +"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1954,8 +1954,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -4991,8 +4991,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -5760,8 +5760,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8725,8 +8725,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/sv.po b/po/sv.po index 387ffceca7..f3e971ac7a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-07 21:24+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -621,8 +621,8 @@ msgstr "Spårning är inte aktiv." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -860,8 +860,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." @@ -1812,11 +1812,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" -"$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " +"%1$suppsättningsskript%2$s för att skapa denna." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4845,8 +4845,8 @@ msgstr ", @TABLE@ blir tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -5611,11 +5611,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" -"s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" +"%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7769,8 +7769,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" -"s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " +"%s. Detta kan orsaka oförutsägbara beteenden." #: main.php:341 #, php-format @@ -8477,8 +8477,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -10019,8 +10019,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %" -"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " +"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - " +"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till" diff --git a/po/ta.po b/po/ta.po index 87c5f145cb..e3e53759cc 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -622,8 +622,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -861,8 +861,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1838,8 +1838,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" @@ -4698,8 +4698,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5395,8 +5395,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8049,8 +8049,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/te.po b/po/te.po index 913e2b8821..fa99fdd8e1 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -632,8 +632,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" # మొదటి అనువాదము @@ -875,8 +875,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1849,8 +1849,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4739,8 +4739,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5445,8 +5445,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8188,8 +8188,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/th.po b/po/th.po index dc1dd280ac..3f4af9343d 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -632,8 +632,8 @@ msgstr "หยุดการติดตามแล้ว" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -874,8 +874,8 @@ msgstr "" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1914,8 +1914,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4896,8 +4896,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5631,8 +5631,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8483,8 +8483,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -10809,8 +10809,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" -#~ "s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" +#~ "%s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tr.po b/po/tr.po index 7ac827428e..a2e228a2e3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-13 18:06+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -619,8 +619,8 @@ msgstr "İzleme aktif değil." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." @@ -859,8 +859,8 @@ msgstr "Döküm, %s dosyasına kaydedildi." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." @@ -1330,8 +1330,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" -"s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " +"%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:167 @@ -1811,8 +1811,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -2215,7 +2215,6 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" #: libraries/common.lib.php:2447 -#| msgid "Click to select" msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" @@ -4876,8 +4875,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -5651,8 +5650,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -6541,7 +6540,6 @@ msgid "Generate Password" msgstr "Parola Üret" #: libraries/rte/rte_events.lib.php:58 -#| msgid "Add an event" msgid "Add event" msgstr "Olay ekle" @@ -6551,7 +6549,6 @@ msgid "Export of event %s" msgstr "%s olayını dışa aktarma" #: libraries/rte/rte_events.lib.php:61 -#| msgid "Event" msgid "event" msgstr "olay" @@ -6561,9 +6558,8 @@ msgstr "olay" msgid "You do not have the necessary privileges to create an event" msgstr "Yeni bir olay oluşturmak için gerekli izinlere sahip değilsiniz" -#: libraries/rte/rte_events.lib.php:29 +#: libraries/rte/rte_events.lib.php:63 #, php-format -#| msgid "No event with name %s found in database %s" msgid "No event with name %1$s found in database %2$s" msgstr "%2$s veritabanında %1$s adıyla olay bulunamadı" @@ -6584,7 +6580,6 @@ msgid "The following query has failed: \"%s\"" msgstr "Aşağıdaki sorgu başarısız oldu: \"%s\"" #: libraries/rte/rte_events.lib.php:140 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped event." msgstr "Üzgünüm, kaldırılmış olayı geri yükleme başarısız oldu." @@ -6595,13 +6590,11 @@ msgstr "Yedeklenmiş sorgu:" #: libraries/rte/rte_events.lib.php:145 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Event %1$s has been modified." msgstr "Olay %1$s değiştirildi." #: libraries/rte/rte_events.lib.php:157 #, php-format -#| msgid "Table %1$s has been created." msgid "Event %1$s has been created." msgstr "Olay %1$s oluşturuldu." @@ -6611,12 +6604,10 @@ msgid "One or more errors have occured while processing your request:" msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" #: libraries/rte/rte_events.lib.php:205 -#| msgid "Create view" msgid "Create event" msgstr "Olay oluştur" #: libraries/rte/rte_events.lib.php:209 -#| msgid "Edit server" msgid "Edit event" msgstr "Olay düzenle" @@ -6633,7 +6624,6 @@ msgid "Details" msgstr "Ayrıntılar" #: libraries/rte/rte_events.lib.php:398 -#| msgid "Event type" msgid "Event name" msgstr "Olay adı" @@ -6647,17 +6637,14 @@ msgid "Change to %s" msgstr "%s'a değiştir" #: libraries/rte/rte_events.lib.php:446 -#| msgid "Execute" msgid "Execute at" msgstr "Çalıştır" #: libraries/rte/rte_events.lib.php:454 -#| msgid "Execute" msgid "Execute every" msgstr "Çalıştır; her" #: libraries/rte/rte_events.lib.php:473 -#| msgid "Startup" msgid "Start" msgstr "Başlama" @@ -6667,7 +6654,6 @@ msgid "Definition" msgstr "Tanım" #: libraries/rte/rte_events.lib.php:495 -#| msgid "complete inserts" msgid "On completion preserve" msgstr "Tamamlamada koruma" @@ -6683,27 +6669,22 @@ msgid "The definer must be in the \"username@hostname\" format" msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır" #: libraries/rte/rte_events.lib.php:549 -#| msgid "You must provide a routine name" msgid "You must provide an event name" msgstr "Bir olay adı vermek zorundasınız" #: libraries/rte/rte_events.lib.php:561 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid interval value for the event." msgstr "Her olay için geçerli aralık değeri vermek zorundasınız." #: libraries/rte/rte_events.lib.php:573 -#| msgid "You must provide a routine definition." msgid "You must provide a valid execution time for the event." msgstr "Olay için geçerli bir çalıştırma zamanı vermek zorundasınız." #: libraries/rte/rte_events.lib.php:577 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid type for the event." msgstr "Olay için geçerli bir tür vermek zorundasınız." #: libraries/rte/rte_events.lib.php:596 -#| msgid "You must provide a routine definition." msgid "You must provide an event definition." msgstr "Bir olay tanımı vermek zorundasınız." @@ -6720,12 +6701,10 @@ msgid "ON" msgstr "AÇIK" #: libraries/rte/rte_footer.lib.php:108 -#| msgid "The event scheduler is enabled" msgid "Event scheduler status" msgstr "Olay zamanlayıcısı durumu" #: libraries/rte/rte_list.lib.php:52 -#| msgid "Return type" msgid "Returns" msgstr "Dönüşler" @@ -6748,7 +6727,6 @@ msgid "Export of routine %s" msgstr "%s yordamını dışa aktarma" #: libraries/rte/rte_routines.lib.php:46 -#| msgid "Routines" msgid "routine" msgstr "yordam" @@ -6869,15 +6847,14 @@ msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -"ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için " -"uzunluk/değerler vermek zorundasınız." +"ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/" +"değerler vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız." #: libraries/rte/rte_routines.lib.php:1126 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." @@ -6912,7 +6889,6 @@ msgid "Function" msgstr "İşlev" #: libraries/rte/rte_triggers.lib.php:39 -#| msgid "Add a trigger" msgid "Add trigger" msgstr "Tetikleyici ekle" @@ -6922,7 +6898,6 @@ msgid "Export of trigger %s" msgstr "%s tetikleyicisini dışa aktarma" #: libraries/rte/rte_triggers.lib.php:42 -#| msgid "Triggers" msgid "trigger" msgstr "tetikleyici" @@ -6932,9 +6907,8 @@ msgstr "tetikleyici" msgid "You do not have the necessary privileges to create a trigger" msgstr "Yeni bir tetikleyici oluşturmak için gerekli izinlere sahip değilsiniz" -#: libraries/rte/rte_triggers.lib.php:29 +#: libraries/rte/rte_triggers.lib.php:44 #, php-format -#| msgid "No routine with name %1$s found in database %2$s" msgid "No trigger with name %1$s found in database %2$s" msgstr "%2$s veritabanında %1$s adıyla tetikleyici bulunamadı" @@ -6943,59 +6917,48 @@ msgid "There are no triggers to display." msgstr "Görüntülemek için tetikleyiciler yok." #: libraries/rte/rte_triggers.lib.php:113 -#| msgid "Sorry, we failed to restore the dropped routine." msgid "Sorry, we failed to restore the dropped trigger." msgstr "Üzgünüm, kaldırılmış tetikleyiciyi geri yükleme başarısız oldu." #: libraries/rte/rte_triggers.lib.php:118 #, php-format -#| msgid "Routine %1$s has been modified." msgid "Trigger %1$s has been modified." msgstr "Tetikleyici %1$s değiştirildi." #: libraries/rte/rte_triggers.lib.php:130 #, php-format -#| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." msgstr "Tetikleyici %1$s oluşturuldu." #: libraries/rte/rte_triggers.lib.php:181 -#| msgid "Create view" msgid "Create trigger" msgstr "Tetikleyici oluştur" #: libraries/rte/rte_triggers.lib.php:185 -#| msgid "Add a trigger" msgid "Edit trigger" msgstr "Tetikleyiciyi düzenle" #: libraries/rte/rte_triggers.lib.php:325 -#| msgid "Triggers" msgid "Trigger name" msgstr "Tetikleyici adı" #: libraries/rte/rte_triggers.lib.php:423 -#| msgid "You must provide a routine name" msgid "You must provide a trigger name" msgstr "Bir tetikleyici adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:428 -#| msgid "You must provide a routine name" msgid "You must provide a valid timing for the trigger" msgstr "Tetikleyici için geçerli bir zamanlama vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:433 -#| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid event for the trigger" msgstr "Tetikleyici için geçerli bir olay vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:439 -#| msgid "You must provide a routine name" msgid "You must provide a valid table name" msgstr "Geçerli bir tablo adı vermek zorundasınız" #: libraries/rte/rte_triggers.lib.php:445 -#| msgid "You must provide a routine definition." msgid "You must provide a trigger definition." msgstr "Bir tetikleyici tanımı vermek zorundasınız." @@ -8495,8 +8458,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -10042,9 +10005,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" -"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " -"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " +"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" +"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:268 @@ -10059,8 +10022,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" -"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " +"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:270 diff --git a/po/tt.po b/po/tt.po index e15c08f15a..d2d0fac0f4 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -643,8 +643,8 @@ msgstr "" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -896,8 +896,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1945,8 +1945,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4968,8 +4968,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5721,8 +5721,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7434,8 +7434,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" -"squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " +"%squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119 msgid "Table seems to be empty!" @@ -8653,8 +8653,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " diff --git a/po/ug.po b/po/ug.po index 75ae04a6cf..c5f6d45502 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -353,8 +353,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:600 #, fuzzy @@ -628,8 +628,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -869,8 +869,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -1872,11 +1872,11 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4800,8 +4800,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5529,8 +5529,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7563,8 +7563,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: main.php:314 msgid "" @@ -8291,8 +8291,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uk.po b/po/uk.po index 13f389638f..647bd99808 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-07-03 18:10+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -630,8 +630,8 @@ msgstr "Трекінг не активний." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -871,8 +871,8 @@ msgstr "Dump збережено у файл %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1818,8 +1818,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4679,8 +4679,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5396,8 +5396,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7141,8 +7141,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" -"sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " +"%sописи перетворень%s" #: libraries/tbl_properties.inc.php:147 msgid "Transformation options" @@ -8274,8 +8274,8 @@ msgstr "Усунути бази даних, які мають такі ж наз msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -10536,8 +10536,8 @@ msgstr "" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" -#~ "s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " +#~ "%s запитів." #~ msgid "Chart generated successfully." #~ msgstr "Права успішно перезавантажено." diff --git a/po/ur.po b/po/ur.po index fadedd6069..a15218a03e 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -632,8 +632,8 @@ msgstr "کھوج غیر فعال ہے۔" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." @@ -876,11 +876,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" -"sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " +"%sdocumentation%s دیکھیں۔" #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1372,8 +1372,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" -"s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " +"%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:167 @@ -1862,8 +1862,8 @@ msgstr "%s میں خوش آمدید" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -4838,8 +4838,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:268 @@ -5547,8 +5547,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8293,8 +8293,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uz.po b/po/uz.po index 126f288f27..05c983ace0 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" +"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -648,8 +648,8 @@ msgstr "Кузатиш фаол эмас." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." @@ -895,11 +895,11 @@ msgstr "Дамп \"%s\" файлида сақланди." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" -"sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " +"%sдокументацияда%s келтирилган." #: import.php:277 import.php:330 libraries/File.class.php:459 #: libraries/File.class.php:543 @@ -1990,8 +1990,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -4288,8 +4288,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:404 msgid "PDF schema: pages table" @@ -4397,8 +4397,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" @@ -5259,12 +5259,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" -"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " +"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:268 msgid "use this for future exports" @@ -6073,8 +6073,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -9134,8 +9134,8 @@ msgstr "Фойдаланувчилар номлари билан аталган msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -10145,8 +10145,8 @@ msgstr "Очиқ файллар сони." #: server_status.php:934 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" -"\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." #: server_status.php:935 msgid "The number of tables that are open." @@ -10783,9 +10783,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -11756,8 +11756,8 @@ msgstr "Кўриниш номини ўзгартириш" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]" -#~ "\"FAQ 3.11\"[/a]га қаранг" +#~ "Тахминий бўлиши мумкин. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" #~ msgid "Bar type" #~ msgstr "Сўров тури" diff --git a/po/uz@latin.po b/po/uz@latin.po index 4fe4b8ef05..74a9a4e4db 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" +"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -650,8 +650,8 @@ msgstr "Kuzatish faol emas." #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." @@ -897,8 +897,8 @@ msgstr "Damp \"%s\" faylida saqlandi." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -1997,8 +1997,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -4211,9 +4211,9 @@ 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 "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" -"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" -"larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" +"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." +"com/19588]\"MySQL Bugs\"[/a]larga qarang" #: libraries/config/messages.inc.php:387 msgid "Disable use of INFORMATION_SCHEMA" @@ -4303,8 +4303,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:404 msgid "PDF schema: pages table" @@ -4318,8 +4318,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" -"\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " +"[kbd]\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:406 #, fuzzy @@ -4412,8 +4412,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" @@ -5076,8 +5076,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -"\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation." +"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:112 msgid "Connection for controluser as defined in your configuration failed." @@ -5280,8 +5280,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -6098,8 +6098,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -9177,8 +9177,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -10844,9 +10844,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10860,9 +10860,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" -"kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" +"[/kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:270 #, fuzzy, php-format @@ -11820,8 +11820,8 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -#~ "\"FAQ 3.11\"[/a]ga qarang" +#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #~ msgid "Bar type" #~ msgstr "So‘rov turi" diff --git a/po/zh_CN.po b/po/zh_CN.po index a81002cf4b..2727164ffe 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -618,8 +618,8 @@ msgstr "追踪已禁用。" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "该视图最少包含的行数,参见%s文档%s。" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -855,8 +855,8 @@ msgstr "转存已经保存到文件 %s 中。" #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1812,8 +1812,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -4763,8 +4763,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -5498,8 +5498,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:129 @@ -8287,12 +8287,12 @@ msgstr "删除与用户同名的数据库。" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" -"s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" +"限%s。" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10691,8 +10691,8 @@ msgstr "将视图改名为" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "添加新用户" diff --git a/po/zh_TW.po b/po/zh_TW.po index 66e5a79a27..e28c1de096 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-07-14 09:21-0400\n" +"POT-Creation-Date: 2011-07-14 18:39+0200\n" "PO-Revision-Date: 2011-06-19 09:59+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -618,8 +618,8 @@ msgstr "追蹤已停用" #: db_structure.php:373 libraries/display_tbl.lib.php:2198 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 @@ -855,8 +855,8 @@ msgstr "備份資料已儲存至檔案 %s." #: import.php:57 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." #: import.php:277 import.php:330 libraries/File.class.php:459 @@ -1797,8 +1797,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案" @@ -4732,8 +4732,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s" @@ -5465,8 +5465,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:129 @@ -8254,8 +8254,8 @@ msgstr "刪除與使用者同名的資料庫" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" @@ -10665,8 +10665,8 @@ msgstr "將 view改名爲" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "新增新使用者" From da7f6304bc52cb21f450eab0e56dfc3bb25b00a4 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 19:55:45 +0200 Subject: [PATCH 435/960] Translation update done using Pootle. --- po/hi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index 9274c994d1..ef99721fea 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-05-06 09:13+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-07-14 19:55+0200\n" +"Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -572,7 +572,6 @@ msgid "Search in database" msgstr "डाटाबेस में खोजें" #: db_search.php:275 -#, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):" From 34572b99e62ba646bc3b64aa694f6524b6772a79 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 19:56:07 +0200 Subject: [PATCH 436/960] Translation update done using Pootle. --- po/hi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index ef99721fea..c9f561bb98 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 19:55+0200\n" +"PO-Revision-Date: 2011-07-14 19:56+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -585,7 +585,6 @@ msgid "Words are separated by a space character (\" \")." msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं." #: db_search.php:298 -#, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr " टेबल में:" From 8c44848518bdfb6020d9b16319b7d1671bb69c9e Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 19:57:04 +0200 Subject: [PATCH 437/960] Translation update done using Pootle. --- po/hi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index c9f561bb98..d4fd43c964 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 19:56+0200\n" +"PO-Revision-Date: 2011-07-14 19:57+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -716,10 +716,9 @@ msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" #: db_structure.php:515 -#, fuzzy #| msgid "Go to table" msgid "Add prefix to table" -msgstr "टेबल पर जायें" +msgstr "टेबल पर उपसर्ग जोड़ें" #: db_structure.php:517 libraries/mult_submits.inc.php:251 #, fuzzy From d30d5b7d21be60dd99b00e84b256fe867dc652d5 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:14:04 +0200 Subject: [PATCH 438/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index d4fd43c964..527e666f71 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 19:57+0200\n" +"PO-Revision-Date: 2011-07-14 20:14+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -18,7 +18,7 @@ msgstr "" #: libraries/display_tbl.lib.php:354 libraries/display_tbl.lib.php:421 #: server_privileges.php:1583 msgid "Show all" -msgstr "सभी दिखाओ" +msgstr "सभी दिखाएँ" #: browse_foreigners.php:70 libraries/common.lib.php:2173 #: libraries/export/pdf.php:135 From 2fed0440688e2d22140268fdf5014e3e45f30a5f Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:15:06 +0200 Subject: [PATCH 439/960] Translation update done using Pootle. --- po/hi.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index 527e666f71..657059df56 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:14+0200\n" +"PO-Revision-Date: 2011-07-14 20:15+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -35,8 +35,9 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -"लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," -"या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." +"लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो " +"बंद कर दिया है,या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन " +"के लिए कांफिगुर कर रखा है." #: browse_foreigners.php:151 libraries/common.lib.php:2720 #: libraries/common.lib.php:2727 libraries/common.lib.php:2908 From 62b52ed01eab21c679832fbb36be01f3d09aeddb Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:17:10 +0200 Subject: [PATCH 440/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 657059df56..0736ed53b6 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:15+0200\n" +"PO-Revision-Date: 2011-07-14 20:17+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 1edf185eac90b1010b13cc341ceb79f5c04c74a7 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:18:05 +0200 Subject: [PATCH 441/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 0736ed53b6..e29883053a 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:17+0200\n" +"PO-Revision-Date: 2011-07-14 20:18+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -97,7 +97,7 @@ msgstr "वर्णन" #: browse_foreigners.php:248 browse_foreigners.php:257 #: browse_foreigners.php:269 browse_foreigners.php:277 msgid "Use this value" -msgstr "इस मूल्य का उपयोग करें" +msgstr "इस मान का उपयोग करें" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 #: libraries/blobstreaming.lib.php:326 From 33942d88f59d53e5d27fe2179e98b50e1b2ddb89 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:19:02 +0200 Subject: [PATCH 442/960] Translation update done using Pootle. --- po/hi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index e29883053a..37730e568b 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:18+0200\n" +"PO-Revision-Date: 2011-07-14 20:19+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -118,8 +118,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए www.phpmyadmin.net " -"वेबसाईट पर जाएँ " +"ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए " +"www.phpmyadmin.net वेबसाईट पर जाएँ " #: db_create.php:58 #, php-format From cf846cfce7935043b1d33386a3f28f67800538a2 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:41:41 +0200 Subject: [PATCH 443/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 37730e568b..e9ba483694 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:19+0200\n" +"PO-Revision-Date: 2011-07-14 20:41+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 56b50f524020ba66e00cd15cc6dc4d669bf61be8 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:41:51 +0200 Subject: [PATCH 444/960] Translation update done using Pootle. --- po/hi.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/hi.po b/po/hi.po index e9ba483694..97a5c147c6 100644 --- a/po/hi.po +++ b/po/hi.po @@ -160,6 +160,7 @@ msgstr "कोलम" #: tbl_change.php:292 tbl_change.php:319 tbl_printview.php:140 #: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:205 #: tbl_structure.php:792 tbl_tracking.php:267 tbl_tracking.php:314 +#, fuzzy msgid "Type" msgstr "टाइप" From 4fac6f371961d371dc998b2f7de9b1a436ce4279 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:42:00 +0200 Subject: [PATCH 445/960] Translation update done using Pootle. --- po/hi.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 97a5c147c6..964fcd97d1 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:41+0200\n" +"PO-Revision-Date: 2011-07-14 20:42+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -172,6 +172,7 @@ msgstr "टाइप" #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:142 tbl_structure.php:208 tbl_tracking.php:269 #: tbl_tracking.php:320 +#, fuzzy msgid "Null" msgstr "अशक्त" From 4978c4604f4ddcbd563f9ac445ce9a8d12365399 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:42:22 +0200 Subject: [PATCH 446/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 964fcd97d1..98dfade02a 100644 --- a/po/hi.po +++ b/po/hi.po @@ -184,7 +184,7 @@ msgstr "अशक्त" #: libraries/tbl_properties.inc.php:109 tbl_printview.php:143 #: tbl_structure.php:209 tbl_tracking.php:270 msgid "Default" -msgstr "डिफ़ॉल्ट" +msgstr "तयशुदा" #: db_datadict.php:174 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:304 From cf15c7923f462365f96bf034f85c2b9c56a18636 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:43:39 +0200 Subject: [PATCH 447/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 98dfade02a..437d7c8fc4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:42+0200\n" +"PO-Revision-Date: 2011-07-14 20:43+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 846f63e4f94a0c3bd5fdc44f2550fe9652c8f53b Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:44:25 +0200 Subject: [PATCH 448/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 437d7c8fc4..f2520bd078 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:43+0200\n" +"PO-Revision-Date: 2011-07-14 20:44+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -249,7 +249,7 @@ msgstr "छापें" #: db_export.php:26 msgid "View dump (schema) of database" -msgstr "डेटाबेस का डंप (स्कीमा) दिखाएं" +msgstr "डेटाबेस का डंप (स्कीमा) नजारा" #: db_export.php:30 db_printview.php:94 db_qbe.php:101 db_tracking.php:48 #: export.php:370 navigation.php:299 From de28305020cdfbeb67e408c68504cbd37e989b4f Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:51:20 +0200 Subject: [PATCH 449/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index f2520bd078..8d2dc269ce 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:44+0200\n" +"PO-Revision-Date: 2011-07-14 20:51+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From fa09ac9d2676b6035bb05ef4e62d036cf9c50096 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:54:51 +0200 Subject: [PATCH 450/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 8d2dc269ce..adc22982ca 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:51+0200\n" +"PO-Revision-Date: 2011-07-14 20:54+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -266,7 +266,7 @@ msgstr "सभी को रद्द करें" #: db_operations.php:41 tbl_create.php:22 msgid "The database name is empty!" -msgstr "डेटाबेस नाम खाली है" +msgstr "डेटाबेस का नाम खाली है" #: db_operations.php:272 #, php-format From d0c2cc1bd283ddbcd69518ff7644078fb3ad8f9b Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:55:20 +0200 Subject: [PATCH 451/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index adc22982ca..b4885fb020 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:54+0200\n" +"PO-Revision-Date: 2011-07-14 20:55+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -271,7 +271,7 @@ msgstr "डेटाबेस का नाम खाली है" #: db_operations.php:272 #, php-format msgid "Database %s has been renamed to %s" -msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है" +msgstr " डेटाबेस %s का नाम बदल कर %s रखा गया है" #: db_operations.php:276 #, php-format From 98607ed55f08a392212529eb13ec7500ae17cfa8 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:56:04 +0200 Subject: [PATCH 452/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index b4885fb020..88aa10a489 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:55+0200\n" +"PO-Revision-Date: 2011-07-14 20:56+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From ed3e11edcd268599c3028683b4a1a75e59a8aec1 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:58:22 +0200 Subject: [PATCH 453/960] Translation update done using Pootle. --- po/hi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index 88aa10a489..89c00f53ee 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:56+0200\n" +"PO-Revision-Date: 2011-07-14 20:58+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -724,10 +724,9 @@ msgid "Add prefix to table" msgstr "टेबल पर उपसर्ग जोड़ें" #: db_structure.php:517 libraries/mult_submits.inc.php:251 -#, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "फाइल, टेबल डेटा की जगह" +msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" #: db_structure.php:519 libraries/mult_submits.inc.php:251 #, fuzzy From daeb5734a90a569cd39963f4aa424d223d54d051 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 20:59:32 +0200 Subject: [PATCH 454/960] Translation update done using Pootle. --- po/hi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index 89c00f53ee..b7669b8959 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:58+0200\n" +"PO-Revision-Date: 2011-07-14 20:59+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -729,10 +729,9 @@ msgid "Replace table prefix" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" #: db_structure.php:519 libraries/mult_submits.inc.php:251 -#, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "फाइल, टेबल डेटा की जगह" +msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" #: db_structure.php:561 libraries/schema/User_Schema.class.php:383 msgid "Data Dictionary" From 00f777451bb90a25a0d790f9357836d9b79e3d17 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:00:09 +0200 Subject: [PATCH 455/960] Translation update done using Pootle. --- po/hi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index b7669b8959..da4d5e85f5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 20:59+0200\n" +"PO-Revision-Date: 2011-07-14 21:00+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -976,10 +976,9 @@ msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " #: js/messages.php:32 -#, fuzzy #| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " +msgstr "आप एक पूराटेबल नष्ट कर रहे हैं! " #: js/messages.php:33 #, fuzzy From 17a92e16defd79251eade0da04dfb9347b0cdf1e Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:00:44 +0200 Subject: [PATCH 456/960] Translation update done using Pootle. --- po/hi.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index da4d5e85f5..8ea166732f 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1017,10 +1017,9 @@ msgstr "यह नंबर नहीं है!" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:49 -#, fuzzy #| msgid "Total" msgid "Total count" -msgstr "कुल" +msgstr "कुल गिनती" #: js/messages.php:52 msgid "The host name is empty!" From 34f021061cbb1675a67918ba0f3038039577e307 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:03:45 +0200 Subject: [PATCH 457/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 8ea166732f..ca5ccc279c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:00+0200\n" +"PO-Revision-Date: 2011-07-14 21:03+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -293,7 +293,7 @@ msgstr "डेटाबेस को हटा दे" #: db_operations.php:452 #, php-format msgid "Database %s has been dropped." -msgstr "डाटाबेस %s को ड्रोप कर दिया ।" +msgstr "डाटाबेस %s को ड्रोप कर दिया गया है।" #: db_operations.php:457 msgid "Drop the database (DROP)" From 42231cebae20c945924ea2c87a7801d47166d6f0 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:04:58 +0200 Subject: [PATCH 458/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index ca5ccc279c..fa56f4bdc4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:03+0200\n" +"PO-Revision-Date: 2011-07-14 21:04+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -297,7 +297,7 @@ msgstr "डाटाबेस %s को ड्रोप कर दिया ग #: db_operations.php:457 msgid "Drop the database (DROP)" -msgstr "ड्रॉप डेटाबेस (छोड़ें)" +msgstr "डेटाबेस को ड्रप करे " #: db_operations.php:487 msgid "Copy database to" From 0d6cffe4bfa6c131a4908b824c1d4cffa5896d82 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:05:14 +0200 Subject: [PATCH 459/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index fa56f4bdc4..2500eafaa5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:04+0200\n" +"PO-Revision-Date: 2011-07-14 21:05+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 03a8bdceba39112f783071204ecea89fab56902f Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:06:10 +0200 Subject: [PATCH 460/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 2500eafaa5..5cc1db0e91 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:05+0200\n" +"PO-Revision-Date: 2011-07-14 21:06+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 640044124c5485f90a207b3f4508f67c4c698e39 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:06:37 +0200 Subject: [PATCH 461/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 5cc1db0e91..c1dc31dda4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -355,8 +355,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " -"%shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, " +"जानने के लिए %shere%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" From ba3a04de67ff2abbc0472134672c18d127498135 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:07:13 +0200 Subject: [PATCH 462/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index c1dc31dda4..576c9496ed 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:06+0200\n" +"PO-Revision-Date: 2011-07-14 21:07+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -356,7 +356,7 @@ msgid "" "click %shere%s." msgstr "" "phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, " -"जानने के लिए %shere%s पर क्लिक करें." +"जानने के लिए %sयहाँ%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" From 1252fd8ee9dc35453648bd23a1804bac31382b91 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:07:59 +0200 Subject: [PATCH 463/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 576c9496ed..b1f13ad932 100644 --- a/po/hi.po +++ b/po/hi.po @@ -388,7 +388,7 @@ msgstr "आकार" #: db_printview.php:160 db_structure.php:410 libraries/export/sql.php:743 #: libraries/export/sql.php:1058 msgid "in use" -msgstr "उपयोग में" +msgstr "उपयोग में है" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:698 From fd4ba5fdf780be49b15af72c099eea4da898ec02 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:08:06 +0200 Subject: [PATCH 464/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index b1f13ad932..cfdc682205 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:07+0200\n" +"PO-Revision-Date: 2011-07-14 21:08+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 6302bdbc6cd38c69c2f161dfc215e419ba501b43 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:09:07 +0200 Subject: [PATCH 465/960] Translation update done using Pootle. --- po/hi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index cfdc682205..4db3fa8a26 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:08+0200\n" +"PO-Revision-Date: 2011-07-14 21:09+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -415,8 +415,8 @@ msgstr "पिछली जाँच" #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] " %s टेबल(s)" -msgstr[1] " %s टेबल(s)" +msgstr[0] " %s टेबलें" +msgstr[1] " %s टेबल" #: db_qbe.php:41 msgid "You have to choose at least one column to display" From 4e23579541eb5db7094e69398dfc784b3d633e2f Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:11:00 +0200 Subject: [PATCH 466/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 4db3fa8a26..487d8d9186 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:09+0200\n" +"PO-Revision-Date: 2011-07-14 21:11+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -424,7 +424,7 @@ msgstr "आपको कम से कम एक स्तंभ प्रदर #: db_qbe.php:186 msgid "Switch to" -msgstr "के लिए स्विच" +msgstr "में चले" #: db_qbe.php:186 msgid "visual builder" From f5aaf89d6c359bba5e793e1a6b72c8765bc8b453 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:11:42 +0200 Subject: [PATCH 467/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 487d8d9186..e70c940465 100644 --- a/po/hi.po +++ b/po/hi.po @@ -428,7 +428,7 @@ msgstr "में चले" #: db_qbe.php:186 msgid "visual builder" -msgstr "दृश्य बिल्डर" +msgstr "दृश्य निर्माता" #: db_qbe.php:222 libraries/db_structure.lib.php:90 #: libraries/display_tbl.lib.php:937 From 038faa0ef93277099ab74b177c25319a3bdce5b0 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:12:03 +0200 Subject: [PATCH 468/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index e70c940465..3296a366b7 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:11+0200\n" +"PO-Revision-Date: 2011-07-14 21:12+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 4bc781f6415e32497cc82821eaf19354ef963df7 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:12:33 +0200 Subject: [PATCH 469/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 3296a366b7..5788ee693a 100644 --- a/po/hi.po +++ b/po/hi.po @@ -460,7 +460,7 @@ msgstr "मापदंड" #: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580 msgid "Ins" -msgstr "इन्सर्ट" +msgstr "घुसाएं" #: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577 msgid "And" From f0b8445ab4044a6fafa6c850d4200903b5ac907a Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:13:08 +0200 Subject: [PATCH 470/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 5788ee693a..abbf591451 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:12+0200\n" +"PO-Revision-Date: 2011-07-14 21:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -478,7 +478,7 @@ msgstr "अथवा" #: db_qbe.php:529 msgid "Modify" -msgstr "संशोधित" +msgstr "संशोधन" #: db_qbe.php:606 msgid "Add/Delete criteria rows" From bc1e6e024debb012db9d621862dae8f67dd53821 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:14:00 +0200 Subject: [PATCH 471/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index abbf591451..98e3026222 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:13+0200\n" +"PO-Revision-Date: 2011-07-14 21:14+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -503,7 +503,7 @@ msgstr "डेटाबेस %s पर SQL क्वरी:" #: db_qbe.php:955 libraries/common.lib.php:1116 msgid "Submit Query" -msgstr "क्वरी प्रस्तुत करें" +msgstr "क्वरी भेजें" #: db_search.php:30 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 From 500493add14b0806b3bd39a3cd4bdda095d9adc1 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:14:45 +0200 Subject: [PATCH 472/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 98e3026222..2ee3dfdda6 100644 --- a/po/hi.po +++ b/po/hi.po @@ -510,7 +510,7 @@ msgstr "क्वरी भेजें" #: libraries/auth/cookie.auth.lib.php:566 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:236 msgid "Access denied" -msgstr "प्रवेश निषेध" +msgstr "पहुँच निषेधित" #: db_search.php:42 db_search.php:284 msgid "at least one of the words" From c888f4d92cac9bc614753b40696924d258bc21c5 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:15:02 +0200 Subject: [PATCH 473/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 2ee3dfdda6..cc1284f7c2 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:14+0200\n" +"PO-Revision-Date: 2011-07-14 21:15+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 5bbbb80b728b71637969c01053990f14efc7f6c2 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:16:06 +0200 Subject: [PATCH 474/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index cc1284f7c2..8eac1a8e41 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:15+0200\n" +"PO-Revision-Date: 2011-07-14 21:16+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 915d78223e52d3fd824c419e7a1d56049db80f58 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:17:08 +0200 Subject: [PATCH 475/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 8eac1a8e41..9cd5928bfe 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:16+0200\n" +"PO-Revision-Date: 2011-07-14 21:17+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 81152773d492aa595ac72701b1da649c48f94ba4 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:17:29 +0200 Subject: [PATCH 476/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 9cd5928bfe..8ef1d036de 100644 --- a/po/hi.po +++ b/po/hi.po @@ -608,7 +608,7 @@ msgstr " टेबल %s को खाली किया गया है." #: db_structure.php:280 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" -msgstr "द्रश्य %s रद्द दिया गया है." +msgstr "द्रश्य %s रद्द किया गया है." #: db_structure.php:280 tbl_operations.php:705 #, php-format From 6a9db08373b467cfddfdf3faa7dee33ef8b01d9b Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:18:30 +0200 Subject: [PATCH 477/960] Translation update done using Pootle. --- po/hi.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 8ef1d036de..c1ef843abd 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:17+0200\n" +"PO-Revision-Date: 2011-07-14 21:18+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -628,7 +628,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." +msgstr "" +"इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." #: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 From 2eb56ed9202c76b37eae88f64b9bca8089453a07 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:19:08 +0200 Subject: [PATCH 478/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index c1ef843abd..7fc669ce28 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:18+0200\n" +"PO-Revision-Date: 2011-07-14 21:19+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From 126ac80917acf1121264954806ee37be829a73d7 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:20:01 +0200 Subject: [PATCH 479/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 7fc669ce28..f764837011 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:19+0200\n" +"PO-Revision-Date: 2011-07-14 21:20+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -649,7 +649,7 @@ msgstr "जोड" #: db_structure.php:449 libraries/StorageEngine.class.php:313 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है." +msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है." #: db_structure.php:477 db_structure.php:494 db_structure.php:495 #: libraries/display_tbl.lib.php:2339 libraries/display_tbl.lib.php:2344 From 64ed0fdecb8108eaf184face56c9935df5472b56 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:20:42 +0200 Subject: [PATCH 480/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index f764837011..8cf1f61921 100644 --- a/po/hi.po +++ b/po/hi.po @@ -669,7 +669,7 @@ msgstr "सभी को चेक करें" #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:594 msgid "Uncheck All" -msgstr " सभी को अनचेक करें" +msgstr "सभी को अनचेक करें" #: db_structure.php:489 msgid "Check tables having overhead" From cd725e88b21cd067770340182ad69c7857ec5dc0 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:21:21 +0200 Subject: [PATCH 481/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 8cf1f61921..8617eb5321 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:20+0200\n" +"PO-Revision-Date: 2011-07-14 21:21+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -688,7 +688,7 @@ msgstr "निर्यात" #: libraries/display_tbl.lib.php:2439 tbl_structure.php:628 #: tbl_structure.php:630 msgid "Print view" -msgstr "छापने वाला द्रश्य." +msgstr "छपाई द्रश्य." #: db_structure.php:503 libraries/common.lib.php:2915 #: libraries/common.lib.php:2916 From a2e9138228e87f1d76b2fa669b69ea906dc7ab1a Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:21:31 +0200 Subject: [PATCH 482/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 8617eb5321..4f287b8ca8 100644 --- a/po/hi.po +++ b/po/hi.po @@ -693,7 +693,7 @@ msgstr "छपाई द्रश्य." #: db_structure.php:503 libraries/common.lib.php:2915 #: libraries/common.lib.php:2916 msgid "Empty" -msgstr "खाली करें" +msgstr "खाली" #: db_structure.php:505 db_tracking.php:104 libraries/Index.class.php:482 #: libraries/common.lib.php:2913 libraries/common.lib.php:2914 From 63b24dc7ab9b53f8038f31f2d2bcb49efe9c9e65 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:21:51 +0200 Subject: [PATCH 483/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 4f287b8ca8..f3575c5ef7 100644 --- a/po/hi.po +++ b/po/hi.po @@ -700,7 +700,7 @@ msgstr "खाली" #: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154 #: tbl_structure.php:603 msgid "Drop" -msgstr "छोड़ें" +msgstr "रद्ध " #: db_structure.php:507 tbl_operations.php:604 msgid "Check table" From 0c8592eeb9b6b839445b208e5bdda35a830cfe03 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:22:03 +0200 Subject: [PATCH 484/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index f3575c5ef7..9b56d581bc 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:21+0200\n" +"PO-Revision-Date: 2011-07-14 21:22+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -700,7 +700,7 @@ msgstr "खाली" #: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154 #: tbl_structure.php:603 msgid "Drop" -msgstr "रद्ध " +msgstr "रद्द" #: db_structure.php:507 tbl_operations.php:604 msgid "Check table" From 0512a200030642d2829194b35a6beee436435349 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:22:35 +0200 Subject: [PATCH 485/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 9b56d581bc..a02f269f52 100644 --- a/po/hi.po +++ b/po/hi.po @@ -704,7 +704,7 @@ msgstr "रद्द" #: db_structure.php:507 tbl_operations.php:604 msgid "Check table" -msgstr " टेबल को चेक करें" +msgstr "टेबल को चेक करें" #: db_structure.php:509 tbl_operations.php:653 tbl_structure.php:842 #: tbl_structure.php:844 From c604a0a53f3c71ca2e0cd7eb5596c31f5230f83a Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:23:17 +0200 Subject: [PATCH 486/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index a02f269f52..cf80993c00 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:22+0200\n" +"PO-Revision-Date: 2011-07-14 21:23+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -713,7 +713,7 @@ msgstr "टेबल को अनुकूलित करें" #: db_structure.php:511 tbl_operations.php:640 msgid "Repair table" -msgstr "टेबल को टीक करें" +msgstr "टेबल को मरम्मत करें" #: db_structure.php:513 tbl_operations.php:627 msgid "Analyze table" From 191f34cdeb4d1f9145a47b6e9c6ada7197218ad9 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:24:02 +0200 Subject: [PATCH 487/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index cf80993c00..1cd5534c38 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:23+0200\n" +"PO-Revision-Date: 2011-07-14 21:24+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From d7f9814339223dc9e8cba04e0b30d1fd820e179a Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:25:01 +0200 Subject: [PATCH 488/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 1cd5534c38..0831b7f5f4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:24+0200\n" +"PO-Revision-Date: 2011-07-14 21:25+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From bdc06cb1cd8c2cd8265332be6de09bd74c5583cb Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:25:45 +0200 Subject: [PATCH 489/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 0831b7f5f4..05dc1d827f 100644 --- a/po/hi.po +++ b/po/hi.po @@ -803,7 +803,7 @@ msgstr "ट्रैकिंग रिपोर्ट" #: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676 msgid "Structure snapshot" -msgstr "संरचना स्नैपशॉट" +msgstr "संरचना क्षणचित्र" #: db_tracking.php:181 msgid "Untracked tables" From 126bb4ec9c05d5cbb83dc709787ce63915315adc Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:26:10 +0200 Subject: [PATCH 490/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index 05dc1d827f..b314a11f0d 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:25+0200\n" +"PO-Revision-Date: 2011-07-14 21:26+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" From f2e338c34280960d162fc4f1718cf05fcec54db7 Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:26:35 +0200 Subject: [PATCH 491/960] Translation update done using Pootle. --- po/hi.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hi.po b/po/hi.po index b314a11f0d..0d23046dec 100644 --- a/po/hi.po +++ b/po/hi.po @@ -816,7 +816,7 @@ msgstr "टेबलओं को ट्रैक करें" #: db_tracking.php:229 msgid "Database Log" -msgstr "डेटाबेस लॉग" +msgstr "डेटाबेस का रोजनामचा" #: enum_editor.php:21 libraries/tbl_properties.inc.php:776 #, php-format From ae731480d8442a0aaebbf9d74f323b54b03ee55f Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:27:08 +0200 Subject: [PATCH 492/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 0d23046dec..8fea7c51b6 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:26+0200\n" +"PO-Revision-Date: 2011-07-14 21:27+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -825,7 +825,7 @@ msgstr "\"%s\" काँलम के लिए मान " #: enum_editor.php:22 libraries/tbl_properties.inc.php:777 msgid "Enter each value in a separate field." -msgstr "एक मान अलग क्षेत्र में दर्ज करें." +msgstr "हर एक मान अलग क्षेत्र में दर्ज करें." #: enum_editor.php:57 msgid "+ Restart insertion and add a new value" From d4fd5a34ee0b2e1620691c2852b2c642b75da26c Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:28:02 +0200 Subject: [PATCH 493/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 8fea7c51b6..0a7558082d 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:27+0200\n" +"PO-Revision-Date: 2011-07-14 21:28+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -837,7 +837,7 @@ msgstr "उत्पादन" #: enum_editor.php:68 msgid "Copy and paste the joined values into the \"Length/Values\" field" -msgstr "\"लंबाई / मूल्य\" क्षेत्र में शामिल हो गए मान कॉपी और पेस्ट" +msgstr "\"लंबाई / मान\" क्षेत्र में शामिल हो गए मान कॉपी और पेस्ट" #: export.php:73 msgid "Selected export type has to be saved in file!" From 16d2098efc8ef7ccc9d00f1624b817c869479b7d Mon Sep 17 00:00:00 2001 From: deadefy Date: Thu, 14 Jul 2011 21:29:50 +0200 Subject: [PATCH 494/960] Translation update done using Pootle. --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 0a7558082d..2894228979 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-14 21:28+0200\n" +"PO-Revision-Date: 2011-07-14 21:29+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" "Language: hi\n" @@ -841,7 +841,7 @@ msgstr "\"लंबाई / मान\" क्षेत्र में शा #: export.php:73 msgid "Selected export type has to be saved in file!" -msgstr "चयनित निर्यात टाइप को फाइल में सेव करने की आवश्यकता है!" +msgstr "चयनित निर्यात प्रकार को फाइल में संचित करने की आवश्यकता है!" #: export.php:163 export.php:188 export.php:670 #, php-format From 94b83dc3e9bc46d090c4f5250294f378bb9cf0c3 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 02:36:09 +0200 Subject: [PATCH 495/960] Escape column name in PMA_DBI_get_columns_full --- libraries/database_interface.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index ef2783d154..ca506000bd 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -769,7 +769,7 @@ function PMA_DBI_get_columns_full($database = null, $table = null, $sql = 'SHOW FULL COLUMNS FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table); if (null !== $column) { - $sql .= " LIKE '" . $column . "'"; + $sql .= " LIKE '" . PMA_sqlAddSlashes($column, true) . "'"; } $columns = PMA_DBI_fetch_result($sql, 'Field', null, $link); From f1bcbb500aa38ddd174480da8adee217ce7decfd Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 02:37:21 +0200 Subject: [PATCH 496/960] Use PMA_DBI_get_columns in latex export --- libraries/export/latex.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/libraries/export/latex.php b/libraries/export/latex.php index 96be53681f..0742109436 100644 --- a/libraries/export/latex.php +++ b/libraries/export/latex.php @@ -316,9 +316,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals * Gets fields properties */ PMA_DBI_select_db($db); - $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table); - $result = PMA_DBI_query($local_query); - $fields_cnt = PMA_DBI_num_rows($result); // Check if we can use Relations if ($do_relation && !empty($cfgRelation['relation'])) { @@ -374,8 +371,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals $mime_map = PMA_getMIME($db, $table, true); } - $local_buffer = PMA_texEscape($table); - // Table caption for first page and label if (isset($GLOBALS['latex_caption'])) { $buffer .= ' \\caption{'. PMA_expandUserString($GLOBALS['latex_structure_caption'], 'PMA_texEscape', array('table' => $table, 'database' => $db)) @@ -394,8 +389,8 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals return false; } - while ($row = PMA_DBI_fetch_assoc($result)) { - + $fields = PMA_DBI_get_columns($db, $table); + foreach ($fields as $row) { $type = $row['Type']; // reformat mysql query output // set or enum types: slashes single quotes inside options @@ -424,8 +419,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals if ($row['Null'] != 'NO') { $row['Default'] = 'NULL'; } - } else { - $row['Default'] = $row['Default']; } $field_name = $row['Field']; @@ -468,7 +461,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals return false; } } // end while - PMA_DBI_free_result($result); $buffer = ' \\end{longtable}' . $crlf; return PMA_exportOutputHandler($buffer); From 4ec9c3b09c0c716c008423efd52ea1202fe36679 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 21:13:47 +0200 Subject: [PATCH 497/960] Use PMA_DBI_get_columns in mediawiki export --- libraries/export/mediawiki.php | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/libraries/export/mediawiki.php b/libraries/export/mediawiki.php index 76c8b2a716..7599df96e5 100644 --- a/libraries/export/mediawiki.php +++ b/libraries/export/mediawiki.php @@ -95,18 +95,16 @@ function PMA_exportDBCreate($db) { * @access public */ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { - global $mediawiki_export_struct; - global $mediawiki_export_data; - - $result = PMA_DBI_fetch_result("SHOW COLUMNS FROM `" . $db . "`.`" . $table . "`"); - $row_cnt = count($result); + $columns = PMA_DBI_get_columns($db, $table); + $columns = array_values($columns); + $row_cnt = count($columns); $output = "{| cellpadding=\"10\" cellspacing=\"0\" border=\"1\" style=\"text-align:center;\"\n"; $output .= "|+'''" . $table . "'''\n"; $output .= "|- style=\"background:#ffdead;\"\n"; $output .= "! style=\"background:#ffffff\" | \n"; for ($i = 0; $i < $row_cnt; ++$i) { - $output .= " | " . $result[$i]['Field']; + $output .= " | " . $columns[$i]['Field']; if (($i + 1) != $row_cnt) { $output .= "\n"; } @@ -116,7 +114,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { $output .= "|- style=\"background:#f9f9f9;\"\n"; $output .= "! style=\"background:#f2f2f2\" | Type\n"; for ($i = 0; $i < $row_cnt; ++$i) { - $output .= " | " . $result[$i]['Type']; + $output .= " | " . $columns[$i]['Type']; if (($i + 1) != $row_cnt) { $output .= "\n"; } @@ -126,7 +124,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { $output .= "|- style=\"background:#f9f9f9;\"\n"; $output .= "! style=\"background:#f2f2f2\" | Null\n"; for ($i = 0; $i < $row_cnt; ++$i) { - $output .= " | " . $result[$i]['Null']; + $output .= " | " . $columns[$i]['Null']; if (($i + 1) != $row_cnt) { $output .= "\n"; } @@ -136,7 +134,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { $output .= "|- style=\"background:#f9f9f9;\"\n"; $output .= "! style=\"background:#f2f2f2\" | Default\n"; for ($i = 0; $i < $row_cnt; ++$i) { - $output .= " | " . $result[$i]['Default']; + $output .= " | " . $columns[$i]['Default']; if (($i + 1) != $row_cnt) { $output .= "\n"; } @@ -146,7 +144,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { $output .= "|- style=\"background:#f9f9f9;\"\n"; $output .= "! style=\"background:#f2f2f2\" | Extra\n"; for ($i = 0; $i < $row_cnt; ++$i) { - $output .= " | " . $result[$i]['Extra']; + $output .= " | " . $columns[$i]['Extra']; if (($i + 1) != $row_cnt) { $output .= "\n"; } From ff7116bf7eed70f8848cdc1ba1702c5cf1cc8125 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 21:28:41 +0200 Subject: [PATCH 498/960] Fix CodeGen export --- libraries/export/codegen.php | 76 +++++++++++++++++++++++------------- 1 file changed, 49 insertions(+), 27 deletions(-) diff --git a/libraries/export/codegen.php b/libraries/export/codegen.php index fb81cf9502..859c7a60dc 100644 --- a/libraries/export/codegen.php +++ b/libraries/export/codegen.php @@ -123,12 +123,12 @@ function PMA_exportDBCreate($db) */ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { - global $CG_FORMATS, $CG_HANDLERS; - $format = cgGetOption("format"); - $index = array_search($format, $CG_FORMATS); - if ($index >= 0) - return PMA_exportOutputHandler($CG_HANDLERS[$index]($db, $table, $crlf)); - return PMA_exportOutputHandler(sprintf("%s is not supported.", $format)); + global $CG_FORMATS, $CG_HANDLERS; + $format = cgGetOption("format"); + if (isset($CG_FORMATS[$format])) { + return PMA_exportOutputHandler($CG_HANDLERS[$format]($db, $table, $crlf)); + } + return PMA_exportOutputHandler(sprintf("%s is not supported.", $format)); } /** @@ -195,28 +195,50 @@ class TableProperty function getIndexName() { if (strlen($this->key)>0) - return "index=\"" . $this->name . "\""; + return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\""; return ""; } function isPK() { return $this->key=="PRI"; } - function format($pattern) + function formatCs($text) + { + $text=str_replace("#name#", cgMakeIdentifier($this->name, false), $text); + return $this->format($text); + } + function formatXml($text) + { + $text=str_replace("#name#", htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8'), $text); + $text=str_replace("#indexName#", $this->getIndexName(), $text); + return $this->format($text); + } + function format($text) { - $text=$pattern; - $text=str_replace("#name#", $this->name, $text); + $text=str_replace("#ucfirstName#", cgMakeIdentifier($this->name), $text); + $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text); + $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text); $text=str_replace("#type#", $this->getPureType(), $text); $text=str_replace("#notNull#", $this->isNotNull(), $text); $text=str_replace("#unique#", $this->isUnique(), $text); - $text=str_replace("#ucfirstName#", ucfirst($this->name), $text); - $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text); - $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text); - $text=str_replace("#indexName#", $this->getIndexName(), $text); return $text; } } + function cgMakeIdentifier($str, $ucfirst = true) + { + // remove unsafe characters + $str = preg_replace('/[^\p{L}\p{Nl}_]/u', '', $str); + // make sure first character is a letter or _ + if (!preg_match('/^\pL/u', $str)) { + $str = '_' . $str; + } + if ($ucfirst) { + $str = ucfirst($str); + } + return $str; + } + function handleNHibernateCSBody($db, $table, $crlf) { $lines=array(); @@ -230,31 +252,31 @@ class TableProperty $lines[] = "using System.Collections;"; $lines[] = "using System.Collections.Generic;"; $lines[] = "using System.Text;"; - $lines[] = "namespace ".ucfirst($db); + $lines[] = "namespace ".cgMakeIdentifier($db); $lines[] = "{"; - $lines[] = " #region ".ucfirst($table); - $lines[] = " public class ".ucfirst($table); + $lines[] = " #region ".cgMakeIdentifier($table); + $lines[] = " public class ".cgMakeIdentifier($table); $lines[] = " {"; $lines[] = " #region Member Variables"; foreach ($tableProperties as $tablePropertie) - $lines[] = $tablePropertie->format(" protected #dotNetPrimitiveType# _#name#;"); + $lines[] = $tablePropertie->formatCs(" protected #dotNetPrimitiveType# _#name#;"); $lines[] = " #endregion"; $lines[] = " #region Constructors"; - $lines[] = " public ".ucfirst($table)."() { }"; + $lines[] = " public ".cgMakeIdentifier($table)."() { }"; $temp = array(); foreach ($tableProperties as $tablePropertie) if (! $tablePropertie->isPK()) - $temp[] = $tablePropertie->format("#dotNetPrimitiveType# #name#"); - $lines[] = " public ".ucfirst($table)."(".implode(", ", $temp).")"; + $temp[] = $tablePropertie->formatCs("#dotNetPrimitiveType# #name#"); + $lines[] = " public ".cgMakeIdentifier($table)."(".implode(", ", $temp).")"; $lines[] = " {"; foreach ($tableProperties as $tablePropertie) if (! $tablePropertie->isPK()) - $lines[] = $tablePropertie->format(" this._#name#=#name#;"); + $lines[] = $tablePropertie->formatCs(" this._#name#=#name#;"); $lines[] = " }"; $lines[] = " #endregion"; $lines[] = " #region Public Properties"; foreach ($tableProperties as $tablePropertie) - $lines[] = $tablePropertie->format(" public virtual #dotNetPrimitiveType# _#ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }"); + $lines[] = $tablePropertie->formatCs(" public virtual #dotNetPrimitiveType# #ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }"); $lines[] = " #endregion"; $lines[] = " }"; $lines[] = " #endregion"; @@ -268,8 +290,8 @@ class TableProperty { $lines=array(); $lines[] = ""; - $lines[] = ""; - $lines[] = " "; + $lines[] = ""; + $lines[] = " "; $result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table))); if ($result) { @@ -279,9 +301,9 @@ class TableProperty foreach ($tableProperties as $tablePropertie) { if ($tablePropertie->isPK()) - $lines[] = $tablePropertie->format(" \n \n \n "); + $lines[] = $tablePropertie->formatXml(" \n \n \n "); else - $lines[] = $tablePropertie->format(" \n \n "); + $lines[] = $tablePropertie->formatXml(" \n \n "); } PMA_DBI_free_result($result); } From 8ff9a1bb7860ff30da83f1eca0860f81a767a637 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 21:30:47 +0200 Subject: [PATCH 499/960] Whitespace --- libraries/export/codegen.php | 294 +++++++++++++++++------------------ 1 file changed, 147 insertions(+), 147 deletions(-) diff --git a/libraries/export/codegen.php b/libraries/export/codegen.php index 859c7a60dc..ffed7d1577 100644 --- a/libraries/export/codegen.php +++ b/libraries/export/codegen.php @@ -138,70 +138,70 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) */ class TableProperty { - public $name; - public $type; - public $nullable; - public $key; - public $defaultValue; - public $ext; - function __construct($row) - { - $this->name = trim($row[0]); - $this->type = trim($row[1]); - $this->nullable = trim($row[2]); - $this->key = trim($row[3]); - $this->defaultValue = trim($row[4]); - $this->ext = trim($row[5]); - } - function getPureType() - { - $pos=strpos($this->type, "("); - if ($pos > 0) - return substr($this->type, 0, $pos); - return $this->type; - } - function isNotNull() - { - return $this->nullable == "NO" ? "true" : "false"; - } - function isUnique() - { - return $this->key == "PRI" || $this->key == "UNI" ? "true" : "false"; - } - function getDotNetPrimitiveType() - { - if (strpos($this->type, "int") === 0) return "int"; - if (strpos($this->type, "long") === 0) return "long"; - if (strpos($this->type, "char") === 0) return "string"; - if (strpos($this->type, "varchar") === 0) return "string"; - if (strpos($this->type, "text") === 0) return "string"; - if (strpos($this->type, "longtext") === 0) return "string"; - if (strpos($this->type, "tinyint") === 0) return "bool"; - if (strpos($this->type, "datetime") === 0) return "DateTime"; - return "unknown"; - } - function getDotNetObjectType() - { - if (strpos($this->type, "int") === 0) return "Int32"; - if (strpos($this->type, "long") === 0) return "Long"; - if (strpos($this->type, "char") === 0) return "String"; - if (strpos($this->type, "varchar") === 0) return "String"; - if (strpos($this->type, "text") === 0) return "String"; - if (strpos($this->type, "longtext") === 0) return "String"; - if (strpos($this->type, "tinyint") === 0) return "Boolean"; - if (strpos($this->type, "datetime") === 0) return "DateTime"; - return "Unknown"; - } - function getIndexName() - { - if (strlen($this->key)>0) - return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\""; - return ""; - } - function isPK() - { - return $this->key=="PRI"; - } + public $name; + public $type; + public $nullable; + public $key; + public $defaultValue; + public $ext; + function __construct($row) + { + $this->name = trim($row[0]); + $this->type = trim($row[1]); + $this->nullable = trim($row[2]); + $this->key = trim($row[3]); + $this->defaultValue = trim($row[4]); + $this->ext = trim($row[5]); + } + function getPureType() + { + $pos=strpos($this->type, "("); + if ($pos > 0) + return substr($this->type, 0, $pos); + return $this->type; + } + function isNotNull() + { + return $this->nullable == "NO" ? "true" : "false"; + } + function isUnique() + { + return $this->key == "PRI" || $this->key == "UNI" ? "true" : "false"; + } + function getDotNetPrimitiveType() + { + if (strpos($this->type, "int") === 0) return "int"; + if (strpos($this->type, "long") === 0) return "long"; + if (strpos($this->type, "char") === 0) return "string"; + if (strpos($this->type, "varchar") === 0) return "string"; + if (strpos($this->type, "text") === 0) return "string"; + if (strpos($this->type, "longtext") === 0) return "string"; + if (strpos($this->type, "tinyint") === 0) return "bool"; + if (strpos($this->type, "datetime") === 0) return "DateTime"; + return "unknown"; + } + function getDotNetObjectType() + { + if (strpos($this->type, "int") === 0) return "Int32"; + if (strpos($this->type, "long") === 0) return "Long"; + if (strpos($this->type, "char") === 0) return "String"; + if (strpos($this->type, "varchar") === 0) return "String"; + if (strpos($this->type, "text") === 0) return "String"; + if (strpos($this->type, "longtext") === 0) return "String"; + if (strpos($this->type, "tinyint") === 0) return "Boolean"; + if (strpos($this->type, "datetime") === 0) return "DateTime"; + return "Unknown"; + } + function getIndexName() + { + if (strlen($this->key)>0) + return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\""; + return ""; + } + function isPK() + { + return $this->key=="PRI"; + } function formatCs($text) { $text=str_replace("#name#", cgMakeIdentifier($this->name, false), $text); @@ -213,16 +213,16 @@ class TableProperty $text=str_replace("#indexName#", $this->getIndexName(), $text); return $this->format($text); } - function format($text) - { + function format($text) + { $text=str_replace("#ucfirstName#", cgMakeIdentifier($this->name), $text); $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text); $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text); - $text=str_replace("#type#", $this->getPureType(), $text); - $text=str_replace("#notNull#", $this->isNotNull(), $text); - $text=str_replace("#unique#", $this->isUnique(), $text); - return $text; - } + $text=str_replace("#type#", $this->getPureType(), $text); + $text=str_replace("#notNull#", $this->isNotNull(), $text); + $text=str_replace("#unique#", $this->isUnique(), $text); + return $text; + } } function cgMakeIdentifier($str, $ucfirst = true) @@ -239,83 +239,83 @@ class TableProperty return $str; } - function handleNHibernateCSBody($db, $table, $crlf) - { - $lines=array(); - $result=PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table))); - if ($result) - { - $tableProperties=array(); - while ($row = PMA_DBI_fetch_row($result)) - $tableProperties[] = new TableProperty($row); - $lines[] = "using System;"; - $lines[] = "using System.Collections;"; - $lines[] = "using System.Collections.Generic;"; - $lines[] = "using System.Text;"; - $lines[] = "namespace ".cgMakeIdentifier($db); - $lines[] = "{"; - $lines[] = " #region ".cgMakeIdentifier($table); - $lines[] = " public class ".cgMakeIdentifier($table); - $lines[] = " {"; - $lines[] = " #region Member Variables"; - foreach ($tableProperties as $tablePropertie) - $lines[] = $tablePropertie->formatCs(" protected #dotNetPrimitiveType# _#name#;"); - $lines[] = " #endregion"; - $lines[] = " #region Constructors"; - $lines[] = " public ".cgMakeIdentifier($table)."() { }"; - $temp = array(); - foreach ($tableProperties as $tablePropertie) - if (! $tablePropertie->isPK()) - $temp[] = $tablePropertie->formatCs("#dotNetPrimitiveType# #name#"); - $lines[] = " public ".cgMakeIdentifier($table)."(".implode(", ", $temp).")"; - $lines[] = " {"; - foreach ($tableProperties as $tablePropertie) - if (! $tablePropertie->isPK()) - $lines[] = $tablePropertie->formatCs(" this._#name#=#name#;"); - $lines[] = " }"; - $lines[] = " #endregion"; - $lines[] = " #region Public Properties"; - foreach ($tableProperties as $tablePropertie) - $lines[] = $tablePropertie->formatCs(" public virtual #dotNetPrimitiveType# #ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }"); - $lines[] = " #endregion"; - $lines[] = " }"; - $lines[] = " #endregion"; - $lines[] = "}"; - PMA_DBI_free_result($result); - } - return implode("\n", $lines); - } + function handleNHibernateCSBody($db, $table, $crlf) + { + $lines=array(); + $result=PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table))); + if ($result) + { + $tableProperties=array(); + while ($row = PMA_DBI_fetch_row($result)) + $tableProperties[] = new TableProperty($row); + $lines[] = "using System;"; + $lines[] = "using System.Collections;"; + $lines[] = "using System.Collections.Generic;"; + $lines[] = "using System.Text;"; + $lines[] = "namespace ".cgMakeIdentifier($db); + $lines[] = "{"; + $lines[] = " #region ".cgMakeIdentifier($table); + $lines[] = " public class ".cgMakeIdentifier($table); + $lines[] = " {"; + $lines[] = " #region Member Variables"; + foreach ($tableProperties as $tablePropertie) + $lines[] = $tablePropertie->formatCs(" protected #dotNetPrimitiveType# _#name#;"); + $lines[] = " #endregion"; + $lines[] = " #region Constructors"; + $lines[] = " public ".cgMakeIdentifier($table)."() { }"; + $temp = array(); + foreach ($tableProperties as $tablePropertie) + if (! $tablePropertie->isPK()) + $temp[] = $tablePropertie->formatCs("#dotNetPrimitiveType# #name#"); + $lines[] = " public ".cgMakeIdentifier($table)."(".implode(", ", $temp).")"; + $lines[] = " {"; + foreach ($tableProperties as $tablePropertie) + if (! $tablePropertie->isPK()) + $lines[] = $tablePropertie->formatCs(" this._#name#=#name#;"); + $lines[] = " }"; + $lines[] = " #endregion"; + $lines[] = " #region Public Properties"; + foreach ($tableProperties as $tablePropertie) + $lines[] = $tablePropertie->formatCs(" public virtual #dotNetPrimitiveType# #ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }"); + $lines[] = " #endregion"; + $lines[] = " }"; + $lines[] = " #endregion"; + $lines[] = "}"; + PMA_DBI_free_result($result); + } + return implode("\n", $lines); + } - function handleNHibernateXMLBody($db, $table, $crlf) - { - $lines=array(); - $lines[] = ""; - $lines[] = ""; - $lines[] = " "; - $result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table))); - if ($result) - { - $tableProperties = array(); - while ($row = PMA_DBI_fetch_row($result)) - $tableProperties[] = new TableProperty($row); - foreach ($tableProperties as $tablePropertie) - { - if ($tablePropertie->isPK()) - $lines[] = $tablePropertie->formatXml(" \n \n \n "); - else - $lines[] = $tablePropertie->formatXml(" \n \n "); - } - PMA_DBI_free_result($result); - } - $lines[]=" "; - $lines[]=""; - return implode("\n", $lines); - } + function handleNHibernateXMLBody($db, $table, $crlf) + { + $lines=array(); + $lines[] = ""; + $lines[] = ""; + $lines[] = " "; + $result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table))); + if ($result) + { + $tableProperties = array(); + while ($row = PMA_DBI_fetch_row($result)) + $tableProperties[] = new TableProperty($row); + foreach ($tableProperties as $tablePropertie) + { + if ($tablePropertie->isPK()) + $lines[] = $tablePropertie->formatXml(" \n \n \n "); + else + $lines[] = $tablePropertie->formatXml(" \n \n "); + } + PMA_DBI_free_result($result); + } + $lines[]=" "; + $lines[]=""; + return implode("\n", $lines); + } - function cgGetOption($optionName) - { - global $what; - return $GLOBALS[$what . "_" . $optionName]; - } + function cgGetOption($optionName) + { + global $what; + return $GLOBALS[$what . "_" . $optionName]; + } } ?> From bdbb88871356bb2954c74e418fc2c468b34aab3e Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 22:27:56 +0200 Subject: [PATCH 500/960] Use PMA_DBI_get_columns in odt export --- libraries/export/odt.php | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/libraries/export/odt.php b/libraries/export/odt.php index b640ca34ae..f2b13a04ee 100644 --- a/libraries/export/odt.php +++ b/libraries/export/odt.php @@ -251,9 +251,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals * Gets fields properties */ PMA_DBI_select_db($db); - $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table); - $result = PMA_DBI_query($local_query); - $fields_cnt = PMA_DBI_num_rows($result); // Check if we can use Relations if ($do_relation && !empty($cfgRelation['relation'])) { @@ -318,16 +315,17 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals } $GLOBALS['odt_buffer'] .= ''; - while ($row = PMA_DBI_fetch_assoc($result)) { + $columns = PMA_DBI_get_columns($db, $table); + foreach ($columns as $column) { + $field_name = $column['Field']; $GLOBALS['odt_buffer'] .= ''; $GLOBALS['odt_buffer'] .= '' - . '' . htmlspecialchars($row['Field']) . '' + . '' . htmlspecialchars($field_name) . '' . ''; // reformat mysql query output // set or enum types: slashes single quotes inside options - $field_name = $row['Field']; - $type = $row['Type']; + $type = $column['Type']; if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) { $tmp[2] = substr(preg_replace('/([^,])\'\'/', '\\1\\\'', ',' . $tmp[2]), 1); $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')'; @@ -345,27 +343,27 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals $type = ' '; } - $binary = preg_match('/BINARY/i', $row['Type']); - $unsigned = preg_match('/UNSIGNED/i', $row['Type']); - $zerofill = preg_match('/ZEROFILL/i', $row['Type']); + $binary = preg_match('/BINARY/i', $column['Type']); + $unsigned = preg_match('/UNSIGNED/i', $column['Type']); + $zerofill = preg_match('/ZEROFILL/i', $column['Type']); } $GLOBALS['odt_buffer'] .= '' . '' . htmlspecialchars($type) . '' . ''; - if (!isset($row['Default'])) { - if ($row['Null'] != 'NO') { - $row['Default'] = 'NULL'; + if (!isset($column['Default'])) { + if ($column['Null'] != 'NO') { + $column['Default'] = 'NULL'; } else { - $row['Default'] = ''; + $column['Default'] = ''; } } else { - $row['Default'] = $row['Default']; + $column['Default'] = $column['Default']; } $GLOBALS['odt_buffer'] .= '' - . '' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')) . '' + . '' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes')) . '' . ''; $GLOBALS['odt_buffer'] .= '' - . '' . htmlspecialchars($row['Default']) . '' + . '' . htmlspecialchars($column['Default']) . '' . ''; if ($do_relation && $have_rel) { @@ -399,7 +397,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals } $GLOBALS['odt_buffer'] .= ''; } // end while - PMA_DBI_free_result($result); $GLOBALS['odt_buffer'] .= ''; return true; From 291e3b6a9f1024b05306d1c06782a7ef76e5827a Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 22:32:04 +0200 Subject: [PATCH 501/960] Use PMA_DBI_get_columns in texytext export --- libraries/export/texytext.php | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/libraries/export/texytext.php b/libraries/export/texytext.php index ceffe4d018..629431191a 100644 --- a/libraries/export/texytext.php +++ b/libraries/export/texytext.php @@ -195,9 +195,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals * Gets fields properties */ PMA_DBI_select_db($db); - $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table); - $result = PMA_DBI_query($local_query); - $fields_cnt = PMA_DBI_num_rows($result); // Check if we can use Relations if ($do_relation && ! empty($cfgRelation['relation'])) { @@ -251,10 +248,11 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals return false; } - while ($row = PMA_DBI_fetch_assoc($result)) { + $columns = PMA_DBI_get_columns($db, $table); + foreach ($columns as $column) { $text_output = ''; - $type = $row['Type']; + $type = $column['Type']; // reformat mysql query output // set or enum types: slashes single quotes inside options if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) { @@ -274,9 +272,9 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals $type = ' '; } - $binary = preg_match('/BINARY/i', $row['Type']); - $unsigned = preg_match('/UNSIGNED/i', $row['Type']); - $zerofill = preg_match('/ZEROFILL/i', $row['Type']); + $binary = preg_match('/BINARY/i', $column['Type']); + $unsigned = preg_match('/UNSIGNED/i', $column['Type']); + $zerofill = preg_match('/ZEROFILL/i', $column['Type']); } $attribute = ' '; if ($binary) { @@ -288,30 +286,28 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals if ($zerofill) { $attribute = 'UNSIGNED ZEROFILL'; } - if (! isset($row['Default'])) { - if ($row['Null'] != 'NO') { - $row['Default'] = 'NULL'; + if (! isset($column['Default'])) { + if ($column['Null'] != 'NO') { + $column['Default'] = 'NULL'; } - } else { - $row['Default'] = $row['Default']; } $fmt_pre = ''; $fmt_post = ''; - if (in_array($row['Field'], $unique_keys)) { + if (in_array($column['Field'], $unique_keys)) { $fmt_pre = '**' . $fmt_pre; $fmt_post = $fmt_post . '**'; } - if ($row['Key']=='PRI') { + if ($column['Key']=='PRI') { $fmt_pre = '//' . $fmt_pre; $fmt_post = $fmt_post . '//'; } - $text_output .= '|' . $fmt_pre . htmlspecialchars($row['Field']) . $fmt_post; + $text_output .= '|' . $fmt_pre . htmlspecialchars($column['Field']) . $fmt_post; $text_output .= '|' . htmlspecialchars($type); - $text_output .= '|' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')); - $text_output .= '|' . htmlspecialchars(isset($row['Default']) ? $row['Default'] : ''); + $text_output .= '|' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes')); + $text_output .= '|' . htmlspecialchars(isset($column['Default']) ? $column['Default'] : ''); - $field_name = $row['Field']; + $field_name = $column['Field']; if ($do_relation && $have_rel) { $text_output .= '|' . (isset($res_rel[$field_name]) ? htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : ''); @@ -329,7 +325,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals return false; } } // end while - PMA_DBI_free_result($result); return true; } From 6d0f28b425dc9f975543301c4b194dd6fbdd494d Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 13 Jul 2011 23:40:58 +0200 Subject: [PATCH 502/960] Improve readability of XML export code --- libraries/export/xml.php | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/libraries/export/xml.php b/libraries/export/xml.php index 9bafb0998d..9fd2a0202a 100644 --- a/libraries/export/xml.php +++ b/libraries/export/xml.php @@ -82,13 +82,12 @@ function PMA_exportFooter() { function PMA_exportHeader() { global $crlf; global $cfg; - global $what; global $db; global $table; global $tables; - $export_struct = isset($GLOBALS[$what . '_export_struc']) ? true : false; - $export_data = isset($GLOBALS[$what . '_export_contents']) ? true : false; + $export_struct = isset($GLOBALS['xml_export_struc']) ? true : false; + $export_data = isset($GLOBALS['xml_export_contents']) ? true : false; if ($GLOBALS['output_charset_conversion']) { $charset = $GLOBALS['charset_of_file']; @@ -142,11 +141,11 @@ function PMA_exportHeader() { $type = 'table'; } - if ($is_view && ! isset($GLOBALS[$what . '_export_views'])) { + if ($is_view && ! isset($GLOBALS['xml_export_views'])) { continue; } - if (! $is_view && ! isset($GLOBALS[$what . '_export_tables'])) { + if (! $is_view && ! isset($GLOBALS['xml_export_tables'])) { continue; } @@ -158,7 +157,7 @@ function PMA_exportHeader() { $head .= $tbl . ';' . $crlf; $head .= ' ' . $crlf; - if (isset($GLOBALS[$what . '_export_triggers']) && $GLOBALS[$what . '_export_triggers']) { + if (isset($GLOBALS['xml_export_triggers']) && $GLOBALS['xml_export_triggers']) { // Export triggers $triggers = PMA_DBI_get_triggers($db, $table); if ($triggers) { @@ -181,7 +180,7 @@ function PMA_exportHeader() { } } - if (isset($GLOBALS[$what . '_export_functions']) && $GLOBALS[$what . '_export_functions']) { + if (isset($GLOBALS['xml_export_functions']) && $GLOBALS['xml_export_functions']) { // Export functions $functions = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); if ($functions) { @@ -204,7 +203,7 @@ function PMA_exportHeader() { } } - if (isset($GLOBALS[$what . '_export_procedures']) && $GLOBALS[$what . '_export_procedures']) { + if (isset($GLOBALS['xml_export_procedures']) && $GLOBALS['xml_export_procedures']) { // Export procedures $procedures = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); if ($procedures) { @@ -251,9 +250,8 @@ function PMA_exportHeader() { */ function PMA_exportDBHeader($db) { global $crlf; - global $what; - if (isset($GLOBALS[$what . '_export_contents']) && $GLOBALS[$what . '_export_contents']) { + if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) { $head = ' ' . $crlf @@ -278,9 +276,8 @@ function PMA_exportDBHeader($db) { */ function PMA_exportDBFooter($db) { global $crlf; - global $what; - if (isset($GLOBALS[$what . '_export_contents']) && $GLOBALS[$what . '_export_contents']) { + if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) { return PMA_exportOutputHandler(' ' . $crlf); } else @@ -317,9 +314,8 @@ function PMA_exportDBCreate($db) { * @access public */ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { - global $what; - - if (isset($GLOBALS[$what . '_export_contents']) && $GLOBALS[$what . '_export_contents']) { + + if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) { $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); $columns_cnt = PMA_DBI_num_fields($result); From 65d962d39703b412dc482be47e092f97933eb8e0 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 13 Jul 2011 23:42:29 +0200 Subject: [PATCH 503/960] Better escaping in XML export Note: it's still incorrect --- libraries/export/xml.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libraries/export/xml.php b/libraries/export/xml.php index 9fd2a0202a..cc6fe957a8 100644 --- a/libraries/export/xml.php +++ b/libraries/export/xml.php @@ -122,7 +122,7 @@ function PMA_exportHeader() { $head .= ' - Structure schemas' . $crlf; $head .= ' -->' . $crlf; $head .= ' ' . $crlf; - $head .= ' ' . $crlf; + $head .= ' ' . $crlf; if (count($tables) == 0) { $tables[] = $table; @@ -319,6 +319,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED); $columns_cnt = PMA_DBI_num_fields($result); + $columns = array(); for ($i = 0; $i < $columns_cnt; $i++) { $columns[$i] = stripslashes(str_replace(' ', '_', PMA_DBI_field_name($result, $i))); } @@ -336,7 +337,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { if (!isset($record[$i]) || is_null($record[$i])) { $record[$i] = 'NULL'; } - $buffer .= ' ' . htmlspecialchars((string)$record[$i]) + $buffer .= ' ' . htmlspecialchars((string)$record[$i]) . '' . $crlf; } $buffer .= ' ' . $crlf; From 70083ad58346ff7190bcd8e56b63ab92f6abfa40 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 00:05:58 +0200 Subject: [PATCH 504/960] Fix XML export so it actually can export table structure More escaping fixes --- libraries/export/xml.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/libraries/export/xml.php b/libraries/export/xml.php index cc6fe957a8..83b51ee4c3 100644 --- a/libraries/export/xml.php +++ b/libraries/export/xml.php @@ -86,7 +86,9 @@ function PMA_exportHeader() { global $table; global $tables; - $export_struct = isset($GLOBALS['xml_export_struc']) ? true : false; + $export_struct = isset($GLOBALS['xml_export_functions']) || isset($GLOBALS['xml_export_procedures']) + || isset($GLOBALS['xml_export_tables']) || isset($GLOBALS['xml_export_triggers']) + || isset($GLOBALS['xml_export_views']); $export_data = isset($GLOBALS['xml_export_contents']) ? true : false; if ($GLOBALS['output_charset_conversion']) { @@ -151,7 +153,7 @@ function PMA_exportHeader() { $head .= ' ' . $crlf; - $tbl = " " . $tbl; + $tbl = " " . htmlspecialchars($tbl); $tbl = str_replace("\n", "\n ", $tbl); $head .= $tbl . ';' . $crlf; @@ -167,7 +169,7 @@ function PMA_exportHeader() { // Do some formatting $code = substr(rtrim($code), 0, -3); - $code = " " . $code; + $code = " " . htmlspecialchars($code); $code = str_replace("\n", "\n ", $code); $head .= $code . $crlf; @@ -190,7 +192,7 @@ function PMA_exportHeader() { // Do some formatting $sql = PMA_DBI_get_definition($db, 'FUNCTION', $function); $sql = rtrim($sql); - $sql = " " . $sql; + $sql = " " . htmlspecialchars($sql); $sql = str_replace("\n", "\n ", $sql); $head .= $sql . $crlf; @@ -213,7 +215,7 @@ function PMA_exportHeader() { // Do some formatting $sql = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure); $sql = rtrim($sql); - $sql = " " . $sql; + $sql = " " . htmlspecialchars($sql); $sql = str_replace("\n", "\n ", $sql); $head .= $sql . $crlf; @@ -255,7 +257,7 @@ function PMA_exportDBHeader($db) { $head = ' ' . $crlf - . ' ' . $crlf; + . ' ' . $crlf; return PMA_exportOutputHandler($head); } From 2cc22c8aba33ad12b3d98905d6dfc29f7c878837 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 14 Jul 2011 21:28:41 +0200 Subject: [PATCH 505/960] Fix CodeGen export --- libraries/export/codegen.php | 76 +++++++++++++++++++++++------------- 1 file changed, 49 insertions(+), 27 deletions(-) diff --git a/libraries/export/codegen.php b/libraries/export/codegen.php index 8e36f408f6..7160122e97 100644 --- a/libraries/export/codegen.php +++ b/libraries/export/codegen.php @@ -138,12 +138,12 @@ function PMA_exportDBCreate($db) */ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { - global $CG_FORMATS, $CG_HANDLERS; - $format = cgGetOption("format"); - $index = array_search($format, $CG_FORMATS); - if ($index >= 0) - return PMA_exportOutputHandler($CG_HANDLERS[$index]($db, $table, $crlf)); - return PMA_exportOutputHandler(sprintf("%s is not supported.", $format)); + global $CG_FORMATS, $CG_HANDLERS; + $format = cgGetOption("format"); + if (isset($CG_FORMATS[$format])) { + return PMA_exportOutputHandler($CG_HANDLERS[$format]($db, $table, $crlf)); + } + return PMA_exportOutputHandler(sprintf("%s is not supported.", $format)); } /** @@ -209,28 +209,50 @@ class TableProperty function getIndexName() { if (strlen($this->key)>0) - return "index=\"" . $this->name . "\""; + return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\""; return ""; } function isPK() { return $this->key=="PRI"; } - function format($pattern) + function formatCs($text) + { + $text=str_replace("#name#", cgMakeIdentifier($this->name, false), $text); + return $this->format($text); + } + function formatXml($text) + { + $text=str_replace("#name#", htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8'), $text); + $text=str_replace("#indexName#", $this->getIndexName(), $text); + return $this->format($text); + } + function format($text) { - $text=$pattern; - $text=str_replace("#name#", $this->name, $text); + $text=str_replace("#ucfirstName#", cgMakeIdentifier($this->name), $text); + $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text); + $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text); $text=str_replace("#type#", $this->getPureType(), $text); $text=str_replace("#notNull#", $this->isNotNull(), $text); $text=str_replace("#unique#", $this->isUnique(), $text); - $text=str_replace("#ucfirstName#", ucfirst($this->name), $text); - $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text); - $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text); - $text=str_replace("#indexName#", $this->getIndexName(), $text); return $text; } } + function cgMakeIdentifier($str, $ucfirst = true) + { + // remove unsafe characters + $str = preg_replace('/[^\p{L}\p{Nl}_]/u', '', $str); + // make sure first character is a letter or _ + if (!preg_match('/^\pL/u', $str)) { + $str = '_' . $str; + } + if ($ucfirst) { + $str = ucfirst($str); + } + return $str; + } + function handleNHibernateCSBody($db, $table, $crlf) { $lines=array(); @@ -244,31 +266,31 @@ class TableProperty $lines[] = "using System.Collections;"; $lines[] = "using System.Collections.Generic;"; $lines[] = "using System.Text;"; - $lines[] = "namespace ".ucfirst($db); + $lines[] = "namespace ".cgMakeIdentifier($db); $lines[] = "{"; - $lines[] = " #region ".ucfirst($table); - $lines[] = " public class ".ucfirst($table); + $lines[] = " #region ".cgMakeIdentifier($table); + $lines[] = " public class ".cgMakeIdentifier($table); $lines[] = " {"; $lines[] = " #region Member Variables"; foreach ($tableProperties as $tablePropertie) - $lines[] = $tablePropertie->format(" protected #dotNetPrimitiveType# _#name#;"); + $lines[] = $tablePropertie->formatCs(" protected #dotNetPrimitiveType# _#name#;"); $lines[] = " #endregion"; $lines[] = " #region Constructors"; - $lines[] = " public ".ucfirst($table)."() { }"; + $lines[] = " public ".cgMakeIdentifier($table)."() { }"; $temp = array(); foreach ($tableProperties as $tablePropertie) if (! $tablePropertie->isPK()) - $temp[] = $tablePropertie->format("#dotNetPrimitiveType# #name#"); - $lines[] = " public ".ucfirst($table)."(".implode(", ", $temp).")"; + $temp[] = $tablePropertie->formatCs("#dotNetPrimitiveType# #name#"); + $lines[] = " public ".cgMakeIdentifier($table)."(".implode(", ", $temp).")"; $lines[] = " {"; foreach ($tableProperties as $tablePropertie) if (! $tablePropertie->isPK()) - $lines[] = $tablePropertie->format(" this._#name#=#name#;"); + $lines[] = $tablePropertie->formatCs(" this._#name#=#name#;"); $lines[] = " }"; $lines[] = " #endregion"; $lines[] = " #region Public Properties"; foreach ($tableProperties as $tablePropertie) - $lines[] = $tablePropertie->format(" public virtual #dotNetPrimitiveType# _#ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }"); + $lines[] = $tablePropertie->formatCs(" public virtual #dotNetPrimitiveType# #ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }"); $lines[] = " #endregion"; $lines[] = " }"; $lines[] = " #endregion"; @@ -282,8 +304,8 @@ class TableProperty { $lines=array(); $lines[] = ""; - $lines[] = ""; - $lines[] = " "; + $lines[] = ""; + $lines[] = " "; $result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table))); if ($result) { @@ -293,9 +315,9 @@ class TableProperty foreach ($tableProperties as $tablePropertie) { if ($tablePropertie->isPK()) - $lines[] = $tablePropertie->format(" \n \n \n "); + $lines[] = $tablePropertie->formatXml(" \n \n \n "); else - $lines[] = $tablePropertie->format(" \n \n "); + $lines[] = $tablePropertie->formatXml(" \n \n "); } PMA_DBI_free_result($result); } From fb90e02949069b0b0eeda60a1052fed59dea6343 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:29:15 +0200 Subject: [PATCH 506/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index d74c86a9be..3739c8847e 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-13 19:47+0200\n" +"PO-Revision-Date: 2011-07-15 00:29+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2870,7 +2870,7 @@ msgstr "Ensoc'hadennoù gant dale" #: libraries/config/messages.inc.php:125 libraries/export/sql.php:79 msgid "Disable foreign key checks" -msgstr "" +msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" #: libraries/config/messages.inc.php:128 msgid "Use hexadecimal for BLOB" From 57fb3a579eabc2f845ca4a03d0527bb8110b7123 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:31:06 +0200 Subject: [PATCH 507/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 3739c8847e..38fd8256f6 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-15 00:29+0200\n" +"PO-Revision-Date: 2011-07-15 00:31+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2874,7 +2874,7 @@ msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" #: libraries/config/messages.inc.php:128 msgid "Use hexadecimal for BLOB" -msgstr "" +msgstr "Implijout an eizhdekvedennad evit BLOB" #: libraries/config/messages.inc.php:130 msgid "Use ignore inserts" From 1e9de583e2934d7c89cee48b3607b660c5f4087c Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:31:45 +0200 Subject: [PATCH 508/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 38fd8256f6..6fc33d55be 100644 --- a/po/br.po +++ b/po/br.po @@ -2886,7 +2886,7 @@ msgstr "" #: libraries/config/messages.inc.php:133 libraries/export/sql.php:268 msgid "Maximal length of created query" -msgstr "" +msgstr "Ment vrasañ ar reked krouet" #: libraries/config/messages.inc.php:138 msgid "Export type" From 129054c917b0ab9c4131010d5d28820a56da22f7 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:32:10 +0200 Subject: [PATCH 509/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 6fc33d55be..bfda7dcadf 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-15 00:31+0200\n" +"PO-Revision-Date: 2011-07-15 00:32+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2882,7 +2882,7 @@ msgstr "" #: libraries/config/messages.inc.php:132 msgid "Syntax to use when inserting data" -msgstr "" +msgstr "Ereadur d'ober gantañ pa vez ensoc'het roadennoù" #: libraries/config/messages.inc.php:133 libraries/export/sql.php:268 msgid "Maximal length of created query" From 0d758ef9a964b6058fad3cd81bdaa7cb8a71719a Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:32:30 +0200 Subject: [PATCH 510/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index bfda7dcadf..17e006699d 100644 --- a/po/br.po +++ b/po/br.po @@ -2890,7 +2890,7 @@ msgstr "Ment vrasañ ar reked krouet" #: libraries/config/messages.inc.php:138 msgid "Export type" -msgstr "" +msgstr "Seurt ezpozrhiadenn" #: libraries/config/messages.inc.php:139 libraries/export/sql.php:71 msgid "Enclose export in a transaction" From d3d879d3e7ec1807de2898469f8e7131b2d7781e Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:32:42 +0200 Subject: [PATCH 511/960] Translation update done using Pootle. --- po/br.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/br.po b/po/br.po index 17e006699d..97ab28c9a8 100644 --- a/po/br.po +++ b/po/br.po @@ -2890,7 +2890,7 @@ msgstr "Ment vrasañ ar reked krouet" #: libraries/config/messages.inc.php:138 msgid "Export type" -msgstr "Seurt ezpozrhiadenn" +msgstr "Seurt ezporzhiadenn" #: libraries/config/messages.inc.php:139 libraries/export/sql.php:71 msgid "Enclose export in a transaction" From ee151d1d174af4a87b5c6e164fa633cf70499d27 Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:33:49 +0200 Subject: [PATCH 512/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index 97ab28c9a8..c041e9d4f0 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-15 00:32+0200\n" +"PO-Revision-Date: 2011-07-15 00:33+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2894,7 +2894,7 @@ msgstr "Seurt ezporzhiadenn" #: libraries/config/messages.inc.php:139 libraries/export/sql.php:71 msgid "Enclose export in a transaction" -msgstr "" +msgstr "Enklozañ an ezporzhiadenn en un treuzgread" #: libraries/config/messages.inc.php:140 msgid "Export time in UTC" From 10e2ecf71d08625446238eb435306fe2b4c1ccdc Mon Sep 17 00:00:00 2001 From: "fulup.jakez" Date: Fri, 15 Jul 2011 00:34:21 +0200 Subject: [PATCH 513/960] Translation update done using Pootle. --- po/br.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/br.po b/po/br.po index c041e9d4f0..2e48128ab4 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-14 18:39+0200\n" -"PO-Revision-Date: 2011-07-15 00:33+0200\n" +"PO-Revision-Date: 2011-07-15 00:34+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -2898,7 +2898,7 @@ msgstr "Enklozañ an ezporzhiadenn en un treuzgread" #: libraries/config/messages.inc.php:140 msgid "Export time in UTC" -msgstr "" +msgstr "Ezporzhiañ an eur er furmad UTC" #: libraries/config/messages.inc.php:148 msgid "Force secured connection while using phpMyAdmin" From 2dfd913e2b9ef792224fba5e37306e58a464ba4e Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Fri, 15 Jul 2011 10:21:42 +0700 Subject: [PATCH 514/960] Fix bug in qTip when updating content using qTip API in IE --- js/jquery/jquery.qtip-1.0.0.min.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery/jquery.qtip-1.0.0.min.js b/js/jquery/jquery.qtip-1.0.0.min.js index 2d1b70264d..208a6d1ee9 100644 --- a/js/jquery/jquery.qtip-1.0.0.min.js +++ b/js/jquery/jquery.qtip-1.0.0.min.js @@ -12,4 +12,4 @@ * Released: Tuesday 12th May, 2009 - 00:00 * Debug: jquery.qtip.debug.js */ -(function(f){f.fn.qtip=function(B,u){var y,t,A,s,x,w,v,z;if(typeof B=="string"){if(typeof f(this).data("qtip")!=="object"){f.fn.qtip.log.error.call(self,1,f.fn.qtip.constants.NO_TOOLTIP_PRESENT,false)}if(B=="api"){return f(this).data("qtip").interfaces[f(this).data("qtip").current]}else{if(B=="interfaces"){return f(this).data("qtip").interfaces}}}else{if(!B){B={}}if(typeof B.content!=="object"||(B.content.jquery&&B.content.length>0)){B.content={text:B.content}}if(typeof B.content.title!=="object"){B.content.title={text:B.content.title}}if(typeof B.position!=="object"){B.position={corner:B.position}}if(typeof B.position.corner!=="object"){B.position.corner={target:B.position.corner,tooltip:B.position.corner}}if(typeof B.show!=="object"){B.show={when:B.show}}if(typeof B.show.when!=="object"){B.show.when={event:B.show.when}}if(typeof B.show.effect!=="object"){B.show.effect={type:B.show.effect}}if(typeof B.hide!=="object"){B.hide={when:B.hide}}if(typeof B.hide.when!=="object"){B.hide.when={event:B.hide.when}}if(typeof B.hide.effect!=="object"){B.hide.effect={type:B.hide.effect}}if(typeof B.style!=="object"){B.style={name:B.style}}B.style=c(B.style);s=f.extend(true,{},f.fn.qtip.defaults,B);s.style=a.call({options:s},s.style);s.user=f.extend(true,{},B)}return f(this).each(function(){if(typeof B=="string"){w=B.toLowerCase();A=f(this).qtip("interfaces");if(typeof A=="object"){if(u===true&&w=="destroy"){while(A.length>0){A[A.length-1].destroy()}}else{if(u!==true){A=[f(this).qtip("api")]}for(y=0;y0))}if(typeof s.options.show.solo=="object"){z=f(s.options.show.solo)}else{if(s.options.show.solo===true){z=f("div.qtip").not(s.elements.tooltip)}}if(z){z.each(function(){if(f(this).qtip("api").status.rendered===true){f(this).qtip("api").hide()}})}if(typeof s.options.show.effect.type=="function"){s.options.show.effect.type.call(s.elements.tooltip,s.options.show.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.show.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeIn(s.options.show.effect.length,w);break;case"slide":s.elements.tooltip.slideDown(s.options.show.effect.length,function(){w();if(s.options.position.type!=="static"){s.updatePosition(y,true)}});break;case"grow":s.elements.tooltip.show(s.options.show.effect.length,w);break;default:s.elements.tooltip.show(null,w);break}s.elements.tooltip.addClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_SHOWN,"show")},hide:function(y){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"hide")}else{if(s.elements.tooltip.css("display")==="none"){return s}}clearTimeout(s.timers.show);s.elements.tooltip.stop(true,false);x=s.beforeHide.call(s,y);if(x===false){return s}function w(){s.onHide.call(s,y)}s.cache.toggle=0;if(typeof s.options.hide.effect.type=="function"){s.options.hide.effect.type.call(s.elements.tooltip,s.options.hide.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.hide.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeOut(s.options.hide.effect.length,w);break;case"slide":s.elements.tooltip.slideUp(s.options.hide.effect.length,w);break;case"grow":s.elements.tooltip.hide(s.options.hide.effect.length,w);break;default:s.elements.tooltip.hide(null,w);break}s.elements.tooltip.removeClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_HIDDEN,"hide")},updatePosition:function(w,x){var C,G,L,J,H,E,y,I,B,D,K,A,F,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updatePosition")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_POSITION_STATIC,"updatePosition")}}G={position:{left:0,top:0},dimensions:{height:0,width:0},corner:s.options.position.corner.target};L={position:s.getPosition(),dimensions:s.getDimensions(),corner:s.options.position.corner.tooltip};if(s.options.position.target!=="mouse"){if(s.options.position.target.get(0).nodeName.toLowerCase()=="area"){J=s.options.position.target.attr("coords").split(",");for(C=0;CG.dimensions.width){G.dimensions.width=J[C]}if(J[C]G.dimensions.height){G.dimensions.height=J[C]}if(J[C]0){if(L.corner.search(/Left/)!==-1){y.left-=s.options.style.border.radius}else{if(L.corner.search(/Right/)!==-1){y.left+=s.options.style.border.radius}}if(L.corner.search(/Top/)!==-1){y.top-=s.options.style.border.radius}else{if(L.corner.search(/Bottom/)!==-1){y.top+=s.options.style.border.radius}}}if(I){if(L.corner.search(/top/)!==-1){y.top-=I}else{if(L.corner.search(/bottom/)!==-1){y.top+=I}}if(L.corner.search(/left/)!==-1){y.left-=I}else{if(L.corner.search(/right/)!==-1){y.left+=I}}if(L.corner.search(/leftMiddle|rightMiddle/)!==-1){y.top-=1}}if(s.options.position.adjust.screen===true){y=o.call(s,y,G,L)}if(s.options.position.target==="mouse"&&s.options.position.adjust.mouse===true){if(s.options.position.adjust.screen===true&&s.elements.tip){K=s.elements.tip.attr("rel")}else{K=s.options.position.corner.tooltip}y.left+=(K.search(/right/i)!==-1)?-6:6;y.top+=(K.search(/bottom/i)!==-1)?-6:6}if(!s.elements.bgiframe&&f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){f("select, object").each(function(){A=f(this).offset();A.bottom=A.top+f(this).height();A.right=A.left+f(this).width();if(y.top+L.dimensions.height>=A.top&&y.left+L.dimensions.width>=A.left){k.call(s)}})}y.left+=s.options.position.adjust.x;y.top+=s.options.position.adjust.y;F=s.getPosition();if(y.left!=F.left||y.top!=F.top){z=s.beforePositionUpdate.call(s,w);if(z===false){return s}s.cache.position=y;if(x===true){s.status.animated=true;s.elements.tooltip.animate(y,200,"swing",function(){s.status.animated=false})}else{s.elements.tooltip.css(y)}s.onPositionUpdate.call(s,w);if(typeof w!=="undefined"&&w.type&&w.type!=="mousemove"){f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_POSITION_UPDATED,"updatePosition")}}return s},updateWidth:function(w){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateWidth")}else{if(w&&typeof w!=="number"){return f.fn.qtip.log.error.call(s,2,"newWidth must be of type number","updateWidth")}}x=s.elements.contentWrapper.siblings().add(s.elements.tip).add(s.elements.button);if(!w){if(typeof s.options.style.width.value=="number"){w=s.options.style.width.value}else{s.elements.tooltip.css({width:"auto"});x.hide();if(f.browser.msie){s.elements.wrapper.add(s.elements.contentWrapper.children()).css({zoom:"normal"})}w=s.getDimensions().width+1;if(!s.options.style.width.value){if(w>s.options.style.width.max){w=s.options.style.width.max}if(w").get(0).getContext){z=s.elements.tooltip.find(".qtip-tip canvas:first");x=z.get(0).getContext("2d");x.clearRect(0,0,300,300);y=z.parent("div[rel]:first").attr("rel");B=b(y,s.options.style.tip.size.width,s.options.style.tip.size.height);h.call(s,z,B,s.options.style.tip.color||s.options.style.border.color)}else{if(f.browser.msie){z=s.elements.tooltip.find('.qtip-tip [nodeName="shape"]');z.attr("fillcolor",s.options.style.tip.color||s.options.style.border.color)}}}if(s.options.style.border.radius>0){s.elements.tooltip.find(".qtip-betweenCorners").css({backgroundColor:s.options.style.border.color});if(f("").get(0).getContext){A=g(s.options.style.border.radius);s.elements.tooltip.find(".qtip-wrapper canvas").each(function(){x=f(this).get(0).getContext("2d");x.clearRect(0,0,300,300);y=f(this).parent("div[rel]:first").attr("rel");r.call(s,f(this),A[y],s.options.style.border.radius,s.options.style.border.color)})}else{if(f.browser.msie){s.elements.tooltip.find('.qtip-wrapper [nodeName="arc"]').each(function(){f(this).attr("fillcolor",s.options.style.border.color)})}}}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_STYLE_UPDATED,"updateStyle")},updateContent:function(A,y){var z,x,w;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateContent")}else{if(!A){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateContent")}}z=s.beforeContentUpdate.call(s,A);if(typeof z=="string"){A=z}else{if(z===false){return}}if(f.browser.msie){s.elements.contentWrapper.children().css({zoom:"normal"})}if(A.jquery&&A.length>0){A.clone(true).appendTo(s.elements.content).show()}else{s.elements.content.html(A)}x=s.elements.content.find("img[complete=false]");if(x.length>0){w=0;x.each(function(C){f('').load(function(){if(++w==x.length){B()}})})}else{B()}function B(){s.updateWidth();if(y!==false){if(s.options.position.type!=="static"){s.updatePosition(s.elements.tooltip.is(":visible"),true)}if(s.options.style.tip.corner!==false){n.call(s)}}}s.onContentUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_UPDATED,"loadContent")},loadContent:function(w,z,A){var y;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"loadContent")}y=s.beforeContentLoad.call(s);if(y===false){return s}if(A=="post"){f.post(w,z,x)}else{f.get(w,z,x)}function x(B){s.onContentLoad.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_LOADED,"loadContent");s.updateContent(B)}return s},updateTitle:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateTitle")}else{if(!w){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateTitle")}}returned=s.beforeTitleUpdate.call(s);if(returned===false){return s}if(s.elements.button){s.elements.button=s.elements.button.clone(true)}s.elements.title.html(w);if(s.elements.button){s.elements.title.prepend(s.elements.button)}s.onTitleUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_TITLE_UPDATED,"updateTitle")},focus:function(A){var y,x,w,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"focus")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_FOCUS_STATIC,"focus")}}y=parseInt(s.elements.tooltip.css("z-index"));x=6000+f("div.qtip[qtip]").length-1;if(!s.status.focused&&y!==x){z=s.beforeFocus.call(s,A);if(z===false){return s}f("div.qtip[qtip]").not(s.elements.tooltip).each(function(){if(f(this).qtip("api").status.rendered===true){w=parseInt(f(this).css("z-index"));if(typeof w=="number"&&w>-1){f(this).css({zIndex:parseInt(f(this).css("z-index"))-1})}f(this).qtip("api").status.focused=false}});s.elements.tooltip.css({zIndex:x});s.status.focused=true;s.onFocus.call(s,A);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_FOCUSED,"focus")}return s},disable:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"disable")}if(w){if(!s.status.disabled){s.status.disabled=true;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DISABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_DISABLED,"disable")}}else{if(s.status.disabled){s.status.disabled=false;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_ENABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_ENABLED,"disable")}}return s},destroy:function(){var w,x,y;x=s.beforeDestroy.call(s);if(x===false){return s}if(s.status.rendered){s.options.show.when.target.unbind("mousemove.qtip",s.updatePosition);s.options.show.when.target.unbind("mouseout.qtip",s.hide);s.options.show.when.target.unbind(s.options.show.when.event+".qtip");s.options.hide.when.target.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind("mouseover.qtip",s.focus);s.elements.tooltip.remove()}else{s.options.show.when.target.unbind(s.options.show.when.event+".qtip-create")}if(typeof s.elements.target.data("qtip")=="object"){y=s.elements.target.data("qtip").interfaces;if(typeof y=="object"&&y.length>0){for(w=0;w0){s.elements.target.data("qtip").current=y.length-1}else{s.elements.target.removeData("qtip")}s.onDestroy.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DESTROYED,"destroy");return s.elements.target},getPosition:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getPosition")}w=(s.elements.tooltip.css("display")!=="none")?false:true;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x=s.elements.tooltip.offset();if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x},getDimensions:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getDimensions")}w=(!s.elements.tooltip.is(":visible"))?true:false;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x={height:s.elements.tooltip.outerHeight(),width:s.elements.tooltip.outerWidth()};if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x}})}function p(){var s,w,u,t,v,y,x;s=this;s.beforeRender.call(s);s.status.rendered=true;s.elements.tooltip='';s.elements.tooltip=f(s.elements.tooltip);s.elements.tooltip.appendTo(s.options.position.container);s.elements.tooltip.data("qtip",{current:0,interfaces:[s]});s.elements.wrapper=s.elements.tooltip.children("div:first");s.elements.contentWrapper=s.elements.wrapper.children("div:first").css({background:s.options.style.background});s.elements.content=s.elements.contentWrapper.children("div:first").css(q(s.options.style));if(f.browser.msie){s.elements.wrapper.add(s.elements.content).css({zoom:1})}if(s.options.hide.when.event=="unfocus"){s.elements.tooltip.attr("unfocus",true)}if(typeof s.options.style.width.value=="number"){s.updateWidth()}if(f("").get(0).getContext||f.browser.msie){if(s.options.style.border.radius>0){m.call(s)}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color})}if(s.options.style.tip.corner!==false){e.call(s)}}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color});s.options.style.border.radius=0;s.options.style.tip.corner=false;f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.CANVAS_VML_NOT_SUPPORTED,"render")}if((typeof s.options.content.text=="string"&&s.options.content.text.length>0)||(s.options.content.text.jquery&&s.options.content.text.length>0)){u=s.options.content.text}else{if(typeof s.elements.target.attr("title")=="string"&&s.elements.target.attr("title").length>0){u=s.elements.target.attr("title").replace("\\n","
");s.elements.target.attr("title","")}else{if(typeof s.elements.target.attr("alt")=="string"&&s.elements.target.attr("alt").length>0){u=s.elements.target.attr("alt").replace("\\n","
");s.elements.target.attr("alt","")}else{u=" ";f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.NO_VALID_CONTENT,"render")}}}if(s.options.content.title.text!==false){j.call(s)}s.updateContent(u);l.call(s);if(s.options.show.ready===true){s.show()}if(s.options.content.url!==false){t=s.options.content.url;v=s.options.content.data;y=s.options.content.method||"get";s.loadContent(t,v,y)}s.onRender.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_RENDERED,"render")}function m(){var F,z,t,B,x,E,u,G,D,y,w,C,A,s,v;F=this;F.elements.wrapper.find(".qtip-borderBottom, .qtip-borderTop").remove();t=F.options.style.border.width;B=F.options.style.border.radius;x=F.options.style.border.color||F.options.style.tip.color;E=g(B);u={};for(z in E){u[z]='
';if(f("").get(0).getContext){u[z]+=''}else{if(f.browser.msie){G=B*2+3;u[z]+=''}}u[z]+="
"}D=F.getDimensions().width-(Math.max(t,B)*2);y='
';w='
'+u.topLeft+u.topRight+y;F.elements.wrapper.prepend(w);C='
'+u.bottomLeft+u.bottomRight+y;F.elements.wrapper.append(C);if(f("").get(0).getContext){F.elements.wrapper.find("canvas").each(function(){A=E[f(this).parent("[rel]:first").attr("rel")];r.call(F,f(this),A,B,x)})}else{if(f.browser.msie){F.elements.tooltip.append('')}}s=Math.max(B,(B+(t-B)));v=Math.max(t-B,0);F.elements.contentWrapper.css({border:"0px solid "+x,borderWidth:v+"px "+s+"px"})}function r(u,w,s,t){var v=u.get(0).getContext("2d");v.fillStyle=t;v.beginPath();v.arc(w[0],w[1],s,0,Math.PI*2,false);v.fill()}function e(v){var t,s,x,u,w;t=this;if(t.elements.tip!==null){t.elements.tip.remove()}s=t.options.style.tip.color||t.options.style.border.color;if(t.options.style.tip.corner===false){return}else{if(!v){v=t.options.style.tip.corner}}x=b(v,t.options.style.tip.size.width,t.options.style.tip.size.height);t.elements.tip='
';if(f("").get(0).getContext){t.elements.tip+=''}else{if(f.browser.msie){u=t.options.style.tip.size.width+","+t.options.style.tip.size.height;w="m"+x[0][0]+","+x[0][1];w+=" l"+x[1][0]+","+x[1][1];w+=" "+x[2][0]+","+x[2][1];w+=" xe";t.elements.tip+='';t.elements.tip+='';t.elements.contentWrapper.css("position","relative")}}t.elements.tooltip.prepend(t.elements.tip+"
");t.elements.tip=t.elements.tooltip.find("."+t.options.style.classes.tip).eq(0);if(f("").get(0).getContext){h.call(t,t.elements.tip.find("canvas:first"),x,s)}if(v.search(/top/)!==-1&&f.browser.msie&&parseInt(f.browser.version.charAt(0))===6){t.elements.tip.css({marginTop:-4})}n.call(t,v)}function h(t,v,s){var u=t.get(0).getContext("2d");u.fillStyle=s;u.beginPath();u.moveTo(v[0][0],v[0][1]);u.lineTo(v[1][0],v[1][1]);u.lineTo(v[2][0],v[2][1]);u.fill()}function n(u){var t,w,s,x,v;t=this;if(t.options.style.tip.corner===false||!t.elements.tip){return}if(!u){u=t.elements.tip.attr("rel")}w=positionAdjust=(f.browser.msie)?1:0;t.elements.tip.css(u.match(/left|right|top|bottom/)[0],0);if(u.search(/top|bottom/)!==-1){if(f.browser.msie){if(parseInt(f.browser.version.charAt(0))===6){positionAdjust=(u.search(/top/)!==-1)?-3:1}else{positionAdjust=(u.search(/top/)!==-1)?1:2}}if(u.search(/Middle/)!==-1){t.elements.tip.css({left:"50%",marginLeft:-(t.options.style.tip.size.width/2)})}else{if(u.search(/Left/)!==-1){t.elements.tip.css({left:t.options.style.border.radius-w})}else{if(u.search(/Right/)!==-1){t.elements.tip.css({right:t.options.style.border.radius+w})}}}if(u.search(/top/)!==-1){t.elements.tip.css({top:-positionAdjust})}else{t.elements.tip.css({bottom:positionAdjust})}}else{if(u.search(/left|right/)!==-1){if(f.browser.msie){positionAdjust=(parseInt(f.browser.version.charAt(0))===6)?1:((u.search(/left/)!==-1)?1:2)}if(u.search(/Middle/)!==-1){t.elements.tip.css({top:"50%",marginTop:-(t.options.style.tip.size.height/2)})}else{if(u.search(/Top/)!==-1){t.elements.tip.css({top:t.options.style.border.radius-w})}else{if(u.search(/Bottom/)!==-1){t.elements.tip.css({bottom:t.options.style.border.radius+w})}}}if(u.search(/left/)!==-1){t.elements.tip.css({left:-positionAdjust})}else{t.elements.tip.css({right:positionAdjust})}}}s="padding-"+u.match(/left|right|top|bottom/)[0];x=t.options.style.tip.size[(s.search(/left|right/)!==-1)?"width":"height"];t.elements.tooltip.css("padding",0);t.elements.tooltip.css(s,x);if(f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){v=parseInt(t.elements.tip.css("margin-top"))||0;v+=parseInt(t.elements.content.css("margin-top"))||0;t.elements.tip.css({marginTop:v})}}function j(){var s=this;if(s.elements.title!==null){s.elements.title.remove()}s.elements.title=f('
').css(q(s.options.style.title,true)).css({zoom:(f.browser.msie)?1:0}).prependTo(s.elements.contentWrapper);if(s.options.content.title.text){s.updateTitle.call(s,s.options.content.title.text)}if(s.options.content.title.button!==false&&typeof s.options.content.title.button=="string"){s.elements.button=f('').css(q(s.options.style.button,true)).html(s.options.content.title.button).prependTo(s.elements.title).click(function(t){if(!s.status.disabled){s.hide(t)}})}}function l(){var t,v,u,s;t=this;v=t.options.show.when.target;u=t.options.hide.when.target;if(t.options.hide.fixed){u=u.add(t.elements.tooltip)}if(t.options.hide.when.event=="inactive"){s=["click","dblclick","mousedown","mouseup","mousemove","mouseout","mouseenter","mouseleave","mouseover"];function y(z){if(t.status.disabled===true){return}clearTimeout(t.timers.inactive);t.timers.inactive=setTimeout(function(){f(s).each(function(){u.unbind(this+".qtip-inactive");t.elements.content.unbind(this+".qtip-inactive")});t.hide(z)},t.options.hide.delay)}}else{if(t.options.hide.fixed===true){t.elements.tooltip.bind("mouseover.qtip",function(){if(t.status.disabled===true){return}clearTimeout(t.timers.hide)})}}function x(z){if(t.status.disabled===true){return}if(t.options.hide.when.event=="inactive"){f(s).each(function(){u.bind(this+".qtip-inactive",y);t.elements.content.bind(this+".qtip-inactive",y)});y()}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.timers.show=setTimeout(function(){t.show(z)},t.options.show.delay)}function w(z){if(t.status.disabled===true){return}if(t.options.hide.fixed===true&&t.options.hide.when.event.search(/mouse(out|leave)/i)!==-1&&f(z.relatedTarget).parents("div.qtip[qtip]").length>0){z.stopPropagation();z.preventDefault();clearTimeout(t.timers.hide);return false}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.elements.tooltip.stop(true,true);t.timers.hide=setTimeout(function(){t.hide(z)},t.options.hide.delay)}if((t.options.show.when.target.add(t.options.hide.when.target).length===1&&t.options.show.when.event==t.options.hide.when.event&&t.options.hide.when.event!=="inactive")||t.options.hide.when.event=="unfocus"){t.cache.toggle=0;v.bind(t.options.show.when.event+".qtip",function(z){if(t.cache.toggle==0){x(z)}else{w(z)}})}else{v.bind(t.options.show.when.event+".qtip",x);if(t.options.hide.when.event!=="inactive"){u.bind(t.options.hide.when.event+".qtip",w)}}if(t.options.position.type.search(/(fixed|absolute)/)!==-1){t.elements.tooltip.bind("mouseover.qtip",t.focus)}if(t.options.position.target==="mouse"&&t.options.position.type!=="static"){v.bind("mousemove.qtip",function(z){t.cache.mouse={x:z.pageX,y:z.pageY};if(t.status.disabled===false&&t.options.position.adjust.mouse===true&&t.options.position.type!=="static"&&t.elements.tooltip.css("display")!=="none"){t.updatePosition(z)}})}}function o(u,v,A){var z,s,x,y,t,w;z=this;if(A.corner=="center"){return v.position}s=f.extend({},u);y={x:false,y:false};t={left:(s.left=f.fn.qtip.cache.screen.width+f.fn.qtip.cache.screen.scroll.left),top:(s.top=f.fn.qtip.cache.screen.height+f.fn.qtip.cache.screen.scroll.top)};x={left:(t.left&&(A.corner.search(/right/i)!=-1||(A.corner.search(/right/i)==-1&&!t.right))),right:(t.right&&(A.corner.search(/left/i)!=-1||(A.corner.search(/left/i)==-1&&!t.left))),top:(t.top&&A.corner.search(/top/i)==-1),bottom:(t.bottom&&A.corner.search(/bottom/i)==-1)};if(x.left){if(z.options.position.target!=="mouse"){s.left=v.position.left+v.dimensions.width}else{s.left=z.cache.mouse.x}y.x="Left"}else{if(x.right){if(z.options.position.target!=="mouse"){s.left=v.position.left-A.dimensions.width}else{s.left=z.cache.mouse.x-A.dimensions.width}y.x="Right"}}if(x.top){if(z.options.position.target!=="mouse"){s.top=v.position.top+v.dimensions.height}else{s.top=z.cache.mouse.y}y.y="top"}else{if(x.bottom){if(z.options.position.target!=="mouse"){s.top=v.position.top-A.dimensions.height}else{s.top=z.cache.mouse.y-A.dimensions.height}y.y="bottom"}}if(s.left<0){s.left=u.left;y.x=false}if(s.top<0){s.top=u.top;y.y=false}if(z.options.style.tip.corner!==false){s.corner=new String(A.corner);if(y.x!==false){s.corner=s.corner.replace(/Left|Right|Middle/,y.x)}if(y.y!==false){s.corner=s.corner.replace(/top|bottom/,y.y)}if(s.corner!==z.elements.tip.attr("rel")){e.call(z,s.corner)}}return s}function q(u,t){var v,s;v=f.extend(true,{},u);for(s in v){if(t===true&&s.search(/(tip|classes)/i)!==-1){delete v[s]}else{if(!t&&s.search(/(width|border|tip|title|classes|user)/i)!==-1){delete v[s]}}}return v}function c(s){if(typeof s.tip!=="object"){s.tip={corner:s.tip}}if(typeof s.tip.size!=="object"){s.tip.size={width:s.tip.size,height:s.tip.size}}if(typeof s.border!=="object"){s.border={width:s.border}}if(typeof s.width!=="object"){s.width={value:s.width}}if(typeof s.width.max=="string"){s.width.max=parseInt(s.width.max.replace(/([0-9]+)/i,"$1"))}if(typeof s.width.min=="string"){s.width.min=parseInt(s.width.min.replace(/([0-9]+)/i,"$1"))}if(typeof s.tip.size.x=="number"){s.tip.size.width=s.tip.size.x;delete s.tip.size.x}if(typeof s.tip.size.y=="number"){s.tip.size.height=s.tip.size.y;delete s.tip.size.y}return s}function a(){var s,t,u,x,v,w;s=this;u=[true,{}];for(t=0;t0){v.tip.size.width+=1}if(v.tip.size.height%2>0){v.tip.size.height+=1}if(v.tip.corner===true){v.tip.corner=(s.options.position.corner.tooltip==="center")?false:s.options.position.corner.tooltip}return v}function b(v,u,t){var s={bottomRight:[[0,0],[u,t],[u,0]],bottomLeft:[[0,0],[u,0],[0,t]],topRight:[[0,t],[u,0],[u,t]],topLeft:[[0,0],[0,t],[u,t]],topMiddle:[[0,t],[u/2,0],[u,t]],bottomMiddle:[[0,0],[u,0],[u/2,t]],rightMiddle:[[0,0],[u,t/2],[0,t]],leftMiddle:[[u,0],[u,t],[0,t/2]]};s.leftTop=s.bottomRight;s.rightTop=s.bottomLeft;s.leftBottom=s.topRight;s.rightBottom=s.topLeft;return s[v]}function g(s){var t;if(f("").get(0).getContext){t={topLeft:[s,s],topRight:[0,s],bottomLeft:[s,0],bottomRight:[0,0]}}else{if(f.browser.msie){t={topLeft:[-90,90,0],topRight:[-90,90,-s],bottomLeft:[90,270,0],bottomRight:[90,270,-s]}}}return t}function k(){var s,t,u;s=this;u=s.getDimensions();t='