Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin into OpenGIS
This commit is contained in:
commit
be8ce3d5b6
@ -1816,6 +1816,76 @@ $(document).ready(function() {
|
||||
|
||||
}, 'top.frame_content'); //end $(document).ready for 'Create Table'
|
||||
|
||||
/**
|
||||
* jQuery coding for 'Change Table'. Used on tbl_structure.php *
|
||||
* Attach Ajax Event handlers for Change Table
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
/**
|
||||
*Ajax action for submitting the column change form
|
||||
**/
|
||||
$("#append_fields_form input[name=do_save_data]").live('click', function(event) {
|
||||
event.preventDefault();
|
||||
/**
|
||||
* @var the_form object referring to the export form
|
||||
*/
|
||||
var $form = $("#append_fields_form");
|
||||
|
||||
/*
|
||||
* First validate the form; if there is a problem, avoid submitting it
|
||||
*
|
||||
* checkTableEditForm() needs a pure element and not a jQuery object,
|
||||
* this is why we pass $form[0] as a parameter (the jQuery object
|
||||
* is actually an array of DOM elements)
|
||||
*/
|
||||
if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) {
|
||||
// OK, form passed validation step
|
||||
if ($form.hasClass('ajax')) {
|
||||
PMA_prepareForAjaxRequest($form);
|
||||
//User wants to submit the form
|
||||
$.post($form.attr('action'), $form.serialize()+"&do_save_data=Save", function(data) {
|
||||
if ($("#sqlqueryresults").length != 0) {
|
||||
$("#sqlqueryresults").remove();
|
||||
} else if ($(".error").length != 0) {
|
||||
$(".error").remove();
|
||||
}
|
||||
if (data.success == true) {
|
||||
PMA_ajaxShowMessage(data.message);
|
||||
$("<div id='sqlqueryresults'></div>").insertAfter("#topmenucontainer");
|
||||
$("#sqlqueryresults").html(data.sql_query);
|
||||
$("#result_query .notice").remove();
|
||||
$("#result_query").prepend((data.message));
|
||||
if ($("#change_column_dialog").length > 0) {
|
||||
$("#change_column_dialog").dialog("close").remove();
|
||||
}
|
||||
/*Reload the field form*/
|
||||
$.post($("#fieldsForm").attr('action'), $("#fieldsForm").serialize()+"&ajax_request=true", function(form_data) {
|
||||
$("#fieldsForm").remove();
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(form_data);
|
||||
if ($("#sqlqueryresults").length != 0) {
|
||||
$temp_div.find("#fieldsForm").insertAfter("#sqlqueryresults");
|
||||
} else {
|
||||
$temp_div.find("#fieldsForm").insertAfter(".error");
|
||||
}
|
||||
/*Call the function to display the more options in table*/
|
||||
displayMoreTableOpts();
|
||||
});
|
||||
} else {
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(data);
|
||||
var $error = $temp_div.find(".error code").addClass("error");
|
||||
PMA_ajaxShowMessage($error);
|
||||
}
|
||||
}) // end $.post()
|
||||
} else {
|
||||
// non-Ajax submit
|
||||
$form.append('<input type="hidden" name="do_save_data" value="Save" />');
|
||||
$form.submit();
|
||||
}
|
||||
}
|
||||
}) // end change table button "do_save_data"
|
||||
|
||||
}, 'top.frame_content'); //end $(document).ready for 'Change Table'
|
||||
|
||||
/**
|
||||
* Attach Ajax event handlers for Drop Database. Moved here from db_structure.js
|
||||
* as it was also required on db_create.php
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
*
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
|
||||
|
||||
/**
|
||||
* Attach Event Handler for 'Drop Column'
|
||||
*
|
||||
@ -181,53 +181,6 @@ $(document).ready(function() {
|
||||
changeColumns(action,url);
|
||||
});
|
||||
|
||||
/**
|
||||
*Ajax action for submitting the column change form
|
||||
**/
|
||||
$("#append_fields_form input[name=do_save_data].ajax").live('click', function(event) {
|
||||
event.preventDefault();
|
||||
/**
|
||||
* @var the_form object referring to the export form
|
||||
*/
|
||||
var $form = $("#append_fields_form");
|
||||
|
||||
PMA_prepareForAjaxRequest($form);
|
||||
//User wants to submit the form
|
||||
$.post($form.attr('action'), $form.serialize()+"&do_save_data=Save", function(data) {
|
||||
if ($("#sqlqueryresults").length != 0) {
|
||||
$("#sqlqueryresults").remove();
|
||||
} else if ($(".error").length != 0) {
|
||||
$(".error").remove();
|
||||
}
|
||||
if (data.success == true) {
|
||||
PMA_ajaxShowMessage(data.message);
|
||||
$("<div id='sqlqueryresults'></div>").insertAfter("#topmenucontainer");
|
||||
$("#sqlqueryresults").html(data.sql_query);
|
||||
$("#result_query .notice").remove();
|
||||
$("#result_query").prepend((data.message));
|
||||
if ($("#change_column_dialog").length > 0) {
|
||||
$("#change_column_dialog").dialog("close").remove();
|
||||
}
|
||||
/*Reload the field form*/
|
||||
$.post($("#fieldsForm").attr('action'), $("#fieldsForm").serialize()+"&ajax_request=true", function(form_data) {
|
||||
$("#fieldsForm").remove();
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(form_data);
|
||||
if ($("#sqlqueryresults").length != 0) {
|
||||
$temp_div.find("#fieldsForm").insertAfter("#sqlqueryresults");
|
||||
} else {
|
||||
$temp_div.find("#fieldsForm").insertAfter(".error");
|
||||
}
|
||||
/*Call the function to display the more options in table*/
|
||||
displayMoreTableOpts();
|
||||
});
|
||||
} else {
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(data);
|
||||
var $error = $temp_div.find(".error code").addClass("error");
|
||||
PMA_ajaxShowMessage($error);
|
||||
}
|
||||
}) // end $.post()
|
||||
}) // end insert table button "do_save_data"
|
||||
|
||||
/**
|
||||
*Ajax event handler for index edit
|
||||
**/
|
||||
@ -239,7 +192,11 @@ $(document).ready(function() {
|
||||
}
|
||||
url = url + "&ajax_request=true";
|
||||
|
||||
var div = $('<div id="edit_index_dialog"></div>');
|
||||
/*Remove the hidden dialogs if there are*/
|
||||
if ($('#edit_index_dialog').length != 0) {
|
||||
$('#edit_index_dialog').remove();
|
||||
}
|
||||
var $div = $('<div id="edit_index_dialog"></div>');
|
||||
|
||||
/**
|
||||
* @var button_options Object that stores the options passed to jQueryUI
|
||||
@ -256,7 +213,7 @@ $(document).ready(function() {
|
||||
$.get( "tbl_indexes.php" , url , function(data) {
|
||||
//in the case of an error, show the error message returned.
|
||||
if (data.success != undefined && data.success == false) {
|
||||
div
|
||||
$div
|
||||
.append(data.error)
|
||||
.dialog({
|
||||
title: PMA_messages['strEdit'],
|
||||
@ -267,7 +224,7 @@ $(document).ready(function() {
|
||||
buttons : button_options_error
|
||||
})// end dialog options
|
||||
} else {
|
||||
div
|
||||
$div
|
||||
.append(data)
|
||||
.dialog({
|
||||
title: PMA_messages['strEdit'],
|
||||
@ -280,6 +237,7 @@ $(document).ready(function() {
|
||||
//Remove the top menu container from the dialog
|
||||
.find("#topmenucontainer").hide()
|
||||
; // end dialog options
|
||||
checkIndexType();
|
||||
checkIndexName("index_frm");
|
||||
}
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
@ -311,22 +269,22 @@ $(document).ready(function() {
|
||||
|
||||
/*Reload the field form*/
|
||||
$("#table_index").remove();
|
||||
var temp_div = $("<div id='temp_div'><div>").append(data.index_table);
|
||||
$(temp_div).find("#table_index").insertAfter("#index_header");
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(data.index_table);
|
||||
$temp_div.find("#table_index").insertAfter("#index_header");
|
||||
if ($("#edit_index_dialog").length > 0) {
|
||||
$("#edit_index_dialog").dialog("close").remove();
|
||||
}
|
||||
|
||||
} else {
|
||||
if(data.error != undefined) {
|
||||
var temp_div = $("<div id='temp_div'><div>").append(data.error);
|
||||
if($(temp_div).find(".error code").length != 0) {
|
||||
var error = $(temp_div).find(".error code").addClass("error");
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(data.error);
|
||||
if ($temp_div.find(".error code").length != 0) {
|
||||
var $error = $temp_div.find(".error code").addClass("error");
|
||||
} else {
|
||||
var error = temp_div;
|
||||
var $error = $temp_div;
|
||||
}
|
||||
}
|
||||
PMA_ajaxShowMessage(error);
|
||||
PMA_ajaxShowMessage($error);
|
||||
}
|
||||
|
||||
}) // end $.post()
|
||||
@ -346,8 +304,8 @@ $(document).ready(function() {
|
||||
//User wants to submit the form
|
||||
$.post($form.attr('action'), $form.serialize()+"&add_fields=Go", function(data) {
|
||||
$("#index_columns").remove();
|
||||
var temp_div = $("<div id='temp_div'><div>").append(data);
|
||||
$(temp_div).find("#index_columns").appendTo("#index_edit_fields");
|
||||
var $temp_div = $("<div id='temp_div'><div>").append(data);
|
||||
$temp_div.find("#index_columns").appendTo("#index_edit_fields");
|
||||
}) // end $.post()
|
||||
}) // end insert table button "Go"
|
||||
|
||||
@ -394,7 +352,7 @@ function changeColumns(action,url) {
|
||||
if ($('#change_column_dialog').length != 0) {
|
||||
$('#change_column_dialog').remove();
|
||||
}
|
||||
var div = $('<div id="change_column_dialog"></div>');
|
||||
var $div = $('<div id="change_column_dialog"></div>');
|
||||
|
||||
/**
|
||||
* @var button_options Object that stores the options passed to jQueryUI
|
||||
@ -411,7 +369,7 @@ function changeColumns(action,url) {
|
||||
$.get( action , url , function(data) {
|
||||
//in the case of an error, show the error message returned.
|
||||
if (data.success != undefined && data.success == false) {
|
||||
div
|
||||
$div
|
||||
.append(data.error)
|
||||
.dialog({
|
||||
title: PMA_messages['strChangeTbl'],
|
||||
@ -422,7 +380,7 @@ function changeColumns(action,url) {
|
||||
buttons : button_options_error
|
||||
})// end dialog options
|
||||
} else {
|
||||
div
|
||||
$div
|
||||
.append(data)
|
||||
.dialog({
|
||||
title: PMA_messages['strChangeTbl'],
|
||||
|
||||
@ -194,9 +194,10 @@ class PMA_Index
|
||||
// $columns[names][]
|
||||
// $columns[sub_parts][]
|
||||
foreach ($columns['names'] as $key => $name) {
|
||||
$sub_part = isset($columns['sub_parts'][$key]) ? $columns['sub_parts'][$key] : '';
|
||||
$_columns[] = array(
|
||||
'Column_name' => $name,
|
||||
'Sub_part' => $columns['sub_parts'][$key],
|
||||
'Sub_part' => $sub_part,
|
||||
);
|
||||
}
|
||||
} else {
|
||||
|
||||
52
po/br.po
52
po/br.po
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-07 15:16+0200\n"
|
||||
"PO-Revision-Date: 2011-07-10 19:45+0200\n"
|
||||
"PO-Revision-Date: 2011-07-11 20:39+0200\n"
|
||||
"Last-Translator: <fulup.jakez@ofis-bzh.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: br\n"
|
||||
@ -2825,7 +2825,7 @@ msgstr "Bannoù gronnet gant"
|
||||
#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81
|
||||
#: libraries/import/ldi.php:43
|
||||
msgid "Columns escaped by"
|
||||
msgstr ""
|
||||
msgstr "Arouezenn dec'hout"
|
||||
|
||||
#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83
|
||||
#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99
|
||||
@ -2833,38 +2833,38 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145
|
||||
#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27
|
||||
msgid "Replace NULL by"
|
||||
msgstr ""
|
||||
msgstr "Erlec'hiañ NULL gant"
|
||||
|
||||
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84
|
||||
msgid "Remove CRLF characters within columns"
|
||||
msgstr ""
|
||||
msgstr "Tennañ an arouezennoù dibenn linenn e dibarzh ar bannoù"
|
||||
|
||||
#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245
|
||||
#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63
|
||||
#: libraries/import/ldi.php:41
|
||||
msgid "Columns terminated by"
|
||||
msgstr ""
|
||||
msgstr "Bannoù a echu gant"
|
||||
|
||||
#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240
|
||||
#: libraries/import/csv.php:86 libraries/import/ldi.php:44
|
||||
msgid "Lines terminated by"
|
||||
msgstr ""
|
||||
msgstr "Linennoù a echu gant"
|
||||
|
||||
#: libraries/config/messages.inc.php:82
|
||||
msgid "Excel edition"
|
||||
msgstr ""
|
||||
msgstr "Stumm Excel"
|
||||
|
||||
#: libraries/config/messages.inc.php:85
|
||||
msgid "Database name template"
|
||||
msgstr ""
|
||||
msgstr "Patrom anv diaz roadennoù"
|
||||
|
||||
#: libraries/config/messages.inc.php:86
|
||||
msgid "Server name template"
|
||||
msgstr ""
|
||||
msgstr "Patrom anv servijer"
|
||||
|
||||
#: libraries/config/messages.inc.php:87
|
||||
msgid "Table name template"
|
||||
msgstr ""
|
||||
msgstr "Patrom anv taolenn"
|
||||
|
||||
#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104
|
||||
#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137
|
||||
@ -2872,74 +2872,74 @@ msgstr ""
|
||||
#: libraries/export/latex.php:40 libraries/export/odt.php:32
|
||||
#: libraries/export/sql.php:116 libraries/export/texytext.php:23
|
||||
msgid "Dump table"
|
||||
msgstr ""
|
||||
msgstr "Ezporzhiañ an daolenn"
|
||||
|
||||
#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32
|
||||
msgid "Include table caption"
|
||||
msgstr ""
|
||||
msgstr "Enklozañ an istitloù"
|
||||
|
||||
#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101
|
||||
#: libraries/export/latex.php:50 libraries/export/latex.php:74
|
||||
msgid "Table caption"
|
||||
msgstr ""
|
||||
msgstr "Istitl eus an daolenn"
|
||||
|
||||
#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102
|
||||
msgid "Continued table caption"
|
||||
msgstr ""
|
||||
msgstr "Enklozañ an istitloù"
|
||||
|
||||
#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103
|
||||
#: libraries/export/latex.php:54 libraries/export/latex.php:78
|
||||
msgid "Label key"
|
||||
msgstr ""
|
||||
msgstr "Alc'hwez an dikedenn"
|
||||
|
||||
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110
|
||||
#: libraries/config/messages.inc.php:134 libraries/export/odt.php:326
|
||||
#: libraries/tbl_properties.inc.php:145
|
||||
msgid "MIME type"
|
||||
msgstr ""
|
||||
msgstr "Seurt MIME"
|
||||
|
||||
#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112
|
||||
#: libraries/config/messages.inc.php:136 tbl_relation.php:396
|
||||
msgid "Relations"
|
||||
msgstr ""
|
||||
msgstr "Darempredoù"
|
||||
|
||||
#: libraries/config/messages.inc.php:105
|
||||
msgid "Export method"
|
||||
msgstr ""
|
||||
msgstr "Doare ezporzhiañ"
|
||||
|
||||
#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116
|
||||
msgid "Save on server"
|
||||
msgstr ""
|
||||
msgstr "Enrollañ war ar servijer"
|
||||
|
||||
#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117
|
||||
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
|
||||
msgid "Overwrite existing file(s)"
|
||||
msgstr ""
|
||||
msgstr "Frikañ ar restroù zo c'hoazh"
|
||||
|
||||
#: libraries/config/messages.inc.php:118
|
||||
msgid "Remember file name template"
|
||||
msgstr ""
|
||||
msgstr "Derc'hel soñj eus patrom anv ar restr"
|
||||
|
||||
#: libraries/config/messages.inc.php:120
|
||||
msgid "Enclose table and column names with backquotes"
|
||||
msgstr ""
|
||||
msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù"
|
||||
|
||||
#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260
|
||||
#: libraries/display_export.lib.php:346
|
||||
msgid "SQL compatibility mode"
|
||||
msgstr ""
|
||||
msgstr "Mod kenglotañ gant SQL"
|
||||
|
||||
#: libraries/config/messages.inc.php:122 libraries/export/sql.php:176
|
||||
msgid "<code>CREATE TABLE</code> options:"
|
||||
msgstr ""
|
||||
msgstr "Dibarzhioù evit <code>CREATE TABLE</code> :"
|
||||
|
||||
#: libraries/config/messages.inc.php:123
|
||||
msgid "Creation/Update/Check dates"
|
||||
msgstr ""
|
||||
msgstr "Deiziad krouiñ/hizivaat/gwiriañ"
|
||||
|
||||
#: libraries/config/messages.inc.php:124
|
||||
msgid "Use delayed inserts"
|
||||
msgstr ""
|
||||
msgstr "Ensoc'hadennoù gant dale"
|
||||
|
||||
#: libraries/config/messages.inc.php:125 libraries/export/sql.php:79
|
||||
msgid "Disable foreign key checks"
|
||||
|
||||
85
po/da.po
85
po/da.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-07 15:16+0200\n"
|
||||
"PO-Revision-Date: 2011-07-11 14:02+0200\n"
|
||||
"PO-Revision-Date: 2011-07-11 15:49+0200\n"
|
||||
"Last-Translator: <jacobkamphansen@gmail.com>\n"
|
||||
"Language-Team: danish <da@li.org>\n"
|
||||
"Language: da\n"
|
||||
@ -2373,7 +2373,7 @@ msgstr "Der er ikke nogen filer at uploade"
|
||||
|
||||
#: libraries/common.lib.php:2849 libraries/common.lib.php:2850
|
||||
msgid "Execute"
|
||||
msgstr ""
|
||||
msgstr "Udfør"
|
||||
|
||||
#: libraries/config.values.php:45 libraries/config.values.php:47
|
||||
#: libraries/config.values.php:51
|
||||
@ -2411,12 +2411,11 @@ msgstr "struktur"
|
||||
#: libraries/export/latex.php:42 libraries/export/odt.php:34
|
||||
#: libraries/export/sql.php:123 libraries/export/texytext.php:24
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
msgstr "data"
|
||||
|
||||
#: libraries/config.values.php:98 libraries/export/htmlword.php:25
|
||||
#: libraries/export/latex.php:42 libraries/export/odt.php:34
|
||||
#: libraries/export/sql.php:124 libraries/export/texytext.php:24
|
||||
#, fuzzy
|
||||
#| msgid "Structure and data"
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur og data"
|
||||
@ -2622,7 +2621,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:31
|
||||
msgid "Bzip2"
|
||||
msgstr ""
|
||||
msgstr "Bzip2"
|
||||
|
||||
#: libraries/config/messages.inc.php:32
|
||||
msgid ""
|
||||
@ -2830,7 +2829,6 @@ msgstr "Komprimering"
|
||||
#: libraries/export/latex.php:72 libraries/export/ods.php:25
|
||||
#: libraries/export/odt.php:58 libraries/export/texytext.php:28
|
||||
#: libraries/export/xls.php:25 libraries/export/xlsx.php:25
|
||||
#, fuzzy
|
||||
#| msgid "Put fields names in the first row"
|
||||
msgid "Put columns names in the first row"
|
||||
msgstr "Indsæt feltnavne i første række"
|
||||
@ -2844,10 +2842,9 @@ msgstr "Felter skal adskilles med"
|
||||
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242
|
||||
#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81
|
||||
#: libraries/import/ldi.php:43
|
||||
#, fuzzy
|
||||
#| msgid "Fields escaped by"
|
||||
msgid "Columns escaped by"
|
||||
msgstr "Felter escaped med"
|
||||
msgstr "Kolonner escapes med"
|
||||
|
||||
#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83
|
||||
#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99
|
||||
@ -2859,21 +2856,20 @@ msgstr "Erstat NULL med"
|
||||
|
||||
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84
|
||||
msgid "Remove CRLF characters within columns"
|
||||
msgstr "Fjern karakterer for linjeskift i felterne"
|
||||
msgstr "Fjern CRLF-karakterer i kolonnerne"
|
||||
|
||||
#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245
|
||||
#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63
|
||||
#: libraries/import/ldi.php:41
|
||||
msgid "Columns terminated by"
|
||||
msgstr "Felter afsluttes med"
|
||||
msgstr "Kolonner afsluttes med"
|
||||
|
||||
#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240
|
||||
#: libraries/import/csv.php:86 libraries/import/ldi.php:44
|
||||
msgid "Lines terminated by"
|
||||
msgstr "Linjer afsluttet med"
|
||||
msgstr "Linjer afsluttes med"
|
||||
|
||||
#: libraries/config/messages.inc.php:82
|
||||
#, fuzzy
|
||||
#| msgid "Excel edition"
|
||||
msgid "Excel edition"
|
||||
msgstr "Excel-udgave"
|
||||
@ -2884,11 +2880,11 @@ msgstr "Skabelon for databasenavn"
|
||||
|
||||
#: libraries/config/messages.inc.php:86
|
||||
msgid "Server name template"
|
||||
msgstr "Maske for servernavn"
|
||||
msgstr "Skabelon for servernavn"
|
||||
|
||||
#: libraries/config/messages.inc.php:87
|
||||
msgid "Table name template"
|
||||
msgstr "Maske for tabelnavn"
|
||||
msgstr "Skabelon for tabelnavn"
|
||||
|
||||
#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104
|
||||
#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137
|
||||
@ -2900,7 +2896,7 @@ msgstr "Dump tabel"
|
||||
|
||||
#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32
|
||||
msgid "Include table caption"
|
||||
msgstr "Inkluder tabeloverskrift"
|
||||
msgstr "Inkludér tabeloverskrift"
|
||||
|
||||
#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101
|
||||
#: libraries/export/latex.php:50 libraries/export/latex.php:74
|
||||
@ -2913,6 +2909,7 @@ msgstr "Fortsat tabeloverskrift"
|
||||
|
||||
#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103
|
||||
#: libraries/export/latex.php:54 libraries/export/latex.php:78
|
||||
#, fuzzy
|
||||
msgid "Label key"
|
||||
msgstr "Mærke nøgle"
|
||||
|
||||
@ -2928,10 +2925,9 @@ msgid "Relations"
|
||||
msgstr "Relationer"
|
||||
|
||||
#: libraries/config/messages.inc.php:105
|
||||
#, fuzzy
|
||||
#| msgid "Export type"
|
||||
msgid "Export method"
|
||||
msgstr "Eksporttype"
|
||||
msgstr "Eksport-type"
|
||||
|
||||
#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116
|
||||
msgid "Save on server"
|
||||
@ -2944,7 +2940,7 @@ msgstr "Overskriv eksisterende fil(er)"
|
||||
|
||||
#: libraries/config/messages.inc.php:118
|
||||
msgid "Remember file name template"
|
||||
msgstr "Husk maske for filnavn"
|
||||
msgstr "Husk skabelon for filnavn"
|
||||
|
||||
#: libraries/config/messages.inc.php:120
|
||||
msgid "Enclose table and column names with backquotes"
|
||||
@ -2953,11 +2949,11 @@ msgstr "Brug \"backquotes\" omkring tabel -og feltnavne"
|
||||
#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260
|
||||
#: libraries/display_export.lib.php:346
|
||||
msgid "SQL compatibility mode"
|
||||
msgstr "SQL-kompatibilitetsmodus"
|
||||
msgstr "SQL-kompatibilitets-tilstand"
|
||||
|
||||
#: libraries/config/messages.inc.php:122 libraries/export/sql.php:176
|
||||
msgid "<code>CREATE TABLE</code> options:"
|
||||
msgstr "Muligheder for <code>CREATE TABLE</code>:"
|
||||
msgstr "Indstillinger til <code>CREATE TABLE</code>:"
|
||||
|
||||
#: libraries/config/messages.inc.php:123
|
||||
msgid "Creation/Update/Check dates"
|
||||
@ -2981,7 +2977,7 @@ msgstr "Brug ignorér inserts"
|
||||
|
||||
#: libraries/config/messages.inc.php:132
|
||||
msgid "Syntax to use when inserting data"
|
||||
msgstr "Syntaks som skal bruges, når der indsættes data"
|
||||
msgstr "Syntaks der bruges, når der indsættes data"
|
||||
|
||||
#: libraries/config/messages.inc.php:133 libraries/export/sql.php:268
|
||||
msgid "Maximal length of created query"
|
||||
@ -3012,16 +3008,16 @@ msgid ""
|
||||
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
|
||||
"the referenced data, [kbd]id[/kbd] is the key value"
|
||||
msgstr ""
|
||||
"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; [kbd]"
|
||||
"content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi"
|
||||
"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; "
|
||||
"[kbd]content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi"
|
||||
|
||||
#: libraries/config/messages.inc.php:151
|
||||
msgid "Foreign key dropdown order"
|
||||
msgstr "Sortër fremmede nøgler i valgboks på:"
|
||||
msgstr "Sortér fremmede nøgler i valgboks"
|
||||
|
||||
#: libraries/config/messages.inc.php:152
|
||||
msgid "A dropdown will be used if fewer items are present"
|
||||
msgstr "Der vil blive brugt en valgboks, hvis der er færre elementer til stede"
|
||||
msgstr "Der vil blive brugt en valgboks, hvis der er få elementer til stede"
|
||||
|
||||
#: libraries/config/messages.inc.php:153
|
||||
msgid "Foreign key limit"
|
||||
@ -3064,7 +3060,7 @@ msgstr "Redigeringstilstand"
|
||||
|
||||
#: libraries/config/messages.inc.php:163
|
||||
msgid "Customize edit mode"
|
||||
msgstr "Tilpas redigerinstilstand"
|
||||
msgstr "Tilpas redigeringstilstand"
|
||||
|
||||
#: libraries/config/messages.inc.php:165
|
||||
msgid "Export defaults"
|
||||
@ -3091,7 +3087,7 @@ msgstr "Bestem indstillinger for nogle af de mest anvendte valgmuligheder"
|
||||
#: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89
|
||||
#: prefs_manage.php:231 setup/frames/menu.inc.php:20
|
||||
msgid "Import"
|
||||
msgstr "Import"
|
||||
msgstr "Importér"
|
||||
|
||||
#: libraries/config/messages.inc.php:171
|
||||
msgid "Import defaults"
|
||||
@ -3146,13 +3142,12 @@ msgstr "Hovedramme"
|
||||
|
||||
#: libraries/config/messages.inc.php:186
|
||||
msgid "Microsoft Office"
|
||||
msgstr ""
|
||||
msgstr "Microsoft Office"
|
||||
|
||||
#: libraries/config/messages.inc.php:188
|
||||
#, fuzzy
|
||||
#| msgid "Open Document Text"
|
||||
msgid "Open Document"
|
||||
msgstr "Open Document tekst"
|
||||
msgstr "Open Document"
|
||||
|
||||
#: libraries/config/messages.inc.php:190
|
||||
msgid "Other core settings"
|
||||
@ -3171,14 +3166,17 @@ msgid ""
|
||||
"Specify browser's title bar text. Refer to [a@Documentation."
|
||||
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
|
||||
"get special values."
|
||||
msgstr "Angiv browserens titeltekst. "
|
||||
msgstr ""
|
||||
"Angiv browserens tekst i titelbaren. Se "
|
||||
"[a@Documentation.html#cfg_TitleTable]dokumentationen[/a] for tekststrenge "
|
||||
"der indeholder særlige værdier."
|
||||
|
||||
#: libraries/config/messages.inc.php:194
|
||||
#: libraries/navigation_header.inc.php:83
|
||||
#: libraries/navigation_header.inc.php:86
|
||||
#: libraries/navigation_header.inc.php:89
|
||||
msgid "Query window"
|
||||
msgstr "Foresp. vindue"
|
||||
msgstr "Forespørgselsvindue"
|
||||
|
||||
#: libraries/config/messages.inc.php:195
|
||||
msgid "Customize query window options"
|
||||
@ -3193,8 +3191,8 @@ msgid ""
|
||||
"Please note that phpMyAdmin is just a user interface and its features do not "
|
||||
"limit MySQL"
|
||||
msgstr ""
|
||||
"Bemærk venligst at phpMyAdmin blot er en brugerflade, hvis egenskaber ikke "
|
||||
"begrænser MySQL"
|
||||
"Bemærk venligst at phpMyAdmin blot er en brugerflade og at den ikke "
|
||||
"begrænser mulighederne i MySQL"
|
||||
|
||||
#: libraries/config/messages.inc.php:198
|
||||
msgid "Basic settings"
|
||||
@ -3218,7 +3216,7 @@ msgid ""
|
||||
"what they are for"
|
||||
msgstr ""
|
||||
"Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med "
|
||||
"mindre, du ved, hvad de betyder"
|
||||
"mindre du ved hvad de betyder"
|
||||
|
||||
#: libraries/config/messages.inc.php:203
|
||||
msgid "Enter server connection parameters"
|
||||
@ -3234,16 +3232,21 @@ msgid ""
|
||||
"features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration "
|
||||
"storage[/a] in documentation"
|
||||
msgstr ""
|
||||
"Konfigurér phpMyAdmin configuration storage for at få adgang til flere "
|
||||
"funktioner. Se dokumentationen for [a@Documentation.html#linked-"
|
||||
"tables]phpMyAdmin configuration storage[/a]."
|
||||
|
||||
#: libraries/config/messages.inc.php:206
|
||||
msgid "Changes tracking"
|
||||
msgstr ""
|
||||
msgstr "Ændrer sporing"
|
||||
|
||||
#: libraries/config/messages.inc.php:207
|
||||
msgid ""
|
||||
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
|
||||
"storage."
|
||||
msgstr ""
|
||||
"Sporing af ændringer i databasen er udført. phpMyAdmin configuration storage "
|
||||
"er krævet."
|
||||
|
||||
#: libraries/config/messages.inc.php:208
|
||||
msgid "Customize export options"
|
||||
@ -3264,11 +3267,11 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218
|
||||
#: setup/frames/menu.inc.php:17
|
||||
msgid "SQL queries"
|
||||
msgstr ""
|
||||
msgstr "SQL-forespørgsler"
|
||||
|
||||
#: libraries/config/messages.inc.php:215
|
||||
msgid "SQL Query box"
|
||||
msgstr ""
|
||||
msgstr "SQL Query-boks"
|
||||
|
||||
#: libraries/config/messages.inc.php:216
|
||||
msgid "Customize links shown in SQL Query boxes"
|
||||
@ -3296,7 +3299,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:222
|
||||
msgid "Startup"
|
||||
msgstr ""
|
||||
msgstr "Opstart"
|
||||
|
||||
#: libraries/config/messages.inc.php:223
|
||||
msgid "Customize startup page"
|
||||
@ -3304,7 +3307,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:224
|
||||
msgid "Tabs"
|
||||
msgstr ""
|
||||
msgstr "Faner"
|
||||
|
||||
#: libraries/config/messages.inc.php:225
|
||||
msgid "Choose how you want tabs to work"
|
||||
@ -3328,7 +3331,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:230
|
||||
msgid "Warnings"
|
||||
msgstr ""
|
||||
msgstr "Advarsler"
|
||||
|
||||
#: libraries/config/messages.inc.php:231
|
||||
msgid "Disable some of the warnings shown by phpMyAdmin"
|
||||
|
||||
10
po/sl.po
10
po/sl.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-07-07 15:16+0200\n"
|
||||
"PO-Revision-Date: 2011-07-07 11:50+0200\n"
|
||||
"PO-Revision-Date: 2011-07-11 21:13+0200\n"
|
||||
"Last-Translator: Domen <dbc334@gmail.com>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
@ -5319,10 +5319,10 @@ msgid "vertical"
|
||||
msgstr "navpičnem"
|
||||
|
||||
#: libraries/display_tbl.lib.php:452
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Headers every"
|
||||
msgid "Headers every %s rows"
|
||||
msgstr "Glave vsakih"
|
||||
msgstr "Glave vsakih %s vrstic"
|
||||
|
||||
#: libraries/display_tbl.lib.php:546
|
||||
msgid "Sort by key"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user