Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 9 participants
- 39111 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9535-g40ccdcb
by Marc Delisle 19 Jul '11
by Marc Delisle 19 Jul '11
19 Jul '11
The branch, master has been updated
via 40ccdcb2366e03fa5a03c41ad9c0bbc5c60feaa0 (commit)
from 964664525cd657ba52e82dd47c4314143ccd2516 (commit)
- Log -----------------------------------------------------------------
commit 40ccdcb2366e03fa5a03c41ad9c0bbc5c60feaa0
Author: Tyron Madlener <tyronx(a)gmail.com>
Date: Tue Jul 19 21:44:53 2011 +0300
Remove duplicate intialization
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 18 ------------------
1 files changed, 0 insertions(+), 18 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index 3f778e1..c1106cd 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -170,24 +170,6 @@ $(document).ready(function() {
$("#sqlqueryresults").live('refreshgrid', function() {
$('#table_results').refreshgrid();
})
-
- /**
- * Attach the {@link makegrid} function to a custom event, which will be
- * triggered manually everytime the table of results is reloaded
- * @memberOf jQuery
- */
- $("#sqlqueryresults").live('makegrid', function() {
- $('#table_results').makegrid();
- })
-
- /**
- * Attach the {@link refreshgrid} function to a custom event, which will be
- * triggered manually everytime the table of results is manipulated (e.g., by inline edit)
- * @memberOf jQuery
- */
- $("#sqlqueryresults").live('refreshgrid', function() {
- $('#table_results').refreshgrid();
- })
/**
* Trigger the appendAnchor event to prepare the first table for inline edit
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9534-g9646645
by Marc Delisle 19 Jul '11
by Marc Delisle 19 Jul '11
19 Jul '11
The branch, master has been updated
via 964664525cd657ba52e82dd47c4314143ccd2516 (commit)
from 7a40f19f8a00ea73df9d03d50d5e95c455420317 (commit)
- Log -----------------------------------------------------------------
commit 964664525cd657ba52e82dd47c4314143ccd2516
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Jul 19 12:16:16 2011 -0400
Streamline jQuery usage
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index 5c48578..3f778e1 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -334,16 +334,18 @@ $(document).ready(function() {
var $msgbox = PMA_ajaxShowMessage();
/**
- * @var $the_form Object referring to the form element that paginates the results table
+ * @var $form Object referring to the form element that paginates the results table
*/
- var $the_form = $(this).parent("form");
+ var $form = $(this).parent("form");
+
+ var $sqlqueryresults = $("#sqlqueryresults");
- $the_form.append('<input type="hidden" name="ajax_request" value="true" />');
+ PMA_prepareForAjaxRequest($form);
- $.post($the_form.attr('action'), $the_form.serialize(), function(data) {
- $("#sqlqueryresults").html(data);
- $("#sqlqueryresults").trigger('appendAnchor');
- $("#sqlqueryresults").trigger('makegrid');
+ $.post($form.attr('action'), $form.serialize(), function(data) {
+ $sqlqueryresults.html(data);
+ $sqlqueryresults.trigger('appendAnchor');
+ $sqlqueryresults.trigger('makegrid');
PMA_init_slider();
PMA_ajaxRemoveMessage($msgbox);
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9533-g7a40f19
by Marc Delisle 19 Jul '11
by Marc Delisle 19 Jul '11
19 Jul '11
The branch, master has been updated
via 7a40f19f8a00ea73df9d03d50d5e95c455420317 (commit)
from a463231e0ff89ea8e433a266c72427dfc40d6965 (commit)
- Log -----------------------------------------------------------------
commit 7a40f19f8a00ea73df9d03d50d5e95c455420317
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Jul 19 12:02:56 2011 -0400
Streamline jQuery usage
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 25 +++++++++++++------------
1 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index d16abb0..5c48578 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -241,7 +241,7 @@ $(document).ready(function() {
$("#sqlqueryform.ajax").live('submit', function(event) {
event.preventDefault();
- $form = $(this);
+ var $form = $(this);
if (! checkSqlQuery($form[0])) {
return false;
}
@@ -250,11 +250,12 @@ $(document).ready(function() {
$('.error').remove();
var $msgbox = PMA_ajaxShowMessage();
+ var $sqlqueryresults = $('#sqlqueryresults');
PMA_prepareForAjaxRequest($form);
- $.post($(this).attr('action'), $(this).serialize() , function(data) {
- if(data.success == true) {
+ $.post($form.attr('action'), $form.serialize() , function(data) {
+ if (data.success == true) {
// fade out previous messages, if any
$('.success').fadeOut();
$('.sqlquery_message').fadeOut();
@@ -268,7 +269,7 @@ $(document).ready(function() {
} else {
$('#sqlqueryform').before(data.message);
}
- $('#sqlqueryresults').show();
+ $sqlqueryresults.show();
// this happens if a USE command was typed
if (typeof data.reload != 'undefined') {
// Unbind the submit event before reloading. See bug #3295529
@@ -285,25 +286,25 @@ $(document).ready(function() {
else if (data.success == false ) {
// show an error message that stays on screen
$('#sqlqueryform').before(data.error);
- $('#sqlqueryresults').hide();
+ $sqlqueryresults.hide();
}
else {
// real results are returned
// fade out previous messages, if any
$('.success').fadeOut();
$('.sqlquery_message').fadeOut();
- $received_data = $(data);
- $zero_row_results = $received_data.find('textarea[name="sql_query"]');
+ var $received_data = $(data);
+ var $zero_row_results = $received_data.find('textarea[name="sql_query"]');
// if zero rows are returned from the query execution
if ($zero_row_results.length > 0) {
$('#sqlquery').val($zero_row_results.val());
} else {
- $('#sqlqueryresults').show();
- $("#sqlqueryresults").html(data);
- $("#sqlqueryresults").trigger('appendAnchor');
- $("#sqlqueryresults").trigger('makegrid');
+ $sqlqueryresults.show();
+ $sqlqueryresults.html(data);
+ $sqlqueryresults.trigger('appendAnchor');
+ $sqlqueryresults.trigger('makegrid');
$('#togglequerybox').show();
- if($("#togglequerybox").siblings(":visible").length > 0) {
+ if ($("#togglequerybox").siblings(":visible").length > 0) {
$("#togglequerybox").trigger('click');
}
PMA_init_slider();
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9532-ga463231
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via a463231e0ff89ea8e433a266c72427dfc40d6965 (commit)
via 38799f3e65d6faf04a4edfb894bd53e4ae0e9ddb (commit)
via 3985519a006927f4a139110155e99d1e4b7bc47e (commit)
via 3bae46852593f4baf32d7797c2e5beb7c687611e (commit)
via 984c50f02eccc3cf49509cd921ba4b5b570dd602 (commit)
via 2689839996811146436891a6157abaaebbd60c05 (commit)
via 05622d032d063efdcb69a7af1a09a02b497bcde2 (commit)
via cc71d547a157172e25f09e16c1153776bebacd23 (commit)
via bad941efb35acb738e52a5728f25a028f373e73b (commit)
via 01efea0f1d671f0347ba6abd043745c64ec50a01 (commit)
via 459652bd0c01dd6d5ceab5672bfc739aac2c7183 (commit)
via 8aabb53a2f27060f32ffbd2c2ab87ca35dfeefe6 (commit)
via fed7f0a5328aa71547703a6ee8eb7e8bbc6a4f5a (commit)
via 422ff71de44efb3645ee604650e10ed40eee7490 (commit)
via 890dcfacc2320c4d19a2dd7912763ee461d52923 (commit)
via 8e20fc65a90297236e126ea2af814729dd964bbd (commit)
via 3b2503ffbcb469164bcbc145f2973b8381038a1c (commit)
via 31d0a0628344ae7032ac0cb4e73134d4b6e3687b (commit)
via 487c68c698b42868175b85c2e5e6ec620e0ae31c (commit)
via fc5d56017b0b61cf1346b074d043e76c7171d611 (commit)
via 09af7267e3672bf24812e5ade472219bb8be7f71 (commit)
via fcacd3bcb8ecdf4647504881d447329d31672bd0 (commit)
via 3d00126440de97bda2a8c9704f52f2b6ff0c3dc6 (commit)
via cadb7a42fde43c8aa4db41ea389a40e3b6b4a6db (commit)
via df24314a70d43faaa650218c9ad6904a630530e2 (commit)
via b78c2127f207b877d233ba5f66b80854799709c7 (commit)
via 6d1038fc3d45b921e9b420c14b4c7bee41db34a5 (commit)
via 8a26036b7783cea59ac02301b498d12e08ecde27 (commit)
via e5fbec3fbd2a0e6733b10709af20e9fe3ad3de9e (commit)
via dbe3dee5e0da5fc03dd82036827cd2cc0cbe551d (commit)
via acf0b46242e351e4c94bee323edf6bc0c9b8bf9c (commit)
via a1b6766109df5cc9e9b4114b15941469bf7b7278 (commit)
via 94bce1d687890d350594ba5ef1bcbabbc1c3fc2a (commit)
via e51bf0effab6db48263175a75eac5261bbe21b7b (commit)
via 72a19b0a8355601576a0c3d86723fd75a3a46494 (commit)
via 1d85faee1a1ac0db40f762ea45f99ab5edfd4acb (commit)
via fe6611f05bd3f5b9dd774ad1a43ffaed0280be01 (commit)
via 8667d0f4a98ec44e0dda550260be545d2a8b908b (commit)
via 1b26815ed662f9e522b5a465cfe425dd9111d82c (commit)
via bdcbb35d3d32317d3b6df5cba07637bee62d5baf (commit)
from 56f55dcaf69ee60889ba6c7fef9921daf17bc3de (commit)
- Log -----------------------------------------------------------------
commit a463231e0ff89ea8e433a266c72427dfc40d6965
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:45:11 2011 +0200
Translation update done using Pootle.
commit 38799f3e65d6faf04a4edfb894bd53e4ae0e9ddb
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:44:54 2011 +0200
Translation update done using Pootle.
commit 3985519a006927f4a139110155e99d1e4b7bc47e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:44:29 2011 +0200
Translation update done using Pootle.
commit 3bae46852593f4baf32d7797c2e5beb7c687611e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:44:18 2011 +0200
Translation update done using Pootle.
commit 984c50f02eccc3cf49509cd921ba4b5b570dd602
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:44:01 2011 +0200
Translation update done using Pootle.
commit 2689839996811146436891a6157abaaebbd60c05
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:43:48 2011 +0200
Translation update done using Pootle.
commit 05622d032d063efdcb69a7af1a09a02b497bcde2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:43:40 2011 +0200
Translation update done using Pootle.
commit cc71d547a157172e25f09e16c1153776bebacd23
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:43:33 2011 +0200
Translation update done using Pootle.
commit bad941efb35acb738e52a5728f25a028f373e73b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:43:24 2011 +0200
Translation update done using Pootle.
commit 01efea0f1d671f0347ba6abd043745c64ec50a01
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:43:15 2011 +0200
Translation update done using Pootle.
commit 459652bd0c01dd6d5ceab5672bfc739aac2c7183
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:43:06 2011 +0200
Translation update done using Pootle.
commit 8aabb53a2f27060f32ffbd2c2ab87ca35dfeefe6
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:42:55 2011 +0200
Translation update done using Pootle.
commit fed7f0a5328aa71547703a6ee8eb7e8bbc6a4f5a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:42:42 2011 +0200
Translation update done using Pootle.
commit 422ff71de44efb3645ee604650e10ed40eee7490
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:42:33 2011 +0200
Translation update done using Pootle.
commit 890dcfacc2320c4d19a2dd7912763ee461d52923
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:42:14 2011 +0200
Translation update done using Pootle.
commit 8e20fc65a90297236e126ea2af814729dd964bbd
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:41:59 2011 +0200
Translation update done using Pootle.
commit 3b2503ffbcb469164bcbc145f2973b8381038a1c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:41:52 2011 +0200
Translation update done using Pootle.
commit 31d0a0628344ae7032ac0cb4e73134d4b6e3687b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:41:29 2011 +0200
Translation update done using Pootle.
commit 487c68c698b42868175b85c2e5e6ec620e0ae31c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:41:11 2011 +0200
Translation update done using Pootle.
commit fc5d56017b0b61cf1346b074d043e76c7171d611
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:41:01 2011 +0200
Translation update done using Pootle.
commit 09af7267e3672bf24812e5ade472219bb8be7f71
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:40:48 2011 +0200
Translation update done using Pootle.
commit fcacd3bcb8ecdf4647504881d447329d31672bd0
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:40:34 2011 +0200
Translation update done using Pootle.
commit 3d00126440de97bda2a8c9704f52f2b6ff0c3dc6
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:39:43 2011 +0200
Translation update done using Pootle.
commit cadb7a42fde43c8aa4db41ea389a40e3b6b4a6db
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:39:28 2011 +0200
Translation update done using Pootle.
commit df24314a70d43faaa650218c9ad6904a630530e2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:39:21 2011 +0200
Translation update done using Pootle.
commit b78c2127f207b877d233ba5f66b80854799709c7
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:39:12 2011 +0200
Translation update done using Pootle.
commit 6d1038fc3d45b921e9b420c14b4c7bee41db34a5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:39:01 2011 +0200
Translation update done using Pootle.
commit 8a26036b7783cea59ac02301b498d12e08ecde27
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:38:55 2011 +0200
Translation update done using Pootle.
commit e5fbec3fbd2a0e6733b10709af20e9fe3ad3de9e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:38:40 2011 +0200
Translation update done using Pootle.
commit dbe3dee5e0da5fc03dd82036827cd2cc0cbe551d
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:38:06 2011 +0200
Translation update done using Pootle.
commit acf0b46242e351e4c94bee323edf6bc0c9b8bf9c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:38:00 2011 +0200
Translation update done using Pootle.
commit a1b6766109df5cc9e9b4114b15941469bf7b7278
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:37:37 2011 +0200
Translation update done using Pootle.
commit 94bce1d687890d350594ba5ef1bcbabbc1c3fc2a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:37:17 2011 +0200
Translation update done using Pootle.
commit e51bf0effab6db48263175a75eac5261bbe21b7b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:36:11 2011 +0200
Translation update done using Pootle.
commit 72a19b0a8355601576a0c3d86723fd75a3a46494
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:35:56 2011 +0200
Translation update done using Pootle.
commit 1d85faee1a1ac0db40f762ea45f99ab5edfd4acb
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:35:33 2011 +0200
Translation update done using Pootle.
commit fe6611f05bd3f5b9dd774ad1a43ffaed0280be01
Merge: 8667d0f4a98ec44e0dda550260be545d2a8b908b 56f55dcaf69ee60889ba6c7fef9921daf17bc3de
Author: Pootle server <pootle(a)cihar.com>
Date: Tue Jul 19 14:34:56 2011 +0200
Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
Conflicts:
po/da.po
commit 8667d0f4a98ec44e0dda550260be545d2a8b908b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:34:41 2011 +0200
Translation update done using Pootle.
commit 1b26815ed662f9e522b5a465cfe425dd9111d82c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:34:27 2011 +0200
Translation update done using Pootle.
commit bdcbb35d3d32317d3b6df5cba07637bee62d5baf
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:34:19 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/da.po | 75 ++++++++++++++++++++++++++++---------------------------------
1 files changed, 34 insertions(+), 41 deletions(-)
diff --git a/po/da.po b/po/da.po
index 744d39c..ef57913 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-19 14:25+0200\n"
-"PO-Revision-Date: 2011-07-19 14:33+0200\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
+"PO-Revision-Date: 2011-07-19 14:45+0200\n"
"Last-Translator: <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
"Language: da\n"
@@ -6044,7 +6044,7 @@ msgstr "Views"
#: libraries/export/xml.php:47
msgid "Export contents"
-msgstr ""
+msgstr "Eksport indhold"
#: libraries/footer.inc.php:163 libraries/footer.inc.php:166
#: libraries/footer.inc.php:169
@@ -6053,7 +6053,7 @@ msgstr "Åbn nyt phpMyAdmin vindue"
#: libraries/gis_visualization.lib.php:129
msgid "No data found for GIS visualization."
-msgstr ""
+msgstr "Ingen data fundet for GIS visualization"
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
msgid "SQL result"
@@ -10769,46 +10769,45 @@ msgstr "Data dump for tabellen"
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "Tøm tabellen (TRUNCATE)"
#: tbl_operations.php:712
-#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
-msgstr "Kopiér database til"
+msgstr "Slet tabellen (DROP)"
#: tbl_operations.php:733
msgid "Partition maintenance"
-msgstr ""
+msgstr "Vedligehold af partition"
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
-msgstr ""
+msgstr "Partition %s"
#: tbl_operations.php:744
msgid "Analyze"
-msgstr ""
+msgstr "Analyser"
#: tbl_operations.php:745
msgid "Check"
-msgstr ""
+msgstr "Check"
#: tbl_operations.php:746
msgid "Optimize"
-msgstr ""
+msgstr "Optimer"
#: tbl_operations.php:747
msgid "Rebuild"
-msgstr ""
+msgstr "Genopbyg"
#: tbl_operations.php:748
msgid "Repair"
-msgstr ""
+msgstr "Reparer"
#: tbl_operations.php:760
msgid "Remove partitioning"
-msgstr ""
+msgstr "Fjern partitionering"
#: tbl_operations.php:786
msgid "Check referential integrity:"
@@ -10836,7 +10835,7 @@ msgstr "Række-statistik"
#: tbl_printview.php:377 tbl_structure.php:873
msgid "static"
-msgstr ""
+msgstr "statisk"
#: tbl_printview.php:379 tbl_structure.php:875
msgid "dynamic"
@@ -10856,10 +10855,9 @@ msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
#: tbl_relation.php:402
-#, fuzzy
#| msgid "Internal relations"
msgid "Internal relation"
-msgstr "Interne relationer"
+msgstr "Intern relation"
#: tbl_relation.php:404
msgid ""
@@ -10887,7 +10885,7 @@ msgstr "Tilføj søgekriterier (kroppen af \"WHERE\" sætningen):"
#: tbl_select.php:285
msgid "Number of rows per page"
-msgstr "poster pr. side"
+msgstr "Rækker pr. side"
#: tbl_select.php:291
msgid "Display order:"
@@ -10903,7 +10901,7 @@ msgstr "Gennemse bestemte værdier"
#: tbl_structure.php:170 tbl_structure.php:171
msgid "Add primary key"
-msgstr ""
+msgstr "Tilføj primær nøgle"
#: tbl_structure.php:172 tbl_structure.php:173
msgid "Add index"
@@ -10922,17 +10920,16 @@ msgid "Add FULLTEXT index"
msgstr ""
#: tbl_structure.php:391
-#, fuzzy
#| msgid "None"
msgctxt "None for default"
msgid "None"
msgstr "Ingen"
#: tbl_structure.php:404
-#, fuzzy, php-format
+#, php-format
#| msgid "Table %s has been dropped"
msgid "Column %s has been dropped"
-msgstr "Tabel %s er slettet"
+msgstr "Kolonne %s er slettet"
#: tbl_structure.php:415 tbl_structure.php:509
#, php-format
@@ -10961,10 +10958,9 @@ msgid "Propose table structure"
msgstr "Foreslå tabelstruktur"
#: tbl_structure.php:676
-#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
-msgstr "Tilføj %s felt(er)"
+msgstr "Tilføj kolonne"
#: tbl_structure.php:690
msgid "At End of Table"
@@ -11022,7 +11018,7 @@ msgstr ""
#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
-msgstr ""
+msgstr "Udkommenter disse to linjer, hvis du ikke har brug for dem."
#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
@@ -11038,10 +11034,9 @@ msgid "Tracking data definition successfully deleted"
msgstr "Sporing af data definition slettet"
#: tbl_tracking.php:384 tbl_tracking.php:401
-#, fuzzy
#| msgid "Query type"
msgid "Query error"
-msgstr "Forespørgselstype"
+msgstr "Forespørgselsfejl"
#: tbl_tracking.php:399
msgid "Tracking data manipulation successfully deleted"
@@ -11057,32 +11052,30 @@ msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
#: tbl_tracking.php:432
-#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Delete tracking data row from report"
-msgstr "Tillader indsættelse og erstatning af data."
+msgstr "Slet sporingsdatarække fra rapport"
#: tbl_tracking.php:443
-#, fuzzy
#| msgid "No databases"
msgid "No data"
-msgstr "Ingen databaser"
+msgstr "Ingen data"
#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
-msgstr ""
+msgstr "Dato"
#: tbl_tracking.php:455
msgid "Data definition statement"
-msgstr ""
+msgstr "Datadefinitionsudstryk"
#: tbl_tracking.php:512
msgid "Data manipulation statement"
-msgstr ""
+msgstr "Data manipuleringsudtryk"
#: tbl_tracking.php:558
msgid "SQL dump (file download)"
-msgstr ""
+msgstr "SQL-udtræk (hentning af fil)"
#: tbl_tracking.php:559
msgid "SQL dump"
@@ -11112,7 +11105,7 @@ msgstr "Version"
#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
-msgstr "Deaktiver tracking af %s.%s"
+msgstr "Deaktiver sporing af %s.%s"
#: tbl_tracking.php:694
msgid "Deactivate now"
@@ -11121,7 +11114,7 @@ msgstr "Deaktiver nu"
#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
-msgstr "Aktiver tracking af %s.%s"
+msgstr "Aktiver sporing af %s.%s"
#: tbl_tracking.php:707
msgid "Activate now"
@@ -11133,12 +11126,13 @@ msgid "Create version %s of %s.%s"
msgstr "Opret version %s af %s.%s"
#: tbl_tracking.php:724
+#, fuzzy
msgid "Track these data definition statements:"
-msgstr "Spor disse data definition udsagn"
+msgstr "Spor disse datadefinitions-udsagn:"
#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
-msgstr "Spor disse data manipulation udsagn:"
+msgstr "Spor disse datamanipulations-forespørgsler:"
#: tbl_tracking.php:740
msgid "Create version"
@@ -11172,7 +11166,6 @@ msgid "Available transformations"
msgstr "Tilgængelige transformationer"
#: transformation_overview.php:47
-#, fuzzy
#| msgid "Description"
msgctxt "for MIME transformation"
msgid "Description"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9492-g56f55dc
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via 56f55dcaf69ee60889ba6c7fef9921daf17bc3de (commit)
via 860bacccbf3177fd9ff4ea228ba47408dc75cd85 (commit)
via 575e4a0d37e379e5f6f2c6f3c6cca0c032bb1e05 (commit)
via e8a8c7e2bcbb36055cec8c7fc60d469b6dd3f043 (commit)
from aa129ac3551cfa576863c310bd1f83537a958e0a (commit)
- Log -----------------------------------------------------------------
commit 56f55dcaf69ee60889ba6c7fef9921daf17bc3de
Merge: aa129ac3551cfa576863c310bd1f83537a958e0a 860bacccbf3177fd9ff4ea228ba47408dc75cd85
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Jul 19 14:35:04 2011 +0200
Merge remote-tracking branch 'pootle/master'
Conflicts:
po/da.po
commit 860bacccbf3177fd9ff4ea228ba47408dc75cd85
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:33:48 2011 +0200
Translation update done using Pootle.
commit 575e4a0d37e379e5f6f2c6f3c6cca0c032bb1e05
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:33:00 2011 +0200
Translation update done using Pootle.
commit e8a8c7e2bcbb36055cec8c7fc60d469b6dd3f043
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:32:25 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/da.po | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/po/da.po b/po/da.po
index f8aea36..744d39c 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(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-19 14:25+0200\n"
-"PO-Revision-Date: 2011-07-19 14:31+0200\n"
+"PO-Revision-Date: 2011-07-19 14:33+0200\n"
"Last-Translator: <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
"Language: da\n"
@@ -5923,16 +5923,15 @@ msgstr ""
#: libraries/export/sql.php:107 libraries/export/sql.php:162
#: libraries/export/sql.php:167
-#, fuzzy, php-format
+#, php-format
#| msgid "Statements"
msgid "Add %s statement"
-msgstr "Erklæringer"
+msgstr "Tilføj %s forespørgsel"
#: libraries/export/sql.php:145
-#, fuzzy
#| msgid "Statements"
msgid "Add statements:"
-msgstr "Erklæringer"
+msgstr "Tilføj forespørgsler"
#: libraries/export/sql.php:197
msgid ""
@@ -6039,10 +6038,9 @@ msgid "Object creation options (all are recommended)"
msgstr ""
#: libraries/export/xml.php:40
-#, fuzzy
#| msgid "View"
msgid "Views"
-msgstr "Visning"
+msgstr "Views"
#: libraries/export/xml.php:47
msgid "Export contents"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9488-gaa129ac
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via aa129ac3551cfa576863c310bd1f83537a958e0a (commit)
via ebfc50a2f46e5a22c9a49a6cdbeccfff9ed32e40 (commit)
via f39b30a95595f19555ada49b3328976666f0c0ff (commit)
via cdb12b5c686294dd3d7d9a8f767d1774a7c148da (commit)
via 257c0ac6a3428250366c83a768834131fb2b3fd8 (commit)
from 69c289eca9c2c98d73ccff4d3da68feb9b16c78e (commit)
- Log -----------------------------------------------------------------
commit aa129ac3551cfa576863c310bd1f83537a958e0a
Merge: 69c289eca9c2c98d73ccff4d3da68feb9b16c78e ebfc50a2f46e5a22c9a49a6cdbeccfff9ed32e40
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Jul 19 14:32:09 2011 +0200
Merge remote-tracking branch 'pootle/master'
Conflicts:
po/da.po
commit ebfc50a2f46e5a22c9a49a6cdbeccfff9ed32e40
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:31:21 2011 +0200
Translation update done using Pootle.
commit f39b30a95595f19555ada49b3328976666f0c0ff
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:31:07 2011 +0200
Translation update done using Pootle.
commit cdb12b5c686294dd3d7d9a8f767d1774a7c148da
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:30:04 2011 +0200
Translation update done using Pootle.
commit 257c0ac6a3428250366c83a768834131fb2b3fd8
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:29:47 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/da.po | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/po/da.po b/po/da.po
index 64bff6e..f8aea36 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(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-19 14:25+0200\n"
-"PO-Revision-Date: 2011-07-19 14:29+0200\n"
+"PO-Revision-Date: 2011-07-19 14:31+0200\n"
"Last-Translator: <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
"Language: da\n"
@@ -5847,10 +5847,9 @@ msgstr "Vis kommentarer"
#: libraries/export/latex.php:63 libraries/export/odt.php:49
#: libraries/export/sql.php:61
-#, fuzzy
#| msgid "Available MIME types"
msgid "Display MIME types"
-msgstr "Tilgængelige MIME-typer"
+msgstr "Vis MIME-typer"
#: libraries/export/latex.php:129 libraries/export/sql.php:456
#: libraries/export/xml.php:95 libraries/header_printview.inc.php:56
@@ -5890,7 +5889,6 @@ msgid "(Generates a report containing the data of a single table)"
msgstr "(Genererer en rapport indeholdende dataene fra en enkelt tabel)"
#: libraries/export/pdf.php:25
-#, fuzzy
#| msgid "Report title"
msgid "Report title:"
msgstr "Rapporttitel"
@@ -5906,10 +5904,11 @@ msgid ""
msgstr ""
#: libraries/export/sql.php:43
-#, fuzzy
#| msgid "Add custom comment into header (\\n splits lines)"
msgid "Additional custom header comment (\\n splits lines):"
-msgstr "Tilføj tilpassede kommentarer i headeren (\\n deler linjer)"
+msgstr ""
+"Ekstra kommentarer i headeren (\n"
+" deler linjer):"
#: libraries/export/sql.php:48
msgid ""
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9483-g69c289e
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via 69c289eca9c2c98d73ccff4d3da68feb9b16c78e (commit)
via 0c6bea6d58115ab0d7255c4ee2e614abd5ad4859 (commit)
via 517a61bb472a5fa1644029b52434ee8fbe2cc36f (commit)
via ba532cb4ee65dc1776799189ba243f044ccab4bc (commit)
via 39e6c5a4912800363af506e4b3e5f67c9b3e3043 (commit)
via 65e67e34912cf4e6af327299f4372554a12fd98c (commit)
via 85d8713ca22989d7b5b296c05768058556d79c8e (commit)
via e19ce49b8ab19247fb97d7d6dffb3e686659a205 (commit)
via dec2b049fa00ebea38fc56717c4cdc023940f02c (commit)
via a78cf63ea9c9059229b461b7e0154e5f65f29843 (commit)
via d717341254df0cc23e76cca5332d7abb8bc51720 (commit)
via d2341185555355ebeb855dcada65748dfb22ef2c (commit)
via 48ea940f022d627f57797dd9bc087f0a7865b559 (commit)
via 4f65b3201024e076166afd830f286b5f57e6f664 (commit)
via c773441ceffbf39bdcf1ae1fe33a481daaa87761 (commit)
via f456341ecb90c290391000baf1a0fc51b0397da0 (commit)
via cca2854377851deacd4f60a03926feec5fbb7213 (commit)
via 9e60afb86a52639b1dcd6b613ccdd0690b75ebd0 (commit)
via 3a61e4f0ae991c63c75ace7f279a322b786d0dac (commit)
via 03a99d78e22eb122c84fe34cb4d1331313123740 (commit)
via 4aaa7556da248185cf103309a2ffa39631798b56 (commit)
via 772931c3ce061602e543e6c00635152b91730108 (commit)
via 81089f13565f56310e8ba39b65333a78016d2f3f (commit)
via 8e39813cdc301cdd06d2a4d5e79577ea1ca66252 (commit)
via 89c87f3c507cd7b76aa591d283707395624836ae (commit)
via a97fa1ec78b85bf4d1a9123b253a3f51115c64c5 (commit)
via 30ef1e1a44b32e483967afcc55c7240944a70939 (commit)
via 614230ea7b5828832c5d1bef4c3f2e15bcf24977 (commit)
via 92788bc13d6e1e8bd0eb64d72070531dc9932fdc (commit)
via cf7661fb2326b2a968a52fd07344ec185ebb73b5 (commit)
via 61122f56548d5353ee5eba48e4d9d18e4cda9d3b (commit)
via 0401b4c36f425ddb26254f3ee46f60ca7583d627 (commit)
via e693ea93c638060777000a99a2d1618cad6cc1cf (commit)
via e4d44b7fd1ca21b8c0cd49e8db680e0204a53f39 (commit)
via ef94a4258c522c87fcddc2750ea6d53d6e268be7 (commit)
via 7f350673c117bff88e30297eee0b1fad4bdf6311 (commit)
via 2ed0d4d3eddf4a581c31f9aac885f188ef8f7f6b (commit)
via c854329ff4a94777b3f2623ecf4b9752ac588866 (commit)
via e43f06d0ca205b849bcf2a6417d4cacc11a18658 (commit)
via bef12966dec50fe2ee382d0db70f4465b87b27e6 (commit)
via dd1371681ffdcafa15fa2958fa16c6a1405d8d19 (commit)
via ad1a4ae10d1121046bce6694907b346710dd8162 (commit)
via 456d4dc6f5ccb307040231fa6f2386b95cd8b125 (commit)
via e00595182f371512cbc946fe2741b44bb087c060 (commit)
via 2abbb5570f90e5443680eaddb33008e0330afac9 (commit)
via 71d311bb09d79b6d4fe0584de853f836eb9e6b2a (commit)
via f2c8cacb06308cf176dd1c91e68c93bfaf1cd797 (commit)
via 2f6b662c9bff272e2a994ed994606f2b476d35c2 (commit)
via 133c5ed99407d559c2b09f0456ebcb1f8b717694 (commit)
via 026ac24cdc68c5981f1d616ba4bca56ff1f8bd35 (commit)
via 3b7ca2554969f16ef1ea0bf29ba4f7b235b79f5f (commit)
via 3f91bd8dc127de83ed9107f722ba630fd6734faf (commit)
via 454732c43a4689a268d36e03a9590b6a74c33c5d (commit)
via b123a2ba81d07293fba69c9954358d204e016d72 (commit)
via aa96014c431fea08e418ae900a9c46f7053355c2 (commit)
via 0bcd1f881a0bbc6df042984047ae0d92fa311a82 (commit)
via ef9e484a9bbeb0acc5a5645df2695063a691159c (commit)
via 0699f22f093d103024fde390f7db1980a642b411 (commit)
via d108be83025b1c6471512e103b56915e583ce2a1 (commit)
via 53ccfeba893eb5115ef3cf878d04fee0225e7709 (commit)
via 9a9c2f002081cc93683224d7ce15a0bcbb2757ae (commit)
via 2b23a4e0c2224f28a0ef99b00b6c210937a0de87 (commit)
via 23e83e6d57c00c597e2b52d4b8e097aacf373770 (commit)
via 35b8eb9f7b752f357dd5a36ef78879414b6651d2 (commit)
via e81dd34c65ea941fb1e92e41659cf7b81de46109 (commit)
via 7e49f96ce66f6d47cfca2a2b739c73c81ee6fa18 (commit)
via 1965e5513a8ce9f2b0bf8b9099df6cdf84d51907 (commit)
via 44b19faf80d64b852e56aa4013feb66d9329f47e (commit)
via 34caaaae1ec1b1d6106a6dd55527bc7262a65a3d (commit)
via caebb54d77a91745e94a29db8eaa7dde0d6af240 (commit)
via 83244afe21a167a97a82186c617b9214bb2d5e4f (commit)
via d9d7800ddb51d1f12ea3ecfaf2bc24c4fd95368a (commit)
via b6214eb2b75474d45c7ece01556ea74362e467d5 (commit)
via 45056098da1279d973d0ef91582627cb6762aeb8 (commit)
via a0a07d325735ea2e346825acfef1e2cf2cd74656 (commit)
via 54bb56251aa0dd2066a847df4d272c560f7f1d32 (commit)
via 0459eed8606455d3b8109e24c2024201c33bef03 (commit)
from 7e9f2ba2c743a2211df2615d4cde26b4c9361946 (commit)
- Log -----------------------------------------------------------------
commit 69c289eca9c2c98d73ccff4d3da68feb9b16c78e
Merge: 7e9f2ba2c743a2211df2615d4cde26b4c9361946 0c6bea6d58115ab0d7255c4ee2e614abd5ad4859
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Jul 19 14:30:36 2011 +0200
Merge remote-tracking branch 'pootle/master'
Conflicts:
po/da.po
commit 0c6bea6d58115ab0d7255c4ee2e614abd5ad4859
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:29:35 2011 +0200
Translation update done using Pootle.
commit 517a61bb472a5fa1644029b52434ee8fbe2cc36f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:29:13 2011 +0200
Translation update done using Pootle.
commit ba532cb4ee65dc1776799189ba243f044ccab4bc
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:28:54 2011 +0200
Translation update done using Pootle.
commit 39e6c5a4912800363af506e4b3e5f67c9b3e3043
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:28:08 2011 +0200
Translation update done using Pootle.
commit 65e67e34912cf4e6af327299f4372554a12fd98c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:28:00 2011 +0200
Translation update done using Pootle.
commit 85d8713ca22989d7b5b296c05768058556d79c8e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:27:46 2011 +0200
Translation update done using Pootle.
commit e19ce49b8ab19247fb97d7d6dffb3e686659a205
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:27:34 2011 +0200
Translation update done using Pootle.
commit dec2b049fa00ebea38fc56717c4cdc023940f02c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:27:13 2011 +0200
Translation update done using Pootle.
commit a78cf63ea9c9059229b461b7e0154e5f65f29843
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:26:52 2011 +0200
Translation update done using Pootle.
commit d717341254df0cc23e76cca5332d7abb8bc51720
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:26:11 2011 +0200
Translation update done using Pootle.
commit d2341185555355ebeb855dcada65748dfb22ef2c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:25:33 2011 +0200
Translation update done using Pootle.
commit 48ea940f022d627f57797dd9bc087f0a7865b559
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:25:02 2011 +0200
Translation update done using Pootle.
commit 4f65b3201024e076166afd830f286b5f57e6f664
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:24:28 2011 +0200
Translation update done using Pootle.
commit c773441ceffbf39bdcf1ae1fe33a481daaa87761
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:23:57 2011 +0200
Translation update done using Pootle.
commit f456341ecb90c290391000baf1a0fc51b0397da0
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:23:43 2011 +0200
Translation update done using Pootle.
commit cca2854377851deacd4f60a03926feec5fbb7213
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:23:32 2011 +0200
Translation update done using Pootle.
commit 9e60afb86a52639b1dcd6b613ccdd0690b75ebd0
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:23:12 2011 +0200
Translation update done using Pootle.
commit 3a61e4f0ae991c63c75ace7f279a322b786d0dac
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:22:57 2011 +0200
Translation update done using Pootle.
commit 03a99d78e22eb122c84fe34cb4d1331313123740
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:22:29 2011 +0200
Translation update done using Pootle.
commit 4aaa7556da248185cf103309a2ffa39631798b56
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:22:09 2011 +0200
Translation update done using Pootle.
commit 772931c3ce061602e543e6c00635152b91730108
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:21:41 2011 +0200
Translation update done using Pootle.
commit 81089f13565f56310e8ba39b65333a78016d2f3f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:21:23 2011 +0200
Translation update done using Pootle.
commit 8e39813cdc301cdd06d2a4d5e79577ea1ca66252
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:21:17 2011 +0200
Translation update done using Pootle.
commit 89c87f3c507cd7b76aa591d283707395624836ae
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:21:07 2011 +0200
Translation update done using Pootle.
commit a97fa1ec78b85bf4d1a9123b253a3f51115c64c5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:20:43 2011 +0200
Translation update done using Pootle.
commit 30ef1e1a44b32e483967afcc55c7240944a70939
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:20:31 2011 +0200
Translation update done using Pootle.
commit 614230ea7b5828832c5d1bef4c3f2e15bcf24977
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:20:20 2011 +0200
Translation update done using Pootle.
commit 92788bc13d6e1e8bd0eb64d72070531dc9932fdc
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:20:03 2011 +0200
Translation update done using Pootle.
commit cf7661fb2326b2a968a52fd07344ec185ebb73b5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:19:21 2011 +0200
Translation update done using Pootle.
commit 61122f56548d5353ee5eba48e4d9d18e4cda9d3b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:18:53 2011 +0200
Translation update done using Pootle.
commit 0401b4c36f425ddb26254f3ee46f60ca7583d627
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:18:26 2011 +0200
Translation update done using Pootle.
commit e693ea93c638060777000a99a2d1618cad6cc1cf
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:17:40 2011 +0200
Translation update done using Pootle.
commit e4d44b7fd1ca21b8c0cd49e8db680e0204a53f39
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:17:10 2011 +0200
Translation update done using Pootle.
commit ef94a4258c522c87fcddc2750ea6d53d6e268be7
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:16:57 2011 +0200
Translation update done using Pootle.
commit 7f350673c117bff88e30297eee0b1fad4bdf6311
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:16:37 2011 +0200
Translation update done using Pootle.
commit 2ed0d4d3eddf4a581c31f9aac885f188ef8f7f6b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:16:06 2011 +0200
Translation update done using Pootle.
commit c854329ff4a94777b3f2623ecf4b9752ac588866
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:15:17 2011 +0200
Translation update done using Pootle.
commit e43f06d0ca205b849bcf2a6417d4cacc11a18658
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:14:53 2011 +0200
Translation update done using Pootle.
commit bef12966dec50fe2ee382d0db70f4465b87b27e6
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:14:29 2011 +0200
Translation update done using Pootle.
commit dd1371681ffdcafa15fa2958fa16c6a1405d8d19
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:13:41 2011 +0200
Translation update done using Pootle.
commit ad1a4ae10d1121046bce6694907b346710dd8162
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:13:24 2011 +0200
Translation update done using Pootle.
commit 456d4dc6f5ccb307040231fa6f2386b95cd8b125
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:13:14 2011 +0200
Translation update done using Pootle.
commit e00595182f371512cbc946fe2741b44bb087c060
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:13:05 2011 +0200
Translation update done using Pootle.
commit 2abbb5570f90e5443680eaddb33008e0330afac9
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:12:50 2011 +0200
Translation update done using Pootle.
commit 71d311bb09d79b6d4fe0584de853f836eb9e6b2a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:12:36 2011 +0200
Translation update done using Pootle.
commit f2c8cacb06308cf176dd1c91e68c93bfaf1cd797
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:11:34 2011 +0200
Translation update done using Pootle.
commit 2f6b662c9bff272e2a994ed994606f2b476d35c2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:11:04 2011 +0200
Translation update done using Pootle.
commit 133c5ed99407d559c2b09f0456ebcb1f8b717694
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:10:54 2011 +0200
Translation update done using Pootle.
commit 026ac24cdc68c5981f1d616ba4bca56ff1f8bd35
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:10:27 2011 +0200
Translation update done using Pootle.
commit 3b7ca2554969f16ef1ea0bf29ba4f7b235b79f5f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:09:55 2011 +0200
Translation update done using Pootle.
commit 3f91bd8dc127de83ed9107f722ba630fd6734faf
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:09:45 2011 +0200
Translation update done using Pootle.
commit 454732c43a4689a268d36e03a9590b6a74c33c5d
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:09:28 2011 +0200
Translation update done using Pootle.
commit b123a2ba81d07293fba69c9954358d204e016d72
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:09:10 2011 +0200
Translation update done using Pootle.
commit aa96014c431fea08e418ae900a9c46f7053355c2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:08:54 2011 +0200
Translation update done using Pootle.
commit 0bcd1f881a0bbc6df042984047ae0d92fa311a82
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:08:20 2011 +0200
Translation update done using Pootle.
commit ef9e484a9bbeb0acc5a5645df2695063a691159c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:08:08 2011 +0200
Translation update done using Pootle.
commit 0699f22f093d103024fde390f7db1980a642b411
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:07:52 2011 +0200
Translation update done using Pootle.
commit d108be83025b1c6471512e103b56915e583ce2a1
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:07:24 2011 +0200
Translation update done using Pootle.
commit 53ccfeba893eb5115ef3cf878d04fee0225e7709
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:06:48 2011 +0200
Translation update done using Pootle.
commit 9a9c2f002081cc93683224d7ce15a0bcbb2757ae
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:06:34 2011 +0200
Translation update done using Pootle.
commit 2b23a4e0c2224f28a0ef99b00b6c210937a0de87
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:06:03 2011 +0200
Translation update done using Pootle.
commit 23e83e6d57c00c597e2b52d4b8e097aacf373770
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:05:28 2011 +0200
Translation update done using Pootle.
commit 35b8eb9f7b752f357dd5a36ef78879414b6651d2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:04:57 2011 +0200
Translation update done using Pootle.
commit e81dd34c65ea941fb1e92e41659cf7b81de46109
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:04:35 2011 +0200
Translation update done using Pootle.
commit 7e49f96ce66f6d47cfca2a2b739c73c81ee6fa18
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:04:28 2011 +0200
Translation update done using Pootle.
commit 1965e5513a8ce9f2b0bf8b9099df6cdf84d51907
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:04:08 2011 +0200
Translation update done using Pootle.
commit 44b19faf80d64b852e56aa4013feb66d9329f47e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:03:36 2011 +0200
Translation update done using Pootle.
commit 34caaaae1ec1b1d6106a6dd55527bc7262a65a3d
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:03:20 2011 +0200
Translation update done using Pootle.
commit caebb54d77a91745e94a29db8eaa7dde0d6af240
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:03:02 2011 +0200
Translation update done using Pootle.
commit 83244afe21a167a97a82186c617b9214bb2d5e4f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:02:33 2011 +0200
Translation update done using Pootle.
commit d9d7800ddb51d1f12ea3ecfaf2bc24c4fd95368a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:02:03 2011 +0200
Translation update done using Pootle.
commit b6214eb2b75474d45c7ece01556ea74362e467d5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:01:55 2011 +0200
Translation update done using Pootle.
commit 45056098da1279d973d0ef91582627cb6762aeb8
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:01:00 2011 +0200
Translation update done using Pootle.
commit a0a07d325735ea2e346825acfef1e2cf2cd74656
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:00:24 2011 +0200
Translation update done using Pootle.
commit 54bb56251aa0dd2066a847df4d272c560f7f1d32
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 14:00:01 2011 +0200
Translation update done using Pootle.
commit 0459eed8606455d3b8109e24c2024201c33bef03
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:59:33 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/da.po | 187 +++++++++++++++++++++++++-------------------------------------
1 files changed, 75 insertions(+), 112 deletions(-)
diff --git a/po/da.po b/po/da.po
index 45c62ae..64bff6e 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(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-19 14:25+0200\n"
-"PO-Revision-Date: 2011-07-19 13:59+0200\n"
+"PO-Revision-Date: 2011-07-19 14:29+0200\n"
"Last-Translator: <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
"Language: da\n"
@@ -4619,7 +4619,7 @@ msgstr ""
#: libraries/config/messages.inc.php:507
msgid "Enable the Developer tab in settings"
-msgstr ""
+msgstr "Aktiver udviklerfanen i indstillinger"
#: libraries/config/messages.inc.php:508
msgid ""
@@ -4634,11 +4634,11 @@ msgstr ""
#: libraries/config/messages.inc.php:510 setup/frames/index.inc.php:241
msgid "Check for latest version"
-msgstr ""
+msgstr "Check for den seneste version"
#: libraries/config/messages.inc.php:511
msgid "Enables check for latest version on main phpMyAdmin page"
-msgstr ""
+msgstr "Aktiverer check for den seneste version på hovedsiden for phpMyAdmin"
#: libraries/config/messages.inc.php:512 setup/lib/index.lib.php:118
#: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142
@@ -4646,17 +4646,19 @@ msgstr ""
#: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164
#: setup/lib/index.lib.php:200
msgid "Version check"
-msgstr ""
+msgstr "Versionscheck"
#: libraries/config/messages.inc.php:513
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
+"Aktiver [a@http://en.wikipedia.org/wiki/ZIP_(fil_format)]ZIP[/a] "
+"komprimering ved import and eksport operationer"
#: libraries/config/messages.inc.php:514
msgid "ZIP"
-msgstr ""
+msgstr "ZIP"
#: libraries/config/setup.forms.php:41
msgid "Config authentication"
@@ -4712,7 +4714,6 @@ msgstr ""
#: libraries/config/setup.forms.php:292
#: libraries/config/user_preferences.forms.php:192
-#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "Database eksportindstillinger"
@@ -4736,7 +4737,7 @@ msgstr "Open Document tekst"
#: libraries/config/validate.lib.php:197 libraries/config/validate.lib.php:204
msgid "Could not connect to MySQL server"
-msgstr ""
+msgstr "Kunne ikke forbinde til MySQL server"
#: libraries/config/validate.lib.php:228
msgid "Empty username while using config authentication method"
@@ -4761,7 +4762,7 @@ msgstr ""
#: libraries/config/validate.lib.php:359
#, php-format
msgid "Incorrect IP address: %s"
-msgstr ""
+msgstr "Ukorrekt IP-adresse: %s"
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:242
@@ -4782,7 +4783,7 @@ msgstr "Database ser ud til at være tom!"
#: libraries/db_links.inc.php:66 libraries/relation.lib.php:140
#: libraries/tbl_links.inc.php:97
msgid "Tracking"
-msgstr ""
+msgstr "Sporing"
#: libraries/db_links.inc.php:71
msgid "Query"
@@ -4835,7 +4836,7 @@ msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
#: libraries/dbi/mysql.dbi.lib.php:333
msgid "Details..."
-msgstr ""
+msgstr "Detaljer..."
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:105 user_password.php:123
@@ -4858,14 +4859,12 @@ msgid "Password Hashing"
msgstr "Kodeord Hashing"
#: libraries/display_change_password.lib.php:65
-#, fuzzy
#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibel"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
-#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Opret ny database"
@@ -4894,108 +4893,99 @@ msgid "Name"
msgstr "Navn"
#: libraries/display_create_table.lib.php:55
-#, fuzzy
#| msgid "Number of fields"
msgid "Number of columns"
-msgstr "Antal felter"
+msgstr "Antal kolonner"
#: libraries/display_export.lib.php:35
msgid "Could not load export plugins, please check your installation!"
msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!"
#: libraries/display_export.lib.php:80
-#, fuzzy
#| msgid "Allows locking tables for the current thread."
msgid "Exporting databases from the current server"
-msgstr "Tillader låsning af tabeller for nuværende tråd."
+msgstr "Eksporterer databaser fra den aktuelle server"
#: libraries/display_export.lib.php:82
-#, fuzzy, php-format
+#, php-format
#| msgid "Create table on database %s"
msgid "Exporting tables from \"%s\" database"
-msgstr "Opret ny tabel i database %s"
+msgstr "Eksporterer tabeller fra database \"%s\""
#: libraries/display_export.lib.php:84
-#, fuzzy, php-format
+#, php-format
#| msgid "Create table on database %s"
msgid "Exporting rows from \"%s\" table"
-msgstr "Opret ny tabel i database %s"
+msgstr "Eksporterer rækker fra tabellen \"%s\""
#: libraries/display_export.lib.php:90
-#, fuzzy
#| msgid "Export type"
msgid "Export Method:"
-msgstr "Eksporttype"
+msgstr "Eksportmetode"
#: libraries/display_export.lib.php:106
msgid "Quick - display only the minimal options"
-msgstr ""
+msgstr "Hurtig - vis kun de minimale optioner"
#: libraries/display_export.lib.php:122
msgid "Custom - display all possible options"
msgstr ""
#: libraries/display_export.lib.php:130
-#, fuzzy
#| msgid "Databases"
msgid "Database(s):"
-msgstr "Databaser"
+msgstr "Database(r):"
#: libraries/display_export.lib.php:132
-#, fuzzy
#| msgid "Tables"
msgid "Table(s):"
-msgstr "Tabeller"
+msgstr "Tabel(ler):"
#: libraries/display_export.lib.php:142
-#, fuzzy
#| msgid "Rows"
msgid "Rows:"
-msgstr "Rækker"
+msgstr "Rækker:"
#: libraries/display_export.lib.php:150
msgid "Dump some row(s)"
-msgstr ""
+msgstr "Hent nogle række(r)"
#: libraries/display_export.lib.php:152
-#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
-msgstr "Antal felter"
+msgstr "Antal rækker:"
#: libraries/display_export.lib.php:155
msgid "Row to begin at:"
-msgstr ""
+msgstr "Begyndelsesrække:"
#: libraries/display_export.lib.php:166
msgid "Dump all rows"
-msgstr ""
+msgstr "Hent alle rækker"
#: libraries/display_export.lib.php:174 libraries/display_export.lib.php:195
msgid "Output:"
msgstr ""
#: libraries/display_export.lib.php:181 libraries/display_export.lib.php:207
-#, fuzzy, php-format
+#, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory <b>%s</b>"
-msgstr "Gem på serveren i mappen %s "
+msgstr "Gem på serveren i mappen <b>%s</b> "
#: libraries/display_export.lib.php:199
-#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
-msgstr "Send (download)"
+msgstr "Gem output i en fil"
#: libraries/display_export.lib.php:220
-#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Skabelon for filnavn"
#: libraries/display_export.lib.php:222
msgid "@SERVER@ will become the server name"
-msgstr ""
+msgstr "@SERVER@ vil blive servernavnet"
#: libraries/display_export.lib.php:224
msgid ", @DATABASE@ will become the database name"
@@ -5006,7 +4996,7 @@ msgid ", @TABLE@ will become the table name"
msgstr ""
#: libraries/display_export.lib.php:230
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "This value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "formatting strings. Additionally the following transformations will "
@@ -5018,7 +5008,7 @@ msgid ""
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 "
-"vil blive bevaret som det er."
+"vil blive bevaret som det er. Se %4$sFAQ%5$s for detaljer."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@@ -5030,47 +5020,40 @@ msgid "Character set of the file:"
msgstr "Tegnsæt for filen:"
#: libraries/display_export.lib.php:304
-#, fuzzy
#| msgid "Compression"
msgid "Compression:"
-msgstr "Komprimering"
+msgstr "Komprimering:"
#: libraries/display_export.lib.php:308
-#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
-msgstr "\"zippet\""
+msgstr "zippet"
#: libraries/display_export.lib.php:310
-#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
-msgstr "\"gzipped\""
+msgstr "gzipped"
#: libraries/display_export.lib.php:312
-#, fuzzy
#| msgid "\"bzipped\""
msgid "bzipped"
-msgstr "\"bzipped\""
+msgstr "bzipped"
#: libraries/display_export.lib.php:321
-#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
-msgstr "Send (download)"
+msgstr "Se output som tekst"
#: libraries/display_export.lib.php:326 libraries/display_import.lib.php:244
#: libraries/export/codegen.php:38
-#, fuzzy
#| msgid "Format"
msgid "Format:"
-msgstr "Format"
+msgstr "Format:"
#: libraries/display_export.lib.php:331
-#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
-msgstr "Transformationsindstillinger"
+msgstr "Formatspecifikke optioner:"
#: libraries/display_export.lib.php:332
msgid ""
@@ -5091,7 +5074,7 @@ msgstr ""
#: libraries/display_import.lib.php:76
msgid "The file is being processed, please be patient."
-msgstr ""
+msgstr "Filen behandles, vær tålmodig"
#: libraries/display_import.lib.php:98
msgid ""
@@ -5100,25 +5083,23 @@ msgid ""
msgstr ""
#: libraries/display_import.lib.php:129
-#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Importing into the current server"
-msgstr "Kan ikke logge ind på MySQL-serveren"
+msgstr "Importerer til den aktuelle server"
#: libraries/display_import.lib.php:131
-#, fuzzy, php-format
+#, php-format
#| msgid "No databases"
msgid "Importing into the database \"%s\""
-msgstr "Ingen databaser"
+msgstr "Importerer ind i databasen \"%s\""
#: libraries/display_import.lib.php:133
-#, fuzzy, php-format
+#, php-format
#| msgid "No databases"
msgid "Importing into the table \"%s\""
-msgstr "Ingen databaser"
+msgstr "Importerer ind i tabellen \"%s\""
#: libraries/display_import.lib.php:139
-#, fuzzy
#| msgid "File to import"
msgid "File to Import:"
msgstr "Fil til import"
@@ -5139,7 +5120,6 @@ msgid "File uploads are not allowed on this server."
msgstr "Fil-uploads er ikke tilladte på denne server."
#: libraries/display_import.lib.php:208
-#, fuzzy
#| msgid "Partial import"
msgid "Partial Import:"
msgstr "Delvis import"
@@ -5153,7 +5133,6 @@ msgstr ""
"%d."
#: libraries/display_import.lib.php:221
-#, fuzzy
#| msgid ""
#| "Allow the interruption of an import in case the script detects it is "
#| "close to the PHP timeout limit. This might be good way to import large "
@@ -5164,14 +5143,13 @@ msgid ""
"however it can break transactions.)</i>"
msgstr ""
"Tillad afbrydelse af import hvis scriptet er tæt på tidsgrænsen. Dette kan "
-"være en god metode til at importere større filer, men kan knække "
+"være en god metode til at importere større filer, men kan ødelægge "
"transaktioner."
#: libraries/display_import.lib.php:228
-#, fuzzy
#| msgid "Number of records (queries) to skip from start"
msgid "Number of rows to skip, starting from the first row:"
-msgstr "Antal poster (queries) der skal springes over fra start"
+msgstr "Antal rækker, der skal springes over fra start"
#: libraries/display_import.lib.php:250
msgid "Format-Specific Options:"
@@ -5183,14 +5161,13 @@ msgid "Language"
msgstr "Sprog"
#: libraries/display_tbl.lib.php:397
-#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
-msgstr "Tilføj/Slet felt-kolonne"
+msgstr "Gendan kolonneorden"
#: libraries/display_tbl.lib.php:417
msgid "Drag to reorder"
-msgstr ""
+msgstr "Træk for at ændre orden"
#: libraries/display_tbl.lib.php:418
msgid "Click to sort"
@@ -5211,19 +5188,17 @@ msgstr "%d er ikke et gyldigt rækkenummer."
#: libraries/display_tbl.lib.php:436
msgid "Start row"
-msgstr ""
+msgstr "Startrække"
#: libraries/display_tbl.lib.php:438
-#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
-msgstr "Antal felter"
+msgstr "Antal rækker"
#: libraries/display_tbl.lib.php:443
-#, fuzzy
#| msgid "More"
msgid "Mode"
-msgstr "Mere"
+msgstr "Tilstand"
#: libraries/display_tbl.lib.php:445
msgid "horizontal"
@@ -5231,7 +5206,7 @@ msgstr "vandret"
#: libraries/display_tbl.lib.php:446
msgid "horizontal (rotated headers)"
-msgstr "horisontalt (roterede overskrifter)"
+msgstr "vandret (roterede overskrifter)"
#: libraries/display_tbl.lib.php:447
msgid "vertical"
@@ -5240,7 +5215,7 @@ msgstr "lodret"
#: libraries/display_tbl.lib.php:452
#, php-format
msgid "Headers every %s rows"
-msgstr ""
+msgstr "Overskrifter for hver %s rows"
#: libraries/display_tbl.lib.php:546
msgid "Sort by key"
@@ -5266,20 +5241,18 @@ msgid "Options"
msgstr "Indstillinger"
#: libraries/display_tbl.lib.php:598 libraries/display_tbl.lib.php:608
-#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Delvise tekster"
#: libraries/display_tbl.lib.php:599 libraries/display_tbl.lib.php:612
-#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Komplette tekster"
#: libraries/display_tbl.lib.php:625
msgid "Relational key"
-msgstr ""
+msgstr "Relationel nøgle"
#: libraries/display_tbl.lib.php:626
#, fuzzy
@@ -5302,7 +5275,7 @@ msgstr "Browser transformation"
#: libraries/display_tbl.lib.php:650
msgid "Geometry"
-msgstr ""
+msgstr "Geometri"
#: libraries/display_tbl.lib.php:651
msgid "Well Known Text"
@@ -5313,8 +5286,9 @@ msgid "Well Known Binary"
msgstr ""
#: libraries/display_tbl.lib.php:1303
+#, fuzzy
msgid "Copy"
-msgstr ""
+msgstr "Kopier"
#: libraries/display_tbl.lib.php:1318 libraries/display_tbl.lib.php:1330
msgid "The row has been deleted"
@@ -5331,7 +5305,7 @@ msgstr "i forespørgsel"
#: libraries/display_tbl.lib.php:2206
msgid "Showing rows"
-msgstr "Viser poster "
+msgstr "Viser poster"
#: libraries/display_tbl.lib.php:2216
msgid "total"
@@ -5351,20 +5325,19 @@ msgid "Print view (with full texts)"
msgstr "Udskrift-visning (med fulde tekster)"
#: libraries/display_tbl.lib.php:2494 tbl_chart.php:83
-#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
-msgstr "Vis PDF-skematik"
+msgstr "Vis kort"
#: libraries/display_tbl.lib.php:2509
msgid "Visualize GIS data"
-msgstr ""
+msgstr "Visualiser GIS data"
#: libraries/display_tbl.lib.php:2529
#, fuzzy
#| msgid "Create"
msgid "Create view"
-msgstr "Opret"
+msgstr "Opret view"
#: libraries/display_tbl.lib.php:2629
msgid "Link not found"
@@ -5420,7 +5393,7 @@ msgstr "InnoDB status"
#: libraries/engines/innodb.lib.php:153
msgid "Buffer Pool Usage"
-msgstr "Buffer Pool Forbrug"
+msgstr "Buffer Pool forbrug"
#: libraries/engines/innodb.lib.php:161
msgid "pages"
@@ -5480,7 +5453,7 @@ msgstr "Write waits i %"
#: libraries/engines/myisam.lib.php:22
msgid "Data pointer size"
-msgstr "Data pointer størrelse"
+msgstr "Data pointer-størrelse"
#: libraries/engines/myisam.lib.php:23
msgid ""
@@ -5633,10 +5606,9 @@ msgid ""
msgstr ""
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
-#, fuzzy
#| msgid "Relations"
msgid "Related Links"
-msgstr "Relationer"
+msgstr "Relaterede links"
#: libraries/engines/pbms.lib.php:98
msgid "The PrimeBase Media Streaming Blog by Barry Leslie"
@@ -5699,7 +5671,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:47
msgid "Checkpoint frequency"
-msgstr ""
+msgstr "Checkpoint frekvens"
#: libraries/engines/pbxt.lib.php:48
msgid ""
@@ -5784,16 +5756,14 @@ msgid "The PrimeBase Media Streaming (PBMS) home page"
msgstr ""
#: libraries/export/csv.php:24 libraries/import/csv.php:28
-#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns separated with:"
-msgstr "Linjer afsluttet med"
+msgstr "Kolonner adskilt med"
#: libraries/export/csv.php:25 libraries/import/csv.php:29
-#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with:"
-msgstr "Felter indrammet med"
+msgstr "Kolonner indrammet med:"
#: libraries/export/csv.php:26 libraries/import/csv.php:30
#, fuzzy
@@ -5802,34 +5772,30 @@ msgid "Columns escaped with:"
msgstr "Felter escaped med"
#: libraries/export/csv.php:27 libraries/import/csv.php:31
-#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with:"
-msgstr "Linjer afsluttet med"
+msgstr "Linjer afsluttet med:"
#: libraries/export/csv.php:28 libraries/export/excel.php:23
#: libraries/export/htmlword.php:29 libraries/export/latex.php:80
#: libraries/export/ods.php:24 libraries/export/odt.php:60
#: libraries/export/xls.php:24 libraries/export/xlsx.php:24
-#, fuzzy
#| msgid "Replace NULL by"
msgid "Replace NULL with:"
-msgstr "Erstat NULL med"
+msgstr "Erstat NULL med:"
#: libraries/export/csv.php:29 libraries/export/excel.php:24
msgid "Remove carriage return/line feed characters within columns"
msgstr ""
#: libraries/export/excel.php:33
-#, fuzzy
#| msgid "Excel edition"
msgid "Excel edition:"
-msgstr "Excel-udgave"
+msgstr "Excel-udgave:"
#: libraries/export/htmlword.php:28 libraries/export/latex.php:70
#: libraries/export/odt.php:56 libraries/export/sql.php:208
#: libraries/export/texytext.php:26 libraries/export/xml.php:45
-#, fuzzy
#| msgid "Database export options"
msgid "Data dump options"
msgstr "Database eksportindstillinger"
@@ -5864,23 +5830,20 @@ msgid "Object creation options"
msgstr "Transformationsindstillinger"
#: libraries/export/latex.php:52 libraries/export/latex.php:76
-#, fuzzy
#| msgid "Table caption"
msgid "Table caption (continued)"
-msgstr "Tabeloverskrift"
+msgstr "Tabeloverskrift (fortsat)"
#: libraries/export/latex.php:57 libraries/export/odt.php:43
#: libraries/export/sql.php:54
-#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Display foreign key relationships"
-msgstr "Slå fremmednøgle-checks fra"
+msgstr "Vis fremmednøgle-relationer"
#: libraries/export/latex.php:60 libraries/export/odt.php:46
-#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display comments"
-msgstr "Viser kolonne-kommentarer"
+msgstr "Vis kommentarer"
#: libraries/export/latex.php:63 libraries/export/odt.php:49
#: libraries/export/sql.php:61
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9354-gef26064
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via ef26064639d54dc328b9cfbd6d7b8f17e21002c3 (commit)
via 27af64ee747911a25c5e44e7d98c12f4ce62320e (commit)
via abd4b0602cd69626c700262654e51a1eeafec54f (commit)
via 980b0fba40da1bc81efc16ea2671a9fd2ecc22b2 (commit)
via 0ce6f43b93ed83c669d9ba73daf4d5f43f02b1a5 (commit)
via c28723db3c374dc00472e1890f41c6a0253237f8 (commit)
via e82e76046ce7940abfee8b77df728589f9b72466 (commit)
via 7efe845bfb9ccb992a7a800d170ee8bb153615c2 (commit)
via d2fb1fea72c56ea97cd040c6434f1f83a9181504 (commit)
via 6fc58050d3d96a439a061e76edf0fcfba2e17237 (commit)
via 379f566e06bde88796b0847628b797012b7abd25 (commit)
via c6d1e35b593a907c6756498d1cf79b8ffbfb753c (commit)
via 3fe257e2e477062135dab76c0e3d454e5fc64a0a (commit)
via a0f46f029efa04bf324a33ba2aafcef847970dc1 (commit)
via 418ceeca9947474046643d14050613d14b7a6129 (commit)
via 91e60403a8e3d1fa0d6a2a691f98699a44fadb81 (commit)
via ffdf5eadeb87dfa9ffa2d821c7de5b8fae28e822 (commit)
via 869839a6da5fd54d1dc24814d363e86ee2dd28d0 (commit)
via 72fa1f9969e84ec5ec0638c59aa08d4489056dc2 (commit)
via 5d1a865a9679377cc964a7b4cfca1ffdc1f98e7f (commit)
via ae8b6a6d5fdbd6517d9365c3693f6b8923d7cc05 (commit)
via 02c0db1433afd9b0a0e97d765fd317d670955f57 (commit)
via 774a1d51b7db9f00d9114af6f5f6e8967fc29006 (commit)
via fe30c14c028f568a9e83897e97c686cdd243e37b (commit)
via a4c0ef252aebfeeb931984f64469066eb89f9dad (commit)
via a0e89c0c50b1c5ad0ed2a6140665fb07d0f25540 (commit)
via fb403e22fbd2e24eddefef11281e7b293f4610e8 (commit)
via fc5fba5ca175d9d913a777561d6c9d41d6f0e69e (commit)
via 8be3f949f009cf0eb842a2936afe8d3572c19817 (commit)
via de080064b4f4984433a26daa34b68baf930d7ef9 (commit)
via 65fbc3e30c68a2512dc28247fbcd765ce6faea4c (commit)
via e8417e09503802b9c36a9e56c64cc1b53f13e94b (commit)
via 658e8223b5f2f671bb5b04819128c485369853b3 (commit)
via 3f26fc5234bc369a614d33ac6f1a92f98afac202 (commit)
via b60b10064f7be14275bf0abc504554995c221e11 (commit)
via f81d0970177681f643b56a47b6a3e777fa81a596 (commit)
via cf6777fcf509477a825999213590a190ca446466 (commit)
via a774654bfcca24368cdcbe10c3d3005f2ea56f42 (commit)
via 97aee154cde6fde01722850fa3a87f2d4e7d9db0 (commit)
via b88d49eb5c549a5bc2d36e4e0d82c3cbd44f3cde (commit)
via 676ff29928ddc58f30a1e05f19c5eb066d6988e9 (commit)
via 375680c31e082522afb93ae730a5049e691a55e5 (commit)
via 04fd29256ab3d6a19a28f8e7863faa90f39df8b9 (commit)
via d44cf0a1818bde4250ffff2d1e886787e5a2f6ca (commit)
via 95ff4d08c00329375331b5dfd4d65e80ffbb223b (commit)
via 3a344f5d8c854bb64735fddb6bd0ff03e3493af7 (commit)
via 28d825e786ceb7b23c4600788ef25b5d7c945e5a (commit)
via 330746626c42afb947755d1350414bad6888dc3f (commit)
via 282f7e597b5e676bcc898c54efc560fc9971172a (commit)
via e4ab74978c2467526e7e34453bc6538bb2179fee (commit)
via f99918388ad2be378b4f361864ce3df74cc903e0 (commit)
via e0334fedfd65102b5197de02afdf918a89ed5d95 (commit)
via b8c121b3cd29ee5062b5bc18e9544007f174eff1 (commit)
via afe97a67067586ec3554c577ee1fd2c355c94f98 (commit)
via c637d38e03eca8110e4f16af95e3f31a7bf507e1 (commit)
via 7e5a7018e14129308d19025c5548665e32dc3005 (commit)
via fa9f47fb8d261e7b94fa2b1c1df9a0cabe932e9e (commit)
via 94622454c092f70956f1a4b47e500cf700aa8c85 (commit)
via 31e474c0def3542da5f92e89658a6c81aca32341 (commit)
via 3307f68fe649febec96fb56bd35bcaeac412697d (commit)
via 94c9e0beada05e0622b06183e3c8f51a5bb6820e (commit)
via bd5abd8fd27a7850d61829ef8be10aea27c33340 (commit)
via 0e96fe3a2ba9cac2659981e9aa1df4aeb9f9922f (commit)
via 02b172249a98f23046fd4cd60e87f8b9402c80ed (commit)
via a78e6060590cdfd3a37fa9c4a55d644587a06236 (commit)
via e5a231a9763355fa09bcdc021ee4c276c2a49531 (commit)
via 172f526c65aba291394945f7d33cb88870d656ff (commit)
via 02a17912b7a69fcafee5516736ed48a18f90f141 (commit)
via f1507d69c5cb7a27e442c287bbadbaeb4c00eed9 (commit)
via 9631bd6878a66d018711ae3883a132e8711d6eeb (commit)
via af291e91cdf7c702e89fb557036e0f012cebf4de (commit)
via 922acbe6b48fedeed102f144606496f4ee1c4f62 (commit)
via dddfb1eb1843adc17328fc09397acb23f677a95f (commit)
via f1708c1a1596c1ed5c5f8df5d776999df9dc7d65 (commit)
via f1c34be3801d587a5ee5daa40ca0086e223c1a00 (commit)
via 7e452f528ee22cc0ea6b8129691b9bea882d1dde (commit)
via 41fb926ce868f86d4b76c0a3406e7a478ff9d8f5 (commit)
via 6cf7df583c6ab37ec8de942c076f60f161f1c5ac (commit)
via e276a6729f1cc7e0ba7906dd703425c8a4517aa5 (commit)
via 7b0c6d4ddbe5db888b07efa38d8121b6d0973f6f (commit)
via ac8d412e2fc8d0c9f0f00bbde48e17ff76c4fa61 (commit)
via 663d4fa737e58c39d7192b14526e6dfa1e3cc73a (commit)
from e2dff46f798996dd906d7421120ef51b0e83ebcc (commit)
- Log -----------------------------------------------------------------
commit ef26064639d54dc328b9cfbd6d7b8f17e21002c3
Merge: e2dff46f798996dd906d7421120ef51b0e83ebcc 27af64ee747911a25c5e44e7d98c12f4ce62320e
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Jul 19 13:59:57 2011 +0200
Merge remote-tracking branch 'pootle/master'
commit 27af64ee747911a25c5e44e7d98c12f4ce62320e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:59:06 2011 +0200
Translation update done using Pootle.
commit abd4b0602cd69626c700262654e51a1eeafec54f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:58:39 2011 +0200
Translation update done using Pootle.
commit 980b0fba40da1bc81efc16ea2671a9fd2ecc22b2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:58:21 2011 +0200
Translation update done using Pootle.
commit 0ce6f43b93ed83c669d9ba73daf4d5f43f02b1a5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:58:02 2011 +0200
Translation update done using Pootle.
commit c28723db3c374dc00472e1890f41c6a0253237f8
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:57:32 2011 +0200
Translation update done using Pootle.
commit e82e76046ce7940abfee8b77df728589f9b72466
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:57:11 2011 +0200
Translation update done using Pootle.
commit 7efe845bfb9ccb992a7a800d170ee8bb153615c2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:56:56 2011 +0200
Translation update done using Pootle.
commit d2fb1fea72c56ea97cd040c6434f1f83a9181504
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:56:24 2011 +0200
Translation update done using Pootle.
commit 6fc58050d3d96a439a061e76edf0fcfba2e17237
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:56:08 2011 +0200
Translation update done using Pootle.
commit 379f566e06bde88796b0847628b797012b7abd25
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:55:27 2011 +0200
Translation update done using Pootle.
commit c6d1e35b593a907c6756498d1cf79b8ffbfb753c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:55:05 2011 +0200
Translation update done using Pootle.
commit 3fe257e2e477062135dab76c0e3d454e5fc64a0a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:54:50 2011 +0200
Translation update done using Pootle.
commit a0f46f029efa04bf324a33ba2aafcef847970dc1
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:54:29 2011 +0200
Translation update done using Pootle.
commit 418ceeca9947474046643d14050613d14b7a6129
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:54:20 2011 +0200
Translation update done using Pootle.
commit 91e60403a8e3d1fa0d6a2a691f98699a44fadb81
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:54:09 2011 +0200
Translation update done using Pootle.
commit ffdf5eadeb87dfa9ffa2d821c7de5b8fae28e822
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:53:58 2011 +0200
Translation update done using Pootle.
commit 869839a6da5fd54d1dc24814d363e86ee2dd28d0
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:53:05 2011 +0200
Translation update done using Pootle.
commit 72fa1f9969e84ec5ec0638c59aa08d4489056dc2
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:52:56 2011 +0200
Translation update done using Pootle.
commit 5d1a865a9679377cc964a7b4cfca1ffdc1f98e7f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:52:50 2011 +0200
Translation update done using Pootle.
commit ae8b6a6d5fdbd6517d9365c3693f6b8923d7cc05
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:52:15 2011 +0200
Translation update done using Pootle.
commit 02c0db1433afd9b0a0e97d765fd317d670955f57
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:52:03 2011 +0200
Translation update done using Pootle.
commit 774a1d51b7db9f00d9114af6f5f6e8967fc29006
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:51:34 2011 +0200
Translation update done using Pootle.
commit fe30c14c028f568a9e83897e97c686cdd243e37b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:51:16 2011 +0200
Translation update done using Pootle.
commit a4c0ef252aebfeeb931984f64469066eb89f9dad
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:50:35 2011 +0200
Translation update done using Pootle.
commit a0e89c0c50b1c5ad0ed2a6140665fb07d0f25540
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:50:16 2011 +0200
Translation update done using Pootle.
commit fb403e22fbd2e24eddefef11281e7b293f4610e8
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:50:02 2011 +0200
Translation update done using Pootle.
commit fc5fba5ca175d9d913a777561d6c9d41d6f0e69e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:49:58 2011 +0200
Translation update done using Pootle.
commit 8be3f949f009cf0eb842a2936afe8d3572c19817
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:49:36 2011 +0200
Translation update done using Pootle.
commit de080064b4f4984433a26daa34b68baf930d7ef9
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:48:54 2011 +0200
Translation update done using Pootle.
commit 65fbc3e30c68a2512dc28247fbcd765ce6faea4c
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:48:43 2011 +0200
Translation update done using Pootle.
commit e8417e09503802b9c36a9e56c64cc1b53f13e94b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:48:01 2011 +0200
Translation update done using Pootle.
commit 658e8223b5f2f671bb5b04819128c485369853b3
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:47:51 2011 +0200
Translation update done using Pootle.
commit 3f26fc5234bc369a614d33ac6f1a92f98afac202
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:47:39 2011 +0200
Translation update done using Pootle.
commit b60b10064f7be14275bf0abc504554995c221e11
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:47:29 2011 +0200
Translation update done using Pootle.
commit f81d0970177681f643b56a47b6a3e777fa81a596
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:47:01 2011 +0200
Translation update done using Pootle.
commit cf6777fcf509477a825999213590a190ca446466
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:46:36 2011 +0200
Translation update done using Pootle.
commit a774654bfcca24368cdcbe10c3d3005f2ea56f42
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:46:29 2011 +0200
Translation update done using Pootle.
commit 97aee154cde6fde01722850fa3a87f2d4e7d9db0
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:46:06 2011 +0200
Translation update done using Pootle.
commit b88d49eb5c549a5bc2d36e4e0d82c3cbd44f3cde
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:45:55 2011 +0200
Translation update done using Pootle.
commit 676ff29928ddc58f30a1e05f19c5eb066d6988e9
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:45:13 2011 +0200
Translation update done using Pootle.
commit 375680c31e082522afb93ae730a5049e691a55e5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:44:40 2011 +0200
Translation update done using Pootle.
commit 04fd29256ab3d6a19a28f8e7863faa90f39df8b9
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:44:23 2011 +0200
Translation update done using Pootle.
commit d44cf0a1818bde4250ffff2d1e886787e5a2f6ca
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:44:13 2011 +0200
Translation update done using Pootle.
commit 95ff4d08c00329375331b5dfd4d65e80ffbb223b
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:43:52 2011 +0200
Translation update done using Pootle.
commit 3a344f5d8c854bb64735fddb6bd0ff03e3493af7
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:43:47 2011 +0200
Translation update done using Pootle.
commit 28d825e786ceb7b23c4600788ef25b5d7c945e5a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:43:42 2011 +0200
Translation update done using Pootle.
commit 330746626c42afb947755d1350414bad6888dc3f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:42:54 2011 +0200
Translation update done using Pootle.
commit 282f7e597b5e676bcc898c54efc560fc9971172a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:42:22 2011 +0200
Translation update done using Pootle.
commit e4ab74978c2467526e7e34453bc6538bb2179fee
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:42:15 2011 +0200
Translation update done using Pootle.
commit f99918388ad2be378b4f361864ce3df74cc903e0
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:42:03 2011 +0200
Translation update done using Pootle.
commit e0334fedfd65102b5197de02afdf918a89ed5d95
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:41:31 2011 +0200
Translation update done using Pootle.
commit b8c121b3cd29ee5062b5bc18e9544007f174eff1
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:41:14 2011 +0200
Translation update done using Pootle.
commit afe97a67067586ec3554c577ee1fd2c355c94f98
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:40:55 2011 +0200
Translation update done using Pootle.
commit c637d38e03eca8110e4f16af95e3f31a7bf507e1
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:40:38 2011 +0200
Translation update done using Pootle.
commit 7e5a7018e14129308d19025c5548665e32dc3005
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:40:04 2011 +0200
Translation update done using Pootle.
commit fa9f47fb8d261e7b94fa2b1c1df9a0cabe932e9e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:38:35 2011 +0200
Translation update done using Pootle.
commit 94622454c092f70956f1a4b47e500cf700aa8c85
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:38:23 2011 +0200
Translation update done using Pootle.
commit 31e474c0def3542da5f92e89658a6c81aca32341
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:37:41 2011 +0200
Translation update done using Pootle.
commit 3307f68fe649febec96fb56bd35bcaeac412697d
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:37:31 2011 +0200
Translation update done using Pootle.
commit 94c9e0beada05e0622b06183e3c8f51a5bb6820e
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:36:19 2011 +0200
Translation update done using Pootle.
commit bd5abd8fd27a7850d61829ef8be10aea27c33340
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:35:59 2011 +0200
Translation update done using Pootle.
commit 0e96fe3a2ba9cac2659981e9aa1df4aeb9f9922f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:35:20 2011 +0200
Translation update done using Pootle.
commit 02b172249a98f23046fd4cd60e87f8b9402c80ed
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:34:33 2011 +0200
Translation update done using Pootle.
commit a78e6060590cdfd3a37fa9c4a55d644587a06236
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:34:22 2011 +0200
Translation update done using Pootle.
commit e5a231a9763355fa09bcdc021ee4c276c2a49531
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:33:40 2011 +0200
Translation update done using Pootle.
commit 172f526c65aba291394945f7d33cb88870d656ff
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:33:26 2011 +0200
Translation update done using Pootle.
commit 02a17912b7a69fcafee5516736ed48a18f90f141
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:33:04 2011 +0200
Translation update done using Pootle.
commit f1507d69c5cb7a27e442c287bbadbaeb4c00eed9
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:32:57 2011 +0200
Translation update done using Pootle.
commit 9631bd6878a66d018711ae3883a132e8711d6eeb
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:32:28 2011 +0200
Translation update done using Pootle.
commit af291e91cdf7c702e89fb557036e0f012cebf4de
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:32:03 2011 +0200
Translation update done using Pootle.
commit 922acbe6b48fedeed102f144606496f4ee1c4f62
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:31:27 2011 +0200
Translation update done using Pootle.
commit dddfb1eb1843adc17328fc09397acb23f677a95f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:31:19 2011 +0200
Translation update done using Pootle.
commit f1708c1a1596c1ed5c5f8df5d776999df9dc7d65
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:30:44 2011 +0200
Translation update done using Pootle.
commit f1c34be3801d587a5ee5daa40ca0086e223c1a00
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:30:33 2011 +0200
Translation update done using Pootle.
commit 7e452f528ee22cc0ea6b8129691b9bea882d1dde
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:30:14 2011 +0200
Translation update done using Pootle.
commit 41fb926ce868f86d4b76c0a3406e7a478ff9d8f5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:29:54 2011 +0200
Translation update done using Pootle.
commit 6cf7df583c6ab37ec8de942c076f60f161f1c5ac
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:29:32 2011 +0200
Translation update done using Pootle.
commit e276a6729f1cc7e0ba7906dd703425c8a4517aa5
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:29:01 2011 +0200
Translation update done using Pootle.
commit 7b0c6d4ddbe5db888b07efa38d8121b6d0973f6f
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:28:39 2011 +0200
Translation update done using Pootle.
commit ac8d412e2fc8d0c9f0f00bbde48e17ff76c4fa61
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:28:22 2011 +0200
Translation update done using Pootle.
commit 663d4fa737e58c39d7192b14526e6dfa1e3cc73a
Author: opensource <opensource(a)jth.net>
Date: Tue Jul 19 13:28:09 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/da.po | 165 +++++++++++++++++++++++++++++++-------------------------------
1 files changed, 82 insertions(+), 83 deletions(-)
diff --git a/po/da.po b/po/da.po
index aa2f9af..528fff9 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(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
-"PO-Revision-Date: 2011-07-19 13:27+0200\n"
+"PO-Revision-Date: 2011-07-19 13:59+0200\n"
"Last-Translator: <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
"Language: da\n"
@@ -3714,25 +3714,24 @@ msgstr "Husk tabellens sortering"
#: libraries/config/messages.inc.php:352
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
-msgstr ""
+msgstr "Gentag overskrifter for hver X celler, [kbd]0[/kbd] deaktiverer dette"
#: libraries/config/messages.inc.php:353
-#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
-msgstr "Reparér tråde"
+msgstr "Gentag overskrifter"
#: libraries/config/messages.inc.php:354
msgid "Show help button instead of Documentation text"
-msgstr ""
+msgstr "Vis hjælpeknap i stedet for dokumentationsteksten"
#: libraries/config/messages.inc.php:355
msgid "Show help button"
-msgstr ""
+msgstr "Vis hjælpeknap"
#: libraries/config/messages.inc.php:357
msgid "Directory where exports can be saved on server"
-msgstr ""
+msgstr "Mappe, hvor eksporterede data kan gemmes på serveren"
#: libraries/config/messages.inc.php:358
msgid "Save directory"
@@ -3740,7 +3739,7 @@ msgstr ""
#: libraries/config/messages.inc.php:359
msgid "Leave blank if not used"
-msgstr ""
+msgstr "Lades blank, hvis ikke brugt"
#: libraries/config/messages.inc.php:360
msgid "Host authorization order"
@@ -3748,7 +3747,7 @@ msgstr ""
#: libraries/config/messages.inc.php:361
msgid "Leave blank for defaults"
-msgstr ""
+msgstr "Lades blank for standardværdi"
#: libraries/config/messages.inc.php:362
msgid "Host authorization rules"
@@ -3756,19 +3755,19 @@ msgstr ""
#: libraries/config/messages.inc.php:363
msgid "Allow logins without a password"
-msgstr ""
+msgstr "Tillad login uden password"
#: libraries/config/messages.inc.php:364
msgid "Allow root login"
-msgstr ""
+msgstr "Tillad root login"
#: libraries/config/messages.inc.php:365
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-msgstr ""
+msgstr "HTTP Basic Auth Realm navn, der vises ved HTTP Auth"
#: libraries/config/messages.inc.php:366
msgid "HTTP Realm"
-msgstr ""
+msgstr "HTTP Realm"
#: libraries/config/messages.inc.php:367
msgid ""
@@ -3779,7 +3778,7 @@ msgstr ""
#: libraries/config/messages.inc.php:368
msgid "SweKey config file"
-msgstr ""
+msgstr "SweKey konfigurationsfil"
#: libraries/config/messages.inc.php:369
msgid "Authentication method to use"
@@ -3797,55 +3796,59 @@ msgstr ""
#: libraries/config/messages.inc.php:372
msgid "Bookmark table"
-msgstr ""
+msgstr "Bogmærketabel"
#: libraries/config/messages.inc.php:373
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
+"Lades blank ved ingen kolonnekommentarer/mime types, forslag: "
+"[kbd]pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:374
msgid "Column information table"
-msgstr ""
+msgstr "Tabel for kolonneinformation"
#: libraries/config/messages.inc.php:375
msgid "Compress connection to MySQL server"
-msgstr ""
+msgstr "Komprimer forbindelse til MySQL server"
#: libraries/config/messages.inc.php:376
msgid "Compress connection"
-msgstr ""
+msgstr "Komprimer forbindelse"
#: libraries/config/messages.inc.php:377
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
-msgstr ""
+msgstr "Hvordan forbindes til server, behold [kbd]tcp[/kbd] hvis usikker"
#: libraries/config/messages.inc.php:378
msgid "Connection type"
-msgstr ""
+msgstr "Forbindelsestype"
#: libraries/config/messages.inc.php:379
msgid "Control user password"
-msgstr ""
+msgstr "Password for kontrolbruger"
#: libraries/config/messages.inc.php:380
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
+"En speciel MySQL bruger med begrænsede tilladelser. Mere information på "
+"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
#: libraries/config/messages.inc.php:381
msgid "Control user"
-msgstr ""
+msgstr "Kontrolbruger"
#: libraries/config/messages.inc.php:382
msgid "Count tables when showing database list"
-msgstr ""
+msgstr "Optæl tabeller, når databaselisten vises"
#: libraries/config/messages.inc.php:383
msgid "Count tables"
-msgstr ""
+msgstr "Optæl tabeller"
#: libraries/config/messages.inc.php:384
msgid ""
@@ -3865,7 +3868,7 @@ msgstr ""
#: libraries/config/messages.inc.php:387
msgid "Disable use of INFORMATION_SCHEMA"
-msgstr ""
+msgstr "Deaktiver brug af INFORMATION_SCHEMA"
#: libraries/config/messages.inc.php:388
msgid "What PHP extension to use; you should use mysqli if supported"
@@ -3881,7 +3884,7 @@ msgstr ""
#: libraries/config/messages.inc.php:391
msgid "Hide databases"
-msgstr ""
+msgstr "Skjul databaser"
#: libraries/config/messages.inc.php:392
msgid ""
@@ -3895,23 +3898,23 @@ msgstr ""
#: libraries/config/messages.inc.php:394
msgid "Hostname where MySQL server is running"
-msgstr ""
+msgstr "Servernavn, hvor MySQL server kører"
#: libraries/config/messages.inc.php:395
msgid "Server hostname"
-msgstr ""
+msgstr "Servernavn"
#: libraries/config/messages.inc.php:396
msgid "Logout URL"
-msgstr ""
+msgstr "Log ud URL"
#: libraries/config/messages.inc.php:397
msgid "Try to connect without password"
-msgstr ""
+msgstr "Prøv at forbinde uden password"
#: libraries/config/messages.inc.php:398
msgid "Connect without password"
-msgstr ""
+msgstr "Forbind uden password"
#: libraries/config/messages.inc.php:399
msgid ""
@@ -3951,18 +3954,17 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:406
-#, fuzzy
#| msgid "database name"
msgid "Database name"
-msgstr "databasenavn"
+msgstr "Databasenavn"
#: libraries/config/messages.inc.php:407
msgid "Port on which MySQL server is listening, leave empty for default"
-msgstr ""
+msgstr "Port hvorpå MySQL server lytter, lades tom for standard"
#: libraries/config/messages.inc.php:408
msgid "Server port"
-msgstr ""
+msgstr "Serverport"
#: libraries/config/messages.inc.php:409
msgid ""
@@ -3971,10 +3973,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:410
-#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
-msgstr "Analysér tabel"
+msgstr "Senest benyttede tabel"
#: libraries/config/messages.inc.php:411
msgid ""
@@ -3984,15 +3985,15 @@ msgstr ""
#: libraries/config/messages.inc.php:412
msgid "Relation table"
-msgstr ""
+msgstr "Relationstabel"
#: libraries/config/messages.inc.php:413
msgid "SQL command to fetch available databases"
-msgstr ""
+msgstr "SQL-kommando til at hente tilgængelige databaser"
#: libraries/config/messages.inc.php:414
msgid "SHOW DATABASES command"
-msgstr ""
+msgstr "SHOW DATABASES kommando"
#: libraries/config/messages.inc.php:415
msgid ""
@@ -4010,19 +4011,19 @@ msgstr ""
#: libraries/config/messages.inc.php:418
msgid "Socket on which MySQL server is listening, leave empty for default"
-msgstr ""
+msgstr "Socket hvorpå MySQL server lytter, lades tom for standard"
#: libraries/config/messages.inc.php:419
msgid "Server socket"
-msgstr ""
+msgstr "Server socket"
#: libraries/config/messages.inc.php:420
msgid "Enable SSL for connection to MySQL server"
-msgstr ""
+msgstr "Brug SSL til forbindelse til MySQL-serveren"
#: libraries/config/messages.inc.php:421
msgid "Use SSL"
-msgstr ""
+msgstr "Brug SSL"
#: libraries/config/messages.inc.php:422
msgid ""
@@ -4040,10 +4041,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:425
-#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
-msgstr "Viser kolonne-kommentarer"
+msgstr "Vis kolonnetabel"
#: libraries/config/messages.inc.php:426
msgid ""
@@ -4052,10 +4052,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:427
-#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
-msgstr "Defragmentér tabel"
+msgstr "UI preferencetabel"
#: libraries/config/messages.inc.php:428
msgid ""
@@ -4065,7 +4064,7 @@ msgstr ""
#: libraries/config/messages.inc.php:429
msgid "Add DROP DATABASE"
-msgstr ""
+msgstr "Tilføj DROP DATABASE"
#: libraries/config/messages.inc.php:430
msgid ""
@@ -4075,7 +4074,7 @@ msgstr ""
#: libraries/config/messages.inc.php:431
msgid "Add DROP TABLE"
-msgstr ""
+msgstr "Tilføj DROP TABLE"
#: libraries/config/messages.inc.php:432
msgid ""
@@ -4085,17 +4084,16 @@ msgstr ""
#: libraries/config/messages.inc.php:433
msgid "Add DROP VIEW"
-msgstr ""
+msgstr "Tilføj DROP VIEW"
#: libraries/config/messages.inc.php:434
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
#: libraries/config/messages.inc.php:435
-#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
-msgstr "Erklæringer"
+msgstr "SQL-kommandoer, der skal spores"
#: libraries/config/messages.inc.php:436
msgid ""
@@ -4105,7 +4103,7 @@ msgstr ""
#: libraries/config/messages.inc.php:437
msgid "SQL query tracking table"
-msgstr ""
+msgstr "Sporingstabel for SQL-forespørgsler"
#: libraries/config/messages.inc.php:438
msgid ""
@@ -4114,10 +4112,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:439
-#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
-msgstr "Automatisk genopretnings-modus"
+msgstr "Opret versioner automatisk"
#: libraries/config/messages.inc.php:440
msgid ""
@@ -4148,10 +4145,12 @@ msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
+"En brugervenlig beskrivelse af serveren. Lad stå tom for at vise hostnavnet "
+"i stedet."
#: libraries/config/messages.inc.php:447
msgid "Verbose name of this server"
-msgstr ""
+msgstr "Udvidet navn for denne server"
#: libraries/config/messages.inc.php:448
msgid "Whether a user should be displayed a "show all (rows)" button"
@@ -4159,7 +4158,7 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid "Allow to display all the rows"
-msgstr ""
+msgstr "Tillad visning af alle rækker"
#: libraries/config/messages.inc.php:450
msgid ""
@@ -4183,10 +4182,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:454
-#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
-msgstr "Standardretning for visning"
+msgstr "Vis retning for visning"
#: libraries/config/messages.inc.php:455
msgid ""
@@ -4195,48 +4193,49 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:456
-#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
-msgstr "Vis åbne tabeller"
+msgstr "Vis felttyper"
#: libraries/config/messages.inc.php:457
msgid "Display the function fields in edit/insert mode"
-msgstr ""
+msgstr "Vis funktionsfelterne i rediger/indsæt tilstand"
#: libraries/config/messages.inc.php:458
msgid "Show function fields"
-msgstr ""
+msgstr "Vis funktionsfelter"
#: libraries/config/messages.inc.php:459
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
+"Viser link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
+"output"
#: libraries/config/messages.inc.php:460
msgid "Show phpinfo() link"
-msgstr ""
+msgstr "Vis phpinfo() link"
#: libraries/config/messages.inc.php:461
msgid "Show detailed MySQL server information"
-msgstr ""
+msgstr "Vis detaljeret MySQL serverinformation"
#: libraries/config/messages.inc.php:462
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
-msgstr ""
+msgstr "Definerer om SQL-forespørgsler genereret af phpMyAdmin skal vises"
#: libraries/config/messages.inc.php:463
msgid "Show SQL queries"
-msgstr ""
+msgstr "Vis SQL-forespørgsler"
#: libraries/config/messages.inc.php:464
msgid "Allow to display database and table statistics (eg. space usage)"
-msgstr ""
+msgstr "Tillad visning af database og databasestatistikker (eks. diskforbrug)"
#: libraries/config/messages.inc.php:465
msgid "Show statistics"
-msgstr ""
+msgstr "Vis statistik"
#: libraries/config/messages.inc.php:466
msgid ""
@@ -4246,7 +4245,7 @@ msgstr ""
#: libraries/config/messages.inc.php:467
msgid "Display database comment instead of its name"
-msgstr ""
+msgstr "Vis databasekommentar i stedet for dens navn"
#: libraries/config/messages.inc.php:468
msgid ""
@@ -4258,7 +4257,7 @@ msgstr ""
#: libraries/config/messages.inc.php:469
msgid "Display table comment instead of its name"
-msgstr ""
+msgstr "Vis tabelkommentar stedet for dens navn"
#: libraries/config/messages.inc.php:470
msgid "Display table comments in tooltips"
@@ -4268,10 +4267,12 @@ msgstr ""
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
+"Marker brugte tabeller og gør det muligt at vise databaser med låste "
+"tabeller"
#: libraries/config/messages.inc.php:472
msgid "Skip locked tables"
-msgstr ""
+msgstr "Spring over låste tabeller"
#: libraries/config/messages.inc.php:477
msgid "Requires SQL Validator to be enabled"
@@ -4306,7 +4307,7 @@ msgstr ""
#: libraries/config/messages.inc.php:483 tbl_tracking.php:454
#: tbl_tracking.php:511
msgid "Username"
-msgstr ""
+msgstr "Brugernavn"
#: libraries/config/messages.inc.php:484
msgid ""
@@ -4333,10 +4334,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:489
-#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
-msgstr "Tilføj/Slet felt-kolonne"
+msgstr "Textarea kolonner"
#: libraries/config/messages.inc.php:490
msgid ""
@@ -4346,21 +4346,20 @@ msgstr ""
#: libraries/config/messages.inc.php:491
msgid "Textarea rows"
-msgstr ""
+msgstr "Textarea rækker"
#: libraries/config/messages.inc.php:492
msgid "Title of browser window when a database is selected"
-msgstr ""
+msgstr "Titel for vindue, når en database er valgt"
#: libraries/config/messages.inc.php:494
msgid "Title of browser window when nothing is selected"
-msgstr ""
+msgstr "Titel for vindue, når ingenting er valgt"
#: libraries/config/messages.inc.php:495
-#, fuzzy
#| msgid "Default"
msgid "Default title"
-msgstr "Standardværdi"
+msgstr "Standardtitel"
#: libraries/config/messages.inc.php:496
msgid "Title of browser window when a server is selected"
@@ -4384,11 +4383,11 @@ msgstr ""
#: libraries/config/messages.inc.php:502
msgid "Directory on server where you can upload files for import"
-msgstr ""
+msgstr "Mappe på server, hvor man kan uploade filer til import"
#: libraries/config/messages.inc.php:503
msgid "Upload directory"
-msgstr ""
+msgstr "Mappe til uploads"
#: libraries/config/messages.inc.php:504
msgid "Allow for searching inside the entire database"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-9272-ge2dff46
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via e2dff46f798996dd906d7421120ef51b0e83ebcc (commit)
from a7014004af8a941d095d11bb11114c208b99f4a6 (commit)
- Log -----------------------------------------------------------------
commit e2dff46f798996dd906d7421120ef51b0e83ebcc
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Jul 19 13:49:10 2011 +0200
There is no result here
-----------------------------------------------------------------------
Summary of changes:
libraries/export/htmlword.php | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/libraries/export/htmlword.php b/libraries/export/htmlword.php
index ddc18ac..049cdc6 100644
--- a/libraries/export/htmlword.php
+++ b/libraries/export/htmlword.php
@@ -346,7 +346,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
} // end while
- PMA_DBI_free_result($result);
return PMA_exportOutputHandler('</table>');
}
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 80070ac56268c6580ece3028853f44617ae0dc4a
by Michal Čihař 19 Jul '11
by Michal Čihař 19 Jul '11
19 Jul '11
The branch, master has been updated
via 80070ac56268c6580ece3028853f44617ae0dc4a (commit)
from 60fc0016698c65caf51abe4916d1d082c8fc9e0c (commit)
- Log -----------------------------------------------------------------
commit 80070ac56268c6580ece3028853f44617ae0dc4a
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Tue Jul 19 13:32:30 2011 +0200
Update generated docs
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 4 +-
output/es/Documentation.html | 6 ++--
output/ja/Documentation.html | 50 ++++++++++++++++++-----------------------
output/tr/Documentation.html | 14 ++++++------
4 files changed, 34 insertions(+), 40 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index f0fb7a0..7b02265 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -1362,7 +1362,7 @@ list of databases for the navigation frame.
</dd>
<dt><span
id="cfg_Servers_SignonScript">$cfg['Servers'][$i]['SignonScript']</span>
-string</dt>
+text</dt>
<dd>Name of PHP script to be sourced and executed to obtain login
credentials. This is alternative approach to session based single
signon. The script needs to provide function
@@ -2002,7 +2002,7 @@ href="#cfg_CharEditing">$cfg['CharEditing']</a>).</dd>
<dd>Maximum number of characters shown in any non-numeric field on browse view.
Can be turned off by a toggle button on the browse page.</dd>
- <dt><span id="cfg_RowActionLinks">$cfg['RowActionLinks'] </span>string
+ <dt><span id="cfg_RowActionLinks">$cfg['RowActionLinks'] </span>text
</dt>
<dd>Defines the place where table row links (Edit, Inline edit, Copy, Delete)
would be put when tables contents are displayed (you may have them displayed
diff --git a/output/es/Documentation.html b/output/es/Documentation.html
index ccc8f30..96dc5f4 100644
--- a/output/es/Documentation.html
+++ b/output/es/Documentation.html
@@ -2318,10 +2318,10 @@ de la página de importación para poder identificar fácilmente lo que
significan.
</dd>
- <dt id="cfg_ShowDisplayDir">$cfg['ShowDisplayDir'] boolean</dt>
+ <dt id="cfg_ShowDisplayDir">booleano $cfg['ShowDisplayDir']</dt>
<dd>
- Defines whether or not type display direction option is shown when browsing
-a table.
+ Define si se muestra la opción sobre el tipo de dirección de la
+visualización al examinar una tabla.
</dd>
<dt id="cfg_RepeatCells">entero $cfg['RepeatCells']</dt>
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index bd4b194..22b0426 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -945,7 +945,7 @@ id="cfg_Servers_tracking_version_auto_create">$cfg['Servers'][$i]['tracking_vers
<dd>
コマンド追跡機能がテーブルやビューに対して自動的にバージョンを作成するかどうか。デフォルト値は false です。
<br/><br/>
- true に設定して、テーブルやビューを作成してあり、
+ TRUE に設定して、以下のようにテーブルやビューを作成してあり、
<ul>
<li>CREATE TABLE ...</li>
@@ -1048,7 +1048,7 @@ id="cfg_Servers_verbose_check">$cfg['Servers'][$i]['verbose_check']</span>
つ追加されました。この変数を <tt>TRUE</tt>(デフォルト)にセットしておくと、phpMyAdmin
は最新のテーブル構造が利用できるようになっているかチェックします。利用できない場合はスーパーユーザに警告を発します。<br /><br />
- このチェック機能はこの変数を false にすることで無効にできます。無効にするとパフォーマンスが向上します。<br /><br />
+ このチェック機能はこの変数を FALSE にすることで無効にできます。無効にするとパフォーマンスが向上します。<br /><br />
確実にテーブル構造が最新になっているときは FALSE にするのがお勧めです。</dd>
<dt><span id="cfg_Servers_AllowRoot">$cfg['Servers'][$i]['AllowRoot']</span> 論理型</dt>
@@ -1180,7 +1180,7 @@ href="#cfg_Servers_SignonScript" class="configrule">SignonScript</a>
<dt id="cfg_MaxCharactersInDisplayedSQL">$cfg['MaxCharactersInDisplayedSQL'] 整数</dt>
<dd>SQL クエリ表示時の最大文字数。デフォルトの制限は 1000 ですが、BLOB を表現する多量の 16
進コードの表示を回避するためには、このくらいが適切だと思われます。しかし、一部のユーザは 1000 文字よりも長い SQL
-クエリを使用します。また、クエリの長さがこの制限を超えている場合、このクエリは履歴に保存されません。</dd>
+クエリを使用します。また、クエリの長さがこの制限を超えている場合、そのクエリは履歴に保存されません。</dd>
<dt id="cfg_OBGzip">$cfg['OBGzip'] 文字列/論理型</dt>
<dd><abbr title="HyperText Transfer Protocol">HTTP</abbr> 転送のスピードアップのために GZip
@@ -1798,10 +1798,9 @@ setfacl -d -m "g:www-data:rwx" tmp
この配列はインポートの際のデフォルトパラメータを定義します。項目名はインポートページに表示されるテキストとほとんど同じですので、意味は簡単にわかるでしょう。
</dd>
- <dt id="cfg_ShowDisplayDir">$cfg['ShowDisplayDir'] boolean</dt>
+ <dt id="cfg_ShowDisplayDir">$cfg['ShowDisplayDir'] 論理型</dt>
<dd>
- Defines whether or not type display direction option is shown when browsing
-a table.
+ テーブルを閲覧するときに、表示方向のオプションが表示されるかどうかを定義します。
</dd>
<dt id="cfg_RepeatCells">$cfg['RepeatCells'] 整数</dt>
@@ -1874,7 +1873,7 @@ textarea
<dd>データベースやテーブルの名前を自然な順番でソートします(たとえば、t1、t2、t10)。いまのところ左パネル(軽快モード)とデータベース画面のテーブル一覧に実装されています。</dd>
<dt id="cfg_InitialSlidersState">$cfg['InitialSlidersState'] 文字列</dt>
- <dd><tt>「closed」</tt>に設定した場合、折り畳みは閉じた状態で表示されます。<tt>「open」</tt>はその逆です。全ての折り畳みを完全に無効にするには、<tt>「disabled」</tt>にします。</dd>
+ <dd><tt>「closed(閉じている)」</tt>に設定した場合、折り畳みは閉じた状態で表示されます。<tt>「open(開いている)」</tt>はその逆です。全ての折り畳みを完全に無効にするには、<tt>「disabled」</tt>にします。</dd>
<dt id="cfg_UserprefsDisallow">$cfg['UserprefsDisallow'] 配列</dt>
<dd>ユーザ環境設定を許可させない設定オプションの名前 (<tt>$cfg</tt> 配列のキーで指定)
@@ -2708,10 +2707,9 @@ already sent by
...(警告:ヘッダ情報を追加できません。ヘッダは送信済みです)」というエラーメッセージが表示されます。何がいけないのでしょう。</a></h4>
<p> <i>config.inc.php</i> ファイルを修正して、先頭の <tt><?php</tt> タグの前や末尾の
-<tt>?></tt>
-の後には何も入れない(改行やスペース、文字などがない)ようにしてください。また、zip形式の配布キットを使用しているIISでユーザから以下の報告を受けています。『ファイル
-<tt>libraries/Config.class.php</tt> の末尾に改行コード (0x0A)
-が含まれていたので、この文字を削除したらエラーがなくなりました。』</p>
+<tt>?></tt> の後には何も入れない(改行やスペース、文字などがない)ようにしてください。また、zip 形式の配布キットを使用している
+IIS でユーザから以下の報告を受けています。『ファイル <tt>libraries/Config.class.php</tt> の末尾に改行コード
+(0x0A) が含まれていたので、この文字を削除したらエラーがなくなりました。』</p>
<h4 id="faq2_2">
<a href="#faq2_2">2.2 phpMyAdmin が MySQL に接続できません。何が悪いのでしょう。</a></h4>
@@ -2806,8 +2804,8 @@ href="#cfg_ThemeDefault" class="configrule">$cfg['ThemeDefault']</a> で設定
<p> テーマの作り方:</p>
-<ul><li><a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>(デフォルトでは
-<tt>themes</tt>)ディレクトリの下に新しいサブディレクトリ(例えば「your_theme_name」)を作ります</li>
+<ul><li><a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>
+ディレクトリ(デフォルトでは <tt>themes</tt>)の下に新しいサブディレクトリ(例:「your_theme_name」)を作ります</li>
<li>「original」から「your_theme_name」にファイルやディレクトリをコピーします</li>
<li>「your_theme_name/css」の css ファイルを編集します。</li>
<li>「your_theme_name/img」に新しい画像を入れます。</li>
@@ -3218,8 +3216,8 @@ found(ページが見つかりません)」のような)エラーが出ま
<p>
テーブルに主キーやユニークキーがないと、行を識別するために長い <abbr title="Uniform Resource
Locator">URL</abbr> を使うことになってしまうのですが、これらのブラウザには <abbr title="Uniform
-Resource Locator">URL</abbr> の長さに制限があるため、その問題が起こります。この問題は、例えば Netscape
-では起こりません。回避するには、主キーやユニークキーを作成するか、別のブラウザを使ってください。
+Resource Locator">URL</abbr> の長さに制限があるため、その問題が起こります。この問題は、Netscape
+などでは起こりません。回避するには、主キーやユニークキーを作成するか、別のブラウザを使ってください。
<br />
</p>
@@ -3497,31 +3495,27 @@ href="http://dev.mysql.com/doc/refman/5.1/ja/silent-column-changes.html">カラ
<p><b>構造:</b></p>
-<ul><li>「『DROP TABLE』を追加(Add DROP TABLE)」は、インポート中に既存のテーブルが存在していたら<a
+<ul><li>「『DROP TABLE』を追加」は、インポート中に既存のテーブルが存在していたら<a
href="http://dev.mysql.com/doc/mysql/ja/drop-table.html">そのテーブルを削除する</a>よう指示する行を追加します。エクスポートしたあとでテーブルを削除するわけでは「ありません」。ファイルをインポートするときのみです。</li>
<li>「『IF NOT
EXISTS』を追加」は、そのテーブルが存在しないときにのみテーブルを作成するようになります。そうでなく、そのテーブル名が存在しているのに構造が異なる場合はエラーになることもあります。</li>
- <li>「『AUTO_INCREMENT』値を追加(Add AUTO_INCREMENT value)」は、(あれば)AUTO_INCREMENT
-値もバックアップに含めるようにします。</li>
- <li>「逆クォートでテーブル名やカラム名を囲む (Enclose table and column names with
-backquotes)」は、特殊文字を含むカラム名やテーブル名を保護します。</li>
- <li>「コメントの追加(Add into comments)」は、pmadb に設定されているカラムのコメント、リレーション、MIME タイプを <abbr
-title="structured query language">SQL</abbr> のコメント文の形 (<i>/* xxx */</i>)
-でダンプに含めます。
+ <li>「『AUTO_INCREMENT』値を追加」は、(あれば)AUTO_INCREMENT 値もバックアップに含めるようにします。</li>
+ <li>「逆クォートでテーブルやカラムの名前を囲む」は、特殊文字を含むカラム名やテーブル名を保護します。</li>
+ <li>「コメントの追加」は、pmadb に設定されているカラムのコメント、リレーション、MIME タイプを <abbr title="structured
+query language">SQL</abbr> のコメント文の形 (<i>/* xxx */</i>) でダンプに含めます。
</li>
</ul>
<p><b>データ:</b></p>
-<ul><li>「完全な INSERT 文を作成する(Complete inserts)」は、すべての INSERT
+<ul><li>「完全な INSERT 文を作成する」は、すべての INSERT
コマンドにカラム名を付与して、ダンプを読みやすくします(ただし、結果としてできるファイルは大きくなります)。</li>
- <li>「長い INSERT 文を作成する(Extended inserts)」は、ダンプファイルを短くするために INSERT
-句とテーブル名を一度しか使わないようにします。</li>
- <li>「遅延インサートを使用する(Delayed inserts)」については、<a
+ <li>「長い INSERT 文を作成する」は、ダンプファイルを短くするために INSERT 句とテーブル名を一度しか使わないようにします。</li>
+ <li>「遅延インサートを使用する」については、<a
href="http://dev.mysql.com/doc/mysql/ja/insert-delayed.html">MySQL
マニュアル</a>の説明をご覧ください。
</li>
- <li>「『INSERT IGNORE』を使用する(Ignore inserts)」は、エラーを警告扱いにしてしまいます。これまた詳しくは <a
+ <li>「『INSERT IGNORE』を使用する」は、エラーを警告扱いにしてしまいます。これまた詳しくは <a
href="http://dev.mysql.com/doc/mysql/ja/insert.html">MySQL
マニュアル</a>に書いてありますが、基本的にこれを選択すると、無効な値があってもそれを調整して挿入するため、コマンドがまるごと失敗することはなくなります。</li>
</ul>
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index d49fae6..ee1589d 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -2209,11 +2209,11 @@ phpMyAdmin betiklerinin sahibiyle aynı kullanıcı olmalıdır.
Geçici dosyaların depolanabildiği dizinin adı.
<br /><br />
- This is needed for native MS Excel export, see <a href="#faq6_23"><abbr
-title="Frequently Asked Questions">FAQ</abbr> 6.23</a> and to work around
-limitations of <tt>open_basedir</tt> for uploaded files, see <a
-href="#faq1_11"><abbr title="Frequently Asked Questions">FAQ</abbr>
-1.11</a>.
+ Bu yerleşik MS Excel dışa aktarması için gereklidir, <a
+href="#faq6_23"><abbr title="Sıkça Sorulan Sorular">SSS</abbr> 6.23</a>'e
+bakın ve gönderilmiş dosyalarda <tt>open_basedir</tt> sınırlamalarına geçici
+bir çözüm bulmak için <a href="#faq1_11"><abbr title="Sıkça Sorulan
+Sorular">SSS</abbr> 1.11</a>'e bakın.
<br /><br />
If the directory where phpMyAdmin is installed is subject to an
@@ -2277,8 +2277,8 @@ mean.
<dt id="cfg_ShowDisplayDir">$cfg['ShowDisplayDir'] boolean</dt>
<dd>
- Defines whether or not type display direction option is shown when browsing
-a table.
+ Tabloya gözatılırken görüntüleme talimatı seçeneği doldurulsada
+doldurulmasada gösterilmesini tanımlar.
</dd>
<dt id="cfg_RepeatCells">$cfg['RepeatCells'] integer</dt>
hooks/post-receive
--
phpMyAdmin localized documentation
1
0