Version Description
This upgrade includes an important bugfix and removes the TableTools. It is a strongly recommended maintenance release.
Download this release
Release Info
Developer | TobiasBg |
Plugin | WP-Table Reloaded |
Version | 1.9.4 |
Comparing to | |
See all releases |
Code changes from version 1.9.3 to 1.9.4
- admin/admin-script.dev.js +7 -9
- admin/admin-script.js +21 -1
- classes/helper.class.php +3 -3
- classes/render.class.php +4 -11
- controllers/controller-admin.php +18 -11
- controllers/controller-base.php +0 -8
- controllers/controller-frontend.php +8 -46
- js/tabletools/images/copy.png +0 -0
- js/tabletools/images/copy_hover.png +0 -0
- js/tabletools/images/csv.png +0 -0
- js/tabletools/images/csv_hover.png +0 -0
- js/tabletools/images/index.php +0 -3
- js/tabletools/images/print.png +0 -0
- js/tabletools/images/print_hover.png +0 -0
- js/tabletools/images/xls.png +0 -0
- js/tabletools/images/xls_hover.png +0 -0
- js/tabletools/index.php +0 -3
- js/tabletools/tabletools.css +0 -105
- js/tabletools/tabletools.js +0 -735
- js/tabletools/tabletools.min.js +0 -28
- js/tabletools/zeroclipboard.js +0 -340
- js/tabletools/zeroclipboard.swf +0 -0
- languages/wp-table-reloaded-be_BY.po +2 -2
- languages/wp-table-reloaded-bg_BG.mo +0 -0
- languages/wp-table-reloaded-bg_BG.po +0 -0
- languages/wp-table-reloaded-cs_CZ.po +1 -1
- languages/wp-table-reloaded-de_DE.mo +0 -0
- languages/wp-table-reloaded-de_DE.po +1631 -1636
- languages/wp-table-reloaded-fi.po +2 -2
- languages/wp-table-reloaded-fi_FI.po +2 -2
- languages/wp-table-reloaded-sq_AL.po +4 -4
- languages/wp-table-reloaded-sv_SE.po +2 -2
- languages/wp-table-reloaded-tr_TR.po +3 -3
- languages/wp-table-reloaded-ua_UA.po +1 -1
- languages/wp-table-reloaded.pot +1146 -1140
- readme.txt +23 -21
- views/view-about.php +2 -2
- views/view-edit.php +4 -14
- views/view-options.php +1 -2
- wp-table-reloaded.php +3 -3
admin/admin-script.dev.js
CHANGED
@@ -28,7 +28,7 @@ jQuery(document).ready( function( $ ) {
|
|
28 |
}
|
29 |
return false;
|
30 |
} );
|
31 |
-
|
32 |
$( '#a-hide-columns' ).click( function() {
|
33 |
var cols_selected = $( '#table_contents .table-foot :checked' ).length;
|
34 |
if ( cols_selected == 0 ) {
|
@@ -53,7 +53,7 @@ jQuery(document).ready( function( $ ) {
|
|
53 |
}
|
54 |
return false;
|
55 |
} );
|
56 |
-
|
57 |
$( '#button-insert-rows' ).click( function() {
|
58 |
var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
|
59 |
if ( rows_selected == 0 ) {
|
@@ -175,14 +175,12 @@ jQuery(document).ready( function( $ ) {
|
|
175 |
$( '#table_options_use_tablesorter' ).change( function() {
|
176 |
if( this.checked ) {
|
177 |
$( '.wp-table-reloaded-datatables-options input' ).removeAttr( 'disabled' );
|
178 |
-
if ( !WP_Table_Reloaded_Admin.option_tabletools_active )
|
179 |
-
$( '#table_options_datatables_tabletools' ).attr( 'disabled', 'disabled' );
|
180 |
$( '#table_options_datatables_paginate' ).change();
|
181 |
} else {
|
182 |
$( '.wp-table-reloaded-datatables-options input' ).attr( 'disabled', 'disabled' );
|
183 |
}
|
184 |
} );
|
185 |
-
|
186 |
$( '#table_options_datatables_paginate' ).change( function() {
|
187 |
if( this.checked ) {
|
188 |
$( '#table_options_datatables_paginate_entries' ).removeAttr( 'disabled' );
|
@@ -311,7 +309,7 @@ jQuery(document).ready( function( $ ) {
|
|
311 |
}
|
312 |
}
|
313 |
} );
|
314 |
-
|
315 |
$( '#button-delete-columns' ).click( function() {
|
316 |
var cols_cb = $( '#table_contents .table-foot :checkbox' ).length;
|
317 |
var cols_selected = $( '#table_contents .table-foot :checked' ).length;
|
@@ -328,7 +326,7 @@ jQuery(document).ready( function( $ ) {
|
|
328 |
}
|
329 |
}
|
330 |
} );
|
331 |
-
|
332 |
$( 'a.import_wptable_link' ).click( function() {
|
333 |
return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
|
334 |
} );
|
@@ -353,7 +351,7 @@ jQuery(document).ready( function( $ ) {
|
|
353 |
var dummy = prompt( WP_Table_Reloaded_Admin.str_TableShortcodeMessage, $(this).attr('title') );
|
354 |
return false;
|
355 |
} );
|
356 |
-
|
357 |
// toggling of boxes
|
358 |
$( '.postbox h3, .postbox .handlediv' ).click( function() {
|
359 |
$( $(this).parent().get(0) ).toggleClass('closed');
|
@@ -363,7 +361,7 @@ jQuery(document).ready( function( $ ) {
|
|
363 |
function set_table_data_changed() {
|
364 |
if ( ! WP_Table_Reloaded_Admin.option_show_exit_warning )
|
365 |
return;
|
366 |
-
|
367 |
window.onbeforeunload = function() {
|
368 |
return WP_Table_Reloaded_Admin.str_saveAlert;
|
369 |
};
|
28 |
}
|
29 |
return false;
|
30 |
} );
|
31 |
+
|
32 |
$( '#a-hide-columns' ).click( function() {
|
33 |
var cols_selected = $( '#table_contents .table-foot :checked' ).length;
|
34 |
if ( cols_selected == 0 ) {
|
53 |
}
|
54 |
return false;
|
55 |
} );
|
56 |
+
|
57 |
$( '#button-insert-rows' ).click( function() {
|
58 |
var rows_selected = $( '#table_contents tr:not(".table-foot") :checked' ).length;
|
59 |
if ( rows_selected == 0 ) {
|
175 |
$( '#table_options_use_tablesorter' ).change( function() {
|
176 |
if( this.checked ) {
|
177 |
$( '.wp-table-reloaded-datatables-options input' ).removeAttr( 'disabled' );
|
|
|
|
|
178 |
$( '#table_options_datatables_paginate' ).change();
|
179 |
} else {
|
180 |
$( '.wp-table-reloaded-datatables-options input' ).attr( 'disabled', 'disabled' );
|
181 |
}
|
182 |
} );
|
183 |
+
|
184 |
$( '#table_options_datatables_paginate' ).change( function() {
|
185 |
if( this.checked ) {
|
186 |
$( '#table_options_datatables_paginate_entries' ).removeAttr( 'disabled' );
|
309 |
}
|
310 |
}
|
311 |
} );
|
312 |
+
|
313 |
$( '#button-delete-columns' ).click( function() {
|
314 |
var cols_cb = $( '#table_contents .table-foot :checkbox' ).length;
|
315 |
var cols_selected = $( '#table_contents .table-foot :checked' ).length;
|
326 |
}
|
327 |
}
|
328 |
} );
|
329 |
+
|
330 |
$( 'a.import_wptable_link' ).click( function() {
|
331 |
return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
|
332 |
} );
|
351 |
var dummy = prompt( WP_Table_Reloaded_Admin.str_TableShortcodeMessage, $(this).attr('title') );
|
352 |
return false;
|
353 |
} );
|
354 |
+
|
355 |
// toggling of boxes
|
356 |
$( '.postbox h3, .postbox .handlediv' ).click( function() {
|
357 |
$( $(this).parent().get(0) ).toggleClass('closed');
|
361 |
function set_table_data_changed() {
|
362 |
if ( ! WP_Table_Reloaded_Admin.option_show_exit_warning )
|
363 |
return;
|
364 |
+
|
365 |
window.onbeforeunload = function() {
|
366 |
return WP_Table_Reloaded_Admin.str_saveAlert;
|
367 |
};
|
admin/admin-script.js
CHANGED
@@ -1 +1,21 @@
|
|
1 |
-
jQuery(document).ready(function(c){c("#a-hide-rows").click(function(){var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection)}else{c('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(true).parents("tr").addClass("row-hidden");a()}return false});c("#a-unhide-rows").click(function(){var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection)}else{c('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(false).parents("tr").removeClass("row-hidden");a()}return false});c("#a-hide-columns").click(function(){var h=c("#table_contents .table-foot :checked").length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection)}else{c("#table_contents .table-foot :checked").removeAttr("checked").next().val(true).each(function(){c("#table_contents ."+this.id).addClass("column-hidden")});a()}return false});c("#a-unhide-columns").click(function(){var h=c("#table_contents .table-foot :checked").length;if(h==0){alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection)}else{c("#table_contents .table-foot :checked").removeAttr("checked").next().val(false).each(function(){c("#table_contents ."+c(this).attr("id")).removeClass("column-hidden")});a()}return false});c("#button-insert-rows").click(function(){var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_InsertRowsNoSelection);return false}else{return true}});c("#button-insert-columns").click(function(){var h=c("#table_contents .table-foot :checked").length;if(h==0){alert(WP_Table_Reloaded_Admin.str_InsertColsNoSelection);return false}else{return true}});function e(h){c(this).val(h.data.span_type);c("#table_contents").undelegate("textarea","click",e);a()}c("#a-add-colspan").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddColspan)){c("#table_contents").delegate("textarea","click",{span_type:"#colspan#"},e)}return false});c("#a-add-rowspan").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddRowspan)){c("#table_contents").delegate("textarea","click",{span_type:"#rowspan#"},e)}return false});var d=c(null);if(WP_Table_Reloaded_Admin.option_growing_textareas){c("#table_contents").delegate("textarea","focus",function(){d.removeClass("focus");d=c(this).closest("tr").addClass("focus")})}c("#options_custom_css").one("focus",function(){c(this).addClass("focus")});c("#export_format").change(function(){if("csv"==c(this).val()){c(".tr-export-delimiter").show()}else{c(".tr-export-delimiter").hide()}}).change();var g=c(".wp-table-reloaded-table-information #table_id").val();c(".wp-table-reloaded-table-information #table_id").change(function(){if(g!=c(this).val()){if(confirm(WP_Table_Reloaded_Admin.str_ChangeTableID)){g=c(this).val();a()}else{c(this).val(g)}}});c(".tr-import-addreplace input").click(function(){if("replace"==c(".tr-import-addreplace input:checked").val()){c(".tr-import-addreplace-table").show()}else{c(".tr-import-addreplace-table").hide()}});c(".tr-import-addreplace input:checked").click();c(".tr-import-from input").click(function(){c(".tr-import-file-upload, .tr-import-url, .tr-import-form-field, .tr-import-server").hide();c(".tr-import-"+c(".tr-import-from input:checked").val()).show()});c(".tr-import-from input:checked").click();c("#options_use_custom_css").change(function(){if(c(this).attr("checked")){c("#options_custom_css").removeAttr("disabled")}else{c("#options_custom_css").attr("disabled","disabled")}});c("#options_enable_tablesorter").change(function(){if(c(this).attr("checked")){c("#options_tablesorter_script").removeAttr("disabled")}else{c("#options_tablesorter_script").attr("disabled","disabled")}});if(WP_Table_Reloaded_Admin.option_tablesorter_enabled&&WP_Table_Reloaded_Admin.option_datatables_active){c("#table_options_first_row_th").change(function(){if(c(this).attr("checked")){c("#table_options_use_tablesorter").removeAttr("disabled").change()}else{c("#table_options_use_tablesorter").attr("disabled","disabled");c(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}});c("#table_options_use_tablesorter").change(function(){if(c(this).attr("checked")){c(".wp-table-reloaded-datatables-options input").removeAttr("disabled");if(!WP_Table_Reloaded_Admin.option_tabletools_active){c("#table_options_datatables_tabletools").attr("disabled","disabled")}c("#table_options_datatables_paginate").change()}else{c(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}});c("#table_options_datatables_paginate").change(function(){if(c(this).attr("checked")){c("#table_options_datatables_paginate_entries").removeAttr("disabled")}else{c("#table_options_datatables_paginate_entries").attr("disabled","disabled")}})}else{if(WP_Table_Reloaded_Admin.option_tablesorter_enabled){c("#table_options_first_row_th").change(function(){if(c(this).attr("checked")){c("#table_options_use_tablesorter").removeAttr("disabled")}else{c("#table_options_use_tablesorter").attr("disabled","disabled")}})}}c("#table_options_print_name, #table_options_print_description").change(function(){if(c(this).attr("checked")){c("#"+this.id+"_position").removeAttr("disabled")}else{c("#"+this.id+"_position").attr("disabled","disabled")}});c("#options_uninstall_upon_deactivation").click(function(){if(c(this).attr("checked")){return confirm(WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation)}});function b(h){c(this).val(c(this).val()+h.data.html);c("#table_contents").undelegate("textarea","click",b);a()}c("#a-insert-link").click(function(){var i=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL+":","http://");if(i){var h=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText+":",WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText);if(h){var k="";if(WP_Table_Reloaded_Admin.option_add_target_blank_to_links){k=' target="_blank"'}var j='<a href="'+i+'"'+k+">"+h+"</a>";j=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain,j);if(j){c("#table_contents").delegate("textarea","click",{html:j},b)}}}return false});function f(){edCanvas=this;c("#table_contents").undelegate("textarea","click",f);var h=c("#a-insert-image");tb_show(h.attr("title"),h.attr("href"),false);tb_my_position();c(this).blur();a()}c("#a-insert-image").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox)){c("#table_contents").delegate("textarea","click",f)}return false});c("#insert_custom_field_name").keyup(function(){c(this).val(c(this).val().toLowerCase().replace(/[^a-z0-9_-]/g,""))});c(".focus-blur-change").focus(function(){if(c(this).attr("title")==c(this).val()){c(this).val("")}}).blur(function(){if(""==c(this).val()){c(this).val(c(this).attr("title"))}});c("#table_custom_fields").delegate("textarea","focus",function(){c("#table_custom_fields .focus").removeClass("focus");c(this).addClass("focus")});c("input.bulk_copy_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkCopyTablesLink)});c("input.bulk_delete_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink)});c("input.bulk_wp_table_import_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink)});c("a.copy_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_CopyTableLink)});c("#wp-table-reloaded-list a.delete_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_DeleteTableLink)});c("#button-delete-rows").click(function(){var i=c('#table_contents tr:not(".table-foot") :checkbox').length-1;var h=c('#table_contents tr:not(".table-foot") :checked').length;if(h==0){alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNoSelection);return false}else{if(i==h){alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNotAll);return false}else{return confirm(WP_Table_Reloaded_Admin.str_DeleteRowsConfirm)}}});c("#button-delete-columns").click(function(){var h=c("#table_contents .table-foot :checkbox").length;var i=c("#table_contents .table-foot :checked").length;if(i==0){alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNoSelection);return false}else{if(h==i){alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNotAll);return false}else{return confirm(WP_Table_Reloaded_Admin.str_DeleteColsConfirm)}}});c("a.import_wptable_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportwpTableLink)});c("#import_wp_table_reloaded_dump_file").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportDumpFile)});c("#uninstall_plugin_link").click(function(){if(confirm(WP_Table_Reloaded_Admin.str_UninstallPluginLink_1)){return confirm(WP_Table_Reloaded_Admin.str_UninstallPluginLink_2)}else{return false}});c("a.cf_shortcode_link").click(function(){var h=prompt(WP_Table_Reloaded_Admin.str_CFShortcodeMessage,c(this).attr("title"));return false});c("a.table_shortcode_link").click(function(){var h=prompt(WP_Table_Reloaded_Admin.str_TableShortcodeMessage,c(this).attr("title"));return false});c(".postbox h3, .postbox .handlediv").click(function(){c(c(this).parent().get(0)).toggleClass("closed")});function a(){if(!WP_Table_Reloaded_Admin.option_show_exit_warning){return}window.onbeforeunload=function(){return WP_Table_Reloaded_Admin.str_saveAlert};c("#wp_table_reloaded_edit_table").undelegate("#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select","change",a)}if(WP_Table_Reloaded_Admin.option_show_exit_warning){c("#wp_table_reloaded_edit_table").delegate("#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select","change",a);c("#wp_table_reloaded_edit_table").find('input[name="submit[update]"], input[name="submit[save_back]"]').click(function(){window.onbeforeunload=null})}c("#wp_table_reloaded_edit_table").find('input[name="submit[update]"], input[name="submit[save_back]"]').click(function(){c("#wp_table_reloaded_edit_table .wp-table-reloaded-options").find("input, select").removeAttr("disabled")});tb_init("a.help-link");tb_init("a.preview-link");tb_my_position()});function send_to_editor(a){jQuery(edCanvas).val(jQuery(edCanvas).val()+a);tb_remove()}var tb_my_position;(function(a){tb_my_position=function(){var f=a("#TB_window"),e=a(window).width(),d=a(window).height(),c=(720<e)?720:e,b=0;if(a("body.admin-bar").length){b=28}if(f.size()){f.width(c-50).height(d-45-b);a("#TB_iframeContent").width(c-50).height(d-75-b);f.css({"margin-left":"-"+parseInt(((c-50)/2),10)+"px"});if(typeof document.body.style.maxWidth!="undefined"){f.css({top:20+b+"px","margin-top":"0"})}}return a("a.preview-link").each(function(){var g=a(this).attr("href");if(!g){return}g=g.replace(/&width=[0-9]+/g,"");g=g.replace(/&height=[0-9]+/g,"");a(this).attr("href",g+"&width="+(c-80)+"&height="+(d-85-b))})};a(window).resize(function(){tb_my_position()})})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function(a){function d(f){a(this).val(f.data.span_type);a("#table_contents").undelegate("textarea","click",d);b()}function h(f){a(this).val(a(this).val()+f.data.html);a("#table_contents").undelegate("textarea","click",h);b()}function g(){edCanvas=this;a("#table_contents").undelegate("textarea","click",g);var f=a("#a-insert-image");tb_show(f.attr("title"),f.attr("href"),!1);tb_my_position();a(this).blur();b()}function b(){WP_Table_Reloaded_Admin.option_show_exit_warning&&(window.onbeforeunload=
|
2 |
+
function(){return WP_Table_Reloaded_Admin.str_saveAlert},a("#wp_table_reloaded_edit_table").undelegate("#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select","change",b))}a("#a-hide-rows").click(function(){0==a('#table_contents tr:not(".table-foot") :checked').length?alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection):(a('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(!0).parents("tr").addClass("row-hidden"),b());return!1});
|
3 |
+
a("#a-unhide-rows").click(function(){0==a('#table_contents tr:not(".table-foot") :checked').length?alert(WP_Table_Reloaded_Admin.str_UnHideRowsNoSelection):(a('#table_contents tr:not(".table-foot") :checked').removeAttr("checked").next().val(!1).parents("tr").removeClass("row-hidden"),b());return!1});a("#a-hide-columns").click(function(){0==a("#table_contents .table-foot :checked").length?alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection):(a("#table_contents .table-foot :checked").removeAttr("checked").next().val(!0).each(function(){a("#table_contents ."+
|
4 |
+
this.id).addClass("column-hidden")}),b());return!1});a("#a-unhide-columns").click(function(){0==a("#table_contents .table-foot :checked").length?alert(WP_Table_Reloaded_Admin.str_UnHideColsNoSelection):(a("#table_contents .table-foot :checked").removeAttr("checked").next().val(!1).each(function(){a("#table_contents ."+this.id).removeClass("column-hidden")}),b());return!1});a("#button-insert-rows").click(function(){return 0==a('#table_contents tr:not(".table-foot") :checked').length?(alert(WP_Table_Reloaded_Admin.str_InsertRowsNoSelection),
|
5 |
+
!1):!0});a("#button-insert-columns").click(function(){return 0==a("#table_contents .table-foot :checked").length?(alert(WP_Table_Reloaded_Admin.str_InsertColsNoSelection),!1):!0});a("#a-add-colspan").click(function(){confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddColspan)&&a("#table_contents").delegate("textarea","click",{span_type:"#colspan#"},d);return!1});a("#a-add-rowspan").click(function(){confirm(WP_Table_Reloaded_Admin.str_DataManipulationAddRowspan)&&a("#table_contents").delegate("textarea",
|
6 |
+
"click",{span_type:"#rowspan#"},d);return!1});var e=a(null);WP_Table_Reloaded_Admin.option_growing_textareas&&a("#table_contents").delegate("textarea","focus",function(){e.removeClass("focus");e=a(this).closest("tr").addClass("focus")});a("#options_custom_css").one("focus",function(){a(this).addClass("focus")});a("#export_format").change(function(){"csv"==a(this).val()?a(".tr-export-delimiter").show():a(".tr-export-delimiter").hide()}).change();var c=a(".wp-table-reloaded-table-information #table_id").val();
|
7 |
+
a(".wp-table-reloaded-table-information #table_id").change(function(){c!=a(this).val()&&(confirm(WP_Table_Reloaded_Admin.str_ChangeTableID)?(c=a(this).val(),b()):a(this).val(c))});a(".tr-import-addreplace input").click(function(){"replace"==a(".tr-import-addreplace input:checked").val()?a(".tr-import-addreplace-table").show():a(".tr-import-addreplace-table").hide()});a(".tr-import-addreplace input:checked").click();a(".tr-import-from input").click(function(){a(".tr-import-file-upload, .tr-import-url, .tr-import-form-field, .tr-import-server").hide();
|
8 |
+
a(".tr-import-"+a(".tr-import-from input:checked").val()).show()});a(".tr-import-from input:checked").click();a("#options_use_custom_css").change(function(){this.checked?a("#options_custom_css").removeAttr("disabled"):a("#options_custom_css").attr("disabled","disabled")});a("#options_enable_tablesorter").change(function(){this.checked?a("#options_tablesorter_script").removeAttr("disabled"):a("#options_tablesorter_script").attr("disabled","disabled")});WP_Table_Reloaded_Admin.option_tablesorter_enabled&&
|
9 |
+
WP_Table_Reloaded_Admin.option_datatables_active?(a("#table_options_first_row_th").change(function(){this.checked?a("#table_options_use_tablesorter").removeAttr("disabled").change():(a("#table_options_use_tablesorter").attr("disabled","disabled"),a(".wp-table-reloaded-datatables-options input").attr("disabled","disabled"))}),a("#table_options_use_tablesorter").change(function(){this.checked?(a(".wp-table-reloaded-datatables-options input").removeAttr("disabled"),a("#table_options_datatables_paginate").change()):
|
10 |
+
a(".wp-table-reloaded-datatables-options input").attr("disabled","disabled")}),a("#table_options_datatables_paginate").change(function(){this.checked?a("#table_options_datatables_paginate_entries").removeAttr("disabled"):a("#table_options_datatables_paginate_entries").attr("disabled","disabled")})):WP_Table_Reloaded_Admin.option_tablesorter_enabled&&a("#table_options_first_row_th").change(function(){this.checked?a("#table_options_use_tablesorter").removeAttr("disabled"):a("#table_options_use_tablesorter").attr("disabled",
|
11 |
+
"disabled")});a("#table_options_print_name, #table_options_print_description").change(function(){this.checked?a("#"+this.id+"_position").removeAttr("disabled"):a("#"+this.id+"_position").attr("disabled","disabled")});a("#options_uninstall_upon_deactivation").click(function(){if(this.checked)return confirm(WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation)});a("#a-insert-link").click(function(){var b=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL+":","http://");if(b){var c=
|
12 |
+
prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText+":",WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText);if(c){var d="";WP_Table_Reloaded_Admin.option_add_target_blank_to_links&&(d=' target="_blank"');(b=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain,'<a href="'+b+'"'+d+">"+c+"</a>"))&&a("#table_contents").delegate("textarea","click",{html:b},h)}}return!1});a("#a-insert-image").click(function(){confirm(WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox)&&
|
13 |
+
a("#table_contents").delegate("textarea","click",g);return!1});a("#insert_custom_field_name").keyup(function(){a(this).val(a(this).val().toLowerCase().replace(/[^a-z0-9_-]/g,""))});a(".focus-blur-change").focus(function(){a(this).attr("title")==a(this).val()&&a(this).val("")}).blur(function(){""==a(this).val()&&a(this).val(a(this).attr("title"))});a("#table_custom_fields").delegate("textarea","focus",function(){a("#table_custom_fields .focus").removeClass("focus");a(this).addClass("focus")});a("input.bulk_copy_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkCopyTablesLink)});
|
14 |
+
a("input.bulk_delete_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink)});a("input.bulk_wp_table_import_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink)});a("a.copy_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_CopyTableLink)});a("#wp-table-reloaded-list a.delete_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_DeleteTableLink)});a("#button-delete-rows").click(function(){var b=
|
15 |
+
a('#table_contents tr:not(".table-foot") :checkbox').length-1,c=a('#table_contents tr:not(".table-foot") :checked').length;return 0==c?(alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNoSelection),!1):b==c?(alert(WP_Table_Reloaded_Admin.str_DeleteRowsFailedNotAll),!1):confirm(WP_Table_Reloaded_Admin.str_DeleteRowsConfirm)});a("#button-delete-columns").click(function(){var b=a("#table_contents .table-foot :checkbox").length,c=a("#table_contents .table-foot :checked").length;return 0==c?(alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNoSelection),
|
16 |
+
!1):b==c?(alert(WP_Table_Reloaded_Admin.str_DeleteColsFailedNotAll),!1):confirm(WP_Table_Reloaded_Admin.str_DeleteColsConfirm)});a("a.import_wptable_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportwpTableLink)});a("#import_wp_table_reloaded_dump_file").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportDumpFile)});a("#uninstall_plugin_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_UninstallPluginLink_1)?confirm(WP_Table_Reloaded_Admin.str_UninstallPluginLink_2):
|
17 |
+
!1});a("a.cf_shortcode_link").click(function(){prompt(WP_Table_Reloaded_Admin.str_CFShortcodeMessage,a(this).attr("title"));return!1});a("a.table_shortcode_link").click(function(){prompt(WP_Table_Reloaded_Admin.str_TableShortcodeMessage,a(this).attr("title"));return!1});a(".postbox h3, .postbox .handlediv").click(function(){a(a(this).parent().get(0)).toggleClass("closed")});WP_Table_Reloaded_Admin.option_show_exit_warning&&(a("#wp_table_reloaded_edit_table").delegate("#table_name, textarea, .wp-table-reloaded-options input, .wp-table-reloaded-options select",
|
18 |
+
"change",b),a("#wp_table_reloaded_edit_table").find('input[name="submit[update]"], input[name="submit[save_back]"]').click(function(){window.onbeforeunload=null}));a("#wp_table_reloaded_edit_table").find('input[name="submit[update]"], input[name="submit[save_back]"]').click(function(){a("#wp_table_reloaded_edit_table .wp-table-reloaded-options").find("input, select").removeAttr("disabled")});tb_init("a.help-link");tb_init("a.preview-link");tb_my_position()});
|
19 |
+
function send_to_editor(a){jQuery(edCanvas).val(jQuery(edCanvas).val()+a);tb_remove()}var tb_my_position;
|
20 |
+
(function(a){tb_my_position=function(){var d=a("#TB_window"),h=a(window).width(),g=a(window).height(),b=720<h?720:h,e=0;a("body.admin-bar").length&&(e=28);d.size()&&(d.width(b-50).height(g-45-e),a("#TB_iframeContent").width(b-50).height(g-75-e),d.css({"margin-left":"-"+parseInt((b-50)/2,10)+"px"}),"undefined"!=typeof document.body.style.maxWidth&&d.css({top:20+e+"px","margin-top":"0"}));return a("a.preview-link").each(function(){var c=a(this).attr("href");c&&(c=c.replace(/&width=[0-9]+/g,""),c=c.replace(/&height=[0-9]+/g,
|
21 |
+
""),a(this).attr("href",c+"&width="+(b-80)+"&height="+(g-85-e)))})};a(window).resize(function(){tb_my_position()})})(jQuery);
|
classes/helper.class.php
CHANGED
@@ -18,8 +18,8 @@ class WP_Table_Reloaded_Helper {
|
|
18 |
}
|
19 |
|
20 |
// ###################################################################################################################
|
21 |
-
function print_header_message( $text ) {
|
22 |
-
echo "<div
|
23 |
}
|
24 |
|
25 |
// ###################################################################################################################
|
@@ -37,7 +37,7 @@ class WP_Table_Reloaded_Helper {
|
|
37 |
}
|
38 |
// ###################################################################################################################
|
39 |
function get_contextual_help_string() {
|
40 |
-
$help = '<p>' . sprintf( __( 'More information about WP-Table Reloaded can be found on the <a href="%s">plugin\'s website</a> or on its page in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/', 'http://wordpress.org/
|
41 |
$help .= ' ' . sprintf( __( 'For technical information, see the <a href="%s">documentation</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/' );
|
42 |
$help .= '<br/>' . sprintf( __( '<a href="%s">Support</a> is provided through the <a href="%s">WordPress Support Forums</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/support/', 'http://www.wordpress.org/support/' );
|
43 |
$help .= ' ' . sprintf( __( 'Before asking for support, please carefully read the <a href="%s">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/faq/' );
|
18 |
}
|
19 |
|
20 |
// ###################################################################################################################
|
21 |
+
function print_header_message( $text, $class = 'updated' ) {
|
22 |
+
echo "<div class='{$class} fade'><p style='line-height:1.2;'><strong>{$text}</strong></p></div>";
|
23 |
}
|
24 |
|
25 |
// ###################################################################################################################
|
37 |
}
|
38 |
// ###################################################################################################################
|
39 |
function get_contextual_help_string() {
|
40 |
+
$help = '<p>' . sprintf( __( 'More information about WP-Table Reloaded can be found on the <a href="%s">plugin\'s website</a> or on its page in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/', 'http://wordpress.org/plugins/wp-table-reloaded/' );
|
41 |
$help .= ' ' . sprintf( __( 'For technical information, see the <a href="%s">documentation</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/' );
|
42 |
$help .= '<br/>' . sprintf( __( '<a href="%s">Support</a> is provided through the <a href="%s">WordPress Support Forums</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/support/', 'http://www.wordpress.org/support/' );
|
43 |
$help .= ' ' . sprintf( __( 'Before asking for support, please carefully read the <a href="%s">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/faq/' );
|
classes/render.class.php
CHANGED
@@ -35,13 +35,6 @@ class WP_Table_Reloaded_Render {
|
|
35 |
var $rowspan = array();
|
36 |
var $colspan = array();
|
37 |
|
38 |
-
/**
|
39 |
-
* PHP4 class constructor
|
40 |
-
*/
|
41 |
-
function WP_Table_Reloaded_Render() {
|
42 |
-
// nothing to init here
|
43 |
-
}
|
44 |
-
|
45 |
/**
|
46 |
* Returns the rendered HTML of a table
|
47 |
*/
|
@@ -76,7 +69,7 @@ class WP_Table_Reloaded_Render {
|
|
76 |
$name_html = "<{$print_name_html_tag} class=\"{$print_name_css_class}\">" . $this->safe_output( $table['name'] ) . "</{$print_name_html_tag}>\n";
|
77 |
$print_name_position = $this->output_options['print_name_position'];
|
78 |
$print_name_position = apply_filters( 'wp_table_reloaded_print_name_position', $print_name_position, $table['id'] );
|
79 |
-
|
80 |
if ( 'above' == $print_name_position )
|
81 |
$output .= $name_html;
|
82 |
}
|
@@ -87,7 +80,7 @@ class WP_Table_Reloaded_Render {
|
|
87 |
$description_html = "<{$print_description_html_tag} class=\"{$print_description_css_class}\">" . $this->safe_output( $table['description'] ) . "</{$print_description_html_tag}>\n";
|
88 |
$print_description_position = $this->output_options['print_description_position'];
|
89 |
$print_description_position = apply_filters( 'wp_table_reloaded_print_description_position', $print_description_position, $table['id'] );
|
90 |
-
|
91 |
if ( 'above' == $print_description_position )
|
92 |
$output .= $description_html;
|
93 |
}
|
@@ -295,9 +288,9 @@ class WP_Table_Reloaded_Render {
|
|
295 |
}
|
296 |
$table['data'][$row_idx] = array_merge( $row );
|
297 |
}
|
298 |
-
|
299 |
$table = apply_filters( 'wp_table_reloaded_render_table', $table, $orig_table, $this->output_options );
|
300 |
-
|
301 |
return $table;
|
302 |
}
|
303 |
|
35 |
var $rowspan = array();
|
36 |
var $colspan = array();
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
/**
|
39 |
* Returns the rendered HTML of a table
|
40 |
*/
|
69 |
$name_html = "<{$print_name_html_tag} class=\"{$print_name_css_class}\">" . $this->safe_output( $table['name'] ) . "</{$print_name_html_tag}>\n";
|
70 |
$print_name_position = $this->output_options['print_name_position'];
|
71 |
$print_name_position = apply_filters( 'wp_table_reloaded_print_name_position', $print_name_position, $table['id'] );
|
72 |
+
|
73 |
if ( 'above' == $print_name_position )
|
74 |
$output .= $name_html;
|
75 |
}
|
80 |
$description_html = "<{$print_description_html_tag} class=\"{$print_description_css_class}\">" . $this->safe_output( $table['description'] ) . "</{$print_description_html_tag}>\n";
|
81 |
$print_description_position = $this->output_options['print_description_position'];
|
82 |
$print_description_position = apply_filters( 'wp_table_reloaded_print_description_position', $print_description_position, $table['id'] );
|
83 |
+
|
84 |
if ( 'above' == $print_description_position )
|
85 |
$output .= $description_html;
|
86 |
}
|
288 |
}
|
289 |
$table['data'][$row_idx] = array_merge( $row );
|
290 |
}
|
291 |
+
|
292 |
$table = apply_filters( 'wp_table_reloaded_render_table', $table, $orig_table, $this->output_options );
|
293 |
+
|
294 |
return $table;
|
295 |
}
|
296 |
|
controllers/controller-admin.php
CHANGED
@@ -61,7 +61,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
61 |
'use_datatables_on_table_list' => true,
|
62 |
'add_target_blank_to_links' => false,
|
63 |
'enable_tablesorter' => true,
|
64 |
-
'tablesorter_script' => 'datatables', // others are '
|
65 |
'use_default_css' => true,
|
66 |
'use_custom_css' => true,
|
67 |
'custom_css' => '',
|
@@ -113,13 +113,6 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
113 |
*/
|
114 |
var $page_url = '';
|
115 |
|
116 |
-
/**
|
117 |
-
* PHP4 class constructor, calls the PHP5 class constructor __construct()
|
118 |
-
*/
|
119 |
-
function WP_Table_Reloaded_Controller_Admin() {
|
120 |
-
$this->__construct();
|
121 |
-
}
|
122 |
-
|
123 |
/**
|
124 |
* PHP5 class constructor
|
125 |
*
|
@@ -407,7 +400,6 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
407 |
$table['options']['datatables_lengthchange'] = isset( $_POST['table']['options']['datatables_lengthchange'] );
|
408 |
$table['options']['datatables_filter'] = isset( $_POST['table']['options']['datatables_filter'] );
|
409 |
$table['options']['datatables_info'] = isset( $_POST['table']['options']['datatables_info'] );
|
410 |
-
$table['options']['datatables_tabletools'] = isset( $_POST['table']['options']['datatables_tabletools'] );
|
411 |
$table['options']['datatables_paginate_entries'] = ( is_numeric( $table['options']['datatables_paginate_entries'] ) ) ? absint( $table['options']['datatables_paginate_entries'] ) : $this->default_table['options']['datatables_paginate_entries'];
|
412 |
// $table['options']['datatables_customcommands'] is an input type=text field that is always submitted
|
413 |
// $table['options']['print_name|description_position'] are select fields that are always submitted
|
@@ -1266,6 +1258,10 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
1266 |
function load_view( $name, $params = array(), $print_submenu_navigation = true ) {
|
1267 |
extract( $params );
|
1268 |
|
|
|
|
|
|
|
|
|
1269 |
$headlines = array(
|
1270 |
'list' => __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ‹ ' . __( 'WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1271 |
'add' => __( 'Add new Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
@@ -1563,6 +1559,8 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
1563 |
if ( ! version_compare( $this->options['installed_version'], WP_TABLE_RELOADED_PLUGIN_VERSION, '<' ) )
|
1564 |
return;
|
1565 |
|
|
|
|
|
1566 |
$new_options = array();
|
1567 |
|
1568 |
// 1b. step: update new default options before possibly adding them
|
@@ -1587,6 +1585,12 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
1587 |
if ( 'top-level' == $this->options['admin_menu_parent_page'] )
|
1588 |
$new_options['admin_menu_parent_page'] = 'admin.php';
|
1589 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1590 |
// 3. step: update installed version number, empty update message cache, set welcome message
|
1591 |
$new_options['installed_version'] = WP_TABLE_RELOADED_PLUGIN_VERSION;
|
1592 |
$new_options['update_message'] = array();
|
@@ -1596,6 +1600,10 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
1596 |
$this->options = $new_options;
|
1597 |
$this->update_options();
|
1598 |
|
|
|
|
|
|
|
|
|
1599 |
// update individual tables and their options
|
1600 |
$this->tables = $this->load_tables();
|
1601 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
@@ -1756,8 +1764,7 @@ class WP_Table_Reloaded_Controller_Admin extends WP_Table_Reloaded_Controller_Ba
|
|
1756 |
'option_growing_textareas' => $this->options['growing_textareas'],
|
1757 |
'option_add_target_blank_to_links' => $this->options['add_target_blank_to_links'],
|
1758 |
'option_tablesorter_enabled' => $this->options['enable_tablesorter'],
|
1759 |
-
'option_datatables_active' => $this->options['enable_tablesorter'] && ( 'datatables' == $this->options['tablesorter_script']
|
1760 |
-
'option_tabletools_active' => $this->options['enable_tablesorter'] && ( 'datatables-tabletools' == $this->options['tablesorter_script'] ),
|
1761 |
'l10n_print_after' => 'try{convertEntities(WP_Table_Reloaded_Admin);}catch(e){};'
|
1762 |
) );
|
1763 |
}
|
61 |
'use_datatables_on_table_list' => true,
|
62 |
'add_target_blank_to_links' => false,
|
63 |
'enable_tablesorter' => true,
|
64 |
+
'tablesorter_script' => 'datatables', // others are 'tablesorter' and 'tablesorter_extended'
|
65 |
'use_default_css' => true,
|
66 |
'use_custom_css' => true,
|
67 |
'custom_css' => '',
|
113 |
*/
|
114 |
var $page_url = '';
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
/**
|
117 |
* PHP5 class constructor
|
118 |
*
|
400 |
$table['options']['datatables_lengthchange'] = isset( $_POST['table']['options']['datatables_lengthchange'] );
|
401 |
$table['options']['datatables_filter'] = isset( $_POST['table']['options']['datatables_filter'] );
|
402 |
$table['options']['datatables_info'] = isset( $_POST['table']['options']['datatables_info'] );
|
|
|
403 |
$table['options']['datatables_paginate_entries'] = ( is_numeric( $table['options']['datatables_paginate_entries'] ) ) ? absint( $table['options']['datatables_paginate_entries'] ) : $this->default_table['options']['datatables_paginate_entries'];
|
404 |
// $table['options']['datatables_customcommands'] is an input type=text field that is always submitted
|
405 |
// $table['options']['print_name|description_position'] are select fields that are always submitted
|
1258 |
function load_view( $name, $params = array(), $print_submenu_navigation = true ) {
|
1259 |
extract( $params );
|
1260 |
|
1261 |
+
// Add WP-Table Reloaded deprecation notice
|
1262 |
+
if ( current_user_can( 'install_plugins' ) )
|
1263 |
+
$this->helper->print_header_message( __( '<span style="font-size:120%">Important note: WP-Table Reloaded has been discontinued and will no longer be developed.<br /><span style="font-weight:normal">It has officially been replaced with <a href="http://wordpress.org/plugins/tablepress/">TablePress</a>, which not only fixed many problems, but also has better and new features.<br />Please <a href="http://tobias.baethge.com/2013/01/tablepress-replaces-wp-table-reloaded/" style="font-weight:bold">read this announcement</a> for more information and switch from WP-Table Reloaded to TablePress.</span></span>', WP_TABLE_RELOADED_TEXTDOMAIN ), 'error' );
|
1264 |
+
|
1265 |
$headlines = array(
|
1266 |
'list' => __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ‹ ' . __( 'WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1267 |
'add' => __( 'Add new Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1559 |
if ( ! version_compare( $this->options['installed_version'], WP_TABLE_RELOADED_PLUGIN_VERSION, '<' ) )
|
1560 |
return;
|
1561 |
|
1562 |
+
$previous_version = $this->options['installed_version'];
|
1563 |
+
|
1564 |
$new_options = array();
|
1565 |
|
1566 |
// 1b. step: update new default options before possibly adding them
|
1585 |
if ( 'top-level' == $this->options['admin_menu_parent_page'] )
|
1586 |
$new_options['admin_menu_parent_page'] = 'admin.php';
|
1587 |
|
1588 |
+
// 2f., TableTools was removed in 1.9.4
|
1589 |
+
if ( version_compare( $this->options['installed_version'] , '1.9.4', '<' ) ) {
|
1590 |
+
if ( isset( $this->options['tablesorter_script'] ) && 'datatables-tabletools' == $this->options['tablesorter_script'] )
|
1591 |
+
$new_options['tablesorter_script'] = 'datatables';
|
1592 |
+
}
|
1593 |
+
|
1594 |
// 3. step: update installed version number, empty update message cache, set welcome message
|
1595 |
$new_options['installed_version'] = WP_TABLE_RELOADED_PLUGIN_VERSION;
|
1596 |
$new_options['update_message'] = array();
|
1600 |
$this->options = $new_options;
|
1601 |
$this->update_options();
|
1602 |
|
1603 |
+
// (temporary) 5. step: Bail, if we are updating from 1.9.3 or higher, to not touch tables
|
1604 |
+
if ( version_compare( $previous_version , '1.9.3', '>=' ) )
|
1605 |
+
return;
|
1606 |
+
|
1607 |
// update individual tables and their options
|
1608 |
$this->tables = $this->load_tables();
|
1609 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
1764 |
'option_growing_textareas' => $this->options['growing_textareas'],
|
1765 |
'option_add_target_blank_to_links' => $this->options['add_target_blank_to_links'],
|
1766 |
'option_tablesorter_enabled' => $this->options['enable_tablesorter'],
|
1767 |
+
'option_datatables_active' => $this->options['enable_tablesorter'] && ( 'datatables' == $this->options['tablesorter_script'] ),
|
|
|
1768 |
'l10n_print_after' => 'try{convertEntities(WP_Table_Reloaded_Admin);}catch(e){};'
|
1769 |
) );
|
1770 |
}
|
controllers/controller-base.php
CHANGED
@@ -68,7 +68,6 @@ class WP_Table_Reloaded_Controller_Base {
|
|
68 |
'datatables_lengthchange' => true,
|
69 |
'datatables_filter' => true,
|
70 |
'datatables_info' => true,
|
71 |
-
'datatables_tabletools' => false,
|
72 |
'datatables_customcommands' => ''
|
73 |
),
|
74 |
'custom_fields' => array()
|
@@ -86,13 +85,6 @@ class WP_Table_Reloaded_Controller_Base {
|
|
86 |
*/
|
87 |
var $possible_admin_menu_parent_pages = array( 'tools.php', 'admin.php', 'edit.php', 'edit.php?post_type=page', 'edit-pages.php', 'plugins.php', 'index.php', 'options-general.php' );
|
88 |
|
89 |
-
/**
|
90 |
-
* PHP4 class constructor, calls the PHP5 class constructor __construct()
|
91 |
-
*/
|
92 |
-
function WP_Table_Reloaded_Controller_Base() {
|
93 |
-
$this->__construct();
|
94 |
-
}
|
95 |
-
|
96 |
/**
|
97 |
* PHP5 class constructor
|
98 |
*/
|
68 |
'datatables_lengthchange' => true,
|
69 |
'datatables_filter' => true,
|
70 |
'datatables_info' => true,
|
|
|
71 |
'datatables_customcommands' => ''
|
72 |
),
|
73 |
'custom_fields' => array()
|
85 |
*/
|
86 |
var $possible_admin_menu_parent_pages = array( 'tools.php', 'admin.php', 'edit.php', 'edit.php?post_type=page', 'edit-pages.php', 'plugins.php', 'index.php', 'options-general.php' );
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
/**
|
89 |
* PHP5 class constructor
|
90 |
*/
|
controllers/controller-frontend.php
CHANGED
@@ -44,13 +44,6 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
44 |
*/
|
45 |
var $tablesorter_tables = array();
|
46 |
|
47 |
-
/**
|
48 |
-
* PHP4 class constructor, calls the PHP5 class constructor __construct()
|
49 |
-
*/
|
50 |
-
function WP_Table_Reloaded_Controller_Frontend() {
|
51 |
-
$this->__construct();
|
52 |
-
}
|
53 |
-
|
54 |
/**
|
55 |
* PHP5 class constructor
|
56 |
*
|
@@ -121,7 +114,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
121 |
|
122 |
$field = $atts['field'];
|
123 |
$format = $atts['format'];
|
124 |
-
|
125 |
$table = $this->load_table( $table_id );
|
126 |
|
127 |
// generate output, depending on what information (field) was asked for
|
@@ -179,7 +172,6 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
179 |
'datatables_lengthchange' => -1,
|
180 |
'datatables_filter' => -1,
|
181 |
'datatables_info' => -1,
|
182 |
-
'datatables_tabletools' => -1,
|
183 |
'datatables_customcommands' => -1,
|
184 |
'row_offset' => 1, // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
185 |
'row_count' => null, // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
@@ -218,7 +210,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
218 |
|
219 |
$rows = count( $table['data'] );
|
220 |
$columns = count( $table['data'][0] );
|
221 |
-
|
222 |
// explode from string to array
|
223 |
$atts['column_widths'] = ( !empty( $atts['column_widths'] ) ) ? explode( '|', $atts['column_widths'] ) : array();
|
224 |
|
@@ -254,7 +246,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
254 |
else
|
255 |
$output_options[ $key ] = ( -1 !== $value ) ? $value : $table['options'][ $key ] ;
|
256 |
}
|
257 |
-
|
258 |
// generate unique HTML ID, depending on how often this table has already been shown on this page
|
259 |
$count = ( isset( $this->shown_tables[ $table_id ] ) ) ? $this->shown_tables[ $table_id ] : 0;
|
260 |
$count = $count + 1;
|
@@ -271,7 +263,6 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
271 |
'datatables_lengthchange' => $output_options['datatables_lengthchange'],
|
272 |
'datatables_filter' => $output_options['datatables_filter'],
|
273 |
'datatables_info' => $output_options['datatables_info'],
|
274 |
-
'datatables_tabletools' => $output_options['datatables_tabletools'],
|
275 |
'datatables_customcommands' => $output_options['datatables_customcommands']
|
276 |
);
|
277 |
$js_options = apply_filters( 'wp_table_reloaded_table_js_options', $js_options, $table_id, $output_options );
|
@@ -400,7 +391,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
400 |
// add name and description to searched items, if they are displayed with the table
|
401 |
$table_name = ( isset( $table['options']['print_name'] ) && $table['options']['print_name'] ) ? $table['name'] : '';
|
402 |
$table_description = ( isset( $table['options']['print_description'] ) && $table['options']['print_description'] ) ? $table['description'] : '';
|
403 |
-
|
404 |
$search_tables[ $table_id ] = array(
|
405 |
'data' => $table['data'],
|
406 |
'name' => $table_name,
|
@@ -469,11 +460,7 @@ class WP_Table_Reloaded_Controller_Frontend extends WP_Table_Reloaded_Controller
|
|
469 |
|
470 |
if ( $this->options['enable_tablesorter'] ) {
|
471 |
switch ( $this->options['tablesorter_script'] ) {
|
472 |
-
case 'datatables-tabletools':
|
473 |
-
$url_css_tabletools = $plugin_path . 'js/tabletools/tabletools.css' . '?ver=' . $this->options['installed_version'];
|
474 |
-
$url_css_tabletools = apply_filters( 'wp_table_reloaded_url_css_tabletools', $url_css_tabletools );
|
475 |
-
if ( !empty( $url_css_tabletools ) )
|
476 |
-
$default_css['tabletools.css'] = "@import url(\"{$url_css_tabletools}\");";
|
477 |
case 'datatables': // this also applies to the above, because there is no "break;" above
|
478 |
$url_css_datatables = $plugin_path . 'css/datatables.css' . '?ver=' . $this->options['installed_version'];
|
479 |
$url_css_datatables = apply_filters( 'wp_table_reloaded_url_css_datatables', $url_css_datatables );
|
@@ -522,17 +509,13 @@ CSSSTYLE;
|
|
522 |
function add_frontend_js() {
|
523 |
if ( 0 == count( $this->tablesorter_tables ) )
|
524 |
return; // no tables with script enabled shown
|
525 |
-
|
526 |
switch ( $this->options['tablesorter_script'] ) {
|
|
|
527 |
case 'datatables':
|
528 |
$jsfile = 'jquery.datatables.min.js';
|
529 |
$js_command = 'dataTable';
|
530 |
break;
|
531 |
-
case 'datatables-tabletools':
|
532 |
-
$include_tabletools = true;
|
533 |
-
$jsfile = 'jquery.datatables.min.js';
|
534 |
-
$js_command = 'dataTable';
|
535 |
-
break;
|
536 |
case 'tablesorter':
|
537 |
$jsfile = 'jquery.tablesorter.min.js';
|
538 |
$js_command = 'tablesorter';
|
@@ -551,25 +534,6 @@ CSSSTYLE;
|
|
551 |
wp_register_script( 'wp-table-reloaded-frontend-js', $js_script_url, array( 'jquery' ), $this->options['installed_version'] );
|
552 |
wp_print_scripts( 'wp-table-reloaded-frontend-js' );
|
553 |
|
554 |
-
if ( isset( $include_tabletools ) && $include_tabletools ) {
|
555 |
-
$js_zeroclipboard_url = plugins_url( 'js/tabletools/zeroclipboard.js', WP_TABLE_RELOADED__FILE__ );
|
556 |
-
$js_zeroclipboard_url = apply_filters( 'wp_table_reloaded_url_js_zeroclipboard', $js_zeroclipboard_url );
|
557 |
-
// no need to explicitely check for dependencies ( 'wp-table-reloaded-frontend-js' and 'jquery' ) again
|
558 |
-
wp_register_script( 'wp-table-reloaded-zeroclipboard-js', $js_zeroclipboard_url, array(), $this->options['installed_version'] );
|
559 |
-
wp_print_scripts( 'wp-table-reloaded-zeroclipboard-js' );
|
560 |
-
|
561 |
-
$js_tabletools_url = plugins_url( 'js/tabletools/tabletools.min.js', WP_TABLE_RELOADED__FILE__ );
|
562 |
-
$js_tabletools_url = apply_filters( 'wp_table_reloaded_url_js_tabletools', $js_tabletools_url );
|
563 |
-
wp_register_script( 'wp-table-reloaded-tabletools-js', $js_tabletools_url, array(), $this->options['installed_version'] );
|
564 |
-
$swf_zeroclipboard_url = plugins_url( 'js/tabletools/zeroclipboard.swf', WP_TABLE_RELOADED__FILE__ );
|
565 |
-
$swf_zeroclipboard_url = apply_filters( 'wp_table_reloaded_url_swf_zeroclipboard', $swf_zeroclipboard_url );
|
566 |
-
wp_localize_script( 'wp-table-reloaded-tabletools-js', 'WP_Table_Reloaded_TableTools', array(
|
567 |
-
'swf_path' => $swf_zeroclipboard_url,
|
568 |
-
'l10n_print_after' => 'try{convertEntities(WP_Table_Reloaded_TableTools);}catch(e){};'
|
569 |
-
) );
|
570 |
-
wp_print_scripts( 'wp-table-reloaded-tabletools-js' );
|
571 |
-
}
|
572 |
-
|
573 |
// generate the specific commands for the JS library, depending on chosen features on the "Edit Table" screen
|
574 |
$commands = array();
|
575 |
foreach ( $this->tablesorter_tables as $tablesorter_table ) {
|
@@ -579,9 +543,7 @@ CSSSTYLE;
|
|
579 |
|
580 |
$parameters = array();
|
581 |
switch ( $this->options['tablesorter_script'] ) {
|
582 |
-
case 'datatables-tabletools':
|
583 |
-
if ( $js_options['datatables_tabletools'] )
|
584 |
-
$parameters['sDom'] = "\"sDom\": 'T<\"clear\">lfrtip'";
|
585 |
case 'datatables':
|
586 |
$datatables_locale = get_locale();
|
587 |
$datatables_locale = apply_filters( 'wp_table_reloaded_datatables_locale', $datatables_locale );
|
44 |
*/
|
45 |
var $tablesorter_tables = array();
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
/**
|
48 |
* PHP5 class constructor
|
49 |
*
|
114 |
|
115 |
$field = $atts['field'];
|
116 |
$format = $atts['format'];
|
117 |
+
|
118 |
$table = $this->load_table( $table_id );
|
119 |
|
120 |
// generate output, depending on what information (field) was asked for
|
172 |
'datatables_lengthchange' => -1,
|
173 |
'datatables_filter' => -1,
|
174 |
'datatables_info' => -1,
|
|
|
175 |
'datatables_customcommands' => -1,
|
176 |
'row_offset' => 1, // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
177 |
'row_count' => null, // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
210 |
|
211 |
$rows = count( $table['data'] );
|
212 |
$columns = count( $table['data'][0] );
|
213 |
+
|
214 |
// explode from string to array
|
215 |
$atts['column_widths'] = ( !empty( $atts['column_widths'] ) ) ? explode( '|', $atts['column_widths'] ) : array();
|
216 |
|
246 |
else
|
247 |
$output_options[ $key ] = ( -1 !== $value ) ? $value : $table['options'][ $key ] ;
|
248 |
}
|
249 |
+
|
250 |
// generate unique HTML ID, depending on how often this table has already been shown on this page
|
251 |
$count = ( isset( $this->shown_tables[ $table_id ] ) ) ? $this->shown_tables[ $table_id ] : 0;
|
252 |
$count = $count + 1;
|
263 |
'datatables_lengthchange' => $output_options['datatables_lengthchange'],
|
264 |
'datatables_filter' => $output_options['datatables_filter'],
|
265 |
'datatables_info' => $output_options['datatables_info'],
|
|
|
266 |
'datatables_customcommands' => $output_options['datatables_customcommands']
|
267 |
);
|
268 |
$js_options = apply_filters( 'wp_table_reloaded_table_js_options', $js_options, $table_id, $output_options );
|
391 |
// add name and description to searched items, if they are displayed with the table
|
392 |
$table_name = ( isset( $table['options']['print_name'] ) && $table['options']['print_name'] ) ? $table['name'] : '';
|
393 |
$table_description = ( isset( $table['options']['print_description'] ) && $table['options']['print_description'] ) ? $table['description'] : '';
|
394 |
+
|
395 |
$search_tables[ $table_id ] = array(
|
396 |
'data' => $table['data'],
|
397 |
'name' => $table_name,
|
460 |
|
461 |
if ( $this->options['enable_tablesorter'] ) {
|
462 |
switch ( $this->options['tablesorter_script'] ) {
|
463 |
+
case 'datatables-tabletools': // keep this for backward compatibility
|
|
|
|
|
|
|
|
|
464 |
case 'datatables': // this also applies to the above, because there is no "break;" above
|
465 |
$url_css_datatables = $plugin_path . 'css/datatables.css' . '?ver=' . $this->options['installed_version'];
|
466 |
$url_css_datatables = apply_filters( 'wp_table_reloaded_url_css_datatables', $url_css_datatables );
|
509 |
function add_frontend_js() {
|
510 |
if ( 0 == count( $this->tablesorter_tables ) )
|
511 |
return; // no tables with script enabled shown
|
512 |
+
|
513 |
switch ( $this->options['tablesorter_script'] ) {
|
514 |
+
case 'datatables-tabletools': // keep this for backward compatibility
|
515 |
case 'datatables':
|
516 |
$jsfile = 'jquery.datatables.min.js';
|
517 |
$js_command = 'dataTable';
|
518 |
break;
|
|
|
|
|
|
|
|
|
|
|
519 |
case 'tablesorter':
|
520 |
$jsfile = 'jquery.tablesorter.min.js';
|
521 |
$js_command = 'tablesorter';
|
534 |
wp_register_script( 'wp-table-reloaded-frontend-js', $js_script_url, array( 'jquery' ), $this->options['installed_version'] );
|
535 |
wp_print_scripts( 'wp-table-reloaded-frontend-js' );
|
536 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
// generate the specific commands for the JS library, depending on chosen features on the "Edit Table" screen
|
538 |
$commands = array();
|
539 |
foreach ( $this->tablesorter_tables as $tablesorter_table ) {
|
543 |
|
544 |
$parameters = array();
|
545 |
switch ( $this->options['tablesorter_script'] ) {
|
546 |
+
case 'datatables-tabletools': // Keep this for backward-compatibility
|
|
|
|
|
547 |
case 'datatables':
|
548 |
$datatables_locale = get_locale();
|
549 |
$datatables_locale = apply_filters( 'wp_table_reloaded_datatables_locale', $datatables_locale );
|
js/tabletools/images/copy.png
DELETED
Binary file
|
js/tabletools/images/copy_hover.png
DELETED
Binary file
|
js/tabletools/images/csv.png
DELETED
Binary file
|
js/tabletools/images/csv_hover.png
DELETED
Binary file
|
js/tabletools/images/index.php
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Silence is golden.
|
3 |
-
?>
|
|
|
|
|
|
js/tabletools/images/print.png
DELETED
Binary file
|
js/tabletools/images/print_hover.png
DELETED
Binary file
|
js/tabletools/images/xls.png
DELETED
Binary file
|
js/tabletools/images/xls_hover.png
DELETED
Binary file
|
js/tabletools/index.php
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Silence is golden.
|
3 |
-
?>
|
|
|
|
|
|
js/tabletools/tabletools.css
DELETED
@@ -1,105 +0,0 @@
|
|
1 |
-
/*************************************************
|
2 |
-
* This CSS file belongs to WP-Table Reloaded! *
|
3 |
-
* DO NOT make any changes here, but in the *
|
4 |
-
* "Custom CSS" textarea in the "Plugin Options"! *
|
5 |
-
*************************************************/
|
6 |
-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
7 |
-
* TableTools styles
|
8 |
-
*/
|
9 |
-
.dataTables_wrapper .clear {
|
10 |
-
clear: both!important;
|
11 |
-
}
|
12 |
-
|
13 |
-
.TableTools {
|
14 |
-
padding: 3px 0 3px 3px;
|
15 |
-
border: 1px solid #d0d0d0;
|
16 |
-
background-color: #f0f0f0;
|
17 |
-
float: right;
|
18 |
-
margin-bottom: 1em;
|
19 |
-
}
|
20 |
-
|
21 |
-
.TableTools_button {
|
22 |
-
position: relative;
|
23 |
-
float: left;
|
24 |
-
margin-right: 3px;
|
25 |
-
}
|
26 |
-
|
27 |
-
.TableTools_csv {
|
28 |
-
background: url(images/csv.png) no-repeat center center;
|
29 |
-
border: 1px solid #f0f0f0;
|
30 |
-
}
|
31 |
-
|
32 |
-
.TableTools_csv_hover {
|
33 |
-
background: url(images/csv_hover.png) no-repeat center center;
|
34 |
-
border: 1px solid #d0d0d0;
|
35 |
-
background-color: #fdfdfd;
|
36 |
-
}
|
37 |
-
|
38 |
-
.TableTools_xls {
|
39 |
-
background: url(images/xls.png) no-repeat center center;
|
40 |
-
border: 1px solid #f0f0f0;
|
41 |
-
}
|
42 |
-
|
43 |
-
.TableTools_xls_hover {
|
44 |
-
background: url(images/xls_hover.png) no-repeat center center;
|
45 |
-
border: 1px solid #d0d0d0;
|
46 |
-
background-color: #fdfdfd;
|
47 |
-
}
|
48 |
-
|
49 |
-
.TableTools_clipboard {
|
50 |
-
background: url(images/copy.png) no-repeat center center;
|
51 |
-
border: 1px solid #f0f0f0;
|
52 |
-
}
|
53 |
-
|
54 |
-
.TableTools_clipboard_hover {
|
55 |
-
background: url(images/copy_hover.png) no-repeat center center;
|
56 |
-
border: 1px solid #d0d0d0;
|
57 |
-
background-color: #fdfdfd;
|
58 |
-
}
|
59 |
-
|
60 |
-
.TableTools_print {
|
61 |
-
background: url(images/print.png) no-repeat center center;
|
62 |
-
border: 1px solid #f0f0f0;
|
63 |
-
}
|
64 |
-
|
65 |
-
.TableTools_print_hover {
|
66 |
-
background: url(images/print_hover.png) no-repeat center center;
|
67 |
-
border: 1px solid #d0d0d0;
|
68 |
-
background-color: #fdfdfd;
|
69 |
-
}
|
70 |
-
|
71 |
-
.TableTools_PrintInfo {
|
72 |
-
position: absolute;
|
73 |
-
top: 50%;
|
74 |
-
left: 50%;
|
75 |
-
width: 400px;
|
76 |
-
height: 150px;
|
77 |
-
margin-left: -200px;
|
78 |
-
margin-top: -75px;
|
79 |
-
text-align: center;
|
80 |
-
background-color: #3f3f3f;
|
81 |
-
color: white;
|
82 |
-
padding: 10px 30px;
|
83 |
-
|
84 |
-
opacity: 0.9;
|
85 |
-
|
86 |
-
border-radius: 5px;
|
87 |
-
-moz-border-radius: 5px;
|
88 |
-
-webkit-border-radius: 5px;
|
89 |
-
|
90 |
-
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
|
91 |
-
-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
|
92 |
-
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
|
93 |
-
}
|
94 |
-
|
95 |
-
.TableTools_PrintInfo h6 {
|
96 |
-
font-weight: normal;
|
97 |
-
font-size: 28px;
|
98 |
-
line-height: 28px;
|
99 |
-
margin: 1em;
|
100 |
-
}
|
101 |
-
|
102 |
-
.TableTools_PrintInfo p {
|
103 |
-
font-size: 14px;
|
104 |
-
line-height: 20px;
|
105 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/tabletools/tabletools.js
DELETED
@@ -1,735 +0,0 @@
|
|
1 |
-
/*
|
2 |
-
* File: TableTools.js
|
3 |
-
* Version: 1.1.4
|
4 |
-
* CVS: $Id$
|
5 |
-
* Description: Copy, save and print functions for DataTables
|
6 |
-
* Author: Allan Jardine (www.sprymedia.co.uk)
|
7 |
-
* Created: Wed 1 Apr 2009 08:41:58 BST
|
8 |
-
* Modified: $Date$ by $Author$
|
9 |
-
* Language: Javascript
|
10 |
-
* License: LGPL
|
11 |
-
* Project: Just a little bit of fun :-)
|
12 |
-
* Contact: www.sprymedia.co.uk/contact
|
13 |
-
*
|
14 |
-
* Copyright 2009-2010 Allan Jardine, all rights reserved.
|
15 |
-
*
|
16 |
-
*/
|
17 |
-
|
18 |
-
/*
|
19 |
-
* Variable: TableToolsInit
|
20 |
-
* Purpose: Parameters for TableTools customisation
|
21 |
-
* Scope: global
|
22 |
-
*/
|
23 |
-
var TableToolsInit = {
|
24 |
-
"oFeatures": {
|
25 |
-
"bCsv": true,
|
26 |
-
"bXls": true,
|
27 |
-
"bCopy": true,
|
28 |
-
"bPrint": true
|
29 |
-
},
|
30 |
-
"oBom": {
|
31 |
-
"bCsv": true,
|
32 |
-
"bXls": true
|
33 |
-
},
|
34 |
-
"bIncFooter": true,
|
35 |
-
"bIncHiddenColumns": false,
|
36 |
-
"sPrintMessage": "", /* Message with will print with the table */
|
37 |
-
"sPrintInfo": "<h6>Print view</h6><p>Please use your browser's print function to "+
|
38 |
-
"print this table. Press escape when finished.", /* The 'fading' message */
|
39 |
-
"sTitle": "",
|
40 |
-
"sSwfPath": WP_Table_Reloaded_TableTools.swf_path,
|
41 |
-
"iButtonHeight": 30,
|
42 |
-
"iButtonWidth": 30,
|
43 |
-
"sCsvBoundary": "'",
|
44 |
-
"_iNextId": 1 /* Internal useage - but needs to be global */
|
45 |
-
};
|
46 |
-
|
47 |
-
|
48 |
-
(function($) {
|
49 |
-
/*
|
50 |
-
* Function: TableTools
|
51 |
-
* Purpose: TableTools "class"
|
52 |
-
* Returns: same as _fnInit
|
53 |
-
* Inputs: same as _fnInit
|
54 |
-
*/
|
55 |
-
function TableTools ( oInit )
|
56 |
-
{
|
57 |
-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
58 |
-
* Private parameters
|
59 |
-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
60 |
-
var _oSettings;
|
61 |
-
var nTools = null;
|
62 |
-
var _nTableWrapper;
|
63 |
-
var _aoPrintHidden = [];
|
64 |
-
var _iPrintScroll = 0;
|
65 |
-
var _nPrintMessage = null;
|
66 |
-
var _DTSettings;
|
67 |
-
var _sLastData;
|
68 |
-
var _iId;
|
69 |
-
|
70 |
-
|
71 |
-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
72 |
-
* Initialisation
|
73 |
-
*/
|
74 |
-
|
75 |
-
/*
|
76 |
-
* Function: _fnInit
|
77 |
-
* Purpose: Initialise the table tools
|
78 |
-
* Returns: node: - The created node for the table tools wrapping
|
79 |
-
* Inputs: object:oInit - object with:
|
80 |
-
* oDTSettings - DataTables settings
|
81 |
-
*/
|
82 |
-
function _fnInit( oInit )
|
83 |
-
{
|
84 |
-
_nTools = document.createElement('div');
|
85 |
-
_nTools.className = "TableTools";
|
86 |
-
_iId = TableToolsInit._iNextId++;
|
87 |
-
|
88 |
-
/* Copy the init object */
|
89 |
-
_oSettings = $.extend( true, {}, TableToolsInit );
|
90 |
-
|
91 |
-
_DTSettings = oInit.oDTSettings;
|
92 |
-
|
93 |
-
_nTableWrapper = fnFindParentClass( _DTSettings.nTable, "dataTables_wrapper" );
|
94 |
-
|
95 |
-
ZeroClipboard.moviePath = _oSettings.sSwfPath;
|
96 |
-
|
97 |
-
if ( _oSettings.oFeatures.bCopy ) {
|
98 |
-
fnFeatureClipboard();
|
99 |
-
}
|
100 |
-
if ( _oSettings.oFeatures.bCsv ) {
|
101 |
-
fnFeatureSaveCSV();
|
102 |
-
}
|
103 |
-
if ( _oSettings.oFeatures.bXls ) {
|
104 |
-
fnFeatureSaveXLS();
|
105 |
-
}
|
106 |
-
if ( _oSettings.oFeatures.bPrint ) {
|
107 |
-
fnFeaturePrint();
|
108 |
-
}
|
109 |
-
|
110 |
-
return _nTools;
|
111 |
-
}
|
112 |
-
|
113 |
-
|
114 |
-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
115 |
-
* Feature buttons
|
116 |
-
*/
|
117 |
-
|
118 |
-
/*
|
119 |
-
* Function: fnFeatureSaveCSV
|
120 |
-
* Purpose: Add a button for saving a CSV file
|
121 |
-
* Returns: -
|
122 |
-
* Inputs: -
|
123 |
-
*/
|
124 |
-
function fnFeatureSaveCSV ()
|
125 |
-
{
|
126 |
-
var sBaseClass = "TableTools_button TableTools_csv";
|
127 |
-
var nButton = document.createElement( 'div' );
|
128 |
-
nButton.id = "ToolTables_CSV_"+_iId;
|
129 |
-
nButton.style.height = _oSettings.iButtonHeight+'px';
|
130 |
-
nButton.style.width = _oSettings.iButtonWidth+'px';
|
131 |
-
nButton.className = sBaseClass;
|
132 |
-
_nTools.appendChild( nButton );
|
133 |
-
|
134 |
-
var clip = new ZeroClipboard.Client();
|
135 |
-
clip.setHandCursor( true );
|
136 |
-
clip.setAction( 'save' );
|
137 |
-
clip.setCharSet( 'UTF8' );
|
138 |
-
clip.setBomInc( _oSettings.oBom.bCsv );
|
139 |
-
clip.setFileName( fnGetTitle()+'.csv' );
|
140 |
-
|
141 |
-
clip.addEventListener('mouseOver', function(client) {
|
142 |
-
nButton.className = sBaseClass+'_hover';
|
143 |
-
} );
|
144 |
-
|
145 |
-
clip.addEventListener('mouseOut', function(client) {
|
146 |
-
nButton.className = sBaseClass;
|
147 |
-
} );
|
148 |
-
|
149 |
-
clip.addEventListener('mouseDown', function(client) {
|
150 |
-
fnFlashSetText( clip, fnGetDataTablesData(",", TableToolsInit.sCsvBoundary) );
|
151 |
-
} );
|
152 |
-
|
153 |
-
fnGlue( clip, nButton, "ToolTables_CSV_"+_iId, "Save as CSV" );
|
154 |
-
}
|
155 |
-
|
156 |
-
|
157 |
-
/*
|
158 |
-
* Function: fnFeatureSaveXLS
|
159 |
-
* Purpose: Add a button for saving an XLS file
|
160 |
-
* Returns: -
|
161 |
-
* Inputs: -
|
162 |
-
*/
|
163 |
-
function fnFeatureSaveXLS ()
|
164 |
-
{
|
165 |
-
var sBaseClass = "TableTools_button TableTools_xls";
|
166 |
-
var nButton = document.createElement( 'div' );
|
167 |
-
nButton.id = "ToolTables_XLS_"+_iId;
|
168 |
-
nButton.style.height = _oSettings.iButtonHeight+'px';
|
169 |
-
nButton.style.width = _oSettings.iButtonWidth+'px';
|
170 |
-
nButton.className = sBaseClass;
|
171 |
-
_nTools.appendChild( nButton );
|
172 |
-
|
173 |
-
var clip = new ZeroClipboard.Client();
|
174 |
-
clip.setHandCursor( true );
|
175 |
-
clip.setAction( 'save' );
|
176 |
-
clip.setCharSet( 'UTF16LE' );
|
177 |
-
clip.setBomInc( _oSettings.oBom.bXls );
|
178 |
-
clip.setFileName( fnGetTitle()+'.xls' );
|
179 |
-
|
180 |
-
clip.addEventListener('mouseOver', function(client) {
|
181 |
-
nButton.className = sBaseClass+'_hover';
|
182 |
-
} );
|
183 |
-
|
184 |
-
clip.addEventListener('mouseOut', function(client) {
|
185 |
-
nButton.className = sBaseClass;
|
186 |
-
} );
|
187 |
-
|
188 |
-
clip.addEventListener('mouseDown', function(client) {
|
189 |
-
fnFlashSetText( clip, fnGetDataTablesData("\t") );
|
190 |
-
} );
|
191 |
-
|
192 |
-
fnGlue( clip, nButton, "ToolTables_XLS_"+_iId, "Save for Excel" );
|
193 |
-
}
|
194 |
-
|
195 |
-
|
196 |
-
/*
|
197 |
-
* Function: fnFeatureClipboard
|
198 |
-
* Purpose: Add a button for copying data to clipboard
|
199 |
-
* Returns: -
|
200 |
-
* Inputs: -
|
201 |
-
*/
|
202 |
-
function fnFeatureClipboard ()
|
203 |
-
{
|
204 |
-
var sBaseClass = "TableTools_button TableTools_clipboard";
|
205 |
-
var nButton = document.createElement( 'div' );
|
206 |
-
nButton.id = "ToolTables_Copy_"+_iId;
|
207 |
-
nButton.style.height = _oSettings.iButtonHeight+'px';
|
208 |
-
nButton.style.width = _oSettings.iButtonWidth+'px';
|
209 |
-
nButton.className = sBaseClass;
|
210 |
-
_nTools.appendChild( nButton );
|
211 |
-
|
212 |
-
var clip = new ZeroClipboard.Client();
|
213 |
-
clip.setHandCursor( true );
|
214 |
-
clip.setAction( 'copy' );
|
215 |
-
|
216 |
-
clip.addEventListener('mouseOver', function(client) {
|
217 |
-
nButton.className = sBaseClass+'_hover';
|
218 |
-
} );
|
219 |
-
|
220 |
-
clip.addEventListener('mouseOut', function(client) {
|
221 |
-
nButton.className = sBaseClass;
|
222 |
-
} );
|
223 |
-
|
224 |
-
clip.addEventListener('mouseDown', function(client) {
|
225 |
-
fnFlashSetText( clip, fnGetDataTablesData("\t") );
|
226 |
-
} );
|
227 |
-
|
228 |
-
clip.addEventListener('complete', function (client, text) {
|
229 |
-
var aData = _sLastData.split('\n');
|
230 |
-
alert( 'Copied '+(aData.length-1)+' rows to the clipboard' );
|
231 |
-
} );
|
232 |
-
|
233 |
-
fnGlue( clip, nButton, "ToolTables_Copy_"+_iId, "Copy to clipboard" );
|
234 |
-
}
|
235 |
-
|
236 |
-
|
237 |
-
/*
|
238 |
-
* Function: fnFeaturePrint
|
239 |
-
* Purpose: Add a button for printing data
|
240 |
-
* Returns: -
|
241 |
-
* Inputs: -
|
242 |
-
* Notes: Fun one this function. In order to print the table, we want the table to retain
|
243 |
-
* it's position in the DOM, so all styles still apply, but we don't want to print all the
|
244 |
-
* other nonesense. So we hide that nonesese and add an event handler for 'esc' which will
|
245 |
-
* restore a normal view.
|
246 |
-
*/
|
247 |
-
function fnFeaturePrint ()
|
248 |
-
{
|
249 |
-
var sBaseClass = "TableTools_button TableTools_print";
|
250 |
-
var nButton = document.createElement( 'div' );
|
251 |
-
nButton.style.height = _oSettings.iButtonHeight+'px';
|
252 |
-
nButton.style.width = _oSettings.iButtonWidth+'px';
|
253 |
-
nButton.className = sBaseClass;
|
254 |
-
nButton.title = "Print table";
|
255 |
-
_nTools.appendChild( nButton );
|
256 |
-
|
257 |
-
/* Could do this in CSS - but might as well be consistent with the flash buttons */
|
258 |
-
$(nButton).hover( function(client) {
|
259 |
-
nButton.className = sBaseClass+'_hover';
|
260 |
-
}, function(client) {
|
261 |
-
nButton.className = sBaseClass;
|
262 |
-
} );
|
263 |
-
|
264 |
-
$(nButton).click( function() {
|
265 |
-
/* Parse through the DOM hiding everything that isn't needed for the table */
|
266 |
-
fnPrintHideNodes( _DTSettings.nTable );
|
267 |
-
|
268 |
-
/* Show the whole table */
|
269 |
-
_iPrintSaveStart = _DTSettings._iDisplayStart;
|
270 |
-
_iPrintSaveLength = _DTSettings._iDisplayLength;
|
271 |
-
_DTSettings._iDisplayStart = 0;
|
272 |
-
_DTSettings._iDisplayLength = -1;
|
273 |
-
_DTSettings.oApi._fnCalculateEnd( _DTSettings );
|
274 |
-
_DTSettings.oApi._fnDraw( _DTSettings );
|
275 |
-
|
276 |
-
/* Remove the other DataTables feature nodes - but leave the table! and info div */
|
277 |
-
var anFeature = _DTSettings.anFeatures;
|
278 |
-
for ( var cFeature in anFeature )
|
279 |
-
{
|
280 |
-
if ( cFeature != 'i' && cFeature != 't' )
|
281 |
-
{
|
282 |
-
_aoPrintHidden.push( {
|
283 |
-
"node": anFeature[cFeature],
|
284 |
-
"display": "block"
|
285 |
-
} );
|
286 |
-
anFeature[cFeature].style.display = "none";
|
287 |
-
}
|
288 |
-
}
|
289 |
-
|
290 |
-
/* Add a node telling the user what is going on */
|
291 |
-
var nInfo = document.createElement( "div" );
|
292 |
-
nInfo.className = "TableTools_PrintInfo";
|
293 |
-
nInfo.innerHTML = _oSettings.sPrintInfo;
|
294 |
-
document.body.appendChild( nInfo );
|
295 |
-
|
296 |
-
/* Add a message at the top of the page */
|
297 |
-
if ( _oSettings.sPrintMessage !== "" )
|
298 |
-
{
|
299 |
-
_nPrintMessage = document.createElement( "p" );
|
300 |
-
_nPrintMessage.className = "TableTools_PrintMessage";
|
301 |
-
_nPrintMessage.innerHTML = _oSettings.sPrintMessage;
|
302 |
-
document.body.insertBefore( _nPrintMessage, document.body.childNodes[0] );
|
303 |
-
}
|
304 |
-
|
305 |
-
/* Cache the scrolling and the jump to the top of the t=page */
|
306 |
-
_iPrintScroll = $(window).scrollTop();
|
307 |
-
window.scrollTo( 0, 0 );
|
308 |
-
|
309 |
-
$(document).bind( "keyup", null, fnPrintEnd );
|
310 |
-
|
311 |
-
setTimeout( function() {
|
312 |
-
$(nInfo).fadeOut( "normal", function() {
|
313 |
-
document.body.removeChild( nInfo );
|
314 |
-
} );
|
315 |
-
}, 2000 );
|
316 |
-
} );
|
317 |
-
}
|
318 |
-
|
319 |
-
|
320 |
-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
321 |
-
* Printing functions
|
322 |
-
*/
|
323 |
-
|
324 |
-
/*
|
325 |
-
* Function: fnPrintEnd
|
326 |
-
* Purpose: Printing is finished, resume normal display
|
327 |
-
* Returns: -
|
328 |
-
* Inputs: event
|
329 |
-
*/
|
330 |
-
function fnPrintEnd ( e )
|
331 |
-
{
|
332 |
-
/* Only interested in the escape key */
|
333 |
-
if ( e.keyCode == 27 )
|
334 |
-
{
|
335 |
-
/* Show all hidden nodes */
|
336 |
-
fnPrintShowNodes();
|
337 |
-
|
338 |
-
/* Restore the scroll */
|
339 |
-
window.scrollTo( 0, _iPrintScroll );
|
340 |
-
|
341 |
-
/* Drop the print message */
|
342 |
-
if ( _nPrintMessage )
|
343 |
-
{
|
344 |
-
document.body.removeChild( _nPrintMessage );
|
345 |
-
_nPrintMessage = null;
|
346 |
-
}
|
347 |
-
|
348 |
-
/* Restore the table length */
|
349 |
-
_DTSettings._iDisplayStart = _iPrintSaveStart;
|
350 |
-
_DTSettings._iDisplayLength = _iPrintSaveLength;
|
351 |
-
_DTSettings.oApi._fnCalculateEnd( _DTSettings );
|
352 |
-
_DTSettings.oApi._fnDraw( _DTSettings );
|
353 |
-
|
354 |
-
$(document).unbind( "keydown", fnPrintEnd );
|
355 |
-
}
|
356 |
-
}
|
357 |
-
|
358 |
-
|
359 |
-
/*
|
360 |
-
* Function: fnPrintShowNodes
|
361 |
-
* Purpose: Resume the display of all TableTools hidden nodes
|
362 |
-
* Returns: -
|
363 |
-
* Inputs: -
|
364 |
-
*/
|
365 |
-
function fnPrintShowNodes( )
|
366 |
-
{
|
367 |
-
for ( var i=0, iLen=_aoPrintHidden.length ; i<iLen ; i++ )
|
368 |
-
{
|
369 |
-
_aoPrintHidden[i].node.style.display = _aoPrintHidden[i].display;
|
370 |
-
}
|
371 |
-
_aoPrintHidden.splice( 0, _aoPrintHidden.length );
|
372 |
-
}
|
373 |
-
|
374 |
-
|
375 |
-
/*
|
376 |
-
* Function: fnPrintHideNodes
|
377 |
-
* Purpose: Hide nodes which are not needed in order to display the table
|
378 |
-
* Returns: -
|
379 |
-
* Inputs: node:nNode - the table node - we parse back up
|
380 |
-
* Notes: Recursive
|
381 |
-
*/
|
382 |
-
function fnPrintHideNodes( nNode )
|
383 |
-
{
|
384 |
-
var nParent = nNode.parentNode;
|
385 |
-
var nChildren = nParent.childNodes;
|
386 |
-
for ( var i=0, iLen=nChildren.length ; i<iLen ; i++ )
|
387 |
-
{
|
388 |
-
if ( nChildren[i] != nNode && nChildren[i].nodeType == 1 )
|
389 |
-
{
|
390 |
-
/* If our node is shown (don't want to show nodes which were previously hidden) */
|
391 |
-
var sDisplay = $(nChildren[i]).css("display");
|
392 |
-
if ( sDisplay != "none" )
|
393 |
-
{
|
394 |
-
/* Cache the node and it's previous state so we can restore it */
|
395 |
-
_aoPrintHidden.push( {
|
396 |
-
"node": nChildren[i],
|
397 |
-
"display": sDisplay
|
398 |
-
} );
|
399 |
-
nChildren[i].style.display = "none";
|
400 |
-
}
|
401 |
-
}
|
402 |
-
}
|
403 |
-
|
404 |
-
if ( nParent.nodeName != "BODY" )
|
405 |
-
{
|
406 |
-
fnPrintHideNodes( nParent );
|
407 |
-
}
|
408 |
-
}
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
415 |
-
* Support functions
|
416 |
-
*/
|
417 |
-
|
418 |
-
/*
|
419 |
-
* Function: fnGlue
|
420 |
-
* Purpose: Wait until the id is in the DOM before we "glue" the swf
|
421 |
-
* Returns: -
|
422 |
-
* Inputs: object:clip - Zero clipboard object
|
423 |
-
* node:node - node to glue swf to
|
424 |
-
* string:id - id of the element to look for
|
425 |
-
* string:text - title of the flash movie
|
426 |
-
* Notes: Recursive (setTimeout)
|
427 |
-
*/
|
428 |
-
function fnGlue ( clip, node, id, text )
|
429 |
-
{
|
430 |
-
if ( document.getElementById(id) )
|
431 |
-
{
|
432 |
-
clip.glue( node, text );
|
433 |
-
}
|
434 |
-
else
|
435 |
-
{
|
436 |
-
setTimeout( function () {
|
437 |
-
fnGlue( clip, node, id, text );
|
438 |
-
}, 100 );
|
439 |
-
}
|
440 |
-
}
|
441 |
-
|
442 |
-
|
443 |
-
/*
|
444 |
-
* Function: fnGetTitle
|
445 |
-
* Purpose: Get the title of the page (from DOM or user set) for file saving
|
446 |
-
* Returns:
|
447 |
-
* Inputs:
|
448 |
-
*/
|
449 |
-
function fnGetTitle( )
|
450 |
-
{
|
451 |
-
var sTitle;
|
452 |
-
if ( _oSettings.sTitle !== "" ) {
|
453 |
-
sTitle = _oSettings.sTitle;
|
454 |
-
} else {
|
455 |
-
sTitle = document.getElementsByTagName('title')[0].innerHTML;
|
456 |
-
}
|
457 |
-
|
458 |
-
/* Strip characters which the OS will object to - checking for UTF8 support in the scripting
|
459 |
-
* engine
|
460 |
-
*/
|
461 |
-
if ( "\u00A1".toString().length < 4 ) {
|
462 |
-
return sTitle.replace(/[^a-zA-Z0-9_\u00A1-\uFFFF\.,\-_ !\(\)]/g, "");
|
463 |
-
} else {
|
464 |
-
return sTitle.replace(/[^a-zA-Z0-9_\.,\-_ !\(\)]/g, "");
|
465 |
-
}
|
466 |
-
}
|
467 |
-
|
468 |
-
|
469 |
-
/*
|
470 |
-
* Function: fnFindParentClass
|
471 |
-
* Purpose: Parse back up the DOM to a node with a particular node
|
472 |
-
* Returns: node: - found node
|
473 |
-
* Inputs: node:n - Node to test
|
474 |
-
* string:sClass - class to find
|
475 |
-
* Notes: Recursive
|
476 |
-
*/
|
477 |
-
function fnFindParentClass ( n, sClass )
|
478 |
-
{
|
479 |
-
if ( n.className.match(sClass) || n.nodeName == "BODY" )
|
480 |
-
{
|
481 |
-
return n;
|
482 |
-
}
|
483 |
-
else
|
484 |
-
{
|
485 |
-
return fnFindParentClass( n.parentNode, sClass );
|
486 |
-
}
|
487 |
-
}
|
488 |
-
|
489 |
-
|
490 |
-
/*
|
491 |
-
* Function: fnBoundData
|
492 |
-
* Purpose: Wrap data up with a boundary string
|
493 |
-
* Returns: string: - bound data
|
494 |
-
* Inputs: string:sData - data to bound
|
495 |
-
* string:sBoundary - bounding char(s)
|
496 |
-
* regexp:regex - search for the bounding chars - constructed outside for efficincy
|
497 |
-
* in the loop
|
498 |
-
*/
|
499 |
-
function fnBoundData( sData, sBoundary, regex )
|
500 |
-
{
|
501 |
-
if ( sBoundary === "" )
|
502 |
-
{
|
503 |
-
return sData;
|
504 |
-
}
|
505 |
-
else
|
506 |
-
{
|
507 |
-
return sBoundary + sData.replace(regex, "\\"+sBoundary) + sBoundary;
|
508 |
-
}
|
509 |
-
}
|
510 |
-
|
511 |
-
|
512 |
-
/*
|
513 |
-
* Function: fnHtmlDecode
|
514 |
-
* Purpose: Decode HTML entities
|
515 |
-
* Returns: string: - decoded string
|
516 |
-
* Inputs: string:sData - encoded string
|
517 |
-
*/
|
518 |
-
function fnHtmlDecode( sData )
|
519 |
-
{
|
520 |
-
var
|
521 |
-
aData = fnChunkData( sData, 2048 ),
|
522 |
-
n = document.createElement('div'),
|
523 |
-
i, iLen, iIndex,
|
524 |
-
sReturn = "", sInner;
|
525 |
-
|
526 |
-
/* nodeValue has a limit in browsers - so we chunk the data into smaller segments to build
|
527 |
-
* up the string. Note that the 'trick' here is to remember than we might have split over
|
528 |
-
* an HTML entity, so we backtrack a little to make sure this doesn't happen
|
529 |
-
*/
|
530 |
-
for ( i=0, iLen=aData.length ; i<iLen ; i++ )
|
531 |
-
{
|
532 |
-
/* Magic number 8 is because no entity is longer then strlen 8 in ISO 8859-1 */
|
533 |
-
iIndex = aData[i].lastIndexOf( '&' );
|
534 |
-
if ( iIndex != -1 && aData[i].length >= 8 && iIndex > aData[i].length - 8 )
|
535 |
-
{
|
536 |
-
sInner = aData[i].substr( iIndex );
|
537 |
-
aData[i] = aData[i].substr( 0, iIndex );
|
538 |
-
}
|
539 |
-
|
540 |
-
n.innerHTML = aData[i];
|
541 |
-
sReturn += n.childNodes[0].nodeValue;
|
542 |
-
}
|
543 |
-
|
544 |
-
return sReturn;
|
545 |
-
}
|
546 |
-
|
547 |
-
|
548 |
-
//function fnHtmlDecode( sData )
|
549 |
-
//{
|
550 |
-
// var n = document.createElement('div');
|
551 |
-
// n.innerHTML = sData;
|
552 |
-
// return n.childNodes[0].nodeValue;
|
553 |
-
//}
|
554 |
-
|
555 |
-
|
556 |
-
/*
|
557 |
-
* Function: fnChunkData
|
558 |
-
* Purpose: Break a string up into an array of smaller strings
|
559 |
-
* Returns: array strings: - string array
|
560 |
-
* Inputs: string:sData - data to be broken up
|
561 |
-
* int:iSize - chunk size
|
562 |
-
*/
|
563 |
-
function fnChunkData( sData, iSize )
|
564 |
-
{
|
565 |
-
var asReturn = [];
|
566 |
-
var iStrlen = sData.length;
|
567 |
-
|
568 |
-
for ( var i=0 ; i<iStrlen ; i+=iSize )
|
569 |
-
{
|
570 |
-
if ( i+iSize < iStrlen )
|
571 |
-
{
|
572 |
-
asReturn.push( sData.substring( i, i+iSize ) );
|
573 |
-
}
|
574 |
-
else
|
575 |
-
{
|
576 |
-
asReturn.push( sData.substring( i, iStrlen ) );
|
577 |
-
}
|
578 |
-
}
|
579 |
-
|
580 |
-
return asReturn;
|
581 |
-
}
|
582 |
-
|
583 |
-
|
584 |
-
/*
|
585 |
-
* Function: fnFlashSetText
|
586 |
-
* Purpose: Set the text for the flash clip to deal with
|
587 |
-
* Returns: -
|
588 |
-
* Inputs: object:clip - the ZeroClipboard object
|
589 |
-
* string:sData - the data to be set
|
590 |
-
* Notes: This function is required for large information sets. There is a limit on the
|
591 |
-
* amount of data that can be transfered between Javascript and Flash in a single call, so
|
592 |
-
* we use this method to build up the text in Flash by sending over chunks. It is estimated
|
593 |
-
* that the data limit is around 64k, although it is undocuments, and appears to be different
|
594 |
-
* between different flash versions. We chunk at 8KiB.
|
595 |
-
*/
|
596 |
-
function fnFlashSetText( clip, sData )
|
597 |
-
{
|
598 |
-
var asData = fnChunkData( sData, 8192 );
|
599 |
-
|
600 |
-
clip.clearText();
|
601 |
-
for ( var i=0, iLen=asData.length ; i<iLen ; i++ )
|
602 |
-
{
|
603 |
-
clip.appendText( asData[i] );
|
604 |
-
}
|
605 |
-
}
|
606 |
-
|
607 |
-
|
608 |
-
/*
|
609 |
-
* Function: fnGetDataTablesData
|
610 |
-
* Purpose: Get data from DataTables' internals and format it for output
|
611 |
-
* Returns: string:sData - concatinated string of data
|
612 |
-
* Inputs: string:sSeperator - field separator (ie. ,)
|
613 |
-
* string:sBoundary - field boundary (ie. ') - optional - default: ""
|
614 |
-
*/
|
615 |
-
function fnGetDataTablesData( sSeperator, sBoundary )
|
616 |
-
{
|
617 |
-
var i, iLen;
|
618 |
-
var j, jLen;
|
619 |
-
var sData = '';
|
620 |
-
var sLoopData = '';
|
621 |
-
var sNewline = navigator.userAgent.match(/Windows/) ? "\r\n" : "\n";
|
622 |
-
|
623 |
-
if ( typeof sBoundary == "undefined" )
|
624 |
-
{
|
625 |
-
sBoundary = "";
|
626 |
-
}
|
627 |
-
var regex = new RegExp(sBoundary, "g"); /* Do it here for speed */
|
628 |
-
|
629 |
-
/* Titles */
|
630 |
-
for ( i=0, iLen=_DTSettings.aoColumns.length ; i<iLen ; i++ )
|
631 |
-
{
|
632 |
-
if ( _oSettings.bIncHiddenColumns === true || _DTSettings.aoColumns[i].bVisible )
|
633 |
-
{
|
634 |
-
sLoopData = _DTSettings.aoColumns[i].sTitle.replace(/\n/g," ").replace( /<.*?>/g, "" );
|
635 |
-
if ( sLoopData.indexOf( '&' ) != -1 )
|
636 |
-
{
|
637 |
-
sLoopData = fnHtmlDecode( sLoopData );
|
638 |
-
}
|
639 |
-
|
640 |
-
sData += fnBoundData( sLoopData, sBoundary, regex ) + sSeperator;
|
641 |
-
}
|
642 |
-
}
|
643 |
-
sData = sData.slice( 0, sSeperator.length*-1 );
|
644 |
-
sData += sNewline;
|
645 |
-
|
646 |
-
/* Rows */
|
647 |
-
for ( j=0, jLen=_DTSettings.aiDisplay.length ; j<jLen ; j++ )
|
648 |
-
{
|
649 |
-
/* Columns */
|
650 |
-
for ( i=0, iLen=_DTSettings.aoColumns.length ; i<iLen ; i++ )
|
651 |
-
{
|
652 |
-
if ( _oSettings.bIncHiddenColumns === true || _DTSettings.aoColumns[i].bVisible )
|
653 |
-
{
|
654 |
-
/* Convert to strings (with small optimisation) */
|
655 |
-
var mTypeData = _DTSettings.aoData[ _DTSettings.aiDisplay[j] ]._aData[ i ];
|
656 |
-
if ( typeof mTypeData == "string" )
|
657 |
-
{
|
658 |
-
/* Strip newlines, replace img tags with alt attr. and finally strip html... */
|
659 |
-
sLoopData = mTypeData.replace(/\n/g," ");
|
660 |
-
sLoopData = sLoopData.replace(/<img.*?\s+alt\s*=\s*(?:"([^"]+)"|'([^']+)'|([^\s>]+)).*?>/gi, '$1$2$3')
|
661 |
-
sLoopData = sLoopData.replace( /<.*?>/g, "" );
|
662 |
-
}
|
663 |
-
else
|
664 |
-
{
|
665 |
-
sLoopData = mTypeData+"";
|
666 |
-
}
|
667 |
-
|
668 |
-
/* Trim and clean the data */
|
669 |
-
sLoopData = sLoopData.replace(/^\s+/, '').replace(/\s+$/, '');
|
670 |
-
if ( sLoopData.indexOf( '&' ) != -1 )
|
671 |
-
{
|
672 |
-
sLoopData = fnHtmlDecode( sLoopData );
|
673 |
-
}
|
674 |
-
|
675 |
-
/* Bound it and add it to the total data */
|
676 |
-
sData += fnBoundData( sLoopData, sBoundary, regex ) + sSeperator;
|
677 |
-
}
|
678 |
-
}
|
679 |
-
sData = sData.slice( 0, sSeperator.length*-1 );
|
680 |
-
sData += sNewline;
|
681 |
-
}
|
682 |
-
|
683 |
-
/* Remove the last new line */
|
684 |
-
sData.slice( 0, -1 );
|
685 |
-
|
686 |
-
/* Add the footer */
|
687 |
-
if ( _oSettings.bIncFooter )
|
688 |
-
{
|
689 |
-
for ( i=0, iLen=_DTSettings.aoColumns.length ; i<iLen ; i++ )
|
690 |
-
{
|
691 |
-
if ( _DTSettings.aoColumns[i].nTf !== null &&
|
692 |
-
(_oSettings.bIncHiddenColumns === true || _DTSettings.aoColumns[i].bVisible) )
|
693 |
-
{
|
694 |
-
sLoopData = _DTSettings.aoColumns[i].nTf.innerHTML.replace(/\n/g," ").replace( /<.*?>/g, "" );
|
695 |
-
if ( sLoopData.indexOf( '&' ) != -1 )
|
696 |
-
{
|
697 |
-
sLoopData = fnHtmlDecode( sLoopData );
|
698 |
-
}
|
699 |
-
|
700 |
-
sData += fnBoundData( sLoopData, sBoundary, regex ) + sSeperator;
|
701 |
-
}
|
702 |
-
}
|
703 |
-
sData = sData.slice( 0, sSeperator.length*-1 );
|
704 |
-
}
|
705 |
-
|
706 |
-
/* No pointers here - this is a string copy :-) */
|
707 |
-
_sLastData = sData;
|
708 |
-
return sData;
|
709 |
-
}
|
710 |
-
|
711 |
-
|
712 |
-
/* Initialise our new object */
|
713 |
-
return _fnInit( oInit );
|
714 |
-
}
|
715 |
-
|
716 |
-
|
717 |
-
/*
|
718 |
-
* Register a new feature with DataTables
|
719 |
-
*/
|
720 |
-
if ( typeof $.fn.dataTable == "function" && typeof $.fn.dataTableExt.sVersion != "undefined" )
|
721 |
-
{
|
722 |
-
$.fn.dataTableExt.aoFeatures.push( {
|
723 |
-
"fnInit": function( oSettings ) {
|
724 |
-
return new TableTools( { "oDTSettings": oSettings } );
|
725 |
-
},
|
726 |
-
"cFeature": "T",
|
727 |
-
"sFeature": "TableTools"
|
728 |
-
} );
|
729 |
-
}
|
730 |
-
else
|
731 |
-
{
|
732 |
-
alert( "Warning: TableTools requires DataTables 1.5 or greater - "+
|
733 |
-
"www.datatables.net/download");
|
734 |
-
}
|
735 |
-
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/tabletools/tabletools.min.js
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
/*
|
2 |
-
* File: TableTools.min.js
|
3 |
-
* Version: 2.0.0.dev
|
4 |
-
* Author: Allan Jardine (www.sprymedia.co.uk)
|
5 |
-
*
|
6 |
-
* Copyright 2009-2010 Allan Jardine, all rights reserved.
|
7 |
-
*
|
8 |
-
* This source file is free software, under either the GPL v2 license or a
|
9 |
-
* BSD (3 point) style license, as supplied with this software.
|
10 |
-
*
|
11 |
-
* This source file is distributed in the hope that it will be useful, but
|
12 |
-
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
13 |
-
* or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
|
14 |
-
*/
|
15 |
-
var TableToolsInit={oFeatures:{bCsv:true,bXls:true,bCopy:true,bPrint:true},oBom:{bCsv:true,bXls:true},bIncFooter:true,bIncHiddenColumns:false,sPrintMessage:"",sPrintInfo:"<h6>Print view</h6><p>Please use your browser's print function to print this table. Press escape when finished.",sTitle:"",sSwfPath:WP_Table_Reloaded_TableTools.swf_path,iButtonHeight:30,iButtonWidth:30,sCsvBoundary:"'",_iNextId:1};
|
16 |
-
(function(j){function D(p){function E(a){_nTools=document.createElement("div");_nTools.className="TableTools";l=TableToolsInit._iNextId++;g=j.extend(true,{},TableToolsInit);e=a.oDTSettings;F=v(e.nTable,"dataTables_wrapper");ZeroClipboard.moviePath=g.sSwfPath;g.oFeatures.bCopy&&G();g.oFeatures.bCsv&&H();g.oFeatures.bXls&&I();g.oFeatures.bPrint&&J();return _nTools}function H(){var a=document.createElement("div");a.id="ToolTables_CSV_"+l;a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+
|
17 |
-
"px";a.className="TableTools_button TableTools_csv";_nTools.appendChild(a);var b=new ZeroClipboard.Client;b.setHandCursor(true);b.setAction("save");b.setCharSet("UTF8");b.setBomInc(g.oBom.bCsv);b.setFileName(w()+".csv");b.addEventListener("mouseOver",function(){a.className="TableTools_button TableTools_csv_hover"});b.addEventListener("mouseOut",function(){a.className="TableTools_button TableTools_csv"});b.addEventListener("mouseDown",function(){q(b,r(",",TableToolsInit.sCsvBoundary))});o(b,a,"ToolTables_CSV_"+
|
18 |
-
l,"Save as CSV")}function I(){var a=document.createElement("div");a.id="ToolTables_XLS_"+l;a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+"px";a.className="TableTools_button TableTools_xls";_nTools.appendChild(a);var b=new ZeroClipboard.Client;b.setHandCursor(true);b.setAction("save");b.setCharSet("UTF16LE");b.setBomInc(g.oBom.bXls);b.setFileName(w()+".xls");b.addEventListener("mouseOver",function(){a.className="TableTools_button TableTools_xls_hover"});b.addEventListener("mouseOut",
|
19 |
-
function(){a.className="TableTools_button TableTools_xls"});b.addEventListener("mouseDown",function(){q(b,r("\t"))});o(b,a,"ToolTables_XLS_"+l,"Save for Excel")}function G(){var a=document.createElement("div");a.id="ToolTables_Copy_"+l;a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+"px";a.className="TableTools_button TableTools_clipboard";_nTools.appendChild(a);var b=new ZeroClipboard.Client;b.setHandCursor(true);b.setAction("copy");b.addEventListener("mouseOver",function(){a.className=
|
20 |
-
"TableTools_button TableTools_clipboard_hover"});b.addEventListener("mouseOut",function(){a.className="TableTools_button TableTools_clipboard"});b.addEventListener("mouseDown",function(){q(b,r("\t"))});b.addEventListener("complete",function(){var c=x.split("\n");alert("Copied "+(c.length-1)+" rows to the clipboard")});o(b,a,"ToolTables_Copy_"+l,"Copy to clipboard")}function J(){var a=document.createElement("div");a.style.height=g.iButtonHeight+"px";a.style.width=g.iButtonWidth+"px";a.className="TableTools_button TableTools_print";
|
21 |
-
a.title="Print table";_nTools.appendChild(a);j(a).hover(function(){a.className="TableTools_button TableTools_print_hover"},function(){a.className="TableTools_button TableTools_print"});j(a).click(function(){y(e.nTable);_iPrintSaveStart=e._iDisplayStart;_iPrintSaveLength=e._iDisplayLength;e._iDisplayStart=0;e._iDisplayLength=-1;e.oApi._fnCalculateEnd(e);e.oApi._fnDraw(e);var b=e.anFeatures;for(var c in b)if(c!="i"&&c!="t"){m.push({node:b[c],display:"block"});b[c].style.display="none"}var d=document.createElement("div");
|
22 |
-
d.className="TableTools_PrintInfo";d.innerHTML=g.sPrintInfo;document.body.appendChild(d);if(g.sPrintMessage!==""){n=document.createElement("p");n.className="TableTools_PrintMessage";n.innerHTML=g.sPrintMessage;document.body.insertBefore(n,document.body.childNodes[0])}z=j(window).scrollTop();window.scrollTo(0,0);j(document).bind("keydown",null,A);setTimeout(function(){j(d).fadeOut("normal",function(){document.body.removeChild(d)})},2E3)})}function A(a){if(a.keyCode==27){K();window.scrollTo(0,z);if(n){document.body.removeChild(n);
|
23 |
-
n=null}e._iDisplayStart=_iPrintSaveStart;e._iDisplayLength=_iPrintSaveLength;e.oApi._fnCalculateEnd(e);e.oApi._fnDraw(e);j(document).unbind("keydown",A)}}function K(){for(var a=0,b=m.length;a<b;a++)m[a].node.style.display=m[a].display;m.splice(0,m.length)}function y(a){for(var b=a.parentNode,c=b.childNodes,d=0,h=c.length;d<h;d++)if(c[d]!=a&&c[d].nodeType==1){var k=j(c[d]).css("display");if(k!="none"){m.push({node:c[d],display:k});c[d].style.display="none"}}b.nodeName!="BODY"&&y(b)}function o(a,b,
|
24 |
-
c,d){document.getElementById(c)?a.glue(b,d):setTimeout(function(){o(a,b,c,d)},100)}function w(){var a;a=g.sTitle!==""?g.sTitle:document.getElementsByTagName("title")[0].innerHTML;return"\u00a1".toString().length<4?a.replace(/[^a-zA-Z0-9_\u00A1-\uFFFF\.,\-_ !\(\)]/g,""):a.replace(/[^a-zA-Z0-9_\.,\-_ !\(\)]/g,"")}function v(a,b){return a.className.match(b)||a.nodeName=="BODY"?a:v(a.parentNode,b)}function s(a,b,c){return b===""?a:b+a.replace(c,"\\"+b)+b}function t(a){a=B(a,2048);var b=document.createElement("div"),
|
25 |
-
c,d,h,k="";c=0;for(d=a.length;c<d;c++){h=a[c].lastIndexOf("&");if(h!=-1&&a[c].length>=8&&h>a[c].length-8){a[c].substr(h);a[c]=a[c].substr(0,h)}b.innerHTML=a[c];k+=b.childNodes[0].nodeValue}return k}function B(a,b){for(var c=[],d=a.length,h=0;h<d;h+=b)h+b<d?c.push(a.substring(h,h+b)):c.push(a.substring(h,d));return c}function q(a,b){b=B(b,8192);a.clearText();for(var c=0,d=b.length;c<d;c++)a.appendText(b[c])}function r(a,b){var c,d,h,k,i="",f="",C=navigator.userAgent.match(/Windows/)?"\r\n":"\n";if(typeof b==
|
26 |
-
"undefined")b="";var u=new RegExp(b,"g");c=0;for(d=e.aoColumns.length;c<d;c++)if(g.bIncHiddenColumns===true||e.aoColumns[c].bVisible){f=e.aoColumns[c].sTitle.replace(/\n/g," ").replace(/<.*?>/g,"");if(f.indexOf("&")!=-1)f=t(f);i+=s(f,b,u)+a}i=i.slice(0,a.length*-1);i+=C;h=0;for(k=e.aiDisplay.length;h<k;h++){c=0;for(d=e.aoColumns.length;c<d;c++)if(g.bIncHiddenColumns===true||e.aoColumns[c].bVisible){f=e.aoData[e.aiDisplay[h]]._aData[c];if(typeof f=="string"){f=f.replace(/\n/g," ");f=f.replace(/<img.*?\s+alt\s*=\s*(?:"([^"]+)"|'([^']+)'|([^\s>]+)).*?>/gi,
|
27 |
-
"$1$2$3");f=f.replace(/<.*?>/g,"")}else f=f+"";f=f.replace(/^\s+/,"").replace(/\s+$/,"");if(f.indexOf("&")!=-1)f=t(f);i+=s(f,b,u)+a}i=i.slice(0,a.length*-1);i+=C}i.slice(0,-1);if(g.bIncFooter){c=0;for(d=e.aoColumns.length;c<d;c++)if(e.aoColumns[c].nTf!==null&&(g.bIncHiddenColumns===true||e.aoColumns[c].bVisible)){f=e.aoColumns[c].nTf.innerHTML.replace(/\n/g," ").replace(/<.*?>/g,"");if(f.indexOf("&")!=-1)f=t(f);i+=s(f,b,u)+a}i=i.slice(0,a.length*-1)}return x=i}var g,F,m=[],z=0,n=null,e,x,l;return E(p)}
|
28 |
-
typeof j.fn.dataTable=="function"&&typeof j.fn.dataTableExt.sVersion!="undefined"?j.fn.dataTableExt.aoFeatures.push({fnInit:function(p){return new D({oDTSettings:p})},cFeature:"T",sFeature:"TableTools"}):alert("Warning: TableTools requires DataTables 1.5 or greater - www.datatables.net/download")})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/tabletools/zeroclipboard.js
DELETED
@@ -1,340 +0,0 @@
|
|
1 |
-
// Simple Set Clipboard System
|
2 |
-
// Author: Joseph Huckaby
|
3 |
-
|
4 |
-
var ZeroClipboard = {
|
5 |
-
|
6 |
-
version: "1.0.4-mod",
|
7 |
-
clients: {}, // registered upload clients on page, indexed by id
|
8 |
-
moviePath: 'zeroclipboard.swf', // URL to movie
|
9 |
-
nextId: 1, // ID of next movie
|
10 |
-
|
11 |
-
$: function(thingy) {
|
12 |
-
// simple DOM lookup utility function
|
13 |
-
if (typeof(thingy) == 'string') thingy = document.getElementById(thingy);
|
14 |
-
if (!thingy.addClass) {
|
15 |
-
// extend element with a few useful methods
|
16 |
-
thingy.hide = function() { this.style.display = 'none'; };
|
17 |
-
thingy.show = function() { this.style.display = ''; };
|
18 |
-
thingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; };
|
19 |
-
thingy.removeClass = function(name) {
|
20 |
-
this.className = this.className.replace( new RegExp("\\s*" + name + "\\s*"), " ").replace(/^\s+/, '').replace(/\s+$/, '');
|
21 |
-
};
|
22 |
-
thingy.hasClass = function(name) {
|
23 |
-
return !!this.className.match( new RegExp("\\s*" + name + "\\s*") );
|
24 |
-
}
|
25 |
-
}
|
26 |
-
return thingy;
|
27 |
-
},
|
28 |
-
|
29 |
-
setMoviePath: function(path) {
|
30 |
-
// set path to ZeroClipboard.swf
|
31 |
-
this.moviePath = path;
|
32 |
-
},
|
33 |
-
|
34 |
-
dispatch: function(id, eventName, args) {
|
35 |
-
// receive event from flash movie, send to client
|
36 |
-
var client = this.clients[id];
|
37 |
-
if (client) {
|
38 |
-
client.receiveEvent(eventName, args);
|
39 |
-
}
|
40 |
-
},
|
41 |
-
|
42 |
-
register: function(id, client) {
|
43 |
-
// register new client to receive events
|
44 |
-
this.clients[id] = client;
|
45 |
-
},
|
46 |
-
|
47 |
-
getDOMObjectPosition: function(obj) {
|
48 |
-
// get absolute coordinates for dom element
|
49 |
-
var info = {
|
50 |
-
left: 0,
|
51 |
-
top: 0,
|
52 |
-
width: obj.width ? obj.width : obj.offsetWidth,
|
53 |
-
height: obj.height ? obj.height : obj.offsetHeight
|
54 |
-
};
|
55 |
-
|
56 |
-
if ( obj.style.width != "" )
|
57 |
-
info.width = obj.style.width.replace("px","");
|
58 |
-
|
59 |
-
if ( obj.style.height != "" )
|
60 |
-
info.height = obj.style.height.replace("px","");
|
61 |
-
|
62 |
-
while (obj) {
|
63 |
-
info.left += obj.offsetLeft;
|
64 |
-
info.top += obj.offsetTop;
|
65 |
-
obj = obj.offsetParent;
|
66 |
-
}
|
67 |
-
|
68 |
-
return info;
|
69 |
-
},
|
70 |
-
|
71 |
-
Client: function(elem) {
|
72 |
-
// constructor for new simple upload client
|
73 |
-
this.handlers = {};
|
74 |
-
|
75 |
-
// unique ID
|
76 |
-
this.id = ZeroClipboard.nextId++;
|
77 |
-
this.movieId = 'ZeroClipboardMovie_' + this.id;
|
78 |
-
|
79 |
-
// register client with singleton to receive flash events
|
80 |
-
ZeroClipboard.register(this.id, this);
|
81 |
-
|
82 |
-
// create movie
|
83 |
-
if (elem) this.glue(elem);
|
84 |
-
}
|
85 |
-
};
|
86 |
-
|
87 |
-
ZeroClipboard.Client.prototype = {
|
88 |
-
|
89 |
-
id: 0, // unique ID for us
|
90 |
-
ready: false, // whether movie is ready to receive events or not
|
91 |
-
movie: null, // reference to movie object
|
92 |
-
clipText: '', // text to copy to clipboard
|
93 |
-
fileName: '', // default file save name
|
94 |
-
action: 'copy', // action to perform
|
95 |
-
handCursorEnabled: true, // whether to show hand cursor, or default pointer cursor
|
96 |
-
cssEffects: true, // enable CSS mouse effects on dom container
|
97 |
-
handlers: null, // user event handlers
|
98 |
-
|
99 |
-
glue: function(elem, title) {
|
100 |
-
// glue to DOM element
|
101 |
-
// elem can be ID or actual DOM element object
|
102 |
-
this.domElement = ZeroClipboard.$(elem);
|
103 |
-
|
104 |
-
// float just above object, or zIndex 99 if dom element isn't set
|
105 |
-
var zIndex = 99;
|
106 |
-
if (this.domElement.style.zIndex) {
|
107 |
-
zIndex = parseInt(this.domElement.style.zIndex) + 1;
|
108 |
-
}
|
109 |
-
|
110 |
-
// find X/Y position of domElement
|
111 |
-
var box = ZeroClipboard.getDOMObjectPosition(this.domElement);
|
112 |
-
|
113 |
-
// create floating DIV above element
|
114 |
-
this.div = document.createElement('div');
|
115 |
-
var style = this.div.style;
|
116 |
-
style.position = 'absolute';
|
117 |
-
style.left = '0px';
|
118 |
-
style.top = '0px';
|
119 |
-
style.width = '' + box.width + 'px';
|
120 |
-
style.height = '' + box.height + 'px';
|
121 |
-
style.zIndex = zIndex;
|
122 |
-
if ( typeof title != "undefined" ) {
|
123 |
-
this.div.title = title;
|
124 |
-
}
|
125 |
-
|
126 |
-
// style.backgroundColor = '#f00'; // debug
|
127 |
-
this.domElement.appendChild(this.div);
|
128 |
-
|
129 |
-
this.div.innerHTML = this.getHTML( box.width, box.height );
|
130 |
-
},
|
131 |
-
|
132 |
-
getHTML: function(width, height) {
|
133 |
-
// return HTML for movie
|
134 |
-
var html = '';
|
135 |
-
var flashvars = 'id=' + this.id +
|
136 |
-
'&width=' + width +
|
137 |
-
'&height=' + height;
|
138 |
-
|
139 |
-
if (navigator.userAgent.match(/MSIE/)) {
|
140 |
-
// IE gets an OBJECT tag
|
141 |
-
var protocol = location.href.match(/^https/i) ? 'https://' : 'http://';
|
142 |
-
html += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="'+protocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="'+width+'" height="'+height+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+ZeroClipboard.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+flashvars+'"/><param name="wmode" value="transparent"/></object>';
|
143 |
-
}
|
144 |
-
else {
|
145 |
-
// all other browsers get an EMBED tag
|
146 |
-
html += '<embed id="'+this.movieId+'" src="'+ZeroClipboard.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+flashvars+'" wmode="transparent" />';
|
147 |
-
}
|
148 |
-
return html;
|
149 |
-
},
|
150 |
-
|
151 |
-
hide: function() {
|
152 |
-
// temporarily hide floater offscreen
|
153 |
-
if (this.div) {
|
154 |
-
this.div.style.left = '-2000px';
|
155 |
-
}
|
156 |
-
},
|
157 |
-
|
158 |
-
show: function() {
|
159 |
-
// show ourselves after a call to hide()
|
160 |
-
this.reposition();
|
161 |
-
},
|
162 |
-
|
163 |
-
destroy: function() {
|
164 |
-
// destroy control and floater
|
165 |
-
if (this.domElement && this.div) {
|
166 |
-
this.hide();
|
167 |
-
this.div.innerHTML = '';
|
168 |
-
|
169 |
-
var body = document.getElementsByTagName('body')[0];
|
170 |
-
try { body.removeChild( this.div ); } catch(e) {;}
|
171 |
-
|
172 |
-
this.domElement = null;
|
173 |
-
this.div = null;
|
174 |
-
}
|
175 |
-
},
|
176 |
-
|
177 |
-
reposition: function(elem) {
|
178 |
-
// reposition our floating div, optionally to new container
|
179 |
-
// warning: container CANNOT change size, only position
|
180 |
-
if (elem) {
|
181 |
-
this.domElement = ZeroClipboard.$(elem);
|
182 |
-
if (!this.domElement) this.hide();
|
183 |
-
}
|
184 |
-
|
185 |
-
if (this.domElement && this.div) {
|
186 |
-
var box = ZeroClipboard.getDOMObjectPosition(this.domElement);
|
187 |
-
var style = this.div.style;
|
188 |
-
style.left = '' + box.left + 'px';
|
189 |
-
style.top = '' + box.top + 'px';
|
190 |
-
}
|
191 |
-
},
|
192 |
-
|
193 |
-
clearText: function() {
|
194 |
-
// clear the text to be copy / saved
|
195 |
-
this.clipText = '';
|
196 |
-
if (this.ready) this.movie.clearText();
|
197 |
-
},
|
198 |
-
|
199 |
-
appendText: function(newText) {
|
200 |
-
// append text to that which is to be copied / saved
|
201 |
-
this.clipText += newText;
|
202 |
-
if (this.ready) { this.movie.appendText(newText) ;}
|
203 |
-
},
|
204 |
-
|
205 |
-
setText: function(newText) {
|
206 |
-
// set text to be copied to be copied / saved
|
207 |
-
this.clipText = newText;
|
208 |
-
if (this.ready) { this.movie.setText(newText) ;}
|
209 |
-
},
|
210 |
-
|
211 |
-
setCharSet: function(charSet) {
|
212 |
-
// set the character set (UTF16LE or UTF8)
|
213 |
-
this.charSet = charSet;
|
214 |
-
if (this.ready) { this.movie.setCharSet(charSet) ;}
|
215 |
-
},
|
216 |
-
|
217 |
-
setBomInc: function(bomInc) {
|
218 |
-
// set if the BOM should be included or not
|
219 |
-
this.incBom = bomInc;
|
220 |
-
if (this.ready) { this.movie.setBomInc(bomInc) ;}
|
221 |
-
},
|
222 |
-
|
223 |
-
setFileName: function(newText) {
|
224 |
-
// set the file name
|
225 |
-
this.fileName = newText;
|
226 |
-
if (this.ready) this.movie.setFileName(newText);
|
227 |
-
},
|
228 |
-
|
229 |
-
setAction: function(newText) {
|
230 |
-
// set action (save or copy)
|
231 |
-
this.action = newText;
|
232 |
-
if (this.ready) this.movie.setAction(newText);
|
233 |
-
},
|
234 |
-
|
235 |
-
addEventListener: function(eventName, func) {
|
236 |
-
// add user event listener for event
|
237 |
-
// event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel
|
238 |
-
eventName = eventName.toString().toLowerCase().replace(/^on/, '');
|
239 |
-
if (!this.handlers[eventName]) this.handlers[eventName] = [];
|
240 |
-
this.handlers[eventName].push(func);
|
241 |
-
},
|
242 |
-
|
243 |
-
setHandCursor: function(enabled) {
|
244 |
-
// enable hand cursor (true), or default arrow cursor (false)
|
245 |
-
this.handCursorEnabled = enabled;
|
246 |
-
if (this.ready) this.movie.setHandCursor(enabled);
|
247 |
-
},
|
248 |
-
|
249 |
-
setCSSEffects: function(enabled) {
|
250 |
-
// enable or disable CSS effects on DOM container
|
251 |
-
this.cssEffects = !!enabled;
|
252 |
-
},
|
253 |
-
|
254 |
-
receiveEvent: function(eventName, args) {
|
255 |
-
// receive event from flash
|
256 |
-
eventName = eventName.toString().toLowerCase().replace(/^on/, '');
|
257 |
-
|
258 |
-
// special behavior for certain events
|
259 |
-
switch (eventName) {
|
260 |
-
case 'load':
|
261 |
-
// movie claims it is ready, but in IE this isn't always the case...
|
262 |
-
// bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function
|
263 |
-
this.movie = document.getElementById(this.movieId);
|
264 |
-
if (!this.movie) {
|
265 |
-
var self = this;
|
266 |
-
setTimeout( function() { self.receiveEvent('load', null); }, 1 );
|
267 |
-
return;
|
268 |
-
}
|
269 |
-
|
270 |
-
// firefox on pc needs a "kick" in order to set these in certain cases
|
271 |
-
if (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) {
|
272 |
-
var self = this;
|
273 |
-
setTimeout( function() { self.receiveEvent('load', null); }, 100 );
|
274 |
-
this.ready = true;
|
275 |
-
return;
|
276 |
-
}
|
277 |
-
|
278 |
-
this.ready = true;
|
279 |
-
this.movie.clearText();
|
280 |
-
this.movie.appendText( this.clipText );
|
281 |
-
this.movie.setFileName( this.fileName );
|
282 |
-
this.movie.setAction( this.action );
|
283 |
-
this.movie.setCharSet( this.charSet );
|
284 |
-
this.movie.setBomInc( this.incBom );
|
285 |
-
this.movie.setHandCursor( this.handCursorEnabled );
|
286 |
-
break;
|
287 |
-
|
288 |
-
case 'mouseover':
|
289 |
-
if (this.domElement && this.cssEffects) {
|
290 |
-
this.domElement.addClass('hover');
|
291 |
-
if (this.recoverActive) this.domElement.addClass('active');
|
292 |
-
}
|
293 |
-
break;
|
294 |
-
|
295 |
-
case 'mouseout':
|
296 |
-
if (this.domElement && this.cssEffects) {
|
297 |
-
this.recoverActive = false;
|
298 |
-
if (this.domElement.hasClass('active')) {
|
299 |
-
this.domElement.removeClass('active');
|
300 |
-
this.recoverActive = true;
|
301 |
-
}
|
302 |
-
this.domElement.removeClass('hover');
|
303 |
-
}
|
304 |
-
break;
|
305 |
-
|
306 |
-
case 'mousedown':
|
307 |
-
if (this.domElement && this.cssEffects) {
|
308 |
-
this.domElement.addClass('active');
|
309 |
-
}
|
310 |
-
break;
|
311 |
-
|
312 |
-
case 'mouseup':
|
313 |
-
if (this.domElement && this.cssEffects) {
|
314 |
-
this.domElement.removeClass('active');
|
315 |
-
this.recoverActive = false;
|
316 |
-
}
|
317 |
-
break;
|
318 |
-
} // switch eventName
|
319 |
-
|
320 |
-
if (this.handlers[eventName]) {
|
321 |
-
for (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) {
|
322 |
-
var func = this.handlers[eventName][idx];
|
323 |
-
|
324 |
-
if (typeof(func) == 'function') {
|
325 |
-
// actual function reference
|
326 |
-
func(this, args);
|
327 |
-
}
|
328 |
-
else if ((typeof(func) == 'object') && (func.length == 2)) {
|
329 |
-
// PHP style object + method, i.e. [myObject, 'myMethod']
|
330 |
-
func[0][ func[1] ](this, args);
|
331 |
-
}
|
332 |
-
else if (typeof(func) == 'string') {
|
333 |
-
// name of function
|
334 |
-
window[func](this, args);
|
335 |
-
}
|
336 |
-
} // foreach event handler defined
|
337 |
-
} // user defined handler for event
|
338 |
-
}
|
339 |
-
|
340 |
-
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/tabletools/zeroclipboard.swf
DELETED
Binary file
|
languages/wp-table-reloaded-be_BY.po
CHANGED
@@ -2359,12 +2359,12 @@ msgstr "http://tobias.baethge.com/"
|
|
2359 |
#~ msgid ""
|
2360 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2361 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2362 |
-
#~ "<a href=\"http://wordpress.org/
|
2363 |
#~ "\">WordPress Plugin Directory</a>."
|
2364 |
#~ msgstr ""
|
2365 |
#~ "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost "
|
2366 |
#~ "<a href=\"http://tobias.baethge.com/donate/\"><strong>peněžního daru</"
|
2367 |
-
#~ "strong></a> a ohodnoťte plugin v <a href=\"http://wordpress.org/
|
2368 |
#~ "plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
|
2369 |
|
2370 |
#~ msgid "This is the \"List Tables\" screen."
|
2359 |
#~ msgid ""
|
2360 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2361 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2362 |
+
#~ "<a href=\"http://wordpress.org/plugins/wp-table-reloaded/"
|
2363 |
#~ "\">WordPress Plugin Directory</a>."
|
2364 |
#~ msgstr ""
|
2365 |
#~ "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost "
|
2366 |
#~ "<a href=\"http://tobias.baethge.com/donate/\"><strong>peněžního daru</"
|
2367 |
+
#~ "strong></a> a ohodnoťte plugin v <a href=\"http://wordpress.org/"
|
2368 |
#~ "plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
|
2369 |
|
2370 |
#~ msgid "This is the \"List Tables\" screen."
|
languages/wp-table-reloaded-bg_BG.mo
CHANGED
File without changes
|
languages/wp-table-reloaded-bg_BG.po
CHANGED
File without changes
|
languages/wp-table-reloaded-cs_CZ.po
CHANGED
@@ -2347,7 +2347,7 @@ msgstr "http://tobias.baethge.com/"
|
|
2347 |
#~ msgid ""
|
2348 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2349 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2350 |
-
#~ "<a href=\"http://wordpress.org/
|
2351 |
#~ "\">WordPress Plugin Directory</a>."
|
2352 |
#~ msgstr ""
|
2353 |
#~ "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost "
|
2347 |
#~ msgid ""
|
2348 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2349 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2350 |
+
#~ "<a href=\"http://wordpress.org/plugins/wp-table-reloaded/"
|
2351 |
#~ "\">WordPress Plugin Directory</a>."
|
2352 |
#~ msgstr ""
|
2353 |
#~ "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost "
|
languages/wp-table-reloaded-de_DE.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-de_DE.po
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WP-Table Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Tobias
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-
|
|
|
14 |
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
@@ -19,2486 +20,2515 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#:
|
23 |
-
#:
|
24 |
#@ wp-table-reloaded
|
25 |
-
msgid "
|
26 |
-
msgstr "
|
27 |
|
28 |
-
#:
|
|
|
29 |
#@ wp-table-reloaded
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#:
|
34 |
-
|
35 |
#@ wp-table-reloaded
|
36 |
-
msgid "
|
37 |
-
msgstr "
|
38 |
|
39 |
-
#:
|
40 |
-
#: views/view-ajax_list.php:44
|
41 |
#@ wp-table-reloaded
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#:
|
46 |
-
#: views/view-ajax_list.php:21
|
47 |
-
#: views/view-import.php:99
|
48 |
-
#: views/view-import.php:108
|
49 |
-
#: views/view-list.php:13
|
50 |
-
#: views/view-list.php:23
|
51 |
#@ wp-table-reloaded
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#:
|
56 |
-
#: views/view-ajax_list.php:14
|
57 |
-
#: views/view-ajax_list.php:22
|
58 |
-
#: views/view-edit.php:23
|
59 |
-
#: views/view-edit.php:283
|
60 |
-
#: views/view-import.php:100
|
61 |
-
#: views/view-import.php:109
|
62 |
-
#: views/view-list.php:15
|
63 |
-
#: views/view-list.php:25
|
64 |
#@ wp-table-reloaded
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#:
|
69 |
-
#: views/view-ajax_list.php:15
|
70 |
-
#: views/view-ajax_list.php:23
|
71 |
-
#: views/view-edit.php:27
|
72 |
-
#: views/view-import.php:101
|
73 |
-
#: views/view-import.php:110
|
74 |
-
#: views/view-list.php:16
|
75 |
-
#: views/view-list.php:26
|
76 |
#@ wp-table-reloaded
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#:
|
81 |
-
#: views/view-ajax_list.php:24
|
82 |
-
#: views/view-edit.php:434
|
83 |
-
#: views/view-import.php:102
|
84 |
-
#: views/view-import.php:111
|
85 |
#@ wp-table-reloaded
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#:
|
90 |
-
#: views/view-
|
91 |
-
|
92 |
-
#: views/view-list.php:87
|
93 |
#@ wp-table-reloaded
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#:
|
|
|
|
|
98 |
#@ wp-table-reloaded
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#:
|
103 |
-
#: views/view-
|
104 |
-
#: views/view-edit.php:9
|
105 |
-
#: views/view-list.php:2
|
106 |
#, php-format
|
107 |
#@ wp-table-reloaded
|
108 |
-
msgid "
|
109 |
-
msgstr "
|
110 |
|
111 |
-
#:
|
|
|
|
|
112 |
#@ wp-table-reloaded
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#:
|
|
|
117 |
#, php-format
|
118 |
#@ wp-table-reloaded
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#:
|
123 |
-
#: views/view-list.php:2
|
124 |
#@ wp-table-reloaded
|
125 |
-
msgid "Table"
|
126 |
-
msgstr "
|
127 |
|
128 |
-
#:
|
129 |
-
|
130 |
-
#: views/view-list.php:27
|
131 |
#@ wp-table-reloaded
|
132 |
-
msgid "
|
133 |
-
msgstr "
|
134 |
|
135 |
-
#:
|
|
|
136 |
#@ wp-table-reloaded
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#:
|
141 |
#@ wp-table-reloaded
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#:
|
146 |
-
#: views/view-list.php:44
|
147 |
#@ wp-table-reloaded
|
148 |
-
msgid "by"
|
149 |
-
msgstr "
|
150 |
|
151 |
-
#:
|
152 |
-
|
153 |
#@ wp-table-reloaded
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: classes/
|
158 |
-
#:
|
159 |
-
#@ default
|
160 |
#@ wp-table-reloaded
|
161 |
-
msgid "
|
162 |
-
msgstr "
|
163 |
|
164 |
-
#:
|
165 |
#@ wp-table-reloaded
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#:
|
170 |
#@ wp-table-reloaded
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
|
174 |
-
#:
|
175 |
#@ wp-table-reloaded
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
178 |
|
179 |
-
#:
|
180 |
-
#: views/view-
|
181 |
-
|
182 |
#@ wp-table-reloaded
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
|
186 |
-
#:
|
187 |
-
#, php-format
|
188 |
#@ wp-table-reloaded
|
189 |
-
msgid "
|
190 |
-
msgstr "
|
191 |
|
192 |
-
#:
|
193 |
#@ wp-table-reloaded
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#:
|
198 |
-
#: views/view-list.php:78
|
199 |
#@ wp-table-reloaded
|
200 |
-
msgid "
|
201 |
-
msgstr "
|
202 |
|
203 |
-
#:
|
204 |
#@ wp-table-reloaded
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#:
|
209 |
#@ wp-table-reloaded
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
|
213 |
-
#:
|
214 |
-
#: views/view-list.php:87
|
215 |
-
#, php-format
|
216 |
#@ wp-table-reloaded
|
217 |
-
msgid "
|
218 |
-
msgstr "
|
219 |
|
220 |
-
#:
|
221 |
#@ wp-table-reloaded
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#:
|
226 |
#@ wp-table-reloaded
|
227 |
-
msgid "
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#:
|
231 |
#@ wp-table-reloaded
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
234 |
|
235 |
-
#:
|
236 |
#@ wp-table-reloaded
|
237 |
-
msgid "
|
238 |
-
msgstr "
|
239 |
|
240 |
-
#:
|
241 |
#@ wp-table-reloaded
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#:
|
246 |
#@ wp-table-reloaded
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#:
|
251 |
#@ wp-table-reloaded
|
252 |
-
msgid "
|
253 |
-
msgstr "
|
254 |
|
255 |
-
#:
|
256 |
#@ wp-table-reloaded
|
257 |
-
msgid "
|
258 |
-
msgstr "
|
259 |
|
260 |
-
#:
|
261 |
#@ wp-table-reloaded
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
|
265 |
-
#:
|
266 |
#@ wp-table-reloaded
|
267 |
-
msgid "
|
268 |
-
msgstr "
|
269 |
|
270 |
-
#:
|
271 |
#@ wp-table-reloaded
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#:
|
276 |
#@ wp-table-reloaded
|
277 |
-
msgid "
|
278 |
-
msgstr "
|
279 |
|
280 |
-
#:
|
281 |
#@ wp-table-reloaded
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#:
|
286 |
#@ wp-table-reloaded
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#:
|
291 |
#@ wp-table-reloaded
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
294 |
|
295 |
-
#:
|
296 |
#@ wp-table-reloaded
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#:
|
301 |
#@ wp-table-reloaded
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
304 |
|
305 |
-
#:
|
|
|
306 |
#@ wp-table-reloaded
|
307 |
-
msgid "
|
308 |
-
msgstr "
|
309 |
|
310 |
-
#:
|
|
|
311 |
#@ wp-table-reloaded
|
312 |
-
msgid "
|
313 |
-
msgstr "
|
314 |
|
315 |
-
#:
|
316 |
#@ wp-table-reloaded
|
317 |
-
msgid "
|
318 |
-
msgstr "
|
319 |
|
320 |
-
#:
|
|
|
321 |
#@ wp-table-reloaded
|
322 |
-
msgid "
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#:
|
|
|
326 |
#@ wp-table-reloaded
|
327 |
-
msgid "
|
328 |
-
msgstr "
|
329 |
|
330 |
-
#:
|
331 |
#@ wp-table-reloaded
|
332 |
-
msgid "
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#:
|
336 |
#@ wp-table-reloaded
|
337 |
-
msgid "
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#:
|
|
|
341 |
#@ wp-table-reloaded
|
342 |
-
msgid "
|
343 |
-
|
|
|
|
|
344 |
|
345 |
-
#:
|
|
|
346 |
#@ wp-table-reloaded
|
347 |
-
msgid "
|
348 |
-
msgstr "
|
349 |
|
350 |
-
#:
|
351 |
#@ wp-table-reloaded
|
352 |
-
msgid "
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#:
|
356 |
#@ wp-table-reloaded
|
357 |
-
msgid "
|
358 |
-
msgstr "
|
359 |
|
360 |
-
#:
|
361 |
#@ wp-table-reloaded
|
362 |
-
msgid "
|
363 |
-
msgstr "
|
364 |
|
365 |
-
#:
|
|
|
366 |
#@ wp-table-reloaded
|
367 |
-
msgid "
|
368 |
-
msgstr "
|
369 |
|
370 |
-
#:
|
|
|
371 |
#@ wp-table-reloaded
|
372 |
-
msgid "
|
373 |
-
msgstr "
|
374 |
|
375 |
-
#:
|
|
|
376 |
#@ wp-table-reloaded
|
377 |
-
msgid "
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#:
|
381 |
#@ wp-table-reloaded
|
382 |
-
msgid "
|
383 |
-
msgstr "
|
384 |
|
385 |
-
#:
|
386 |
#@ wp-table-reloaded
|
387 |
-
msgid "
|
388 |
-
msgstr "
|
389 |
|
390 |
-
#:
|
391 |
-
#, php-format
|
392 |
#@ wp-table-reloaded
|
393 |
-
msgid "
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#:
|
397 |
-
#: views/view-options.php:55
|
398 |
-
#: views/view-options.php:75
|
399 |
-
#: views/view-options.php:79
|
400 |
#@ wp-table-reloaded
|
401 |
-
msgid "
|
402 |
-
msgstr "Tabelle
|
403 |
|
404 |
-
#:
|
405 |
#@ wp-table-reloaded
|
406 |
-
msgid "
|
407 |
-
msgstr "
|
408 |
|
409 |
-
#:
|
410 |
#@ wp-table-reloaded
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#:
|
415 |
-
#: views/view-edit.php:15
|
416 |
-
#: views/view-edit.php:51
|
417 |
-
#: views/view-edit.php:104
|
418 |
-
#: views/view-edit.php:262
|
419 |
-
#: views/view-edit.php:361
|
420 |
-
#: views/view-edit.php:422
|
421 |
-
#: views/view-options.php:19
|
422 |
-
#: views/view-options.php:70
|
423 |
-
#: views/view-options.php:91
|
424 |
-
#: views/view-options.php:185
|
425 |
-
#: views/view-options.php:196
|
426 |
#@ wp-table-reloaded
|
427 |
-
|
428 |
-
|
429 |
-
msgstr "
|
|
|
430 |
|
431 |
-
#:
|
432 |
-
#: views/view-edit.php:15
|
433 |
-
#: views/view-edit.php:51
|
434 |
-
#: views/view-edit.php:104
|
435 |
-
#: views/view-edit.php:262
|
436 |
-
#: views/view-edit.php:361
|
437 |
-
#: views/view-edit.php:422
|
438 |
-
#: views/view-options.php:19
|
439 |
-
#: views/view-options.php:70
|
440 |
-
#: views/view-options.php:91
|
441 |
-
#: views/view-options.php:185
|
442 |
-
#: views/view-options.php:196
|
443 |
#@ wp-table-reloaded
|
444 |
-
msgid "
|
445 |
-
|
|
|
|
|
446 |
|
447 |
-
#:
|
448 |
#@ wp-table-reloaded
|
449 |
-
msgid "
|
450 |
-
|
|
|
|
|
451 |
|
452 |
-
#:
|
453 |
#@ wp-table-reloaded
|
454 |
-
msgid "
|
455 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
|
457 |
-
#:
|
458 |
#@ wp-table-reloaded
|
459 |
-
msgid "
|
460 |
-
|
|
|
|
|
461 |
|
462 |
-
#:
|
463 |
#@ wp-table-reloaded
|
464 |
-
msgid "
|
465 |
-
|
|
|
|
|
466 |
|
467 |
-
#:
|
468 |
-
#: views/view-options.php:131
|
469 |
#@ wp-table-reloaded
|
470 |
-
msgid "
|
471 |
-
msgstr "
|
472 |
|
473 |
-
#:
|
474 |
-
#, php-format
|
475 |
#@ wp-table-reloaded
|
476 |
-
msgid "
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#:
|
480 |
#@ wp-table-reloaded
|
481 |
-
msgid "
|
482 |
-
msgstr "
|
483 |
|
484 |
-
#:
|
485 |
#@ wp-table-reloaded
|
486 |
-
msgid "
|
487 |
-
msgstr "
|
488 |
|
489 |
-
#:
|
490 |
#@ wp-table-reloaded
|
491 |
-
msgid "Custom
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#:
|
|
|
495 |
#@ wp-table-reloaded
|
496 |
-
msgid "
|
497 |
-
msgstr "
|
498 |
|
499 |
-
#:
|
500 |
#@ wp-table-reloaded
|
501 |
-
msgid "
|
502 |
-
|
|
|
|
|
503 |
|
504 |
-
#:
|
505 |
-
#, php-format
|
506 |
#@ wp-table-reloaded
|
507 |
-
msgid "
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#:
|
511 |
-
|
|
|
512 |
#@ wp-table-reloaded
|
513 |
-
msgid "
|
514 |
-
|
|
|
|
|
515 |
|
516 |
-
#:
|
517 |
#@ wp-table-reloaded
|
518 |
-
msgid "
|
519 |
-
msgstr "
|
520 |
|
521 |
-
#:
|
522 |
#, php-format
|
523 |
#@ wp-table-reloaded
|
524 |
-
msgid "
|
525 |
-
msgstr "
|
526 |
|
527 |
-
#:
|
528 |
-
|
529 |
#@ wp-table-reloaded
|
530 |
-
msgid "
|
531 |
-
msgstr "
|
532 |
|
533 |
-
#:
|
534 |
-
#: views/view-options.php:169
|
535 |
#@ wp-table-reloaded
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
|
539 |
-
#:
|
540 |
-
#: views/view-edit.php:257
|
541 |
-
#: views/view-edit.php:417
|
542 |
-
#: views/view-edit.php:468
|
543 |
-
#: views/view-options.php:65
|
544 |
-
#: views/view-options.php:172
|
545 |
#@ wp-table-reloaded
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#:
|
550 |
#@ wp-table-reloaded
|
551 |
-
msgid "
|
552 |
-
msgstr "
|
553 |
|
554 |
-
#:
|
|
|
|
|
555 |
#@ wp-table-reloaded
|
556 |
-
msgid "
|
557 |
-
msgstr "
|
558 |
|
559 |
-
#:
|
|
|
560 |
#, php-format
|
561 |
#@ wp-table-reloaded
|
562 |
-
msgid "
|
563 |
-
msgstr "
|
564 |
-
|
565 |
-
#: views/view-options.php:78
|
566 |
-
#@ wp-table-reloaded
|
567 |
-
msgid "Growing textareas"
|
568 |
-
msgstr "Wachsende Eingabefelder"
|
569 |
|
570 |
-
#:
|
571 |
-
#, php-format
|
572 |
#@ wp-table-reloaded
|
573 |
-
msgid "
|
574 |
-
msgstr "
|
575 |
|
576 |
-
#:
|
|
|
577 |
#@ wp-table-reloaded
|
578 |
-
msgid "
|
579 |
-
msgstr "
|
580 |
|
581 |
-
#:
|
582 |
#, php-format
|
583 |
#@ wp-table-reloaded
|
584 |
-
msgid "
|
585 |
-
msgstr "
|
586 |
-
|
587 |
-
#: controllers/controller-admin.php:1302
|
588 |
-
#: views/view-options.php:83
|
589 |
-
#@ wp-table-reloaded
|
590 |
-
msgid "List Tables"
|
591 |
-
msgstr "Liste der Tabellen"
|
592 |
|
593 |
-
#:
|
|
|
594 |
#@ wp-table-reloaded
|
595 |
-
msgid "
|
596 |
-
msgstr "
|
597 |
|
598 |
-
#:
|
599 |
-
#: views/view-options.php:210
|
600 |
-
#: views/view-options.php:224
|
601 |
#@ wp-table-reloaded
|
602 |
-
msgid "
|
603 |
-
msgstr "
|
604 |
|
605 |
-
#:
|
606 |
#@ wp-table-reloaded
|
607 |
-
msgid "
|
608 |
-
msgstr "
|
609 |
|
610 |
-
#:
|
611 |
#@ wp-table-reloaded
|
612 |
-
msgid "
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#:
|
|
|
616 |
#@ wp-table-reloaded
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
-
|
620 |
-
#: views/view-options.php:100
|
621 |
-
#: views/view-options.php:111
|
622 |
-
#@ default
|
623 |
-
msgctxt "User role"
|
624 |
-
msgid "Administrator"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: views/view-options.php:101
|
628 |
-
#: views/view-options.php:112
|
629 |
-
#@ default
|
630 |
-
msgctxt "User role"
|
631 |
-
msgid "Editor"
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: views/view-options.php:102
|
635 |
-
#: views/view-options.php:113
|
636 |
-
#@ default
|
637 |
-
msgctxt "User role"
|
638 |
-
msgid "Author"
|
639 |
-
msgstr ""
|
640 |
-
|
641 |
-
#: views/view-options.php:103
|
642 |
-
#@ default
|
643 |
-
msgctxt "User role"
|
644 |
-
msgid "Contributor"
|
645 |
-
msgstr ""
|
646 |
|
647 |
-
#:
|
|
|
648 |
#@ wp-table-reloaded
|
649 |
-
msgid "Plugin Options
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#:
|
653 |
#@ wp-table-reloaded
|
654 |
-
msgid "
|
655 |
-
msgstr "
|
656 |
|
657 |
-
#:
|
|
|
658 |
#@ wp-table-reloaded
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#:
|
663 |
#@ wp-table-reloaded
|
664 |
-
msgid "
|
665 |
-
msgstr "
|
666 |
|
667 |
-
#:
|
668 |
#@ wp-table-reloaded
|
669 |
-
msgid "
|
670 |
-
msgstr "
|
671 |
|
672 |
-
#:
|
673 |
#, php-format
|
674 |
#@ wp-table-reloaded
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#:
|
|
|
679 |
#@ wp-table-reloaded
|
680 |
-
msgid "
|
681 |
-
msgstr "
|
682 |
|
683 |
-
#:
|
|
|
684 |
#@ wp-table-reloaded
|
685 |
-
msgid "
|
686 |
-
msgstr "
|
687 |
-
|
688 |
-
#: views/view-options.php:131
|
689 |
-
#@ default
|
690 |
-
msgid "Tools"
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
#: views/view-options.php:132
|
694 |
-
#@ default
|
695 |
-
msgid "Posts"
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
-
#: views/view-options.php:139
|
699 |
-
#@ default
|
700 |
-
msgid "Pages"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: views/view-options.php:140
|
704 |
-
#@ default
|
705 |
-
msgid "Plugins"
|
706 |
-
msgstr ""
|
707 |
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
|
|
|
|
|
|
|
|
712 |
|
713 |
-
#:
|
714 |
-
|
715 |
-
|
716 |
-
|
|
|
717 |
|
718 |
-
#:
|
|
|
719 |
#@ wp-table-reloaded
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#:
|
|
|
724 |
#@ wp-table-reloaded
|
725 |
-
msgid "
|
726 |
-
msgstr "
|
727 |
|
728 |
-
#:
|
|
|
|
|
|
|
|
|
729 |
#@ wp-table-reloaded
|
730 |
-
msgid "
|
731 |
-
msgstr "
|
732 |
|
733 |
-
#:
|
734 |
#@ wp-table-reloaded
|
735 |
-
msgid "
|
736 |
-
msgstr "
|
737 |
|
738 |
-
#:
|
|
|
739 |
#@ wp-table-reloaded
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#:
|
|
|
744 |
#@ wp-table-reloaded
|
745 |
-
msgid "
|
746 |
-
msgstr "
|
747 |
|
748 |
-
#:
|
|
|
749 |
#@ wp-table-reloaded
|
750 |
-
msgid "
|
751 |
-
msgstr "
|
752 |
|
753 |
-
#:
|
754 |
#@ wp-table-reloaded
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#:
|
759 |
#@ wp-table-reloaded
|
760 |
-
msgid "WP-Table Reloaded
|
761 |
-
msgstr "WP-Table Reloaded
|
762 |
|
763 |
-
#:
|
764 |
#@ wp-table-reloaded
|
765 |
-
msgid "
|
766 |
-
msgstr "
|
767 |
|
768 |
-
#:
|
769 |
#@ wp-table-reloaded
|
770 |
-
msgid "
|
771 |
-
msgstr "
|
772 |
|
773 |
-
#:
|
774 |
#@ wp-table-reloaded
|
775 |
-
msgid "
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#:
|
779 |
#@ wp-table-reloaded
|
780 |
-
msgid "
|
781 |
-
msgstr "
|
782 |
|
783 |
-
#:
|
784 |
#@ wp-table-reloaded
|
785 |
-
msgid "
|
786 |
-
msgstr "
|
787 |
|
788 |
-
#:
|
789 |
-
#: views/view-options.php:190
|
790 |
#@ wp-table-reloaded
|
791 |
-
msgid "
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#:
|
795 |
#@ wp-table-reloaded
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#:
|
800 |
#@ wp-table-reloaded
|
801 |
-
msgid "
|
802 |
-
msgstr "
|
803 |
|
804 |
-
#:
|
805 |
#@ wp-table-reloaded
|
806 |
-
msgid "
|
807 |
-
msgstr "
|
808 |
|
809 |
-
#:
|
810 |
#@ wp-table-reloaded
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#:
|
815 |
#@ wp-table-reloaded
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
818 |
|
819 |
-
#:
|
820 |
#@ wp-table-reloaded
|
821 |
-
msgid "
|
822 |
-
msgstr "
|
823 |
|
824 |
-
#:
|
825 |
#@ wp-table-reloaded
|
826 |
-
msgid "
|
827 |
-
msgstr "
|
828 |
|
829 |
-
#:
|
|
|
830 |
#@ wp-table-reloaded
|
831 |
-
msgid "
|
832 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
833 |
|
834 |
-
#:
|
835 |
#@ wp-table-reloaded
|
836 |
-
msgid "
|
837 |
-
msgstr "
|
838 |
|
839 |
-
#:
|
840 |
#@ wp-table-reloaded
|
841 |
-
msgid "
|
842 |
-
msgstr "
|
843 |
|
844 |
-
#:
|
845 |
#@ wp-table-reloaded
|
846 |
-
msgid "
|
847 |
-
msgstr "
|
848 |
|
849 |
-
#:
|
850 |
#@ wp-table-reloaded
|
851 |
-
msgid "
|
852 |
-
msgstr "
|
853 |
|
854 |
-
#: controllers/controller-admin.php:
|
855 |
-
#: views/view-options.php:233
|
856 |
#@ wp-table-reloaded
|
857 |
-
msgid "
|
858 |
-
msgstr "
|
859 |
|
860 |
-
#:
|
861 |
#@ wp-table-reloaded
|
862 |
-
msgid "
|
863 |
-
msgstr "
|
864 |
|
865 |
-
#:
|
866 |
#@ wp-table-reloaded
|
867 |
-
msgid "
|
868 |
-
msgstr "
|
869 |
|
870 |
-
#:
|
871 |
#@ wp-table-reloaded
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
#:
|
876 |
#@ wp-table-reloaded
|
877 |
-
msgid "
|
878 |
-
msgstr "
|
879 |
|
880 |
-
#:
|
881 |
-
|
|
|
882 |
#@ wp-table-reloaded
|
883 |
-
msgid "
|
884 |
-
msgstr "
|
885 |
|
886 |
-
#: controllers/controller-admin.php:
|
887 |
-
#: controllers/controller-admin.php:
|
888 |
-
#:
|
889 |
-
#: views/view-edit.php:365
|
890 |
-
#: views/view-export.php:10
|
891 |
#@ wp-table-reloaded
|
892 |
-
msgid "
|
893 |
-
msgstr "
|
894 |
|
895 |
-
#:
|
896 |
#@ wp-table-reloaded
|
897 |
-
msgid "
|
898 |
-
msgstr "
|
899 |
|
900 |
-
#:
|
901 |
#@ wp-table-reloaded
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
|
905 |
-
#:
|
906 |
#@ wp-table-reloaded
|
907 |
-
msgid "
|
908 |
-
msgstr "
|
909 |
|
910 |
-
#:
|
911 |
#@ wp-table-reloaded
|
912 |
-
msgid "
|
913 |
-
msgstr "
|
914 |
|
915 |
-
#:
|
916 |
#@ wp-table-reloaded
|
917 |
-
msgid "
|
918 |
-
msgstr "
|
919 |
|
920 |
-
#:
|
921 |
#@ wp-table-reloaded
|
922 |
-
msgid "
|
923 |
-
msgstr "
|
924 |
|
925 |
-
#:
|
926 |
-
#: views/view-export.php:60
|
927 |
#@ wp-table-reloaded
|
928 |
-
msgid "
|
929 |
-
msgstr "
|
930 |
|
931 |
-
#:
|
932 |
#@ wp-table-reloaded
|
933 |
-
msgid "
|
934 |
-
msgstr "
|
935 |
|
936 |
-
#:
|
937 |
#@ wp-table-reloaded
|
938 |
-
msgid "
|
939 |
-
msgstr "
|
940 |
|
941 |
-
#:
|
942 |
#@ wp-table-reloaded
|
943 |
-
msgid "
|
944 |
-
msgstr "
|
945 |
|
946 |
-
#:
|
|
|
947 |
#@ wp-table-reloaded
|
948 |
-
msgid "
|
949 |
-
msgstr "
|
950 |
|
951 |
-
#: controllers/controller-admin.php:
|
952 |
#: views/view-edit.php:41
|
953 |
#: views/view-edit.php:253
|
954 |
-
#: views/view-edit.php:
|
955 |
-
#: views/view-edit.php:
|
956 |
#@ wp-table-reloaded
|
957 |
msgid "Update Changes"
|
958 |
msgstr "Änderungen speichern"
|
959 |
|
960 |
-
#: views/view-
|
961 |
-
#: views/view-
|
962 |
-
#: views/view-edit.php:414
|
963 |
-
#: views/view-edit.php:465
|
964 |
#@ wp-table-reloaded
|
965 |
-
msgid "
|
966 |
-
msgstr "
|
967 |
|
968 |
-
#:
|
969 |
#@ wp-table-reloaded
|
970 |
-
msgid "Table
|
971 |
-
msgstr "
|
972 |
|
973 |
-
#:
|
974 |
#@ wp-table-reloaded
|
975 |
-
msgid "
|
976 |
-
msgstr "
|
977 |
|
978 |
-
#:
|
979 |
#@ wp-table-reloaded
|
980 |
-
msgid "
|
981 |
-
msgstr "
|
982 |
|
983 |
-
#:
|
984 |
#@ wp-table-reloaded
|
985 |
-
msgid "
|
986 |
-
msgstr "
|
987 |
|
988 |
-
#:
|
|
|
|
|
|
|
989 |
#@ wp-table-reloaded
|
990 |
-
msgid "
|
991 |
-
msgstr "
|
992 |
|
993 |
-
#:
|
994 |
-
#, php-format
|
995 |
#@ wp-table-reloaded
|
996 |
-
msgid "
|
997 |
-
msgstr "
|
998 |
|
999 |
-
#:
|
1000 |
#@ wp-table-reloaded
|
1001 |
-
msgid "
|
1002 |
-
msgstr "
|
1003 |
|
1004 |
-
#:
|
1005 |
-
#: views/view-edit.php:139
|
1006 |
#@ wp-table-reloaded
|
1007 |
-
|
1008 |
-
|
1009 |
-
msgstr "Verstecken"
|
1010 |
|
1011 |
-
#:
|
1012 |
-
#: views/view-edit.php:140
|
1013 |
#@ wp-table-reloaded
|
1014 |
-
|
1015 |
-
|
1016 |
-
msgstr "Zeigen"
|
1017 |
|
1018 |
-
#:
|
1019 |
-
#, php-format
|
1020 |
#@ wp-table-reloaded
|
1021 |
-
|
1022 |
-
|
1023 |
-
msgstr "Markierte Zeilen: %s %s"
|
1024 |
|
1025 |
-
#:
|
1026 |
-
#, php-format
|
1027 |
#@ wp-table-reloaded
|
1028 |
-
|
1029 |
-
|
1030 |
-
msgstr "Markierte Spalten: %s %s"
|
1031 |
|
1032 |
-
#:
|
1033 |
#@ wp-table-reloaded
|
1034 |
-
msgid "
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
#: views/view-
|
1038 |
#@ wp-table-reloaded
|
1039 |
-
msgid "
|
1040 |
-
msgstr "
|
1041 |
|
1042 |
-
#: views/view-
|
1043 |
#@ wp-table-reloaded
|
1044 |
-
msgid "
|
1045 |
-
msgstr "
|
1046 |
|
1047 |
-
#: views/view-
|
1048 |
#@ wp-table-reloaded
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
|
1052 |
-
#: views/view-
|
1053 |
#@ wp-table-reloaded
|
1054 |
-
msgid "
|
1055 |
-
msgstr "
|
1056 |
|
1057 |
-
#: views/view-
|
1058 |
-
#, php-format
|
1059 |
#@ wp-table-reloaded
|
1060 |
-
|
1061 |
-
|
1062 |
-
msgstr "Markierte Zeilen: %s %s"
|
1063 |
|
1064 |
-
#: views/view-
|
1065 |
#@ wp-table-reloaded
|
1066 |
-
msgid "
|
1067 |
-
msgstr "
|
1068 |
|
1069 |
-
#: views/view-
|
1070 |
-
#, php-format
|
1071 |
#@ wp-table-reloaded
|
1072 |
-
|
1073 |
-
|
1074 |
-
msgstr "Markierte Spalten: %s %s"
|
1075 |
|
1076 |
-
#: views/view-
|
1077 |
-
#, php-format
|
1078 |
#@ wp-table-reloaded
|
1079 |
-
msgid "
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
-
#: views/view-
|
1083 |
-
#: views/view-edit.php:175
|
1084 |
-
#: views/view-edit.php:459
|
1085 |
#@ wp-table-reloaded
|
1086 |
-
msgid "
|
1087 |
-
msgstr "
|
1088 |
|
1089 |
-
#: views/view-
|
1090 |
-
#, php-format
|
1091 |
#@ wp-table-reloaded
|
1092 |
-
msgid "
|
1093 |
-
msgstr "
|
1094 |
|
1095 |
-
#: views/view-
|
|
|
|
|
|
|
1096 |
#, php-format
|
1097 |
#@ wp-table-reloaded
|
1098 |
-
msgid "
|
1099 |
-
msgstr "
|
1100 |
|
1101 |
-
#: views/view-
|
1102 |
-
|
1103 |
#@ wp-table-reloaded
|
1104 |
-
msgid "
|
1105 |
-
msgstr "
|
1106 |
|
1107 |
-
#: views/view-
|
1108 |
-
#, php-format
|
1109 |
#@ wp-table-reloaded
|
1110 |
-
msgid "
|
1111 |
-
msgstr "
|
1112 |
|
1113 |
-
#: views/view-
|
1114 |
-
#: views/view-edit.php:239
|
1115 |
#@ wp-table-reloaded
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
-
#: views/view-
|
1120 |
-
#: views/view-edit.php:240
|
1121 |
#@ wp-table-reloaded
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#: views/view-
|
1126 |
#, php-format
|
1127 |
#@ wp-table-reloaded
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
-
#: views/view-
|
1132 |
-
#: views/view-edit.php:245
|
1133 |
#@ wp-table-reloaded
|
1134 |
-
msgid "
|
1135 |
-
msgstr "
|
1136 |
|
1137 |
-
#: views/view-
|
1138 |
-
#, php-format
|
1139 |
#@ wp-table-reloaded
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
1142 |
|
1143 |
-
#: views/view-
|
|
|
1144 |
#@ wp-table-reloaded
|
1145 |
-
msgid "
|
1146 |
-
msgstr "
|
1147 |
|
1148 |
-
#: views/view-
|
1149 |
#@ wp-table-reloaded
|
1150 |
-
msgid "
|
1151 |
-
msgstr "
|
1152 |
|
1153 |
-
#: views/view-
|
|
|
1154 |
#@ wp-table-reloaded
|
1155 |
-
msgid "
|
1156 |
-
msgstr "
|
1157 |
|
1158 |
-
#: views/view-
|
1159 |
#@ wp-table-reloaded
|
1160 |
-
msgid "
|
1161 |
-
msgstr "
|
1162 |
|
1163 |
-
#: views/view-
|
|
|
1164 |
#@ wp-table-reloaded
|
1165 |
-
msgid "
|
1166 |
-
msgstr "
|
1167 |
|
1168 |
-
#: views/view-
|
1169 |
#@ wp-table-reloaded
|
1170 |
-
msgid "
|
1171 |
-
msgstr "
|
1172 |
|
1173 |
-
#: views/view-
|
1174 |
#@ wp-table-reloaded
|
1175 |
-
msgid "
|
1176 |
-
msgstr "
|
1177 |
|
1178 |
-
#: views/view-
|
1179 |
#@ wp-table-reloaded
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
-
#: views/view-
|
1184 |
#@ wp-table-reloaded
|
1185 |
-
msgid "
|
1186 |
-
msgstr "
|
1187 |
|
1188 |
-
#: views/view-
|
1189 |
#@ wp-table-reloaded
|
1190 |
-
msgid "
|
1191 |
-
msgstr "
|
1192 |
|
1193 |
-
#: views/view-
|
1194 |
-
#: views/view-edit.php:306
|
1195 |
#@ wp-table-reloaded
|
1196 |
-
msgid "
|
1197 |
-
msgstr "
|
1198 |
|
1199 |
-
#: views/view-
|
1200 |
-
#: views/view-edit.php:308
|
1201 |
#@ wp-table-reloaded
|
1202 |
-
msgid "
|
1203 |
-
msgstr "
|
1204 |
|
1205 |
-
#: views/view-
|
1206 |
#, php-format
|
1207 |
#@ wp-table-reloaded
|
1208 |
-
msgid "
|
1209 |
-
msgstr "
|
1210 |
|
1211 |
-
#: views/view-
|
1212 |
#@ wp-table-reloaded
|
1213 |
-
msgid "
|
1214 |
-
msgstr "
|
1215 |
|
1216 |
-
#: views/view-
|
1217 |
-
#, php-format
|
1218 |
#@ wp-table-reloaded
|
1219 |
-
msgid "
|
1220 |
-
msgstr "
|
1221 |
|
1222 |
-
#: views/view-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1223 |
#@ wp-table-reloaded
|
1224 |
-
|
1225 |
-
|
|
|
1226 |
|
1227 |
-
#: views/view-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1228 |
#@ wp-table-reloaded
|
1229 |
-
msgid "
|
1230 |
-
msgstr "
|
1231 |
|
1232 |
-
#: views/view-
|
1233 |
#@ wp-table-reloaded
|
1234 |
-
msgid "
|
1235 |
-
msgstr "
|
1236 |
|
1237 |
-
#: views/view-
|
1238 |
#@ wp-table-reloaded
|
1239 |
-
msgid "
|
1240 |
-
msgstr "
|
1241 |
|
1242 |
-
#: views/view-
|
1243 |
-
#: views/view-edit.php:335
|
1244 |
-
#: views/view-edit.php:347
|
1245 |
#@ wp-table-reloaded
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#: views/view-
|
1250 |
-
#: views/view-edit.php:343
|
1251 |
#@ wp-table-reloaded
|
1252 |
-
msgid "
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#: views/view-
|
1256 |
-
#, php-format
|
1257 |
#@ wp-table-reloaded
|
1258 |
-
msgid "
|
1259 |
-
msgstr "
|
1260 |
|
1261 |
-
#: views/view-
|
1262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
#@ wp-table-reloaded
|
1264 |
-
msgid "
|
1265 |
-
msgstr "
|
1266 |
|
1267 |
-
#: views/view-
|
1268 |
#@ wp-table-reloaded
|
1269 |
-
msgid "
|
1270 |
-
msgstr "
|
1271 |
|
1272 |
-
#: views/view-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1273 |
#@ wp-table-reloaded
|
1274 |
-
msgid "
|
1275 |
-
msgstr "
|
1276 |
|
1277 |
-
#: views/view-
|
1278 |
#@ wp-table-reloaded
|
1279 |
-
msgid "
|
1280 |
-
msgstr "
|
1281 |
|
1282 |
-
#: views/view-
|
1283 |
-
#, php-format
|
1284 |
#@ wp-table-reloaded
|
1285 |
-
msgid "
|
1286 |
-
msgstr "
|
1287 |
|
1288 |
-
#: views/view-
|
1289 |
#@ wp-table-reloaded
|
1290 |
-
msgid "
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
-
#: views/view-
|
1294 |
#@ wp-table-reloaded
|
1295 |
-
msgid "
|
1296 |
-
msgstr "
|
1297 |
|
1298 |
-
#: views/view-
|
|
|
1299 |
#@ wp-table-reloaded
|
1300 |
-
msgid "
|
1301 |
-
msgstr "
|
1302 |
|
1303 |
-
#: views/view-
|
1304 |
#@ wp-table-reloaded
|
1305 |
-
msgid "
|
1306 |
-
msgstr "
|
1307 |
|
1308 |
-
#: views/view-
|
|
|
1309 |
#@ wp-table-reloaded
|
1310 |
-
msgid "
|
1311 |
-
msgstr "
|
1312 |
|
1313 |
-
#: views/view-
|
1314 |
-
|
1315 |
#@ wp-table-reloaded
|
1316 |
-
msgid "
|
1317 |
-
msgstr "
|
1318 |
|
1319 |
-
#: views/view-
|
|
|
|
|
|
|
|
|
|
|
1320 |
#@ wp-table-reloaded
|
1321 |
-
msgid "
|
1322 |
-
msgstr "
|
1323 |
|
1324 |
-
#: views/view-
|
|
|
|
|
|
|
|
|
1325 |
#@ wp-table-reloaded
|
1326 |
-
msgid "
|
1327 |
-
msgstr "
|
1328 |
|
1329 |
-
#: views/view-
|
1330 |
#@ wp-table-reloaded
|
1331 |
-
msgid "
|
1332 |
-
msgstr "
|
1333 |
|
1334 |
-
#: views/view-
|
1335 |
#@ wp-table-reloaded
|
1336 |
-
msgid "
|
1337 |
-
msgstr "
|
1338 |
|
1339 |
-
#: views/view-
|
1340 |
#@ wp-table-reloaded
|
1341 |
-
msgid "
|
1342 |
-
msgstr "
|
1343 |
|
1344 |
-
#: views/view-edit.php:
|
1345 |
#@ wp-table-reloaded
|
1346 |
-
msgid "
|
1347 |
-
msgstr "
|
1348 |
|
1349 |
-
#: views/view-edit.php:
|
1350 |
#@ wp-table-reloaded
|
1351 |
-
msgid "
|
1352 |
-
msgstr "
|
1353 |
|
1354 |
-
#: views/view-edit.php:
|
1355 |
#@ wp-table-reloaded
|
1356 |
-
msgid "
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
-
#: views/view-edit.php:
|
1360 |
#@ wp-table-reloaded
|
1361 |
-
msgid "
|
1362 |
-
msgstr "
|
1363 |
|
1364 |
-
#: views/view-edit.php:
|
|
|
|
|
1365 |
#@ wp-table-reloaded
|
1366 |
-
msgid "
|
1367 |
-
msgstr "
|
1368 |
|
1369 |
-
#: views/view-edit.php:
|
|
|
1370 |
#@ wp-table-reloaded
|
1371 |
-
msgid "
|
1372 |
-
msgstr "
|
1373 |
|
1374 |
-
#: views/view-edit.php:
|
|
|
|
|
|
|
1375 |
#@ wp-table-reloaded
|
1376 |
-
msgid "
|
1377 |
-
msgstr "
|
1378 |
|
1379 |
-
#: views/view-edit.php:
|
|
|
|
|
|
|
|
|
|
|
1380 |
#@ wp-table-reloaded
|
1381 |
-
msgid "
|
1382 |
-
msgstr "
|
1383 |
|
1384 |
-
#: views/view-edit.php:
|
1385 |
#@ wp-table-reloaded
|
1386 |
-
msgid "
|
1387 |
-
msgstr "
|
1388 |
|
1389 |
-
#: views/view-edit.php:
|
1390 |
-
#, php-format
|
1391 |
#@ wp-table-reloaded
|
1392 |
-
msgid "
|
1393 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
1394 |
|
1395 |
-
#: views/view-edit.php:
|
1396 |
#@ wp-table-reloaded
|
1397 |
-
msgid "
|
1398 |
-
msgstr "
|
1399 |
|
1400 |
-
#: views/view-edit.php:
|
1401 |
#@ wp-table-reloaded
|
1402 |
-
msgid "
|
1403 |
-
msgstr "
|
1404 |
|
1405 |
-
#: views/view-edit.php:
|
1406 |
#@ wp-table-reloaded
|
1407 |
-
msgid "
|
1408 |
-
msgstr "
|
1409 |
|
1410 |
-
#: views/view-edit.php:
|
|
|
1411 |
#@ wp-table-reloaded
|
1412 |
-
msgid "
|
1413 |
-
msgstr "
|
1414 |
|
1415 |
-
#: views/view-edit.php:
|
1416 |
#@ wp-table-reloaded
|
1417 |
-
msgid "
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
-
#: views/view-edit.php:
|
|
|
1421 |
#@ wp-table-reloaded
|
1422 |
-
|
1423 |
-
|
|
|
1424 |
|
1425 |
-
#: views/view-edit.php:
|
|
|
1426 |
#@ wp-table-reloaded
|
1427 |
-
|
1428 |
-
|
|
|
1429 |
|
1430 |
-
#: views/view-edit.php:
|
|
|
1431 |
#@ wp-table-reloaded
|
1432 |
-
|
1433 |
-
|
|
|
1434 |
|
1435 |
-
#: views/view-
|
|
|
1436 |
#@ wp-table-reloaded
|
1437 |
-
|
1438 |
-
|
|
|
1439 |
|
1440 |
-
#: views/view-
|
1441 |
#@ wp-table-reloaded
|
1442 |
-
msgid "
|
1443 |
-
msgstr "
|
1444 |
|
1445 |
-
#: views/view-
|
1446 |
#@ wp-table-reloaded
|
1447 |
-
msgid "
|
1448 |
-
msgstr "
|
1449 |
|
1450 |
-
#: views/view-
|
1451 |
#@ wp-table-reloaded
|
1452 |
-
msgid "
|
1453 |
-
msgstr "
|
1454 |
|
1455 |
-
#: views/view-
|
1456 |
#@ wp-table-reloaded
|
1457 |
-
msgid "
|
1458 |
-
msgstr "
|
1459 |
|
1460 |
-
#: views/view-
|
1461 |
#@ wp-table-reloaded
|
1462 |
-
msgid "
|
1463 |
-
msgstr "
|
1464 |
|
1465 |
-
#: views/view-
|
|
|
|
|
1466 |
#@ wp-table-reloaded
|
1467 |
-
msgid "
|
1468 |
-
msgstr "
|
1469 |
|
1470 |
-
#: views/view-
|
|
|
1471 |
#@ wp-table-reloaded
|
1472 |
-
|
1473 |
-
|
|
|
1474 |
|
1475 |
-
#: views/view-
|
1476 |
#@ wp-table-reloaded
|
1477 |
-
msgid "
|
1478 |
-
msgstr "
|
1479 |
|
1480 |
-
#: views/view-
|
|
|
1481 |
#@ wp-table-reloaded
|
1482 |
-
|
1483 |
-
|
|
|
1484 |
|
1485 |
-
#: views/view-
|
1486 |
#, php-format
|
1487 |
#@ wp-table-reloaded
|
1488 |
-
msgid "
|
1489 |
-
msgstr "
|
1490 |
|
1491 |
-
#: views/view-
|
|
|
|
|
1492 |
#@ wp-table-reloaded
|
1493 |
-
msgid "
|
1494 |
-
msgstr "
|
1495 |
|
1496 |
-
#: views/view-
|
|
|
1497 |
#@ wp-table-reloaded
|
1498 |
-
msgid "
|
1499 |
-
msgstr "
|
1500 |
|
1501 |
-
#: views/view-
|
|
|
1502 |
#@ wp-table-reloaded
|
1503 |
-
msgid "
|
1504 |
-
msgstr "
|
1505 |
|
1506 |
-
#: views/view-
|
|
|
|
|
|
|
|
|
|
|
|
|
1507 |
#, php-format
|
1508 |
#@ wp-table-reloaded
|
1509 |
-
msgid "
|
1510 |
-
msgstr "
|
1511 |
|
1512 |
-
#: views/view-
|
|
|
1513 |
#@ wp-table-reloaded
|
1514 |
-
msgid "
|
1515 |
-
msgstr "
|
1516 |
|
1517 |
-
#:
|
1518 |
-
#: views/view-
|
1519 |
-
#, php-format
|
1520 |
#@ wp-table-reloaded
|
1521 |
-
msgid "
|
1522 |
-
msgstr "
|
1523 |
|
1524 |
-
#:
|
1525 |
-
#: views/view-about.php:21
|
1526 |
#, php-format
|
1527 |
#@ wp-table-reloaded
|
1528 |
-
msgid "
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
-
#: views/view-
|
|
|
1532 |
#@ wp-table-reloaded
|
1533 |
-
msgid "
|
1534 |
-
msgstr "
|
1535 |
|
1536 |
-
#:
|
1537 |
-
#: views/view-about.php:28
|
1538 |
#, php-format
|
1539 |
#@ wp-table-reloaded
|
1540 |
-
msgid "
|
1541 |
-
msgstr "
|
1542 |
|
1543 |
-
#:
|
1544 |
-
#: views/view-about.php:28
|
1545 |
-
#, php-format
|
1546 |
#@ wp-table-reloaded
|
1547 |
-
msgid "
|
1548 |
-
msgstr "
|
1549 |
|
1550 |
-
#: views/view-
|
1551 |
-
#, php-format
|
1552 |
#@ wp-table-reloaded
|
1553 |
-
msgid "
|
1554 |
-
msgstr "
|
1555 |
|
1556 |
-
#: views/view-
|
1557 |
#@ wp-table-reloaded
|
1558 |
-
msgid "
|
1559 |
-
msgstr "
|
1560 |
|
1561 |
-
#: views/view-
|
1562 |
-
#, php-format
|
1563 |
#@ wp-table-reloaded
|
1564 |
-
msgid "
|
1565 |
-
msgstr "
|
1566 |
|
1567 |
-
#: views/view-
|
1568 |
#@ wp-table-reloaded
|
1569 |
-
msgid "
|
1570 |
-
msgstr "
|
1571 |
|
1572 |
-
#:
|
1573 |
-
#: views/view-about.php:35
|
1574 |
-
#, php-format
|
1575 |
#@ wp-table-reloaded
|
1576 |
-
msgid "
|
1577 |
-
msgstr "
|
1578 |
|
1579 |
-
#: views/view-
|
1580 |
-
#, php-format
|
1581 |
#@ wp-table-reloaded
|
1582 |
-
msgid "
|
1583 |
-
msgstr "
|
1584 |
|
1585 |
-
#: views/view-
|
1586 |
#@ wp-table-reloaded
|
1587 |
-
msgid "
|
1588 |
-
msgstr "
|
1589 |
|
1590 |
-
#: views/view-
|
1591 |
#@ wp-table-reloaded
|
1592 |
-
msgid "
|
1593 |
-
msgstr "
|
1594 |
|
1595 |
-
#: views/view-
|
1596 |
#@ wp-table-reloaded
|
1597 |
-
msgid "
|
1598 |
-
msgstr "
|
1599 |
|
1600 |
-
#: views/view-
|
|
|
1601 |
#@ wp-table-reloaded
|
1602 |
-
msgid "
|
1603 |
-
msgstr "
|
1604 |
|
1605 |
-
#: views/view-
|
|
|
1606 |
#@ wp-table-reloaded
|
1607 |
-
msgid "
|
1608 |
-
msgstr "
|
1609 |
|
1610 |
-
#: views/view-
|
|
|
1611 |
#@ wp-table-reloaded
|
1612 |
-
msgid "
|
1613 |
-
msgstr "
|
1614 |
|
1615 |
-
#: views/view-
|
1616 |
#@ wp-table-reloaded
|
1617 |
-
msgid "
|
1618 |
-
msgstr "
|
1619 |
|
1620 |
-
#: views/view-
|
1621 |
#, php-format
|
1622 |
#@ wp-table-reloaded
|
1623 |
-
msgid "
|
1624 |
-
msgstr "%s
|
1625 |
|
1626 |
-
#: views/view-
|
1627 |
#@ wp-table-reloaded
|
1628 |
-
msgid "
|
1629 |
-
msgstr "
|
1630 |
|
1631 |
-
#: views/view-
|
1632 |
#@ wp-table-reloaded
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
1635 |
|
1636 |
-
#: views/view-
|
1637 |
#@ wp-table-reloaded
|
1638 |
-
msgid "
|
1639 |
-
msgstr "
|
1640 |
|
1641 |
-
#: views/view-
|
1642 |
#@ wp-table-reloaded
|
1643 |
-
msgid "
|
1644 |
-
msgstr "
|
1645 |
|
1646 |
-
#: views/view-
|
1647 |
#@ wp-table-reloaded
|
1648 |
-
msgid "
|
1649 |
-
msgstr "
|
1650 |
|
1651 |
-
#: views/view-
|
1652 |
#@ wp-table-reloaded
|
1653 |
-
msgid "
|
1654 |
-
msgstr "
|
1655 |
|
1656 |
-
#: views/view-
|
|
|
1657 |
#@ wp-table-reloaded
|
1658 |
-
msgid "
|
1659 |
-
msgstr "
|
1660 |
|
1661 |
-
#: views/view-
|
|
|
1662 |
#@ wp-table-reloaded
|
1663 |
-
msgid "The
|
1664 |
-
msgstr "
|
1665 |
|
1666 |
-
#:
|
|
|
1667 |
#@ wp-table-reloaded
|
1668 |
-
msgid "
|
1669 |
-
msgstr "
|
1670 |
|
1671 |
-
#:
|
|
|
1672 |
#@ wp-table-reloaded
|
1673 |
-
msgid "
|
1674 |
-
msgstr "
|
1675 |
|
1676 |
-
#:
|
1677 |
#@ wp-table-reloaded
|
1678 |
-
msgid "
|
1679 |
-
msgstr "
|
1680 |
|
1681 |
-
#:
|
1682 |
#@ wp-table-reloaded
|
1683 |
-
msgid "
|
1684 |
-
msgstr "
|
1685 |
|
1686 |
-
#:
|
1687 |
#@ wp-table-reloaded
|
1688 |
-
msgid "
|
1689 |
-
msgstr "
|
1690 |
|
1691 |
-
#:
|
|
|
1692 |
#@ wp-table-reloaded
|
1693 |
-
msgid "
|
1694 |
-
msgstr "
|
1695 |
|
1696 |
-
#:
|
1697 |
#@ wp-table-reloaded
|
1698 |
-
msgid "
|
1699 |
-
msgstr "
|
1700 |
|
1701 |
-
#:
|
1702 |
#@ wp-table-reloaded
|
1703 |
-
msgid "
|
1704 |
-
msgstr "
|
1705 |
|
1706 |
-
#:
|
1707 |
#@ wp-table-reloaded
|
1708 |
-
msgid "
|
1709 |
-
msgstr "
|
1710 |
|
1711 |
-
#:
|
1712 |
#@ wp-table-reloaded
|
1713 |
-
msgid "
|
1714 |
-
msgstr "
|
1715 |
|
1716 |
-
#:
|
1717 |
#@ wp-table-reloaded
|
1718 |
-
msgid "
|
1719 |
-
msgstr "
|
1720 |
|
1721 |
-
#:
|
|
|
1722 |
#@ wp-table-reloaded
|
1723 |
-
msgid "
|
1724 |
-
msgstr "
|
1725 |
|
1726 |
-
#:
|
1727 |
#@ wp-table-reloaded
|
1728 |
-
msgid "
|
1729 |
-
msgstr "
|
1730 |
|
1731 |
-
#:
|
1732 |
#@ wp-table-reloaded
|
1733 |
-
msgid "
|
1734 |
-
msgstr "
|
1735 |
|
1736 |
-
#:
|
1737 |
#@ wp-table-reloaded
|
1738 |
-
msgid "
|
1739 |
-
msgstr "
|
1740 |
|
1741 |
-
#:
|
1742 |
#@ wp-table-reloaded
|
1743 |
-
msgid "
|
1744 |
-
msgstr "
|
1745 |
|
1746 |
-
#:
|
1747 |
#@ wp-table-reloaded
|
1748 |
-
msgid "
|
1749 |
-
msgstr "
|
1750 |
|
1751 |
-
#:
|
1752 |
#@ wp-table-reloaded
|
1753 |
-
msgid "
|
1754 |
-
msgstr "
|
1755 |
|
1756 |
-
#:
|
1757 |
-
#, php-format
|
1758 |
#@ wp-table-reloaded
|
1759 |
-
msgid "
|
1760 |
-
msgstr "
|
1761 |
|
1762 |
-
#:
|
1763 |
-
#, php-format
|
1764 |
#@ wp-table-reloaded
|
1765 |
-
msgid "
|
1766 |
-
msgstr "
|
1767 |
|
1768 |
-
#:
|
1769 |
-
#, php-format
|
1770 |
#@ wp-table-reloaded
|
1771 |
-
msgid "
|
1772 |
-
msgstr "
|
1773 |
|
1774 |
-
#:
|
1775 |
-
#, php-format
|
1776 |
#@ wp-table-reloaded
|
1777 |
-
msgid "
|
1778 |
-
msgstr "
|
1779 |
|
1780 |
-
#:
|
1781 |
#@ wp-table-reloaded
|
1782 |
-
msgid "
|
1783 |
-
msgstr "
|
1784 |
|
1785 |
-
#:
|
1786 |
#@ wp-table-reloaded
|
1787 |
-
msgid "
|
1788 |
-
msgstr "
|
1789 |
|
1790 |
-
#:
|
1791 |
#, php-format
|
1792 |
#@ wp-table-reloaded
|
1793 |
-
msgid "
|
1794 |
-
|
1795 |
-
msgstr[0] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabelle zufrieden bist, ist dir das nicht einen Euro wert?"
|
1796 |
-
msgstr[1] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabellen zufrieden bist, ist dir das nicht einen Euro wert?"
|
1797 |
|
1798 |
-
#:
|
1799 |
-
#, php-format
|
1800 |
#@ wp-table-reloaded
|
1801 |
-
msgid "
|
1802 |
-
msgstr "
|
1803 |
|
1804 |
-
#:
|
1805 |
#@ wp-table-reloaded
|
1806 |
-
msgid "
|
1807 |
-
msgstr "
|
1808 |
|
1809 |
-
#:
|
1810 |
#@ wp-table-reloaded
|
1811 |
-
msgid "
|
1812 |
-
msgstr "
|
1813 |
|
1814 |
-
#:
|
1815 |
#@ wp-table-reloaded
|
1816 |
-
msgid "
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
-
#:
|
1820 |
-
#, php-format
|
1821 |
#@ wp-table-reloaded
|
1822 |
-
msgid "
|
1823 |
-
msgstr "
|
1824 |
|
1825 |
-
#:
|
1826 |
-
#, php-format
|
1827 |
#@ wp-table-reloaded
|
1828 |
-
msgid "
|
1829 |
-
msgstr "
|
1830 |
|
1831 |
-
#:
|
1832 |
-
#, php-format
|
1833 |
#@ wp-table-reloaded
|
1834 |
-
msgid "
|
1835 |
-
msgstr "
|
1836 |
|
1837 |
-
#:
|
1838 |
#@ wp-table-reloaded
|
1839 |
-
msgid "Table
|
1840 |
-
msgstr "Tabelle
|
1841 |
|
1842 |
-
#:
|
|
|
1843 |
#@ wp-table-reloaded
|
1844 |
-
msgid "
|
1845 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
1846 |
|
1847 |
-
#:
|
1848 |
#@ wp-table-reloaded
|
1849 |
-
msgid "
|
1850 |
-
msgstr "
|
1851 |
|
1852 |
-
#:
|
1853 |
#@ wp-table-reloaded
|
1854 |
-
msgid "
|
1855 |
-
msgstr "
|
1856 |
|
1857 |
-
#:
|
1858 |
#@ wp-table-reloaded
|
1859 |
-
msgid "
|
1860 |
-
msgstr "
|
1861 |
|
1862 |
-
#:
|
|
|
1863 |
#@ wp-table-reloaded
|
1864 |
-
msgid "
|
1865 |
-
msgstr "
|
1866 |
|
1867 |
-
#:
|
|
|
1868 |
#@ wp-table-reloaded
|
1869 |
-
msgid "
|
1870 |
-
|
1871 |
-
msgstr[0] "Zeile konnte nicht gelöscht werden."
|
1872 |
-
msgstr[1] "Zeilen konnten nicht gelöscht werden."
|
1873 |
|
1874 |
-
#:
|
1875 |
#@ wp-table-reloaded
|
1876 |
-
msgid "
|
1877 |
-
|
1878 |
-
msgstr[0] "Zeile erfolgreich gelöscht."
|
1879 |
-
msgstr[1] "Zeilen erfolgreich gelöscht."
|
1880 |
|
1881 |
-
#:
|
1882 |
#@ wp-table-reloaded
|
1883 |
-
msgid "
|
1884 |
-
|
1885 |
-
msgstr[0] "Spalte konnte nicht gelöscht werden."
|
1886 |
-
msgstr[1] "Spalten konnten nicht gelöscht werden."
|
1887 |
|
1888 |
-
#:
|
1889 |
#@ wp-table-reloaded
|
1890 |
-
msgid "
|
1891 |
-
|
1892 |
-
msgstr[0] "Spalte erfolgreich gelöscht."
|
1893 |
-
msgstr[1] "Spalten erfolgreich gelöscht."
|
1894 |
|
1895 |
-
#:
|
1896 |
#@ wp-table-reloaded
|
1897 |
-
msgid "
|
1898 |
-
|
1899 |
-
msgstr[0] "Zeile erfolgreich eingefügt."
|
1900 |
-
msgstr[1] "Zeilen erfolgreich eingefügt."
|
1901 |
|
1902 |
-
#:
|
1903 |
#@ wp-table-reloaded
|
1904 |
-
msgid "
|
1905 |
-
|
1906 |
-
msgstr[0] "Spalte erfolgreich eingefügt."
|
1907 |
-
msgstr[1] "Spalten erfolgreich eingefügt."
|
1908 |
|
1909 |
-
#:
|
1910 |
#@ wp-table-reloaded
|
1911 |
-
msgid "
|
1912 |
-
|
1913 |
-
msgstr[0] "Zeile erfolgreich angefügt."
|
1914 |
-
msgstr[1] "Zeilen erfolgreich angefügt."
|
1915 |
|
1916 |
-
#:
|
|
|
|
|
1917 |
#@ wp-table-reloaded
|
1918 |
-
msgid "
|
1919 |
-
|
1920 |
-
msgstr[0] "Spalte erfolgreich angefügt."
|
1921 |
-
msgstr[1] "Spalten erfolgreich angefügt."
|
1922 |
|
1923 |
-
#:
|
1924 |
#@ wp-table-reloaded
|
1925 |
-
msgid "
|
1926 |
-
msgstr "
|
1927 |
|
1928 |
-
#:
|
1929 |
#@ wp-table-reloaded
|
1930 |
-
msgid "
|
1931 |
-
msgstr "
|
1932 |
|
1933 |
-
#:
|
1934 |
#@ wp-table-reloaded
|
1935 |
-
msgid "
|
1936 |
-
msgstr "
|
1937 |
|
1938 |
-
#:
|
1939 |
#@ wp-table-reloaded
|
1940 |
-
msgid "
|
1941 |
-
msgstr "
|
1942 |
|
1943 |
-
#:
|
1944 |
#@ wp-table-reloaded
|
1945 |
-
msgid "
|
1946 |
-
msgstr "
|
1947 |
|
1948 |
-
#:
|
1949 |
-
#: controllers/controller-admin.php:793
|
1950 |
#@ wp-table-reloaded
|
1951 |
-
msgid "
|
1952 |
-
msgstr "
|
1953 |
|
1954 |
-
#:
|
1955 |
#@ wp-table-reloaded
|
1956 |
-
msgid "
|
1957 |
-
|
1958 |
-
msgstr[0] "Tabelle erfolgreich kopiert."
|
1959 |
-
msgstr[1] "Tabellen erfolgreich kopiert."
|
1960 |
|
1961 |
-
#:
|
1962 |
#@ wp-table-reloaded
|
1963 |
-
msgid "
|
1964 |
-
|
1965 |
-
msgstr[0] "Tabelle erfolgreich gelöscht."
|
1966 |
-
msgstr[1] "Tabellen erfolgreich gelöscht."
|
1967 |
|
1968 |
-
#:
|
1969 |
-
#: controllers/controller-admin.php:923
|
1970 |
-
#: controllers/controller-admin.php:961
|
1971 |
#@ wp-table-reloaded
|
1972 |
-
msgid "Table
|
1973 |
-
|
1974 |
-
msgstr[0] "Tabelle erfolgreich importiert."
|
1975 |
-
msgstr[1] "Tabellen erfolgreich importiert."
|
1976 |
|
1977 |
-
#:
|
1978 |
#@ wp-table-reloaded
|
1979 |
-
msgid "
|
1980 |
-
msgstr "
|
1981 |
|
1982 |
-
#:
|
1983 |
-
#, php-format
|
1984 |
#@ wp-table-reloaded
|
1985 |
-
msgid "
|
1986 |
-
msgstr "
|
1987 |
|
1988 |
-
#:
|
1989 |
-
#, php-format
|
1990 |
#@ wp-table-reloaded
|
1991 |
-
msgid "
|
1992 |
-
msgstr "
|
1993 |
|
1994 |
-
#:
|
1995 |
#@ wp-table-reloaded
|
1996 |
-
msgid "
|
1997 |
-
msgstr "
|
1998 |
|
1999 |
-
#:
|
2000 |
#@ wp-table-reloaded
|
2001 |
-
msgid "
|
2002 |
-
msgstr "
|
2003 |
|
2004 |
-
#:
|
2005 |
#@ wp-table-reloaded
|
2006 |
-
msgid "
|
2007 |
-
msgstr "
|
2008 |
|
2009 |
-
#:
|
2010 |
-
#: controllers/controller-admin.php:874
|
2011 |
-
#: controllers/controller-admin.php:885
|
2012 |
#@ wp-table-reloaded
|
2013 |
-
msgid "
|
2014 |
-
msgstr "
|
2015 |
|
2016 |
-
#:
|
2017 |
-
#: controllers/controller-admin.php:886
|
2018 |
-
#, php-format
|
2019 |
#@ wp-table-reloaded
|
2020 |
-
msgid "
|
2021 |
-
msgstr "
|
2022 |
|
2023 |
-
#:
|
2024 |
#@ wp-table-reloaded
|
2025 |
-
msgid "
|
2026 |
-
msgstr "
|
2027 |
|
2028 |
-
#:
|
2029 |
-
#: controllers/controller-admin.php:939
|
2030 |
#@ wp-table-reloaded
|
2031 |
-
msgid "Table
|
2032 |
-
msgstr "Tabelle
|
2033 |
|
2034 |
-
#:
|
2035 |
-
#, php-format
|
2036 |
#@ wp-table-reloaded
|
2037 |
-
msgid "
|
2038 |
-
msgstr "
|
2039 |
|
2040 |
-
#:
|
2041 |
-
#: controllers/controller-admin.php:1164
|
2042 |
#@ wp-table-reloaded
|
2043 |
-
msgid "
|
2044 |
-
msgstr "
|
2045 |
|
2046 |
-
#:
|
|
|
2047 |
#@ wp-table-reloaded
|
2048 |
-
msgid "
|
2049 |
-
msgstr "
|
2050 |
|
2051 |
-
#:
|
2052 |
#@ wp-table-reloaded
|
2053 |
-
msgid "
|
2054 |
-
msgstr "
|
2055 |
|
2056 |
-
#:
|
2057 |
#@ wp-table-reloaded
|
2058 |
-
msgid "
|
2059 |
-
msgstr "
|
2060 |
|
2061 |
-
#:
|
2062 |
-
#, php-format
|
2063 |
#@ wp-table-reloaded
|
2064 |
-
msgid "
|
2065 |
-
msgstr "
|
2066 |
|
2067 |
-
#:
|
2068 |
#@ wp-table-reloaded
|
2069 |
-
msgid "
|
2070 |
-
msgstr "
|
2071 |
|
2072 |
-
#:
|
2073 |
#, php-format
|
2074 |
#@ wp-table-reloaded
|
2075 |
-
msgid "
|
2076 |
-
msgstr "
|
2077 |
|
2078 |
-
#:
|
2079 |
#@ wp-table-reloaded
|
2080 |
-
msgid "
|
2081 |
-
msgstr "
|
2082 |
|
2083 |
-
#:
|
2084 |
#@ wp-table-reloaded
|
2085 |
-
msgid "
|
2086 |
-
msgstr "
|
2087 |
|
2088 |
-
#:
|
2089 |
#, php-format
|
2090 |
#@ wp-table-reloaded
|
2091 |
-
msgid "
|
2092 |
-
msgstr "
|
2093 |
|
2094 |
-
#:
|
2095 |
-
#: controllers/controller-admin.php:1682
|
2096 |
#@ wp-table-reloaded
|
2097 |
-
msgid "
|
2098 |
-
msgstr "
|
2099 |
|
2100 |
-
#:
|
2101 |
-
|
|
|
|
|
|
|
|
|
2102 |
#@ wp-table-reloaded
|
2103 |
-
msgid "
|
2104 |
-
msgstr "
|
2105 |
|
2106 |
-
|
2107 |
-
|
2108 |
-
#: controllers/controller-admin.php:1270
|
2109 |
-
#: controllers/controller-admin.php:1272
|
2110 |
-
#: wp-table-reloaded.php:0
|
2111 |
#@ wp-table-reloaded
|
2112 |
-
msgid "
|
2113 |
-
msgstr "
|
2114 |
|
2115 |
-
#:
|
2116 |
-
#: controllers/controller-admin.php:1303
|
2117 |
#@ wp-table-reloaded
|
2118 |
-
msgid "
|
2119 |
-
msgstr "
|
2120 |
|
2121 |
-
#:
|
2122 |
-
#: controllers/controller-admin.php:1304
|
2123 |
#@ wp-table-reloaded
|
2124 |
-
msgid "
|
2125 |
-
msgstr "
|
2126 |
|
2127 |
-
#:
|
2128 |
-
#: controllers/controller-admin.php:1305
|
2129 |
#@ wp-table-reloaded
|
2130 |
-
msgid "
|
2131 |
-
msgstr "
|
2132 |
|
2133 |
-
#:
|
2134 |
#@ wp-table-reloaded
|
2135 |
-
msgid "
|
2136 |
-
msgstr "
|
2137 |
|
2138 |
-
#:
|
2139 |
-
#, php-format
|
2140 |
#@ wp-table-reloaded
|
2141 |
-
msgid "
|
2142 |
-
msgstr "
|
2143 |
|
2144 |
-
#:
|
2145 |
#, php-format
|
2146 |
#@ wp-table-reloaded
|
2147 |
-
msgid "
|
2148 |
-
msgstr "
|
2149 |
|
2150 |
-
#:
|
|
|
|
|
|
|
2151 |
#@ wp-table-reloaded
|
2152 |
-
msgid "
|
2153 |
-
msgstr "
|
2154 |
|
2155 |
-
#:
|
2156 |
#@ wp-table-reloaded
|
2157 |
-
msgid "
|
2158 |
-
msgstr "
|
2159 |
|
2160 |
-
#:
|
2161 |
#@ wp-table-reloaded
|
2162 |
-
msgid "
|
2163 |
-
msgstr "
|
2164 |
|
2165 |
-
#:
|
2166 |
#@ wp-table-reloaded
|
2167 |
-
msgid "
|
2168 |
-
msgstr "
|
2169 |
|
2170 |
-
#:
|
2171 |
#@ wp-table-reloaded
|
2172 |
-
msgid "
|
2173 |
-
msgstr "
|
2174 |
|
2175 |
-
#:
|
2176 |
#@ wp-table-reloaded
|
2177 |
-
msgid "
|
2178 |
-
msgstr "
|
2179 |
|
2180 |
-
#:
|
2181 |
#@ wp-table-reloaded
|
2182 |
-
msgid "
|
2183 |
-
msgstr "
|
2184 |
|
2185 |
-
#:
|
|
|
2186 |
#@ wp-table-reloaded
|
2187 |
-
msgid "
|
2188 |
-
msgstr "
|
2189 |
|
2190 |
-
#:
|
|
|
2191 |
#@ wp-table-reloaded
|
2192 |
-
msgid "
|
2193 |
-
msgstr "
|
2194 |
|
2195 |
-
#:
|
2196 |
#@ wp-table-reloaded
|
2197 |
-
msgid "
|
2198 |
-
msgstr "
|
2199 |
|
2200 |
-
#:
|
2201 |
#@ wp-table-reloaded
|
2202 |
-
msgid "
|
2203 |
-
msgstr "
|
2204 |
|
2205 |
-
#:
|
2206 |
#@ wp-table-reloaded
|
2207 |
-
msgid "
|
2208 |
-
msgstr "
|
2209 |
|
2210 |
-
#:
|
2211 |
#@ wp-table-reloaded
|
2212 |
-
msgid "
|
2213 |
-
msgstr "
|
2214 |
|
2215 |
-
#:
|
2216 |
#@ wp-table-reloaded
|
2217 |
-
msgid "
|
2218 |
-
msgstr "
|
2219 |
|
2220 |
-
#:
|
|
|
2221 |
#@ wp-table-reloaded
|
2222 |
-
msgid "
|
2223 |
-
msgstr "
|
2224 |
|
2225 |
-
#:
|
2226 |
#, php-format
|
2227 |
#@ wp-table-reloaded
|
2228 |
-
msgid "
|
2229 |
-
msgstr "
|
2230 |
-
|
2231 |
-
#: controllers/controller-admin.php:1725
|
2232 |
-
#@ default
|
2233 |
-
msgid "Insert into Post"
|
2234 |
-
msgstr ""
|
2235 |
|
2236 |
-
#:
|
2237 |
#@ wp-table-reloaded
|
2238 |
-
msgid "
|
2239 |
-
msgstr "
|
2240 |
|
2241 |
-
#:
|
|
|
2242 |
#@ wp-table-reloaded
|
2243 |
-
msgid "
|
2244 |
-
msgstr "
|
2245 |
|
2246 |
-
#:
|
|
|
2247 |
#@ wp-table-reloaded
|
2248 |
-
msgid "
|
2249 |
-
msgstr "
|
2250 |
|
2251 |
-
#:
|
2252 |
#@ wp-table-reloaded
|
2253 |
-
msgid "
|
2254 |
-
msgstr "
|
2255 |
|
2256 |
-
#:
|
2257 |
#@ wp-table-reloaded
|
2258 |
-
msgid "
|
2259 |
-
msgstr "
|
2260 |
|
2261 |
-
#:
|
|
|
2262 |
#@ wp-table-reloaded
|
2263 |
-
msgid "
|
2264 |
-
msgstr "
|
2265 |
|
2266 |
-
#:
|
2267 |
#@ wp-table-reloaded
|
2268 |
-
msgid "
|
2269 |
-
msgstr "
|
2270 |
|
2271 |
-
#:
|
|
|
2272 |
#@ wp-table-reloaded
|
2273 |
-
msgid "
|
2274 |
-
msgstr "
|
2275 |
|
2276 |
-
#:
|
2277 |
#@ wp-table-reloaded
|
2278 |
-
msgid "
|
2279 |
-
msgstr "
|
2280 |
|
2281 |
-
#:
|
2282 |
-
|
2283 |
-
#: controllers/controller-admin.php:1741
|
2284 |
#@ wp-table-reloaded
|
2285 |
-
msgid "
|
2286 |
-
msgstr "
|
2287 |
|
2288 |
-
#:
|
2289 |
-
#: controllers/controller-admin.php:1740
|
2290 |
-
#: controllers/controller-admin.php:1742
|
2291 |
#@ wp-table-reloaded
|
2292 |
-
msgid "
|
2293 |
-
msgstr "
|
2294 |
|
2295 |
-
#:
|
|
|
|
|
2296 |
#@ wp-table-reloaded
|
2297 |
-
msgid "
|
2298 |
-
msgstr "
|
2299 |
|
2300 |
-
#:
|
2301 |
#@ wp-table-reloaded
|
2302 |
-
msgid "You can not
|
2303 |
-
msgstr "Du kannst
|
2304 |
|
2305 |
-
#:
|
2306 |
#@ wp-table-reloaded
|
2307 |
-
msgid "
|
2308 |
-
msgstr "
|
2309 |
|
2310 |
-
#:
|
2311 |
#@ wp-table-reloaded
|
2312 |
-
msgid "
|
2313 |
-
msgstr "
|
2314 |
|
2315 |
-
#:
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
|
|
|
|
2319 |
|
2320 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2321 |
#@ wp-table-reloaded
|
2322 |
-
msgid "
|
2323 |
-
msgstr "
|
2324 |
|
2325 |
-
#:
|
2326 |
#@ wp-table-reloaded
|
2327 |
-
msgid "To
|
2328 |
-
msgstr "
|
2329 |
|
2330 |
-
#:
|
2331 |
#@ wp-table-reloaded
|
2332 |
-
msgid "
|
2333 |
-
msgstr "
|
2334 |
|
2335 |
-
#:
|
2336 |
#@ wp-table-reloaded
|
2337 |
-
msgid "
|
2338 |
-
msgstr "
|
2339 |
|
2340 |
-
#:
|
2341 |
#@ wp-table-reloaded
|
2342 |
-
msgid "
|
2343 |
-
msgstr "
|
2344 |
|
2345 |
-
#:
|
2346 |
#, php-format
|
2347 |
#@ wp-table-reloaded
|
2348 |
-
msgid "
|
2349 |
-
msgstr "
|
2350 |
|
2351 |
-
#:
|
2352 |
#@ wp-table-reloaded
|
2353 |
-
msgid "
|
2354 |
-
msgstr "
|
2355 |
|
2356 |
-
#:
|
2357 |
#@ wp-table-reloaded
|
2358 |
-
msgid "
|
2359 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2360 |
|
2361 |
-
#:
|
2362 |
#@ wp-table-reloaded
|
2363 |
-
msgid "
|
2364 |
-
msgstr "
|
2365 |
|
2366 |
-
#:
|
2367 |
#@ wp-table-reloaded
|
2368 |
-
msgid "
|
2369 |
-
msgstr "
|
2370 |
|
2371 |
-
#:
|
2372 |
#@ wp-table-reloaded
|
2373 |
-
msgid "
|
2374 |
-
msgstr "
|
2375 |
|
2376 |
-
#:
|
2377 |
#@ wp-table-reloaded
|
2378 |
-
msgid "
|
2379 |
-
msgstr "
|
2380 |
|
2381 |
-
#:
|
2382 |
#@ wp-table-reloaded
|
2383 |
-
msgid "
|
2384 |
-
msgstr "
|
2385 |
|
2386 |
-
#:
|
2387 |
#@ wp-table-reloaded
|
2388 |
-
msgid "
|
2389 |
-
msgstr "
|
2390 |
|
2391 |
-
#:
|
2392 |
#@ wp-table-reloaded
|
2393 |
-
msgid "
|
2394 |
-
msgstr "
|
2395 |
|
2396 |
-
#:
|
2397 |
#@ wp-table-reloaded
|
2398 |
-
msgid "
|
2399 |
-
msgstr "
|
2400 |
|
2401 |
-
#:
|
2402 |
#@ wp-table-reloaded
|
2403 |
-
msgid "
|
2404 |
-
msgstr "
|
2405 |
|
2406 |
-
#:
|
2407 |
-
#: classes/import.class.php:36
|
2408 |
#@ wp-table-reloaded
|
2409 |
-
msgid "
|
2410 |
-
msgstr "
|
2411 |
|
2412 |
-
#:
|
2413 |
-
#: classes/import.class.php:37
|
2414 |
#@ wp-table-reloaded
|
2415 |
-
msgid "
|
2416 |
-
msgstr "
|
2417 |
|
2418 |
-
#:
|
2419 |
-
#: classes/import.class.php:38
|
2420 |
#@ wp-table-reloaded
|
2421 |
-
msgid "
|
2422 |
-
msgstr "
|
2423 |
|
2424 |
-
#:
|
2425 |
#@ wp-table-reloaded
|
2426 |
-
msgid "
|
2427 |
-
msgstr "
|
2428 |
|
2429 |
-
#:
|
2430 |
#@ wp-table-reloaded
|
2431 |
-
msgid "
|
2432 |
-
msgstr ",
|
2433 |
|
2434 |
-
#:
|
2435 |
#@ wp-table-reloaded
|
2436 |
-
msgid "
|
2437 |
-
msgstr "
|
2438 |
|
2439 |
-
#:
|
2440 |
#@ wp-table-reloaded
|
2441 |
-
msgid ".
|
2442 |
-
msgstr ".
|
2443 |
|
2444 |
-
#:
|
2445 |
#@ wp-table-reloaded
|
2446 |
-
msgid "
|
2447 |
-
msgstr "
|
2448 |
|
2449 |
-
#:
|
2450 |
#@ wp-table-reloaded
|
2451 |
-
msgid "
|
2452 |
-
msgstr "
|
2453 |
|
2454 |
-
#:
|
2455 |
-
#, php-format
|
2456 |
#@ wp-table-reloaded
|
2457 |
-
msgid "
|
2458 |
-
msgstr "
|
2459 |
|
2460 |
-
#:
|
2461 |
-
#: classes/helper.class.php:109
|
2462 |
#@ wp-table-reloaded
|
2463 |
-
msgid "
|
2464 |
-
msgstr "
|
2465 |
|
2466 |
-
#:
|
2467 |
#@ wp-table-reloaded
|
2468 |
-
msgid "
|
2469 |
-
msgstr "
|
2470 |
|
2471 |
-
#:
|
2472 |
#@ wp-table-reloaded
|
2473 |
-
msgid "
|
2474 |
-
msgstr "
|
2475 |
|
2476 |
-
#:
|
2477 |
-
#: classes/helper.class.php:109
|
2478 |
#@ wp-table-reloaded
|
2479 |
-
msgid "
|
2480 |
-
msgstr "
|
2481 |
|
2482 |
-
#:
|
2483 |
-
#: classes/helper.class.php:109
|
2484 |
#@ wp-table-reloaded
|
2485 |
-
msgid "
|
2486 |
-
msgstr "
|
2487 |
|
2488 |
-
#:
|
2489 |
#@ wp-table-reloaded
|
2490 |
-
msgid "
|
2491 |
-
msgstr "
|
2492 |
|
2493 |
-
#:
|
2494 |
#@ wp-table-reloaded
|
2495 |
-
msgid "
|
2496 |
-
msgstr "
|
2497 |
|
2498 |
-
#:
|
2499 |
#@ wp-table-reloaded
|
2500 |
-
msgid "
|
2501 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
2502 |
|
2503 |
#. translators: plugin header field 'PluginURI'
|
2504 |
#: wp-table-reloaded.php:0
|
@@ -2512,61 +2542,26 @@ msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
|
2512 |
msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
|
2513 |
msgstr "Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden."
|
2514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2515 |
#. translators: plugin header field 'AuthorURI'
|
2516 |
#: wp-table-reloaded.php:0
|
2517 |
#@ wp-table-reloaded
|
2518 |
msgid "http://tobias.baethge.com/"
|
2519 |
msgstr "http://tobias.baethge.com/"
|
2520 |
|
2521 |
-
#: controllers/controller-admin.php:
|
2522 |
-
#@ wp-table-reloaded
|
2523 |
-
msgid "Indonesian"
|
2524 |
-
msgstr "Indonesisch"
|
2525 |
-
|
2526 |
-
#: controllers/controller-admin.php:272
|
2527 |
-
#@ wp-table-reloaded
|
2528 |
-
msgid "Portuguese (Portugal)"
|
2529 |
-
msgstr "Portugiesisch (Portugal)"
|
2530 |
-
|
2531 |
-
#: views/view-edit.php:321
|
2532 |
-
#@ wp-table-reloaded
|
2533 |
-
msgid "Extra CSS Class"
|
2534 |
-
msgstr "Weitere CSS-Klassen"
|
2535 |
-
|
2536 |
-
#: views/view-edit.php:322
|
2537 |
-
#@ wp-table-reloaded
|
2538 |
-
msgid "This is not the place to enter \"Custom CSS\" code!"
|
2539 |
-
msgstr "Dies ist nicht das Feld für "Zusatz-CSS"-Code!"
|
2540 |
-
|
2541 |
-
#: controllers/controller-admin.php:308
|
2542 |
-
#@ wp-table-reloaded
|
2543 |
-
msgid "This version includes several bugfixes and a few enhancements."
|
2544 |
-
msgstr "Dieses Update enthält mehrere Fehlerkorrekturen und kleine Verbesserungen."
|
2545 |
-
|
2546 |
-
#: controllers/controller-admin.php:257
|
2547 |
-
#@ wp-table-reloaded
|
2548 |
-
msgid "Bulgarian"
|
2549 |
-
msgstr "Bulgarisch"
|
2550 |
-
|
2551 |
-
#: controllers/controller-admin.php:264
|
2552 |
-
#@ wp-table-reloaded
|
2553 |
-
msgid "Hebrew"
|
2554 |
-
msgstr "Hebräisch"
|
2555 |
-
|
2556 |
-
#: views/view-edit.php:390
|
2557 |
#@ wp-table-reloaded
|
2558 |
-
msgid "
|
2559 |
-
msgstr "
|
2560 |
-
|
2561 |
-
#. translators: plugin header field 'Author'
|
2562 |
-
#: wp-table-reloaded.php:0
|
2563 |
-
#@ wp-table-reloaded
|
2564 |
-
msgid "Tobias Bäthge"
|
2565 |
-
msgstr ""
|
2566 |
|
2567 |
#. translators: plugin header field 'Version'
|
2568 |
#: wp-table-reloaded.php:0
|
2569 |
#@ wp-table-reloaded
|
2570 |
-
msgid "1.9.
|
2571 |
msgstr ""
|
2572 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WP-Table Reloaded v1.9.4\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
5 |
+
"POT-Creation-Date: 2013-01-27 20:58:28+00:00\n"
|
6 |
+
"PO-Revision-Date: 2013-07-31 20:35:06+0000\n"
|
7 |
+
"Last-Translator: Tobias Bäthge <wordpress@tobias.baethge.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: Poedit 1.5.4\n"
|
14 |
+
"X-Poedit-Language: \n"
|
15 |
"X-Poedit-Country: \n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Textdomain-Support: yes"
|
22 |
|
23 |
+
#: classes/export.class.php:28
|
24 |
+
#: classes/import.class.php:36
|
25 |
#@ wp-table-reloaded
|
26 |
+
msgid "CSV - Character-Separated Values"
|
27 |
+
msgstr "CSV - Character-Separated Values"
|
28 |
|
29 |
+
#: classes/export.class.php:29
|
30 |
+
#: classes/import.class.php:37
|
31 |
#@ wp-table-reloaded
|
32 |
+
msgid "HTML - Hypertext Markup Language"
|
33 |
+
msgstr "HTML - Hypertext Markup Language"
|
34 |
|
35 |
+
#: classes/export.class.php:30
|
36 |
+
#: classes/import.class.php:38
|
37 |
#@ wp-table-reloaded
|
38 |
+
msgid "XML - eXtended Markup Language"
|
39 |
+
msgstr "XML - eXtended Markup Language"
|
40 |
|
41 |
+
#: classes/export.class.php:33
|
|
|
42 |
#@ wp-table-reloaded
|
43 |
+
msgid "; (semicolon)"
|
44 |
+
msgstr "; (Semikolon)"
|
45 |
|
46 |
+
#: classes/export.class.php:34
|
|
|
|
|
|
|
|
|
|
|
47 |
#@ wp-table-reloaded
|
48 |
+
msgid ", (comma)"
|
49 |
+
msgstr ", (Komma)"
|
50 |
|
51 |
+
#: classes/export.class.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
#@ wp-table-reloaded
|
53 |
+
msgid ": (colon)"
|
54 |
+
msgstr ": (Doppelpunkt)"
|
55 |
|
56 |
+
#: classes/export.class.php:36
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
#@ wp-table-reloaded
|
58 |
+
msgid ". (dot)"
|
59 |
+
msgstr ". (Punkt)"
|
60 |
|
61 |
+
#: classes/export.class.php:37
|
|
|
|
|
|
|
|
|
62 |
#@ wp-table-reloaded
|
63 |
+
msgid "| (pipe)"
|
64 |
+
msgstr "| (Strich)"
|
65 |
|
66 |
+
#: classes/helper.class.php:40
|
67 |
+
#: views/view-about.php:21
|
68 |
+
#, php-format
|
|
|
69 |
#@ wp-table-reloaded
|
70 |
+
msgid "More information about WP-Table Reloaded can be found on the <a href=\"%s\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress Plugin Directory</a>."
|
71 |
+
msgstr "Weitere Informationen über WP-Table Reloaded findest du auf der <a href=\"%s\">Plugin-Webseite</a> oder auf der zugehörigen Seite im <a href=\"%s\">WordPress Plugin-Verzeichnis</a>."
|
72 |
|
73 |
+
#: classes/helper.class.php:41
|
74 |
+
#: views/view-about.php:21
|
75 |
+
#, php-format
|
76 |
#@ wp-table-reloaded
|
77 |
+
msgid "For technical information, see the <a href=\"%s\">documentation</a>."
|
78 |
+
msgstr "Technische Informationen befinden sich in der <a href=\"%s\">Dokumentation</a>."
|
79 |
|
80 |
+
#: classes/helper.class.php:42
|
81 |
+
#: views/view-about.php:28
|
|
|
|
|
82 |
#, php-format
|
83 |
#@ wp-table-reloaded
|
84 |
+
msgid "<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress Support Forums</a>."
|
85 |
+
msgstr "<a href=\"%s\">Unterstützung</a> bekommst du im <a href=\"%s\">WordPress Support-Forum</a>."
|
86 |
|
87 |
+
#: classes/helper.class.php:43
|
88 |
+
#: views/view-about.php:28
|
89 |
+
#, php-format
|
90 |
#@ wp-table-reloaded
|
91 |
+
msgid "Before asking for support, please carefully read the <a href=\"%s\">Frequently Asked Questions</a> where you will find answered to the most common questions, and search through the forums."
|
92 |
+
msgstr "Bevor du um Hilfe bittest, lies bitte die <a href=\"%s\">Häufig gestellten Fragen (FAQ)</a> gründlich, in denen du Antworten auf die gängigsten Fragen findest, und nutze die Suche des Forums."
|
93 |
|
94 |
+
#: classes/helper.class.php:44
|
95 |
+
#: views/view-about.php:35
|
96 |
#, php-format
|
97 |
#@ wp-table-reloaded
|
98 |
+
msgid "If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is recommended."
|
99 |
+
msgstr "Wenn dir das Plugin gefällt, wird eine <strong><a href=\"%s\">Spende</a></strong> empfohlen."
|
100 |
|
101 |
+
#: classes/helper.class.php:74
|
|
|
102 |
#@ wp-table-reloaded
|
103 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
104 |
+
msgstr "Vielen Dank, dass du <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a> nutzt."
|
105 |
|
106 |
+
#: classes/helper.class.php:74
|
107 |
+
#, php-format
|
|
|
108 |
#@ wp-table-reloaded
|
109 |
+
msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
|
110 |
+
msgstr "Unterstütze das Plugin mit deiner <a href=\"%s\">Spende</a>!"
|
111 |
|
112 |
+
#: classes/helper.class.php:104
|
113 |
+
#: classes/helper.class.php:109
|
114 |
#@ wp-table-reloaded
|
115 |
+
msgid "Table cells can span across more than one column or row."
|
116 |
+
msgstr "Tabellenzellen können mehr als eine Spalte oder Zeile umfassen."
|
117 |
|
118 |
+
#: classes/helper.class.php:104
|
119 |
#@ wp-table-reloaded
|
120 |
+
msgid "Combining consecutive cells within the same row is called \"colspanning\"."
|
121 |
+
msgstr "Das Kombinieren aufeinanderfolgender Zellen in derselben Zeile wird als "colspanning" bezeichnet."
|
122 |
|
123 |
+
#: classes/helper.class.php:104
|
|
|
124 |
#@ wp-table-reloaded
|
125 |
+
msgid "To combine cells, add the keyword #colspan# to the cell to the right of the one with the content for the combined cell by using the corresponding button."
|
126 |
+
msgstr "Um Zellen zu verbinden, füge das Schlüsselwort #colspan# in die Zelle rechts der Zelle mit dem Inhalt für die kombinierte Zelle ein, indem du die entsprechende Schaltfläche nutzt."
|
127 |
|
128 |
+
#: classes/helper.class.php:104
|
129 |
+
#: classes/helper.class.php:109
|
130 |
#@ wp-table-reloaded
|
131 |
+
msgid "Repeat this to add the keyword to all cells that shall be connected."
|
132 |
+
msgstr "Wiederhole dies, um das Schlüsselwort allen Zellen, die verbunden werden sollen, hinzuzufügen."
|
133 |
|
134 |
+
#: classes/helper.class.php:104
|
135 |
+
#: classes/helper.class.php:109
|
|
|
136 |
#@ wp-table-reloaded
|
137 |
+
msgid "Be aware that the JavaScript libraries will not work on tables which have combined cells."
|
138 |
+
msgstr "Beachte, dass die JavaScript-Bibliotheken nicht mit Tabellen funktionieren, die verbundene Zellen beinhalten."
|
139 |
|
140 |
+
#: classes/helper.class.php:109
|
141 |
#@ wp-table-reloaded
|
142 |
+
msgid "Combining consecutive cells within the same column is called \"rowspanning\"."
|
143 |
+
msgstr "Das Kombinieren aufeinanderfolgender Zellen in derselben Spaltee wird als "rowspanning" bezeichnet."
|
144 |
|
145 |
+
#: classes/helper.class.php:109
|
146 |
#@ wp-table-reloaded
|
147 |
+
msgid "To combine cells, add the keyword #rowspan# to the cell below the one with the content for the combined cell by using the corresponding button."
|
148 |
+
msgstr "Um Zellen zu verbinden, füge das Schlüsselwort #rowspan# in die Zelle unter der Zelle mit dem Inhalt für die kombinierte Zelle ein, indem du die entsprechende Schaltfläche nutzt."
|
149 |
|
150 |
+
#: classes/helper.class.php:118
|
151 |
#@ wp-table-reloaded
|
152 |
+
msgid "Help"
|
153 |
+
msgstr "Hilfe"
|
154 |
|
155 |
+
#: classes/render.class.php:142
|
156 |
+
#: views/view-list.php:60
|
157 |
+
#@ default
|
158 |
#@ wp-table-reloaded
|
159 |
+
msgid "Edit"
|
160 |
+
msgstr "Bearbeiten"
|
161 |
|
162 |
+
#: controllers/controller-admin.php:252
|
|
|
163 |
#@ wp-table-reloaded
|
164 |
+
msgid "Belarusian"
|
165 |
+
msgstr "Weißrussisch"
|
166 |
|
167 |
+
#: controllers/controller-admin.php:253
|
168 |
#@ wp-table-reloaded
|
169 |
+
msgid "Bulgarian"
|
170 |
+
msgstr "Bulgarisch"
|
171 |
|
172 |
+
#: controllers/controller-admin.php:254
|
|
|
173 |
#@ wp-table-reloaded
|
174 |
+
msgid "Czech"
|
175 |
+
msgstr "Tschechisch"
|
176 |
|
177 |
+
#: controllers/controller-admin.php:255
|
178 |
#@ wp-table-reloaded
|
179 |
+
msgid "German"
|
180 |
+
msgstr "Deutsch"
|
181 |
|
182 |
+
#: controllers/controller-admin.php:256
|
183 |
#@ wp-table-reloaded
|
184 |
+
msgid "English"
|
185 |
+
msgstr "Englisch"
|
186 |
|
187 |
+
#: controllers/controller-admin.php:257
|
|
|
|
|
188 |
#@ wp-table-reloaded
|
189 |
+
msgid "Spanish"
|
190 |
+
msgstr "Spanisch"
|
191 |
|
192 |
+
#: controllers/controller-admin.php:258
|
193 |
#@ wp-table-reloaded
|
194 |
+
msgid "Finnish"
|
195 |
+
msgstr "Finnisch"
|
196 |
|
197 |
+
#: controllers/controller-admin.php:259
|
198 |
#@ wp-table-reloaded
|
199 |
+
msgid "French"
|
200 |
+
msgstr "Französisch"
|
201 |
|
202 |
+
#: controllers/controller-admin.php:260
|
203 |
#@ wp-table-reloaded
|
204 |
+
msgid "Hebrew"
|
205 |
+
msgstr "Hebräisch"
|
206 |
|
207 |
+
#: controllers/controller-admin.php:261
|
208 |
#@ wp-table-reloaded
|
209 |
+
msgid "Hindi"
|
210 |
+
msgstr "Hindi"
|
211 |
|
212 |
+
#: controllers/controller-admin.php:262
|
213 |
#@ wp-table-reloaded
|
214 |
+
msgid "Croatian"
|
215 |
+
msgstr "Kroatisch"
|
216 |
|
217 |
+
#: controllers/controller-admin.php:263
|
218 |
#@ wp-table-reloaded
|
219 |
+
msgid "Indonesian"
|
220 |
+
msgstr "Indonesisch"
|
221 |
|
222 |
+
#: controllers/controller-admin.php:264
|
223 |
#@ wp-table-reloaded
|
224 |
+
msgid "Italian"
|
225 |
+
msgstr "Italienisch"
|
226 |
|
227 |
+
#: controllers/controller-admin.php:265
|
228 |
#@ wp-table-reloaded
|
229 |
+
msgid "Japanese"
|
230 |
+
msgstr "Japanisch"
|
231 |
|
232 |
+
#: controllers/controller-admin.php:266
|
233 |
#@ wp-table-reloaded
|
234 |
+
msgid "Dutch"
|
235 |
+
msgstr "Niederländisch"
|
236 |
|
237 |
+
#: controllers/controller-admin.php:267
|
238 |
#@ wp-table-reloaded
|
239 |
+
msgid "Polish"
|
240 |
+
msgstr "Polnisch"
|
241 |
|
242 |
+
#: controllers/controller-admin.php:268
|
243 |
#@ wp-table-reloaded
|
244 |
+
msgid "Brazilian Portuguese"
|
245 |
+
msgstr "Brasilianisches Portugiesisch"
|
246 |
|
247 |
+
#: controllers/controller-admin.php:269
|
248 |
#@ wp-table-reloaded
|
249 |
+
msgid "Portuguese (Portugal)"
|
250 |
+
msgstr "Portugiesisch (Portugal)"
|
251 |
|
252 |
+
#: controllers/controller-admin.php:270
|
253 |
#@ wp-table-reloaded
|
254 |
+
msgid "Russian"
|
255 |
+
msgstr "Russisch"
|
256 |
|
257 |
+
#: controllers/controller-admin.php:271
|
258 |
#@ wp-table-reloaded
|
259 |
+
msgid "Slovak"
|
260 |
+
msgstr "Slowakisch"
|
261 |
|
262 |
+
#: controllers/controller-admin.php:272
|
263 |
#@ wp-table-reloaded
|
264 |
+
msgid "Swedish"
|
265 |
+
msgstr "Schwedisch"
|
266 |
|
267 |
+
#: controllers/controller-admin.php:273
|
268 |
#@ wp-table-reloaded
|
269 |
+
msgid "Ukrainian"
|
270 |
+
msgstr "Ukrainisch"
|
271 |
|
272 |
+
#: controllers/controller-admin.php:274
|
273 |
#@ wp-table-reloaded
|
274 |
+
msgid "Chinese (Simplified)"
|
275 |
+
msgstr "Chinesisch (vereinfacht)"
|
276 |
|
277 |
+
#: controllers/controller-admin.php:304
|
278 |
+
#, php-format
|
279 |
#@ wp-table-reloaded
|
280 |
+
msgid "Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s\">documentation</a>, and the <a href=\"%s\">support</a> section."
|
281 |
+
msgstr "Willkommen bei WP-Table Reloaded %s. Wenn du irgendwelche Fragen oder Probleme hast, lies bitte die <a href=\"%s\">FAQ,</a> die <a href=\"%s\">Dokumentation</a> und den Abschnitt <a href=\"%s\">Hilfe und Unterstützung</a>."
|
282 |
|
283 |
+
#: controllers/controller-admin.php:305
|
284 |
+
#, php-format
|
285 |
#@ wp-table-reloaded
|
286 |
+
msgid "Thank you for upgrading to WP-Table Reloaded %s."
|
287 |
+
msgstr "Danke, dass du auf WP-Table Reloaded %s aktualisiert hast."
|
288 |
|
289 |
+
#: controllers/controller-admin.php:305
|
290 |
#@ wp-table-reloaded
|
291 |
+
msgid "This version includes several bugfixes and a few enhancements."
|
292 |
+
msgstr "Dieses Update enthält mehrere Fehlerkorrekturen und kleine Verbesserungen."
|
293 |
|
294 |
+
#: controllers/controller-admin.php:305
|
295 |
+
#, php-format
|
296 |
#@ wp-table-reloaded
|
297 |
+
msgid "Please read the <a href=\"%s\">release announcement</a> for more information."
|
298 |
+
msgstr "Bitte lies die <a href=\"%s\">Release-Ankündigung</a> für weitere Informationen."
|
299 |
|
300 |
+
#: controllers/controller-admin.php:305
|
301 |
+
#, php-format
|
302 |
#@ wp-table-reloaded
|
303 |
+
msgid "If you like the new features and enhancements, I would appreciate a small <a href=\"%s\">donation</a>. Thank you."
|
304 |
+
msgstr "Wenn dir die neuen Funktionen und Verbesserungen gefallen, freue ich mich über eine kleine <a href=\"%s\">Spende</a>. Dankeschön."
|
305 |
|
306 |
+
#: controllers/controller-admin.php:310
|
307 |
#@ wp-table-reloaded
|
308 |
+
msgid "Hide this message"
|
309 |
+
msgstr "Meldung ausblenden"
|
310 |
|
311 |
+
#: controllers/controller-admin.php:318
|
312 |
#@ wp-table-reloaded
|
313 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago."
|
314 |
+
msgstr "Vielen Dank, dass du dieses Plugin nutzt! Du hast WP-Table Reloaded vor mehr als einem Monat installiert."
|
315 |
|
316 |
+
#: controllers/controller-admin.php:318
|
317 |
+
#, php-format
|
318 |
#@ wp-table-reloaded
|
319 |
+
msgid "If it works and you are satisfied with the results of managing your %s table, isn't it worth at least one dollar or euro?"
|
320 |
+
msgid_plural "If it works and you are satisfied with the results of managing your %s tables, isn't it worth at least one dollar or euro?"
|
321 |
+
msgstr[0] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabelle zufrieden bist, ist dir das nicht einen Euro wert?"
|
322 |
+
msgstr[1] "Wenn das Plugin funktioniert, und du mit den Ergebnissen der Verwaltung deiner %s Tabellen zufrieden bist, ist dir das nicht einen Euro wert?"
|
323 |
|
324 |
+
#: controllers/controller-admin.php:319
|
325 |
+
#, php-format
|
326 |
#@ wp-table-reloaded
|
327 |
+
msgid "<a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software - things for which I spend countless hours of my free time! Thank you!"
|
328 |
+
msgstr "<a href=\"%s\">Spenden</a> helfen mir, Hilfe und Unterstützung bei der Nutzung zu bieten und die Entwicklung dieser <i>freien</i> Software fortzuführen - Dinge, für die ich unzählige Stunden meiner Freizeit aufbringe! Danke!"
|
329 |
|
330 |
+
#: controllers/controller-admin.php:320
|
331 |
#@ wp-table-reloaded
|
332 |
+
msgid "Sure, no problem!"
|
333 |
+
msgstr "Na klar, kein Problem!"
|
334 |
|
335 |
+
#: controllers/controller-admin.php:321
|
336 |
#@ wp-table-reloaded
|
337 |
+
msgid "I already donated."
|
338 |
+
msgstr "Ich habe schon gespendet."
|
339 |
|
340 |
+
#: controllers/controller-admin.php:322
|
341 |
#@ wp-table-reloaded
|
342 |
+
msgid "No, thanks. Don't ask again."
|
343 |
+
msgstr "Nein, Danke. Frag nicht nochmal."
|
344 |
|
345 |
+
#: controllers/controller-admin.php:350
|
346 |
+
#, php-format
|
347 |
#@ wp-table-reloaded
|
348 |
+
msgid "Table "%s" added successfully."
|
349 |
+
msgstr "Tabelle "%s" erfolgreich hinzugefügt."
|
350 |
|
351 |
+
#: controllers/controller-admin.php:381
|
352 |
+
#, php-format
|
353 |
#@ wp-table-reloaded
|
354 |
+
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
355 |
+
msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
|
356 |
|
357 |
+
#: controllers/controller-admin.php:383
|
358 |
+
#, php-format
|
359 |
#@ wp-table-reloaded
|
360 |
+
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
361 |
+
msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
|
362 |
|
363 |
+
#: controllers/controller-admin.php:386
|
364 |
#@ wp-table-reloaded
|
365 |
+
msgid "Table edited successfully."
|
366 |
+
msgstr "Tabelle erfolgreich bearbeitet."
|
367 |
|
368 |
+
#: controllers/controller-admin.php:434
|
369 |
#@ wp-table-reloaded
|
370 |
+
msgid "Rows swapped successfully."
|
371 |
+
msgstr "Zeilen erfolgreich getauscht."
|
372 |
|
373 |
+
#: controllers/controller-admin.php:455
|
|
|
374 |
#@ wp-table-reloaded
|
375 |
+
msgid "Columns swapped successfully."
|
376 |
+
msgstr "Spalten erfolgreich getauscht."
|
377 |
|
378 |
+
#: controllers/controller-admin.php:496
|
|
|
|
|
|
|
379 |
#@ wp-table-reloaded
|
380 |
+
msgid "Table sorted successfully."
|
381 |
+
msgstr "Tabelle erfolgreich sortiert."
|
382 |
|
383 |
+
#: controllers/controller-admin.php:519
|
384 |
#@ wp-table-reloaded
|
385 |
+
msgid "Row moved successfully."
|
386 |
+
msgstr "Zeile erfolgreich verschoben."
|
387 |
|
388 |
+
#: controllers/controller-admin.php:546
|
389 |
#@ wp-table-reloaded
|
390 |
+
msgid "Column moved successfully."
|
391 |
+
msgstr "Spalte erfolgreich verschoben."
|
392 |
|
393 |
+
#: controllers/controller-admin.php:554
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
#@ wp-table-reloaded
|
395 |
+
msgid "Row could not be deleted."
|
396 |
+
msgid_plural "Rows could not be deleted."
|
397 |
+
msgstr[0] "Zeile konnte nicht gelöscht werden."
|
398 |
+
msgstr[1] "Zeilen konnten nicht gelöscht werden."
|
399 |
|
400 |
+
#: controllers/controller-admin.php:563
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
#@ wp-table-reloaded
|
402 |
+
msgid "Row deleted successfully."
|
403 |
+
msgid_plural "Rows deleted successfully."
|
404 |
+
msgstr[0] "Zeile erfolgreich gelöscht."
|
405 |
+
msgstr[1] "Zeilen erfolgreich gelöscht."
|
406 |
|
407 |
+
#: controllers/controller-admin.php:573
|
408 |
#@ wp-table-reloaded
|
409 |
+
msgid "Column could not be deleted."
|
410 |
+
msgid_plural "Columns could not be deleted."
|
411 |
+
msgstr[0] "Spalte konnte nicht gelöscht werden."
|
412 |
+
msgstr[1] "Spalten konnten nicht gelöscht werden."
|
413 |
|
414 |
+
#: controllers/controller-admin.php:586
|
415 |
#@ wp-table-reloaded
|
416 |
+
msgid "Column deleted successfully."
|
417 |
+
msgid_plural "Columns deleted successfully."
|
418 |
+
msgstr[0] "Spalte erfolgreich gelöscht."
|
419 |
+
msgstr[1] "Spalten erfolgreich gelöscht."
|
420 |
+
|
421 |
+
#: controllers/controller-admin.php:609
|
422 |
+
#@ wp-table-reloaded
|
423 |
+
msgid "Row inserted successfully."
|
424 |
+
msgid_plural "Rows inserted successfully."
|
425 |
+
msgstr[0] "Zeile erfolgreich eingefügt."
|
426 |
+
msgstr[1] "Zeilen erfolgreich eingefügt."
|
427 |
+
|
428 |
+
#: controllers/controller-admin.php:636
|
429 |
+
#@ wp-table-reloaded
|
430 |
+
msgid "Column inserted successfully."
|
431 |
+
msgid_plural "Columns inserted successfully."
|
432 |
+
msgstr[0] "Spalte erfolgreich eingefügt."
|
433 |
+
msgstr[1] "Spalten erfolgreich eingefügt."
|
434 |
|
435 |
+
#: controllers/controller-admin.php:651
|
436 |
#@ wp-table-reloaded
|
437 |
+
msgid "Row added successfully."
|
438 |
+
msgid_plural "Rows added successfully."
|
439 |
+
msgstr[0] "Zeile erfolgreich angefügt."
|
440 |
+
msgstr[1] "Zeilen erfolgreich angefügt."
|
441 |
|
442 |
+
#: controllers/controller-admin.php:665
|
443 |
#@ wp-table-reloaded
|
444 |
+
msgid "Column added successfully."
|
445 |
+
msgid_plural "Columns added successfully."
|
446 |
+
msgstr[0] "Spalte erfolgreich angefügt."
|
447 |
+
msgstr[1] "Spalten erfolgreich angefügt."
|
448 |
|
449 |
+
#: controllers/controller-admin.php:672
|
|
|
450 |
#@ wp-table-reloaded
|
451 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
452 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil kein Name eingegeben wurde."
|
453 |
|
454 |
+
#: controllers/controller-admin.php:677
|
|
|
455 |
#@ wp-table-reloaded
|
456 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
457 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der eingegebene Name bereits reserviert ist."
|
458 |
|
459 |
+
#: controllers/controller-admin.php:683
|
460 |
#@ wp-table-reloaded
|
461 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
462 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der Name verbotene Zeichen enthält."
|
463 |
|
464 |
+
#: controllers/controller-admin.php:687
|
465 |
#@ wp-table-reloaded
|
466 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
467 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil ein Feld mit diesem Namen bereits existiert."
|
468 |
|
469 |
+
#: controllers/controller-admin.php:693
|
470 |
#@ wp-table-reloaded
|
471 |
+
msgid "Custom Data Field added successfully."
|
472 |
+
msgstr "Benutzerdefiniertes Datenfeld erfolgreich hinzugefügt."
|
473 |
|
474 |
+
#: controllers/controller-admin.php:733
|
475 |
+
#: controllers/controller-admin.php:789
|
476 |
#@ wp-table-reloaded
|
477 |
+
msgid "Copy of"
|
478 |
+
msgstr "Kopie von"
|
479 |
|
480 |
+
#: controllers/controller-admin.php:737
|
481 |
#@ wp-table-reloaded
|
482 |
+
msgid "Table copied successfully."
|
483 |
+
msgid_plural "Tables copied successfully."
|
484 |
+
msgstr[0] "Tabelle erfolgreich kopiert."
|
485 |
+
msgstr[1] "Tabellen erfolgreich kopiert."
|
486 |
|
487 |
+
#: controllers/controller-admin.php:743
|
|
|
488 |
#@ wp-table-reloaded
|
489 |
+
msgid "Table deleted successfully."
|
490 |
+
msgid_plural "Tables deleted successfully."
|
491 |
+
msgstr[0] "Tabelle erfolgreich gelöscht."
|
492 |
+
msgstr[1] "Tabellen erfolgreich gelöscht."
|
493 |
|
494 |
+
#: controllers/controller-admin.php:764
|
495 |
+
#: controllers/controller-admin.php:919
|
496 |
+
#: controllers/controller-admin.php:957
|
497 |
#@ wp-table-reloaded
|
498 |
+
msgid "Table imported successfully."
|
499 |
+
msgid_plural "Tables imported successfully."
|
500 |
+
msgstr[0] "Tabelle erfolgreich importiert."
|
501 |
+
msgstr[1] "Tabellen erfolgreich importiert."
|
502 |
|
503 |
+
#: controllers/controller-admin.php:771
|
504 |
#@ wp-table-reloaded
|
505 |
+
msgid "You did not select any tables!"
|
506 |
+
msgstr "Du hast keine Tabellen ausgewählt."
|
507 |
|
508 |
+
#: controllers/controller-admin.php:794
|
509 |
#, php-format
|
510 |
#@ wp-table-reloaded
|
511 |
+
msgid "Table "%s" copied successfully."
|
512 |
+
msgstr "Tabelle "%s" erfolgreich kopiert."
|
513 |
|
514 |
+
#: controllers/controller-admin.php:812
|
515 |
+
#, php-format
|
516 |
#@ wp-table-reloaded
|
517 |
+
msgid "Table "%s" deleted successfully."
|
518 |
+
msgstr "Tabelle "%s" erfolgreich gelöscht."
|
519 |
|
520 |
+
#: controllers/controller-admin.php:820
|
|
|
521 |
#@ wp-table-reloaded
|
522 |
+
msgid "Custom Data Field deleted successfully."
|
523 |
+
msgstr "Benutzerdefiniertes Datenfeld erfolgreich gelöscht."
|
524 |
|
525 |
+
#: controllers/controller-admin.php:822
|
|
|
|
|
|
|
|
|
|
|
526 |
#@ wp-table-reloaded
|
527 |
+
msgid "Custom Data Field could not be deleted."
|
528 |
+
msgstr "Benutzerdefiniertes Datenfeld konnte nicht gelöscht werden."
|
529 |
|
530 |
+
#: controllers/controller-admin.php:828
|
531 |
#@ wp-table-reloaded
|
532 |
+
msgid "Delete failed."
|
533 |
+
msgstr "Löschen fehlgeschlagen."
|
534 |
|
535 |
+
#: controllers/controller-admin.php:860
|
536 |
+
#: controllers/controller-admin.php:870
|
537 |
+
#: controllers/controller-admin.php:881
|
538 |
#@ wp-table-reloaded
|
539 |
+
msgid "Imported Table"
|
540 |
+
msgstr "Importierte Tabelle"
|
541 |
|
542 |
+
#: controllers/controller-admin.php:861
|
543 |
+
#: controllers/controller-admin.php:882
|
544 |
#, php-format
|
545 |
#@ wp-table-reloaded
|
546 |
+
msgid "from %s"
|
547 |
+
msgstr "von %s"
|
|
|
|
|
|
|
|
|
|
|
548 |
|
549 |
+
#: controllers/controller-admin.php:871
|
|
|
550 |
#@ wp-table-reloaded
|
551 |
+
msgid "via form"
|
552 |
+
msgstr "via Eingabefeld"
|
553 |
|
554 |
+
#: controllers/controller-admin.php:898
|
555 |
+
#: controllers/controller-admin.php:935
|
556 |
#@ wp-table-reloaded
|
557 |
+
msgid "Table could not be imported."
|
558 |
+
msgstr "Tabelle konnte nicht importiert werden."
|
559 |
|
560 |
+
#: controllers/controller-admin.php:915
|
561 |
#, php-format
|
562 |
#@ wp-table-reloaded
|
563 |
+
msgid "Table %s (%s) replaced successfully."
|
564 |
+
msgstr "Tabelle %s (%s) erfolgreich ersetzt."
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
|
566 |
+
#: controllers/controller-admin.php:965
|
567 |
+
#: controllers/controller-admin.php:1160
|
568 |
#@ wp-table-reloaded
|
569 |
+
msgid "You do not have sufficient rights to perform this action."
|
570 |
+
msgstr "Du verfügst nicht über ausreichende Rechte, um diese Aktion auszuführen."
|
571 |
|
572 |
+
#: controllers/controller-admin.php:972
|
|
|
|
|
573 |
#@ wp-table-reloaded
|
574 |
+
msgid "You did not upload a WP-Table Reloaded dump file."
|
575 |
+
msgstr "Du hast keine WP-Table Reloaded Dump-Datei hochgeladen."
|
576 |
|
577 |
+
#: controllers/controller-admin.php:981
|
578 |
#@ wp-table-reloaded
|
579 |
+
msgid "The uploaded dump file is empty. Please upload a valid dump file."
|
580 |
+
msgstr "Die hochgeladene Dump-Datei ist leer. Bitte lade eine vollständige Datei hoch."
|
581 |
|
582 |
+
#: controllers/controller-admin.php:1009
|
583 |
#@ wp-table-reloaded
|
584 |
+
msgid "All Tables, Settings and Options were successfully imported."
|
585 |
+
msgstr "Alle Tabellen, Einstellungen und Optionen wurden erfolgreich importiert."
|
586 |
|
587 |
+
#: controllers/controller-admin.php:1038
|
588 |
+
#, php-format
|
589 |
#@ wp-table-reloaded
|
590 |
+
msgid "Table "%s" exported successfully."
|
591 |
+
msgstr "Tabelle "%s" erfolgreich exportiert."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
|
593 |
+
#: controllers/controller-admin.php:1083
|
594 |
+
#: views/view-options.php:232
|
595 |
#@ wp-table-reloaded
|
596 |
+
msgid "You do not have sufficient rights to access the Plugin Options."
|
597 |
+
msgstr "Du verfügst nicht über ausreichende Rechte, um die Plugin-Einstellungen zu bearbeiten."
|
598 |
|
599 |
+
#: controllers/controller-admin.php:1141
|
600 |
#@ wp-table-reloaded
|
601 |
+
msgid "Options saved successfully."
|
602 |
+
msgstr "Einstellungen erfolgreich gespeichert."
|
603 |
|
604 |
+
#: controllers/controller-admin.php:1144
|
605 |
+
#, php-format
|
606 |
#@ wp-table-reloaded
|
607 |
+
msgid "<a href=\"%s\">Click here to Proceed.</a>"
|
608 |
+
msgstr "<a href=\"%s\">Klicke hier, um fortzufahren.</a>"
|
609 |
|
610 |
+
#: controllers/controller-admin.php:1210
|
611 |
#@ wp-table-reloaded
|
612 |
+
msgid "There is no table with this ID!"
|
613 |
+
msgstr "Es ist keine Tabelle mit dieser ID vorhanden!"
|
614 |
|
615 |
+
#: controllers/controller-admin.php:1237
|
616 |
#@ wp-table-reloaded
|
617 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
618 |
+
msgstr "Vielen Dank! Deine Spende leistet einen wichtigen Beitrag für die weitere Entwicklung von WP-Table Reloaded!"
|
619 |
|
620 |
+
#: controllers/controller-admin.php:1239
|
621 |
#, php-format
|
622 |
#@ wp-table-reloaded
|
623 |
+
msgid "No problem! I still hope you enjoy the benefits that WP-Table Reloaded brings to you. If you should want to change your mind, you'll always find the "%s" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
624 |
+
msgstr "Kein Problem! Ich hoffe trotzdem, dass dir WP-Table Reloaded mit seinen Funktionen die Arbeit leichter macht. Falls du deine Meinung ändern solltest, findest du den "%s"-Link auch auf der <a href=\"%s\">Plugin-Webseite</a>."
|
625 |
|
626 |
+
#: controllers/controller-admin.php:1239
|
627 |
+
#: controllers/controller-admin.php:1694
|
628 |
#@ wp-table-reloaded
|
629 |
+
msgid "Donate"
|
630 |
+
msgstr "Spenden"
|
631 |
|
632 |
+
#: controllers/controller-admin.php:1266
|
633 |
+
#: controllers/controller-admin.php:1273
|
634 |
#@ wp-table-reloaded
|
635 |
+
msgid "List of Tables"
|
636 |
+
msgstr "Liste der Tabellen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
637 |
|
638 |
+
#. translators: plugin header field 'Name'
|
639 |
+
#: controllers/controller-admin.php:1266
|
640 |
+
#: controllers/controller-admin.php:1270
|
641 |
+
#: controllers/controller-admin.php:1272
|
642 |
+
#: wp-table-reloaded.php:0
|
643 |
+
#@ wp-table-reloaded
|
644 |
+
msgid "WP-Table Reloaded"
|
645 |
+
msgstr "WP-Table Reloaded"
|
646 |
|
647 |
+
#: controllers/controller-admin.php:1267
|
648 |
+
#: controllers/controller-admin.php:1303
|
649 |
+
#@ wp-table-reloaded
|
650 |
+
msgid "Add new Table"
|
651 |
+
msgstr "Neue Tabelle anlegen"
|
652 |
|
653 |
+
#: controllers/controller-admin.php:1268
|
654 |
+
#: controllers/controller-admin.php:1304
|
655 |
#@ wp-table-reloaded
|
656 |
+
msgid "Import a Table"
|
657 |
+
msgstr "Eine Tabelle importieren"
|
658 |
|
659 |
+
#: controllers/controller-admin.php:1269
|
660 |
+
#: controllers/controller-admin.php:1305
|
661 |
#@ wp-table-reloaded
|
662 |
+
msgid "Export a Table"
|
663 |
+
msgstr "Eine Tabelle exportieren"
|
664 |
|
665 |
+
#: controllers/controller-admin.php:1270
|
666 |
+
#: controllers/controller-admin.php:1312
|
667 |
+
#: views/view-edit.php:348
|
668 |
+
#: views/view-edit.php:362
|
669 |
+
#: views/view-export.php:10
|
670 |
#@ wp-table-reloaded
|
671 |
+
msgid "Plugin Options"
|
672 |
+
msgstr "Plugin-Einstellungen"
|
673 |
|
674 |
+
#: controllers/controller-admin.php:1271
|
675 |
#@ wp-table-reloaded
|
676 |
+
msgid "About WP-Table Reloaded"
|
677 |
+
msgstr "Über WP-Table Reloaded"
|
678 |
|
679 |
+
#: controllers/controller-admin.php:1279
|
680 |
+
#, php-format
|
681 |
#@ wp-table-reloaded
|
682 |
+
msgid "Edit Table "%s" (ID %s)"
|
683 |
+
msgstr "Tabelle "%s" (ID %s) bearbeiten"
|
684 |
|
685 |
+
#: controllers/controller-admin.php:1280
|
686 |
+
#, php-format
|
687 |
#@ wp-table-reloaded
|
688 |
+
msgid "Preview of Table "%s" (ID %s)"
|
689 |
+
msgstr "Vorschau der Tabelle "%s" (ID %s)"
|
690 |
|
691 |
+
#: controllers/controller-admin.php:1302
|
692 |
+
#: views/view-options.php:82
|
693 |
#@ wp-table-reloaded
|
694 |
+
msgid "List Tables"
|
695 |
+
msgstr "Liste der Tabellen"
|
696 |
|
697 |
+
#: controllers/controller-admin.php:1313
|
698 |
#@ wp-table-reloaded
|
699 |
+
msgid "About the plugin"
|
700 |
+
msgstr "Über das Plugin"
|
701 |
|
702 |
+
#: controllers/controller-admin.php:1690
|
703 |
#@ wp-table-reloaded
|
704 |
+
msgid "WP-Table Reloaded Plugin Page"
|
705 |
+
msgstr "Plugin-Seite von WP-Table Reloaded"
|
706 |
|
707 |
+
#: controllers/controller-admin.php:1690
|
708 |
#@ wp-table-reloaded
|
709 |
+
msgid "Plugin Page"
|
710 |
+
msgstr "Plugin-Seite"
|
711 |
|
712 |
+
#: controllers/controller-admin.php:1691
|
713 |
#@ wp-table-reloaded
|
714 |
+
msgid "Frequently Asked Questions"
|
715 |
+
msgstr "Häufig gestellte Fragen"
|
716 |
|
717 |
+
#: controllers/controller-admin.php:1691
|
718 |
#@ wp-table-reloaded
|
719 |
+
msgid "FAQ"
|
720 |
+
msgstr "FAQ"
|
721 |
|
722 |
+
#: controllers/controller-admin.php:1692
|
723 |
#@ wp-table-reloaded
|
724 |
+
msgid "Support"
|
725 |
+
msgstr "Unterstützung"
|
726 |
|
727 |
+
#: controllers/controller-admin.php:1693
|
728 |
#@ wp-table-reloaded
|
729 |
+
msgid "Plugin Documentation"
|
730 |
+
msgstr "Plugin-Dokumentation"
|
731 |
|
732 |
+
#: controllers/controller-admin.php:1693
|
|
|
733 |
#@ wp-table-reloaded
|
734 |
+
msgid "Documentation"
|
735 |
+
msgstr "Dokumentation"
|
736 |
|
737 |
+
#: controllers/controller-admin.php:1694
|
738 |
#@ wp-table-reloaded
|
739 |
+
msgid "Support WP-Table Reloaded with your donation!"
|
740 |
+
msgstr "Unterstütze WP-Table Reloaded mit deiner Spende!"
|
741 |
|
742 |
+
#: controllers/controller-admin.php:1733
|
743 |
#@ wp-table-reloaded
|
744 |
+
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
745 |
+
msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
|
746 |
|
747 |
+
#: controllers/controller-admin.php:1734
|
748 |
#@ wp-table-reloaded
|
749 |
+
msgid "URL of link to insert"
|
750 |
+
msgstr "URL des einzufügenden Links"
|
751 |
|
752 |
+
#: controllers/controller-admin.php:1735
|
753 |
#@ wp-table-reloaded
|
754 |
+
msgid "Text of link"
|
755 |
+
msgstr "Text des Links"
|
756 |
|
757 |
+
#: controllers/controller-admin.php:1736
|
758 |
#@ wp-table-reloaded
|
759 |
+
msgid "To insert the following HTML code for a link into a cell, just click the cell after closing this dialog."
|
760 |
+
msgstr "Um den folgenden HTML-Code für einen Link in eine Tabellenzelle einzufügen, klicke einfach nach dem Schließen des Dialoges auf die Zelle."
|
761 |
|
762 |
+
#: controllers/controller-admin.php:1737
|
763 |
#@ wp-table-reloaded
|
764 |
+
msgid "To insert an image, click "OK" and then click into the cell into which you want to insert the image."
|
765 |
+
msgstr "Um ein Bild einzufügen, klicke auf "OK" und klicke dann in die Zelle, in die du das Bild einfügen möchtest."
|
766 |
|
767 |
+
#: controllers/controller-admin.php:1737
|
768 |
#@ wp-table-reloaded
|
769 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
770 |
+
msgstr "Wähle dann das Bild in der sich öffnenden Medien-Bibliothek, lade dort ein neues Bild hoch oder gib die URL des Bildes ein."
|
771 |
|
772 |
+
#: controllers/controller-admin.php:1737
|
773 |
+
#, php-format
|
774 |
#@ wp-table-reloaded
|
775 |
+
msgid "Click the "%s" button to insert the image."
|
776 |
+
msgstr "Klicke auf die "%s"-Schaltfläche, um das Bild einzufügen."
|
777 |
+
|
778 |
+
#: controllers/controller-admin.php:1737
|
779 |
+
#@ default
|
780 |
+
msgid "Insert into Post"
|
781 |
+
msgstr ""
|
782 |
|
783 |
+
#: controllers/controller-admin.php:1738
|
784 |
#@ wp-table-reloaded
|
785 |
+
msgid "To combine cells within a row, click into the cell to the right of the cell that has the content the combined cells shall have."
|
786 |
+
msgstr "Um Zellen innerhalb einer Zeile zu verbinden, klicke in die Zelle rechts von der Zelle mit dem Inhalt für die verbundene Zelle."
|
787 |
|
788 |
+
#: controllers/controller-admin.php:1739
|
789 |
#@ wp-table-reloaded
|
790 |
+
msgid "To combine cells within a column, click into the cell below the cell that has the content the combined cells shall have."
|
791 |
+
msgstr "Um Zellen innerhalb einer Spalte zu verbinden, klicke in die Zelle unterhalb der Zelle mit dem Inhalt für die verbundene Zelle."
|
792 |
|
793 |
+
#: controllers/controller-admin.php:1740
|
794 |
#@ wp-table-reloaded
|
795 |
+
msgid "Do you want to copy the selected tables?"
|
796 |
+
msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
|
797 |
|
798 |
+
#: controllers/controller-admin.php:1741
|
799 |
#@ wp-table-reloaded
|
800 |
+
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
801 |
+
msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
|
802 |
|
803 |
+
#: controllers/controller-admin.php:1742
|
|
|
804 |
#@ wp-table-reloaded
|
805 |
+
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
806 |
+
msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
|
807 |
|
808 |
+
#: controllers/controller-admin.php:1743
|
809 |
#@ wp-table-reloaded
|
810 |
+
msgid "Do you want to copy this table?"
|
811 |
+
msgstr "Möchtest du diese Tabelle kopieren?"
|
812 |
|
813 |
+
#: controllers/controller-admin.php:1744
|
814 |
#@ wp-table-reloaded
|
815 |
+
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
816 |
+
msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
|
817 |
|
818 |
+
#: controllers/controller-admin.php:1745
|
819 |
#@ wp-table-reloaded
|
820 |
+
msgid "Do you really want to delete the selected rows?"
|
821 |
+
msgstr "Möchtest du die ausgewählten Zeilen wirklich löschen?"
|
822 |
|
823 |
+
#: controllers/controller-admin.php:1746
|
824 |
#@ wp-table-reloaded
|
825 |
+
msgid "Do you really want to delete the selected columns?"
|
826 |
+
msgstr "Möchtest du die ausgewählten Spalten wirklich löschen?"
|
827 |
|
828 |
+
#: controllers/controller-admin.php:1747
|
829 |
+
#: controllers/controller-admin.php:1751
|
830 |
+
#: controllers/controller-admin.php:1753
|
831 |
#@ wp-table-reloaded
|
832 |
+
msgid "You have not selected any rows."
|
833 |
+
msgstr "Du hast keine Zeilen ausgewählt."
|
834 |
|
835 |
+
#: controllers/controller-admin.php:1748
|
836 |
+
#: controllers/controller-admin.php:1752
|
837 |
+
#: controllers/controller-admin.php:1754
|
|
|
|
|
838 |
#@ wp-table-reloaded
|
839 |
+
msgid "You have not selected any columns."
|
840 |
+
msgstr "Du hast keine Spalten ausgewählt."
|
841 |
|
842 |
+
#: controllers/controller-admin.php:1749
|
843 |
#@ wp-table-reloaded
|
844 |
+
msgid "You can not delete all rows of the table at once!"
|
845 |
+
msgstr "Du kannst nicht alle Tabellenzeilen auf einmal löschen!"
|
846 |
|
847 |
+
#: controllers/controller-admin.php:1750
|
848 |
#@ wp-table-reloaded
|
849 |
+
msgid "You can not delete all columns of the table at once!"
|
850 |
+
msgstr "Du kannst nicht alle Tabellenspalten auf einmal löschen!"
|
851 |
|
852 |
+
#: controllers/controller-admin.php:1755
|
853 |
#@ wp-table-reloaded
|
854 |
+
msgid "Do you really want to import this table from the wp-Table plugin?"
|
855 |
+
msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
|
856 |
|
857 |
+
#: controllers/controller-admin.php:1756
|
858 |
#@ wp-table-reloaded
|
859 |
+
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
860 |
+
msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
|
861 |
|
862 |
+
#: controllers/controller-admin.php:1757
|
863 |
#@ wp-table-reloaded
|
864 |
+
msgid "Are you really sure?"
|
865 |
+
msgstr "Bist du wirklich sicher?"
|
866 |
|
867 |
+
#: controllers/controller-admin.php:1758
|
868 |
#@ wp-table-reloaded
|
869 |
+
msgid "Do you really want to change the ID of the table?"
|
870 |
+
msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
|
871 |
|
872 |
+
#: controllers/controller-admin.php:1759
|
|
|
873 |
#@ wp-table-reloaded
|
874 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
875 |
+
msgstr "Um dieses Benutzerdefinierte Datenfeld anzuzeigen, nutze diesen Shortcode:"
|
876 |
|
877 |
+
#: controllers/controller-admin.php:1760
|
878 |
#@ wp-table-reloaded
|
879 |
+
msgid "To show this table, use this shortcode:"
|
880 |
+
msgstr "Um diese Tabelle anzuzeigen, nutze diesen Shortcode:"
|
881 |
|
882 |
+
#: controllers/controller-admin.php:1761
|
883 |
#@ wp-table-reloaded
|
884 |
+
msgid "Warning: You will lose all current Tables and Settings! You should create a backup first. Be warned!"
|
885 |
+
msgstr "Warnung: Du verlierst alle aktuellen Tabellen und Einstellungen! Du solltest erst eine Sicherung anlegen. Sei gewarnt!"
|
886 |
|
887 |
+
#: controllers/controller-admin.php:1762
|
888 |
#@ wp-table-reloaded
|
889 |
+
msgid "You have made changes to the content of this table and not yet saved them."
|
890 |
+
msgstr "Du hast Inhalte dieser Tabelle geändert, aber noch nicht gespeichert."
|
891 |
|
892 |
+
#: controllers/controller-admin.php:1762
|
893 |
+
#, php-format
|
894 |
#@ wp-table-reloaded
|
895 |
+
msgid "You should first click "%s" or they will be lost if you navigate away from this page."
|
896 |
+
msgstr "Du solltest zunächst auf "%s" klicken, um keine Daten und Änderungen zu verlieren, wenn du diese Seite verlässt."
|
897 |
|
898 |
+
#: controllers/controller-admin.php:1762
|
899 |
#: views/view-edit.php:41
|
900 |
#: views/view-edit.php:253
|
901 |
+
#: views/view-edit.php:403
|
902 |
+
#: views/view-edit.php:454
|
903 |
#@ wp-table-reloaded
|
904 |
msgid "Update Changes"
|
905 |
msgstr "Änderungen speichern"
|
906 |
|
907 |
+
#: views/view-about.php:14
|
908 |
+
#: views/view-list.php:2
|
|
|
|
|
909 |
#@ wp-table-reloaded
|
910 |
+
msgid "Table"
|
911 |
+
msgstr "Tabelle"
|
912 |
|
913 |
+
#: controllers/controller-admin.php:1811
|
914 |
#@ wp-table-reloaded
|
915 |
+
msgid "Insert a Table"
|
916 |
+
msgstr "Eine Tabelle einfügen"
|
917 |
|
918 |
+
#: controllers/controller-admin.php:1868
|
919 |
#@ wp-table-reloaded
|
920 |
+
msgid "Please wait..."
|
921 |
+
msgstr "Bitte warten..."
|
922 |
|
923 |
+
#: controllers/controller-admin.php:1869
|
924 |
#@ wp-table-reloaded
|
925 |
+
msgid "Show _MENU_ Tables"
|
926 |
+
msgstr "Zeige _MENU_ Tabellen"
|
927 |
|
928 |
+
#: controllers/controller-admin.php:1870
|
929 |
#@ wp-table-reloaded
|
930 |
+
msgid "All"
|
931 |
+
msgstr "Alle"
|
932 |
|
933 |
+
#: controllers/controller-admin.php:1871
|
934 |
+
#: views/view-ajax_list.php:53
|
935 |
+
#: views/view-export.php:72
|
936 |
+
#: views/view-list.php:87
|
937 |
#@ wp-table-reloaded
|
938 |
+
msgid "No tables were found."
|
939 |
+
msgstr "Es wurden keine Tabellen gefunden."
|
940 |
|
941 |
+
#: controllers/controller-admin.php:1872
|
|
|
942 |
#@ wp-table-reloaded
|
943 |
+
msgid "_START_ to _END_ of _TOTAL_ Tables"
|
944 |
+
msgstr "_START_ bis _END_ von _TOTAL_ Tabellen"
|
945 |
|
946 |
+
#: controllers/controller-admin.php:1873
|
947 |
#@ wp-table-reloaded
|
948 |
+
msgid "(filtered from _MAX_ Tables)"
|
949 |
+
msgstr "(gefiltert aus _MAX_ Tabellen)"
|
950 |
|
951 |
+
#: controllers/controller-admin.php:1874
|
|
|
952 |
#@ wp-table-reloaded
|
953 |
+
msgid "Filter:"
|
954 |
+
msgstr "Filtern:"
|
|
|
955 |
|
956 |
+
#: controllers/controller-admin.php:1875
|
|
|
957 |
#@ wp-table-reloaded
|
958 |
+
msgid "First"
|
959 |
+
msgstr "Erste"
|
|
|
960 |
|
961 |
+
#: controllers/controller-admin.php:1876
|
|
|
962 |
#@ wp-table-reloaded
|
963 |
+
msgid "Back"
|
964 |
+
msgstr "zurück"
|
|
|
965 |
|
966 |
+
#: controllers/controller-admin.php:1877
|
|
|
967 |
#@ wp-table-reloaded
|
968 |
+
msgid "Next"
|
969 |
+
msgstr "nächste"
|
|
|
970 |
|
971 |
+
#: controllers/controller-admin.php:1878
|
972 |
#@ wp-table-reloaded
|
973 |
+
msgid "Last"
|
974 |
+
msgstr "Letzte"
|
975 |
|
976 |
+
#: views/view-about.php:5
|
977 |
#@ wp-table-reloaded
|
978 |
+
msgid "Plugin Purpose"
|
979 |
+
msgstr "Zweck des Plugins"
|
980 |
|
981 |
+
#: views/view-about.php:7
|
982 |
#@ wp-table-reloaded
|
983 |
+
msgid "WP-Table Reloaded allows you to create and manage tables in the admin-area of WordPress."
|
984 |
+
msgstr "WP-Table Reloaded ermöglicht das Erstellen und Verwalten von Tabellen im Admin-Bereich von WordPress."
|
985 |
|
986 |
+
#: views/view-about.php:7
|
987 |
#@ wp-table-reloaded
|
988 |
+
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
989 |
+
msgstr "Diese Tabellen können Zeichenketten, Zahlen und sogar HTML (z.B. für Bilder oder Links) enthalten."
|
990 |
|
991 |
+
#: views/view-about.php:7
|
992 |
#@ wp-table-reloaded
|
993 |
+
msgid "You can then show the tables in your posts, on your pages or in text-widgets by using a shortcode."
|
994 |
+
msgstr "Du kannst diese dann durch Einfügen eines Shortcodes auf Seiten, in Artikeln und in Text-Widgets anzeigen."
|
995 |
|
996 |
+
#: views/view-about.php:7
|
|
|
997 |
#@ wp-table-reloaded
|
998 |
+
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
999 |
+
msgstr "Wenn du eine Tabelle an einer anderen Stelle in deinem Theme anzeigen möchtest, kannst du eine Template Tag Function nutzen."
|
|
|
1000 |
|
1001 |
+
#: views/view-about.php:12
|
1002 |
#@ wp-table-reloaded
|
1003 |
+
msgid "Usage"
|
1004 |
+
msgstr "Benutzung"
|
1005 |
|
1006 |
+
#: views/view-about.php:14
|
|
|
1007 |
#@ wp-table-reloaded
|
1008 |
+
msgid "At first you should add or import a table."
|
1009 |
+
msgstr "Am Anfang solltest du eine neue Tabelle anlegen oder importieren."
|
|
|
1010 |
|
1011 |
+
#: views/view-about.php:14
|
|
|
1012 |
#@ wp-table-reloaded
|
1013 |
+
msgid "This means that you either let the plugin create an empty table for you or that you load an existing table from either a CSV, XML or HTML file."
|
1014 |
+
msgstr "Dies bedeutet, dass du entweder das Plugin eine leere Tabelle erzeugen lässt, oder dass du eine Tabelle aus einer CSV-, XML- oder HTML-Datei einliest."
|
1015 |
|
1016 |
+
#: views/view-about.php:14
|
|
|
|
|
1017 |
#@ wp-table-reloaded
|
1018 |
+
msgid "Then you can edit your data or change the structure of your table (e.g. by inserting or deleting rows or columns, swaping rows or columns or sorting them) and select specific table options like alternating row colors or whether to print the name or description, if you want."
|
1019 |
+
msgstr "Dann kannst du die Inhalte bearbeiten oder die Tabellenstruktur ändern (z.B. durch Einfügen oder Löschen von Spalten oder Zeilen, das Tauschen von Spalten oder Zeilen oder durch Sortieren) und spezielle Tabelleneinstellungen, wie alternierende Zeilenhintergründe, das Anzeigen des Tabellennamens oder der Beschreibung, vornehmen, falls du möchtest."
|
1020 |
|
1021 |
+
#: views/view-about.php:14
|
|
|
1022 |
#@ wp-table-reloaded
|
1023 |
+
msgid "To easily add a link or an image to a cell, use the provided buttons. Those will ask you for the URL and a title. Then you can click into a cell and the corresponding HTML will be added to it for you."
|
1024 |
+
msgstr "Um einen Link oder ein Bild in eine Zelle einzufügen, nutze die entsprechenden Schaltflächen. Du wirst dann nach der URL und einem Text gefragt und kannst das entsprechende HTML-Fragment durch Anklicken einer Zelle in diese einfügen."
|
1025 |
|
1026 |
+
#: views/view-about.php:14
|
1027 |
+
#: views/view-ajax_preview.php:5
|
1028 |
+
#: views/view-edit.php:9
|
1029 |
+
#: views/view-list.php:2
|
1030 |
#, php-format
|
1031 |
#@ wp-table-reloaded
|
1032 |
+
msgid "To insert the table into a page, post or text-widget, copy the shortcode <strong>[table id=%s /]</strong> and paste it into the corresponding place in the editor."
|
1033 |
+
msgstr "Um die Tabelle in eine Seite, einen Artikel oder ein Text-Widget einzufügen, kopiere den Shortcode <strong>[table id=%s /]</strong> und füge ihn an der entsprechenden Stelle im Texteditor ein."
|
1034 |
|
1035 |
+
#: views/view-about.php:14
|
1036 |
+
#, php-format
|
1037 |
#@ wp-table-reloaded
|
1038 |
+
msgid "You can also select the desired table from a list (after clicking the button "%s" in the editor toolbar) and the corresponding shortcode will be added for you."
|
1039 |
+
msgstr "Du kannst die gewünschte Tabelle (nach einem Klick auf die Schaltfläche "%s" in der Editor-Symbolleiste) auch aus einer Liste auswählen und den entsprechenden Shortcode automatisch einfügen."
|
1040 |
|
1041 |
+
#: views/view-about.php:14
|
|
|
1042 |
#@ wp-table-reloaded
|
1043 |
+
msgid "Tables can be styled by changing and adding CSS commands."
|
1044 |
+
msgstr "Tabellen können durch Ändern und Hinzufügen von CSS-Anweisungen im Aussehen geändert werden."
|
1045 |
|
1046 |
+
#: views/view-about.php:14
|
|
|
1047 |
#@ wp-table-reloaded
|
1048 |
+
msgid "The plugin ships with default CSS Stylesheets, which can be customized with own code or replaced with other Stylesheets."
|
1049 |
+
msgstr "Das Plugin verfügt über mehrere Standard-CSS-Stylesheets, die mit eigenem Code angepasst oder mit anderen Stylesheets ersetzt werden können."
|
1050 |
|
1051 |
+
#: views/view-about.php:14
|
|
|
1052 |
#@ wp-table-reloaded
|
1053 |
+
msgid "For this, each table is given certain CSS classes that can be used as CSS selectors."
|
1054 |
+
msgstr "Dafür bekommt jede Tabelle bestimmte CSS-Klassen, die als CSS-Selektoren genutzt werden können."
|
1055 |
|
1056 |
+
#: views/view-about.php:14
|
1057 |
#, php-format
|
1058 |
#@ wp-table-reloaded
|
1059 |
+
msgid "Please see the <a href=\"%s\">documentation</a> for a list of these selectors and for styling examples."
|
1060 |
+
msgstr "Bitte beachte dazu die Liste dieser Selektoren und die Styling-Beispiele in der <a href=\"%s\">Dokumentation</a>."
|
1061 |
|
1062 |
+
#: views/view-about.php:19
|
|
|
1063 |
#@ wp-table-reloaded
|
1064 |
+
msgid "More Information and Documentation"
|
1065 |
+
msgstr "Weitere Informationen und Dokumentation"
|
1066 |
|
1067 |
+
#: views/view-about.php:26
|
|
|
1068 |
#@ wp-table-reloaded
|
1069 |
+
msgid "Help and Support"
|
1070 |
+
msgstr "Hilfe und Unterstützung"
|
1071 |
|
1072 |
+
#: views/view-about.php:28
|
1073 |
+
#, php-format
|
1074 |
#@ wp-table-reloaded
|
1075 |
+
msgid "If you do not find an answer there, please <a href=\"%s\">open a new thread</a> in the WordPress Support Forums with the tag "wp-table-reloaded"."
|
1076 |
+
msgstr "Wenn du dort keine Antwort findest, öffne bitte <a href=\"%s\">ein neues Thema</a> im WordPress-Support-Forum mit dem Schlagwort "wp-table-reloaded"."
|
1077 |
|
1078 |
+
#: views/view-about.php:33
|
1079 |
#@ wp-table-reloaded
|
1080 |
+
msgid "Author and License"
|
1081 |
+
msgstr "Autor und Lizenz"
|
1082 |
|
1083 |
+
#: views/view-about.php:35
|
1084 |
+
#, php-format
|
1085 |
#@ wp-table-reloaded
|
1086 |
+
msgid "This plugin was written by <a href=\"%s\">Tobias Bäthge</a>."
|
1087 |
+
msgstr "Das Plugin WP-Table Reloaded wurde von <a href=\"%s\">Tobias Bäthge</a> programmiert."
|
1088 |
|
1089 |
+
#: views/view-about.php:35
|
1090 |
#@ wp-table-reloaded
|
1091 |
+
msgid "It is licensed as Free Software under GPL 2."
|
1092 |
+
msgstr "Es steht als <em>Freie Software</em> unter GPL 2."
|
1093 |
|
1094 |
+
#: views/view-about.php:35
|
1095 |
+
#, php-format
|
1096 |
#@ wp-table-reloaded
|
1097 |
+
msgid "Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
|
1098 |
+
msgstr "Bitte bewerte das Plugin im <a href=\"%s\">WordPress-Plugin-Verzeichnis</a>."
|
1099 |
|
1100 |
+
#: views/view-about.php:35
|
1101 |
#@ wp-table-reloaded
|
1102 |
+
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
1103 |
+
msgstr "Spenden und gute Bewertungen ermutigen mich, das Plugin weiterzuentwickeln and unzählige Stunden Support zu leisten. Ich bin für jeden Betrag dankbar! Vielen Dank!"
|
1104 |
|
1105 |
+
#: views/view-about.php:40
|
1106 |
#@ wp-table-reloaded
|
1107 |
+
msgid "Credits and Thanks"
|
1108 |
+
msgstr "Danksagungen"
|
1109 |
|
1110 |
+
#: views/view-about.php:43
|
1111 |
#@ wp-table-reloaded
|
1112 |
+
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
1113 |
+
msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
|
1114 |
|
1115 |
+
#: views/view-about.php:44
|
1116 |
#@ wp-table-reloaded
|
1117 |
+
msgid "Allan Jardine for the <a href=\"http://www.datatables.net/\">DataTables jQuery plugin</a>,"
|
1118 |
+
msgstr "Allan Jardine für das <a href=\"http://www.datatables.net/\">DataTables jQuery-Plugin,</a>"
|
1119 |
|
1120 |
+
#: views/view-about.php:45
|
1121 |
#@ wp-table-reloaded
|
1122 |
+
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
1123 |
+
msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
|
1124 |
|
1125 |
+
#: views/view-about.php:46
|
|
|
1126 |
#@ wp-table-reloaded
|
1127 |
+
msgid "Soeren Krings for its extension <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
|
1128 |
+
msgstr "Soeren Krings für die Erweiterung <a href=\"http://tablesorter.openwerk.de/\">Tablesorter Extended</a>,"
|
1129 |
|
1130 |
+
#: views/view-about.php:47
|
|
|
1131 |
#@ wp-table-reloaded
|
1132 |
+
msgid "the submitters of translations:"
|
1133 |
+
msgstr "die Übersetzer:"
|
1134 |
|
1135 |
+
#: views/view-about.php:83
|
1136 |
#, php-format
|
1137 |
#@ wp-table-reloaded
|
1138 |
+
msgid "%s (thanks to %s)"
|
1139 |
+
msgstr "%s (danke an %s)"
|
1140 |
|
1141 |
+
#: views/view-about.php:86
|
1142 |
#@ wp-table-reloaded
|
1143 |
+
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
1144 |
+
msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
|
1145 |
|
1146 |
+
#: views/view-about.php:92
|
|
|
1147 |
#@ wp-table-reloaded
|
1148 |
+
msgid "Debug and Version Information"
|
1149 |
+
msgstr "Debug- und Versions-Informationen"
|
1150 |
|
1151 |
+
#: views/view-about.php:92
|
1152 |
+
#: views/view-edit.php:15
|
1153 |
+
#: views/view-edit.php:51
|
1154 |
+
#: views/view-edit.php:104
|
1155 |
+
#: views/view-edit.php:262
|
1156 |
+
#: views/view-edit.php:358
|
1157 |
+
#: views/view-edit.php:412
|
1158 |
+
#: views/view-options.php:19
|
1159 |
+
#: views/view-options.php:69
|
1160 |
+
#: views/view-options.php:90
|
1161 |
+
#: views/view-options.php:184
|
1162 |
+
#: views/view-options.php:195
|
1163 |
#@ wp-table-reloaded
|
1164 |
+
msgctxt "expand"
|
1165 |
+
msgid "Hide"
|
1166 |
+
msgstr "Ausblenden"
|
1167 |
|
1168 |
+
#: views/view-about.php:92
|
1169 |
+
#: views/view-edit.php:15
|
1170 |
+
#: views/view-edit.php:51
|
1171 |
+
#: views/view-edit.php:104
|
1172 |
+
#: views/view-edit.php:262
|
1173 |
+
#: views/view-edit.php:358
|
1174 |
+
#: views/view-edit.php:412
|
1175 |
+
#: views/view-options.php:19
|
1176 |
+
#: views/view-options.php:69
|
1177 |
+
#: views/view-options.php:90
|
1178 |
+
#: views/view-options.php:184
|
1179 |
+
#: views/view-options.php:195
|
1180 |
#@ wp-table-reloaded
|
1181 |
+
msgid "Expand"
|
1182 |
+
msgstr "Erweitern"
|
1183 |
|
1184 |
+
#: views/view-about.php:95
|
1185 |
#@ wp-table-reloaded
|
1186 |
+
msgid "You are using the following versions of the software."
|
1187 |
+
msgstr "Du nutzt die folgenden Software-Versionen."
|
1188 |
|
1189 |
+
#: views/view-about.php:95
|
1190 |
#@ wp-table-reloaded
|
1191 |
+
msgid "Please provide this information in bug reports."
|
1192 |
+
msgstr "Bitte gib diese Informationen in Fehler-Reports stets mit an."
|
1193 |
|
1194 |
+
#: views/view-about.php:98
|
|
|
|
|
1195 |
#@ wp-table-reloaded
|
1196 |
+
msgid "Plugin installed"
|
1197 |
+
msgstr "Plugin installiert"
|
1198 |
|
1199 |
+
#: views/view-add.php:4
|
|
|
1200 |
#@ wp-table-reloaded
|
1201 |
+
msgid "To add a new table, enter its name, a description (optional) and the number of rows and columns."
|
1202 |
+
msgstr "Um eine neue Tabelle anzulegen, gib ihren Namen, eine (optionale) Beschreibung und die Anzahl der Zeilen und Spalten ein."
|
1203 |
|
1204 |
+
#: views/view-add.php:4
|
|
|
1205 |
#@ wp-table-reloaded
|
1206 |
+
msgid "You may also add, insert or delete rows and columns later."
|
1207 |
+
msgstr "Du kannst auch später Zeilen und Spalten hinzufügen, einfügen und löschen."
|
1208 |
|
1209 |
+
#: views/view-add.php:13
|
1210 |
+
#: views/view-ajax_list.php:14
|
1211 |
+
#: views/view-ajax_list.php:22
|
1212 |
+
#: views/view-edit.php:23
|
1213 |
+
#: views/view-edit.php:283
|
1214 |
+
#: views/view-import.php:100
|
1215 |
+
#: views/view-import.php:109
|
1216 |
+
#: views/view-list.php:15
|
1217 |
+
#: views/view-list.php:25
|
1218 |
#@ wp-table-reloaded
|
1219 |
+
msgid "Table Name"
|
1220 |
+
msgstr "Name der Tabelle"
|
1221 |
|
1222 |
+
#: views/view-add.php:14
|
1223 |
#@ wp-table-reloaded
|
1224 |
+
msgid "Enter Table Name"
|
1225 |
+
msgstr "Tabellennamen eingeben"
|
1226 |
|
1227 |
+
#: views/view-add.php:17
|
1228 |
+
#: views/view-ajax_list.php:15
|
1229 |
+
#: views/view-ajax_list.php:23
|
1230 |
+
#: views/view-edit.php:27
|
1231 |
+
#: views/view-import.php:101
|
1232 |
+
#: views/view-import.php:110
|
1233 |
+
#: views/view-list.php:16
|
1234 |
+
#: views/view-list.php:26
|
1235 |
#@ wp-table-reloaded
|
1236 |
+
msgid "Description"
|
1237 |
+
msgstr "Beschreibung"
|
1238 |
|
1239 |
+
#: views/view-add.php:18
|
1240 |
#@ wp-table-reloaded
|
1241 |
+
msgid "Enter Description"
|
1242 |
+
msgstr "Beschreibung eingeben"
|
1243 |
|
1244 |
+
#: views/view-add.php:21
|
|
|
1245 |
#@ wp-table-reloaded
|
1246 |
+
msgid "Number of Rows"
|
1247 |
+
msgstr "Anzahl Zeilen"
|
1248 |
|
1249 |
+
#: views/view-add.php:25
|
1250 |
#@ wp-table-reloaded
|
1251 |
+
msgid "Number of Columns"
|
1252 |
+
msgstr "Anzahl Spalten"
|
1253 |
|
1254 |
+
#: views/view-add.php:32
|
1255 |
#@ wp-table-reloaded
|
1256 |
+
msgid "Add Table"
|
1257 |
+
msgstr "Tabelle anlegen"
|
1258 |
|
1259 |
+
#: views/view-ajax_list.php:3
|
1260 |
+
#: views/view-list.php:2
|
1261 |
#@ wp-table-reloaded
|
1262 |
+
msgid "This is a list of all available tables."
|
1263 |
+
msgstr "Dies ist eine Liste aller verfügbaren Tabellen."
|
1264 |
|
1265 |
+
#: views/view-ajax_list.php:3
|
1266 |
#@ wp-table-reloaded
|
1267 |
+
msgid "You may insert a table into a post or page here."
|
1268 |
+
msgstr "Hier kannst du eine Tabelle in einen Beitrag oder eine Seite einfügen."
|
1269 |
|
1270 |
+
#: views/view-ajax_list.php:4
|
1271 |
+
#, php-format
|
1272 |
#@ wp-table-reloaded
|
1273 |
+
msgid "Click the "%s" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<ID> /]</strong>)."
|
1274 |
+
msgstr "Klicke auf den "%s"-Link hinter der gewünschten Tabelle und der entsprechende Shortcode wird in den Editor eingefügt (<strong>[table id=<ID> /]</strong>)."
|
1275 |
|
1276 |
+
#: views/view-ajax_list.php:4
|
1277 |
+
#: views/view-ajax_list.php:44
|
1278 |
#@ wp-table-reloaded
|
1279 |
+
msgid "Insert"
|
1280 |
+
msgstr "Einfügen"
|
1281 |
|
1282 |
+
#: views/view-ajax_list.php:13
|
1283 |
+
#: views/view-ajax_list.php:21
|
1284 |
+
#: views/view-import.php:99
|
1285 |
+
#: views/view-import.php:108
|
1286 |
+
#: views/view-list.php:13
|
1287 |
+
#: views/view-list.php:23
|
1288 |
#@ wp-table-reloaded
|
1289 |
+
msgid "ID"
|
1290 |
+
msgstr "ID"
|
1291 |
|
1292 |
+
#: views/view-ajax_list.php:16
|
1293 |
+
#: views/view-ajax_list.php:24
|
1294 |
+
#: views/view-edit.php:424
|
1295 |
+
#: views/view-import.php:102
|
1296 |
+
#: views/view-import.php:111
|
1297 |
#@ wp-table-reloaded
|
1298 |
+
msgid "Action"
|
1299 |
+
msgstr "Aktion"
|
1300 |
|
1301 |
+
#: views/view-ajax_preview.php:3
|
1302 |
#@ wp-table-reloaded
|
1303 |
+
msgid "This is a preview of your table."
|
1304 |
+
msgstr "Dies ist eine Vorschau deiner Tabelle."
|
1305 |
|
1306 |
+
#: views/view-ajax_preview.php:4
|
1307 |
#@ wp-table-reloaded
|
1308 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
1309 |
+
msgstr "Aufgrund von CSS-Styling-Anweisungen kann das Aussehen der Tabelle abweichen!"
|
1310 |
|
1311 |
+
#: views/view-ajax_preview.php:4
|
1312 |
#@ wp-table-reloaded
|
1313 |
+
msgid "The JavaScript libraries are also not available in this preview."
|
1314 |
+
msgstr "Auch die JavaScript-Bibliotheken sind in dieser Vorschau nicht verfügbar."
|
1315 |
|
1316 |
+
#: views/view-edit.php:8
|
1317 |
#@ wp-table-reloaded
|
1318 |
+
msgid "On this page, you can edit the content of the table."
|
1319 |
+
msgstr "Auf dieser Seite kannst du den Inhalt der Tabelle bearbeiten."
|
1320 |
|
1321 |
+
#: views/view-edit.php:8
|
1322 |
#@ wp-table-reloaded
|
1323 |
+
msgid "It is also possible to change the table structure by inserting, deleting, moving, and swapping columns and rows."
|
1324 |
+
msgstr "Es ist auch möglich, die Tabellenstruktur zu ändern, indem du Zeilen oder Spalten einfügst, löschst, verschieben oder tauschst."
|
1325 |
|
1326 |
+
#: views/view-edit.php:15
|
1327 |
#@ wp-table-reloaded
|
1328 |
+
msgid "Table Information"
|
1329 |
+
msgstr "Informationen über die Tabelle"
|
1330 |
|
1331 |
+
#: views/view-edit.php:19
|
1332 |
#@ wp-table-reloaded
|
1333 |
+
msgid "Table ID"
|
1334 |
+
msgstr "Tabellen-ID"
|
1335 |
|
1336 |
+
#: views/view-edit.php:32
|
1337 |
+
#: views/view-list.php:17
|
1338 |
+
#: views/view-list.php:27
|
1339 |
#@ wp-table-reloaded
|
1340 |
+
msgid "Last Modified"
|
1341 |
+
msgstr "Letzte Änderung"
|
1342 |
|
1343 |
+
#: views/view-edit.php:33
|
1344 |
+
#: views/view-list.php:44
|
1345 |
#@ wp-table-reloaded
|
1346 |
+
msgid "by"
|
1347 |
+
msgstr "von"
|
1348 |
|
1349 |
+
#: views/view-edit.php:42
|
1350 |
+
#: views/view-edit.php:254
|
1351 |
+
#: views/view-edit.php:404
|
1352 |
+
#: views/view-edit.php:455
|
1353 |
#@ wp-table-reloaded
|
1354 |
+
msgid "Save and go back"
|
1355 |
+
msgstr "Speichern und zurück"
|
1356 |
|
1357 |
+
#: views/view-edit.php:45
|
1358 |
+
#: views/view-edit.php:257
|
1359 |
+
#: views/view-edit.php:407
|
1360 |
+
#: views/view-edit.php:458
|
1361 |
+
#: views/view-options.php:64
|
1362 |
+
#: views/view-options.php:171
|
1363 |
#@ wp-table-reloaded
|
1364 |
+
msgid "Cancel"
|
1365 |
+
msgstr "Abbrechen"
|
1366 |
|
1367 |
+
#: views/view-edit.php:51
|
1368 |
#@ wp-table-reloaded
|
1369 |
+
msgid "Table Contents"
|
1370 |
+
msgstr "Inhalte der Tabelle"
|
1371 |
|
1372 |
+
#: views/view-edit.php:104
|
|
|
1373 |
#@ wp-table-reloaded
|
1374 |
+
msgid "Data Manipulation"
|
1375 |
+
msgstr "Bearbeitungsfunktionen"
|
1376 |
+
|
1377 |
+
#: views/view-edit.php:114
|
1378 |
+
#: views/view-options.php:54
|
1379 |
+
#@ wp-table-reloaded
|
1380 |
+
msgid "Insert Link"
|
1381 |
+
msgstr "Link einfügen"
|
1382 |
|
1383 |
+
#: views/view-edit.php:115
|
1384 |
#@ wp-table-reloaded
|
1385 |
+
msgid "Insert Image"
|
1386 |
+
msgstr "Bild einfügen"
|
1387 |
|
1388 |
+
#: views/view-edit.php:124
|
1389 |
#@ wp-table-reloaded
|
1390 |
+
msgid "ascending"
|
1391 |
+
msgstr "aufsteigender"
|
1392 |
|
1393 |
+
#: views/view-edit.php:125
|
1394 |
#@ wp-table-reloaded
|
1395 |
+
msgid "descending"
|
1396 |
+
msgstr "absteigender"
|
1397 |
|
1398 |
+
#: views/view-edit.php:128
|
1399 |
+
#, php-format
|
1400 |
#@ wp-table-reloaded
|
1401 |
+
msgid "Sort table by column %s in %s order"
|
1402 |
+
msgstr "Sortiere die Tabelle nach Spalte %s in %s Reihenfolge"
|
1403 |
|
1404 |
+
#: views/view-edit.php:130
|
1405 |
#@ wp-table-reloaded
|
1406 |
+
msgid "Sort"
|
1407 |
+
msgstr "Sortieren"
|
1408 |
|
1409 |
+
#: views/view-edit.php:135
|
1410 |
+
#: views/view-edit.php:139
|
1411 |
#@ wp-table-reloaded
|
1412 |
+
msgctxt "item"
|
1413 |
+
msgid "Hide"
|
1414 |
+
msgstr "Verstecken"
|
1415 |
|
1416 |
+
#: views/view-edit.php:136
|
1417 |
+
#: views/view-edit.php:140
|
1418 |
#@ wp-table-reloaded
|
1419 |
+
msgctxt "item"
|
1420 |
+
msgid "Unhide"
|
1421 |
+
msgstr "Zeigen"
|
1422 |
|
1423 |
+
#: views/view-edit.php:137
|
1424 |
+
#, php-format
|
1425 |
#@ wp-table-reloaded
|
1426 |
+
msgctxt "hide_unhide"
|
1427 |
+
msgid "Selected rows: %s %s"
|
1428 |
+
msgstr "Markierte Zeilen: %s %s"
|
1429 |
|
1430 |
+
#: views/view-edit.php:141
|
1431 |
+
#, php-format
|
1432 |
#@ wp-table-reloaded
|
1433 |
+
msgctxt "hide_unhide"
|
1434 |
+
msgid "Selected columns: %s %s"
|
1435 |
+
msgstr "Markierte Spalten: %s %s"
|
1436 |
|
1437 |
+
#: views/view-edit.php:144
|
1438 |
#@ wp-table-reloaded
|
1439 |
+
msgid "Combine cells in a row:"
|
1440 |
+
msgstr "Zellen in einer Zeile verbinden:"
|
1441 |
|
1442 |
+
#: views/view-edit.php:145
|
1443 |
#@ wp-table-reloaded
|
1444 |
+
msgid "Add colspan"
|
1445 |
+
msgstr "colspan hinzufügen"
|
1446 |
|
1447 |
+
#: views/view-edit.php:148
|
1448 |
#@ wp-table-reloaded
|
1449 |
+
msgid "Combine cells in a column:"
|
1450 |
+
msgstr "Zellen in einer Spalte verbinden:"
|
1451 |
|
1452 |
+
#: views/view-edit.php:149
|
1453 |
#@ wp-table-reloaded
|
1454 |
+
msgid "Add rowspan"
|
1455 |
+
msgstr "rowspan hinzufügen"
|
1456 |
|
1457 |
+
#: views/view-edit.php:155
|
1458 |
#@ wp-table-reloaded
|
1459 |
+
msgid "Insert row"
|
1460 |
+
msgstr "Zeile einfügen"
|
1461 |
|
1462 |
+
#: views/view-edit.php:156
|
1463 |
+
#: views/view-edit.php:160
|
1464 |
+
#: views/view-list.php:65
|
1465 |
#@ wp-table-reloaded
|
1466 |
+
msgid "Delete"
|
1467 |
+
msgstr "Löschen"
|
1468 |
|
1469 |
+
#: views/view-edit.php:157
|
1470 |
+
#, php-format
|
1471 |
#@ wp-table-reloaded
|
1472 |
+
msgctxt "insert_delete"
|
1473 |
+
msgid "Selected rows: %s %s"
|
1474 |
+
msgstr "Markierte Zeilen: %s %s"
|
1475 |
|
1476 |
+
#: views/view-edit.php:159
|
1477 |
#@ wp-table-reloaded
|
1478 |
+
msgid "Insert column"
|
1479 |
+
msgstr "Spalte einfügen"
|
1480 |
|
1481 |
+
#: views/view-edit.php:161
|
1482 |
+
#, php-format
|
1483 |
#@ wp-table-reloaded
|
1484 |
+
msgctxt "insert_delete"
|
1485 |
+
msgid "Selected columns: %s %s"
|
1486 |
+
msgstr "Markierte Spalten: %s %s"
|
1487 |
|
1488 |
+
#: views/view-edit.php:171
|
1489 |
#, php-format
|
1490 |
#@ wp-table-reloaded
|
1491 |
+
msgid "Add %s row(s)"
|
1492 |
+
msgstr "%s Zeile(n)"
|
1493 |
|
1494 |
+
#: views/view-edit.php:172
|
1495 |
+
#: views/view-edit.php:175
|
1496 |
+
#: views/view-edit.php:449
|
1497 |
#@ wp-table-reloaded
|
1498 |
+
msgid "Add"
|
1499 |
+
msgstr "hinzufügen"
|
1500 |
|
1501 |
+
#: views/view-edit.php:174
|
1502 |
+
#, php-format
|
1503 |
#@ wp-table-reloaded
|
1504 |
+
msgid "Add %s column(s)"
|
1505 |
+
msgstr "%s Spalte(n)"
|
1506 |
|
1507 |
+
#: views/view-edit.php:189
|
1508 |
+
#, php-format
|
1509 |
#@ wp-table-reloaded
|
1510 |
+
msgid "Swap rows %s and %s"
|
1511 |
+
msgstr "Tausche die Zeilen %s und %s"
|
1512 |
|
1513 |
+
#: views/view-edit.php:191
|
1514 |
+
#: views/view-edit.php:206
|
1515 |
+
#@ wp-table-reloaded
|
1516 |
+
msgid "Swap"
|
1517 |
+
msgstr "Tauschen"
|
1518 |
+
|
1519 |
+
#: views/view-edit.php:204
|
1520 |
#, php-format
|
1521 |
#@ wp-table-reloaded
|
1522 |
+
msgid "Swap columns %s and %s"
|
1523 |
+
msgstr "Tausche die Spalten %s und %s"
|
1524 |
|
1525 |
+
#: views/view-edit.php:219
|
1526 |
+
#: views/view-edit.php:239
|
1527 |
#@ wp-table-reloaded
|
1528 |
+
msgid "before"
|
1529 |
+
msgstr "vor"
|
1530 |
|
1531 |
+
#: views/view-edit.php:220
|
1532 |
+
#: views/view-edit.php:240
|
|
|
1533 |
#@ wp-table-reloaded
|
1534 |
+
msgid "after"
|
1535 |
+
msgstr "hinter"
|
1536 |
|
1537 |
+
#: views/view-edit.php:223
|
|
|
1538 |
#, php-format
|
1539 |
#@ wp-table-reloaded
|
1540 |
+
msgid "Move row %s %s row %s"
|
1541 |
+
msgstr "Verschiebe Zeile %s %s Zeile %s"
|
1542 |
|
1543 |
+
#: views/view-edit.php:225
|
1544 |
+
#: views/view-edit.php:245
|
1545 |
#@ wp-table-reloaded
|
1546 |
+
msgid "Move"
|
1547 |
+
msgstr "Verschiebe"
|
1548 |
|
1549 |
+
#: views/view-edit.php:243
|
|
|
1550 |
#, php-format
|
1551 |
#@ wp-table-reloaded
|
1552 |
+
msgid "Move column %s %s column %s"
|
1553 |
+
msgstr "Verschiebe Spalte %s %s Spalte %s"
|
1554 |
|
1555 |
+
#: views/view-edit.php:262
|
|
|
|
|
1556 |
#@ wp-table-reloaded
|
1557 |
+
msgid "Table Styling Options"
|
1558 |
+
msgstr "Einstellungen zum Tabellen-Layout"
|
1559 |
|
1560 |
+
#: views/view-edit.php:264
|
|
|
1561 |
#@ wp-table-reloaded
|
1562 |
+
msgid "These settings will only be used for this table."
|
1563 |
+
msgstr "Diese Einstellungen gelten nur für diese Tabelle."
|
1564 |
|
1565 |
+
#: views/view-edit.php:267
|
1566 |
#@ wp-table-reloaded
|
1567 |
+
msgid "Alternating row colors"
|
1568 |
+
msgstr "alternierende Zeilenfarben"
|
1569 |
|
1570 |
+
#: views/view-edit.php:268
|
|
|
1571 |
#@ wp-table-reloaded
|
1572 |
+
msgid "Every second row has an alternating background color."
|
1573 |
+
msgstr "Jede zweite Zeile hat eine alternierende Hintergrundfarbe."
|
1574 |
|
1575 |
+
#: views/view-edit.php:271
|
1576 |
#@ wp-table-reloaded
|
1577 |
+
msgid "Row Highlighting"
|
1578 |
+
msgstr "Zeilenhervorhebung"
|
1579 |
|
1580 |
+
#: views/view-edit.php:272
|
|
|
|
|
1581 |
#@ wp-table-reloaded
|
1582 |
+
msgid "Highlight a row by changing its background color while the mouse cursor hovers above it."
|
1583 |
+
msgstr "Hebe eine Zeile durch Ändern der Hintergrundfarbe hervor, wenn sich die Maus darüber befindet."
|
1584 |
|
1585 |
+
#: views/view-edit.php:275
|
|
|
1586 |
#@ wp-table-reloaded
|
1587 |
+
msgid "Table head"
|
1588 |
+
msgstr "Tabellenkopf"
|
1589 |
|
1590 |
+
#: views/view-edit.php:276
|
1591 |
#@ wp-table-reloaded
|
1592 |
+
msgid "The first row of your table is the table head (HTML tags <thead> and <th>)."
|
1593 |
+
msgstr "Die erste Zeile der Tabelle ist der Tabellenkopf (HTML-Tags <thead> und <th>)."
|
1594 |
|
1595 |
+
#: views/view-edit.php:279
|
1596 |
#@ wp-table-reloaded
|
1597 |
+
msgid "Table footer"
|
1598 |
+
msgstr "Tabellenfuß"
|
1599 |
|
1600 |
+
#: views/view-edit.php:280
|
1601 |
#@ wp-table-reloaded
|
1602 |
+
msgid "The last row of your table is the table footer (HTML tags <tfoot> and <th>)."
|
1603 |
+
msgstr "Die letzte Zeile der Tabelle ist der Tabellenfuß (HTML-Tags <tfoot> und <th>)."
|
1604 |
|
1605 |
+
#: views/view-edit.php:289
|
1606 |
+
#: views/view-edit.php:306
|
1607 |
#@ wp-table-reloaded
|
1608 |
+
msgid "above"
|
1609 |
+
msgstr "über"
|
1610 |
|
1611 |
+
#: views/view-edit.php:291
|
1612 |
+
#: views/view-edit.php:308
|
1613 |
#@ wp-table-reloaded
|
1614 |
+
msgid "below"
|
1615 |
+
msgstr "unter"
|
1616 |
|
1617 |
+
#: views/view-edit.php:294
|
1618 |
+
#, php-format
|
1619 |
#@ wp-table-reloaded
|
1620 |
+
msgid "The Table Name shall be written %s the table (HTML tag <h2>)."
|
1621 |
+
msgstr "Der Tabellenname soll %s der Tabelle ausgegeben werden (HTML-Tag <h2>)."
|
1622 |
|
1623 |
+
#: views/view-edit.php:300
|
1624 |
#@ wp-table-reloaded
|
1625 |
+
msgid "Table Description"
|
1626 |
+
msgstr "Tabellenbeschreibung"
|
1627 |
|
1628 |
+
#: views/view-edit.php:311
|
1629 |
#, php-format
|
1630 |
#@ wp-table-reloaded
|
1631 |
+
msgid "The Table Description shall be written %s the table."
|
1632 |
+
msgstr "Die Tabellenbeschreibung soll %s der Tabelle ausgegeben werden."
|
1633 |
|
1634 |
+
#: views/view-edit.php:317
|
1635 |
#@ wp-table-reloaded
|
1636 |
+
msgid "Cache Table Output"
|
1637 |
+
msgstr "Zwischenspeicher (Cache)"
|
1638 |
|
1639 |
+
#: views/view-edit.php:318
|
1640 |
#@ wp-table-reloaded
|
1641 |
+
msgid "The resulting HTML output of the table shall be cached in the WordPress database cache for faster page generation."
|
1642 |
+
msgstr "Der generierte HTML-Code der Tabelle soll im WordPress-Datenbank-Cache zwischengespeichert werden, damit Seiten mit Tabellen schneller aufgebaut werden."
|
1643 |
|
1644 |
+
#: views/view-edit.php:321
|
1645 |
#@ wp-table-reloaded
|
1646 |
+
msgid "Extra CSS Class"
|
1647 |
+
msgstr "Weitere CSS-Klassen"
|
1648 |
|
1649 |
+
#: views/view-edit.php:322
|
1650 |
#@ wp-table-reloaded
|
1651 |
+
msgid "Enter a string that will be given to the table as an additional class for styling with CSS."
|
1652 |
+
msgstr "Diese Zeichenkette wird der Tabelle als zusätzliche CSS-Klasse zugeordnet und kann für das CSS-Styling genutzt werden."
|
1653 |
|
1654 |
+
#: views/view-edit.php:322
|
1655 |
#@ wp-table-reloaded
|
1656 |
+
msgid "This is not the place to enter \"Custom CSS\" code!"
|
1657 |
+
msgstr "Dies ist nicht das Feld für "Zusatz-CSS"-Code!"
|
1658 |
|
1659 |
+
#: views/view-edit.php:325
|
1660 |
#@ wp-table-reloaded
|
1661 |
+
msgid "Use JavaScript library"
|
1662 |
+
msgstr "Nutze JavaScript-Bibliothek"
|
1663 |
|
1664 |
+
#: views/view-edit.php:333
|
1665 |
+
#: views/view-edit.php:345
|
1666 |
#@ wp-table-reloaded
|
1667 |
+
msgid "You can change further settings for this library below."
|
1668 |
+
msgstr "Hier kannst du weitere Einstellungen für diese JavaScript-Bibliothek ändern."
|
1669 |
|
1670 |
+
#: views/view-edit.php:337
|
1671 |
+
#: views/view-edit.php:341
|
1672 |
#@ wp-table-reloaded
|
1673 |
+
msgid "The table will then be sortable by the visitor."
|
1674 |
+
msgstr "Die Tabelle kann dann vom Besucher der Seite sortiert werden."
|
1675 |
|
1676 |
+
#: views/view-edit.php:348
|
1677 |
+
#, php-format
|
1678 |
#@ wp-table-reloaded
|
1679 |
+
msgid "Yes, use the "%s" JavaScript library with this table."
|
1680 |
+
msgstr "Ja, nutze die "%s"-JavaScript-Bibliothek mit dieser Tabelle."
|
1681 |
|
1682 |
+
#: views/view-edit.php:348
|
1683 |
+
#, php-format
|
1684 |
#@ wp-table-reloaded
|
1685 |
+
msgid "You must enable the use of a JavaScript library on the "%s" screen first."
|
1686 |
+
msgstr "Du musst zunächst die Nutzung einer JavaScript-Bibliothek in den "%s" aktivieren."
|
1687 |
|
1688 |
+
#: views/view-edit.php:358
|
1689 |
#@ wp-table-reloaded
|
1690 |
+
msgid "DataTables JavaScript Features"
|
1691 |
+
msgstr "Funktionen der DataTables-JavaScript-Bibliothek"
|
1692 |
|
1693 |
+
#: views/view-edit.php:360
|
1694 |
#@ wp-table-reloaded
|
1695 |
+
msgid "You can enable certain features for the DataTables JavaScript library here."
|
1696 |
+
msgstr "Hier kannst du bestimmte Funktionen der DataTables-JavaScript-Bibliothek aktivieren."
|
1697 |
|
1698 |
+
#: views/view-edit.php:360
|
1699 |
#@ wp-table-reloaded
|
1700 |
+
msgid "More information on these features can be found on the <a href=\"http://www.datatables.net/\">DataTables website</a>."
|
1701 |
+
msgstr "Weitere Informationen dazu findest du auf der <a href=\"http://www.datatables.net/\">DataTables-Webseite</a>."
|
1702 |
|
1703 |
+
#: views/view-edit.php:362
|
1704 |
+
#, php-format
|
1705 |
#@ wp-table-reloaded
|
1706 |
+
msgid "You can currently not change these options, because you have not enabled the "DataTables" JavaScript library on the "%s" screen."
|
1707 |
+
msgstr "Diese Optionen kannst du derzeit nicht ändern, weil du die "DataTables"-JavaScript-Bibliothek in den "%s" nicht aktiviert hast."
|
1708 |
|
1709 |
+
#: views/view-edit.php:362
|
1710 |
#@ wp-table-reloaded
|
1711 |
+
msgid "It is not possible to use these features with the "Tablesorter" or "Tablesorter Extended" libraries."
|
1712 |
+
msgstr "Diese Funktionen stehen für die "Tablesorter"- oder "Tablesorter Extended"-Bibliotheken nicht zur Verfügung."
|
1713 |
|
1714 |
+
#: views/view-edit.php:366
|
1715 |
#@ wp-table-reloaded
|
1716 |
+
msgid "Sorting"
|
1717 |
+
msgstr "Sortieren"
|
1718 |
|
1719 |
+
#: views/view-edit.php:367
|
1720 |
#@ wp-table-reloaded
|
1721 |
+
msgid "Yes, enable sorting of table data by the visitor."
|
1722 |
+
msgstr "Ja, aktiviere das Sortieren der Tabelle durch den Seiten-Besucher."
|
1723 |
|
1724 |
+
#: views/view-edit.php:370
|
1725 |
#@ wp-table-reloaded
|
1726 |
+
msgid "Pagination"
|
1727 |
+
msgstr "Umblättern"
|
1728 |
|
1729 |
+
#: views/view-edit.php:375
|
1730 |
#@ wp-table-reloaded
|
1731 |
+
msgid "Yes, enable pagination (showing only a certain number of rows) of the table by the visitor."
|
1732 |
+
msgstr "Ja, ermögliche das seitenweise Blättern in der Tabelle durch den Besucher."
|
1733 |
|
1734 |
+
#: views/view-edit.php:377
|
1735 |
+
#, php-format
|
1736 |
#@ wp-table-reloaded
|
1737 |
+
msgid "Show %1$s rows of the table per page."
|
1738 |
+
msgstr "Zeige %1$s Zeilen der Tabelle pro Seite."
|
1739 |
|
1740 |
+
#: views/view-edit.php:383
|
1741 |
#@ wp-table-reloaded
|
1742 |
+
msgid "Length Change"
|
1743 |
+
msgstr "Anzahl Zeilen"
|
1744 |
|
1745 |
+
#: views/view-edit.php:384
|
1746 |
#@ wp-table-reloaded
|
1747 |
+
msgid "Yes, allow the visitor to change the number of rows shown when using pagination."
|
1748 |
+
msgstr "Ja, erlaube dem Besucher, die jeweils angezeigte Anzahl Zeilen beim seitenweisen Blättern zu ändern."
|
1749 |
|
1750 |
+
#: views/view-edit.php:387
|
1751 |
#@ wp-table-reloaded
|
1752 |
+
msgid "Filtering/Search"
|
1753 |
+
msgstr "Filtern/Suche"
|
1754 |
|
1755 |
+
#: views/view-edit.php:388
|
1756 |
#@ wp-table-reloaded
|
1757 |
+
msgid "Yes, enable the visitor to filter or search the table. Only rows with the search word in them are shown."
|
1758 |
+
msgstr "Ja, ermögliche dem Besucher, die Tabelle zu filtern. Dabei werden nur Zeilen, die ein Suchwort enthalten, angezeigt."
|
1759 |
|
1760 |
+
#: views/view-edit.php:391
|
1761 |
#@ wp-table-reloaded
|
1762 |
+
msgid "Info Bar"
|
1763 |
+
msgstr "Info-Zeile"
|
1764 |
|
1765 |
+
#: views/view-edit.php:392
|
1766 |
#@ wp-table-reloaded
|
1767 |
+
msgid "Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering."
|
1768 |
+
msgstr "Ja, zeige Informationen und Statistiken über die im Moment angezeigten Daten unter der Tabelle an."
|
1769 |
|
1770 |
+
#: views/view-edit.php:395
|
|
|
1771 |
#@ wp-table-reloaded
|
1772 |
+
msgid "Custom Commands"
|
1773 |
+
msgstr "Eigene Befehle"
|
1774 |
|
1775 |
+
#: views/view-edit.php:396
|
|
|
1776 |
#@ wp-table-reloaded
|
1777 |
+
msgid "Enter additional DataTables JavaScript parameters that will be included with the script call here."
|
1778 |
+
msgstr "Hier können zusätzliche DataTables-JavaScript-Parameter eingegeben werden, die dem Script-Aufruf hinzugefügt werden."
|
1779 |
|
1780 |
+
#: views/view-edit.php:396
|
|
|
1781 |
#@ wp-table-reloaded
|
1782 |
+
msgid "For advanced use only. Read the <a href=\"http://www.datatables.net/\">DataTables documentation</a> before."
|
1783 |
+
msgstr "Für fortgeschrittene Benutzer. Lies bitte erst die <a href=\"http://www.datatables.net/\">DataTables-Dokumentation</a>."
|
1784 |
|
1785 |
+
#: views/view-edit.php:412
|
|
|
1786 |
#@ wp-table-reloaded
|
1787 |
+
msgid "Custom Data Fields"
|
1788 |
+
msgstr "Benutzerdefinierte Datenfelder"
|
1789 |
|
1790 |
+
#: views/view-edit.php:414
|
1791 |
#@ wp-table-reloaded
|
1792 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1793 |
+
msgstr "Benutzerdefinierte Datenfelder können genutzt werden, um weitere Metadaten zu einer Tabelle zu speichern."
|
1794 |
|
1795 |
+
#: views/view-edit.php:414
|
1796 |
#@ wp-table-reloaded
|
1797 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
1798 |
+
msgstr "Dies können z.B. Informationen über die Quelle oder den Ersteller sein."
|
1799 |
|
1800 |
+
#: views/view-edit.php:416
|
1801 |
#, php-format
|
1802 |
#@ wp-table-reloaded
|
1803 |
+
msgid "You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
1804 |
+
msgstr "Diese Daten können genauso wie Tabellen angezeigt werden. Nutze dazu den Shortcode <strong>[table-info id=%s field=\"<Feldname>\" /]</strong>."
|
|
|
|
|
1805 |
|
1806 |
+
#: views/view-edit.php:422
|
|
|
1807 |
#@ wp-table-reloaded
|
1808 |
+
msgid "Field Name"
|
1809 |
+
msgstr "Feldname"
|
1810 |
|
1811 |
+
#: views/view-edit.php:423
|
1812 |
#@ wp-table-reloaded
|
1813 |
+
msgid "Value"
|
1814 |
+
msgstr "Wert"
|
1815 |
|
1816 |
+
#: views/view-edit.php:437
|
1817 |
#@ wp-table-reloaded
|
1818 |
+
msgid "Delete Field"
|
1819 |
+
msgstr "Feld löschen"
|
1820 |
|
1821 |
+
#: views/view-edit.php:439
|
1822 |
#@ wp-table-reloaded
|
1823 |
+
msgid "View shortcode"
|
1824 |
+
msgstr "Shortcode anzeigen"
|
1825 |
|
1826 |
+
#: views/view-edit.php:448
|
|
|
1827 |
#@ wp-table-reloaded
|
1828 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
1829 |
+
msgstr "Um ein neues Benutzerdefiniertes Datenfeld anzulegen, gib hier den Namen ein (nur Kleinbuchstaben, Zahlen, _ und -)."
|
1830 |
|
1831 |
+
#: views/view-edit.php:449
|
|
|
1832 |
#@ wp-table-reloaded
|
1833 |
+
msgid "Custom Data Field Name"
|
1834 |
+
msgstr "Name des Benutzerdefinierten Datenfeldes"
|
1835 |
|
1836 |
+
#: views/view-edit.php:463
|
|
|
1837 |
#@ wp-table-reloaded
|
1838 |
+
msgid "Other actions"
|
1839 |
+
msgstr "Andere Aktionen"
|
1840 |
|
1841 |
+
#: views/view-edit.php:466
|
1842 |
#@ wp-table-reloaded
|
1843 |
+
msgid "Delete Table"
|
1844 |
+
msgstr "Tabelle löschen"
|
1845 |
|
1846 |
+
#: views/view-edit.php:467
|
1847 |
+
#: views/view-export.php:60
|
1848 |
#@ wp-table-reloaded
|
1849 |
+
msgid "Export Table"
|
1850 |
+
msgstr "Tabelle exportieren"
|
1851 |
+
|
1852 |
+
#: views/view-export.php:10
|
1853 |
+
#@ wp-table-reloaded
|
1854 |
+
msgid "It is recommended to export and backup the data of important tables regularly."
|
1855 |
+
msgstr "Es wird empfohlen, die Daten wichtiger Tabellen regelmäßig zu exportieren und zu sichern."
|
1856 |
|
1857 |
+
#: views/view-export.php:10
|
1858 |
#@ wp-table-reloaded
|
1859 |
+
msgid "Select the table, the desired export format and (for CSV only) a delimiter."
|
1860 |
+
msgstr "Wähle die Tabelle, das gewünschte Exportformat und (nur für CSV) ein Trennzeichen."
|
1861 |
|
1862 |
+
#: views/view-export.php:10
|
1863 |
#@ wp-table-reloaded
|
1864 |
+
msgid "You may choose to download the export file. Otherwise it will be shown on this page."
|
1865 |
+
msgstr "Du kannst die Export-Datei herunterladen. Andernfalls wird sie auf dieser Seite angezeigt."
|
1866 |
|
1867 |
+
#: views/view-export.php:10
|
1868 |
#@ wp-table-reloaded
|
1869 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
1870 |
+
msgstr "Bitte beachte, dass nur die Daten der Tabelle, jedoch keine Optionen oder Einstellungen exportiert werden."
|
1871 |
|
1872 |
+
#: views/view-export.php:10
|
1873 |
+
#, php-format
|
1874 |
#@ wp-table-reloaded
|
1875 |
+
msgid "To backup all tables, including their settings, at once use the "%s" button in the "%s"."
|
1876 |
+
msgstr "Zur Sicherung aller Tabellen, einschließlich der Einstellungen, auf einmal, nutze "%s"-Knopf in den "%s"."
|
1877 |
|
1878 |
+
#: views/view-export.php:10
|
1879 |
+
#: views/view-options.php:189
|
1880 |
#@ wp-table-reloaded
|
1881 |
+
msgid "Create and Download Dump File"
|
1882 |
+
msgstr "Dump-Datei erstellen und herunterladen"
|
|
|
|
|
1883 |
|
1884 |
+
#: views/view-export.php:18
|
1885 |
#@ wp-table-reloaded
|
1886 |
+
msgid "Select Table to Export"
|
1887 |
+
msgstr "zu exportierende Tabelle auswählen"
|
|
|
|
|
1888 |
|
1889 |
+
#: views/view-export.php:34
|
1890 |
#@ wp-table-reloaded
|
1891 |
+
msgid "Select Export Format"
|
1892 |
+
msgstr "gewünschtes Export-Format"
|
|
|
|
|
1893 |
|
1894 |
+
#: views/view-export.php:44
|
1895 |
#@ wp-table-reloaded
|
1896 |
+
msgid "Select Delimiter to use"
|
1897 |
+
msgstr "zu verwendendes Trennzeichen"
|
|
|
|
|
1898 |
|
1899 |
+
#: views/view-export.php:51
|
1900 |
#@ wp-table-reloaded
|
1901 |
+
msgid "Only needed for CSV export."
|
1902 |
+
msgstr "Nur bei CSV-Export nötig."
|
|
|
|
|
1903 |
|
1904 |
+
#: views/view-export.php:54
|
1905 |
#@ wp-table-reloaded
|
1906 |
+
msgid "Download file"
|
1907 |
+
msgstr "Datei herunterladen"
|
|
|
|
|
1908 |
|
1909 |
+
#: views/view-export.php:55
|
1910 |
#@ wp-table-reloaded
|
1911 |
+
msgid "Yes, I want to download the export file."
|
1912 |
+
msgstr "Ja, ich möchte die Export-Datei herunterladen."
|
|
|
|
|
1913 |
|
1914 |
+
#: views/view-export.php:72
|
1915 |
+
#: views/view-list.php:87
|
1916 |
+
#, php-format
|
1917 |
#@ wp-table-reloaded
|
1918 |
+
msgid "You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to get started!"
|
1919 |
+
msgstr "Als Erstes solltest du eine Tabelle <a href=\"%s\">hinzufügen</a> oder <a href=\"%s\">importieren</a>."
|
|
|
|
|
1920 |
|
1921 |
+
#: views/view-import.php:3
|
1922 |
#@ wp-table-reloaded
|
1923 |
+
msgid "WP-Table Reloaded can import tables from existing data."
|
1924 |
+
msgstr "WP-Table Reloaded kann Tabellen aus vorhandenen Daten importieren."
|
1925 |
|
1926 |
+
#: views/view-import.php:3
|
1927 |
#@ wp-table-reloaded
|
1928 |
+
msgid "This may be a CSV, XML or HTML file, each with a certain structure."
|
1929 |
+
msgstr "Dies kann eine CSV-, XML- oder HTML-Datei mit einer bestimmten Struktur sein."
|
1930 |
|
1931 |
+
#: views/view-import.php:3
|
1932 |
#@ wp-table-reloaded
|
1933 |
+
msgid "To import an existing table, please select its format and the source for the import."
|
1934 |
+
msgstr "Um eine vorhandene Tabelle zu importieren, wähle bitte das Format und die Quelle für den Import."
|
1935 |
|
1936 |
+
#: views/view-import.php:3
|
1937 |
#@ wp-table-reloaded
|
1938 |
+
msgid "You can also decide, if you want to import it as a new table or replace an existing table."
|
1939 |
+
msgstr "Du kannst auch entscheiden, ob du sie als neue Tabelle importieren oder damit eine vorhandene Tabelle ersetzen möchtest."
|
1940 |
|
1941 |
+
#: views/view-import.php:10
|
1942 |
#@ wp-table-reloaded
|
1943 |
+
msgid "Select Import Format"
|
1944 |
+
msgstr "Import-Format wählen"
|
1945 |
|
1946 |
+
#: views/view-import.php:21
|
|
|
1947 |
#@ wp-table-reloaded
|
1948 |
+
msgid "Add or Replace Table?"
|
1949 |
+
msgstr "Tabelle hinzufügen oder ersetzen?"
|
1950 |
|
1951 |
+
#: views/view-import.php:23
|
1952 |
#@ wp-table-reloaded
|
1953 |
+
msgid "Add as new Table"
|
1954 |
+
msgstr "als neue Tabelle hinzufügen"
|
|
|
|
|
1955 |
|
1956 |
+
#: views/view-import.php:24
|
1957 |
#@ wp-table-reloaded
|
1958 |
+
msgid "Replace existing Table"
|
1959 |
+
msgstr "bereits existierende Tabelle ersetzen"
|
|
|
|
|
1960 |
|
1961 |
+
#: views/view-import.php:28
|
|
|
|
|
1962 |
#@ wp-table-reloaded
|
1963 |
+
msgid "Select existing Table to Replace"
|
1964 |
+
msgstr "zu ersetzende Tabelle auswählen"
|
|
|
|
|
1965 |
|
1966 |
+
#: views/view-import.php:45
|
1967 |
#@ wp-table-reloaded
|
1968 |
+
msgid "Select source for Import"
|
1969 |
+
msgstr "Wähle die Quelle für den Import"
|
1970 |
|
1971 |
+
#: views/view-import.php:47
|
|
|
1972 |
#@ wp-table-reloaded
|
1973 |
+
msgid "File upload"
|
1974 |
+
msgstr "Datei hochladen"
|
1975 |
|
1976 |
+
#: views/view-import.php:48
|
|
|
1977 |
#@ wp-table-reloaded
|
1978 |
+
msgid "URL"
|
1979 |
+
msgstr "Download von URL"
|
1980 |
|
1981 |
+
#: views/view-import.php:49
|
1982 |
#@ wp-table-reloaded
|
1983 |
+
msgid "Manual input"
|
1984 |
+
msgstr "Manuelle Eingabe"
|
1985 |
|
1986 |
+
#: views/view-import.php:50
|
1987 |
#@ wp-table-reloaded
|
1988 |
+
msgid "File on server"
|
1989 |
+
msgstr "Datei auf Server"
|
1990 |
|
1991 |
+
#: views/view-import.php:54
|
1992 |
#@ wp-table-reloaded
|
1993 |
+
msgid "Select File with Table to Import"
|
1994 |
+
msgstr "Datei mit den zu importierenden Inhalten auswählen"
|
1995 |
|
1996 |
+
#: views/view-import.php:58
|
|
|
|
|
1997 |
#@ wp-table-reloaded
|
1998 |
+
msgid "URL to Import Table from"
|
1999 |
+
msgstr "URL von der die Tabelle importiert werden soll"
|
2000 |
|
2001 |
+
#: views/view-import.php:62
|
|
|
|
|
2002 |
#@ wp-table-reloaded
|
2003 |
+
msgid "Path to file on server"
|
2004 |
+
msgstr "Pfad zu Datei auf Webserver"
|
2005 |
|
2006 |
+
#: views/view-import.php:66
|
2007 |
#@ wp-table-reloaded
|
2008 |
+
msgid "Paste data with Table to Import"
|
2009 |
+
msgstr "zu importierende Tabelle einfügen"
|
2010 |
|
2011 |
+
#: views/view-import.php:72
|
|
|
2012 |
#@ wp-table-reloaded
|
2013 |
+
msgid "Import Table"
|
2014 |
+
msgstr "Tabelle importieren"
|
2015 |
|
2016 |
+
#: views/view-import.php:86
|
|
|
2017 |
#@ wp-table-reloaded
|
2018 |
+
msgid "Import from original wp-Table plugin"
|
2019 |
+
msgstr "Import von Tabellen aus dem Plugin wp-Table"
|
2020 |
|
2021 |
+
#: views/view-import.php:132
|
|
|
2022 |
#@ wp-table-reloaded
|
2023 |
+
msgid "Import"
|
2024 |
+
msgstr "Import"
|
2025 |
|
2026 |
+
#: views/view-import.php:140
|
2027 |
+
#: views/view-list.php:78
|
2028 |
#@ wp-table-reloaded
|
2029 |
+
msgid "Bulk actions:"
|
2030 |
+
msgstr "Massenbearbeitung:"
|
2031 |
|
2032 |
+
#: views/view-import.php:140
|
2033 |
#@ wp-table-reloaded
|
2034 |
+
msgid "Import Tables"
|
2035 |
+
msgstr "Tabellen importieren"
|
2036 |
|
2037 |
+
#: views/view-import.php:146
|
2038 |
#@ wp-table-reloaded
|
2039 |
+
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
2040 |
+
msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
|
2041 |
|
2042 |
+
#: views/view-list.php:2
|
|
|
2043 |
#@ wp-table-reloaded
|
2044 |
+
msgid "You may add, edit, copy, delete or preview tables here."
|
2045 |
+
msgstr "Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren, löschen oder dir eine Vorschau ansehen."
|
2046 |
|
2047 |
+
#: views/view-list.php:2
|
2048 |
#@ wp-table-reloaded
|
2049 |
+
msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
|
2050 |
+
msgstr "Jede Tabelle hat eine eindeutige ID, die in diesem Shortcode entsprechend angepasst werden muss."
|
2051 |
|
2052 |
+
#: views/view-list.php:2
|
2053 |
#, php-format
|
2054 |
#@ wp-table-reloaded
|
2055 |
+
msgid "You can also click the button "%s" in the editor toolbar to select and insert a table."
|
2056 |
+
msgstr "Du kannst auch auf die Schaltfläche "%s" in der Editor-Symbolleiste nutzen, um eine Tabelle einzufügen."
|
2057 |
|
2058 |
+
#: views/view-list.php:39
|
2059 |
#@ wp-table-reloaded
|
2060 |
+
msgid "(no name)"
|
2061 |
+
msgstr "(kein Name)"
|
2062 |
|
2063 |
+
#: views/view-list.php:40
|
2064 |
#@ wp-table-reloaded
|
2065 |
+
msgid "(no description)"
|
2066 |
+
msgstr "(keine Beschreibung)"
|
2067 |
|
2068 |
+
#: views/view-list.php:58
|
2069 |
#, php-format
|
2070 |
#@ wp-table-reloaded
|
2071 |
+
msgid "Edit %s"
|
2072 |
+
msgstr "Bearbeite %s"
|
2073 |
|
2074 |
+
#: views/view-list.php:62
|
|
|
2075 |
#@ wp-table-reloaded
|
2076 |
+
msgid "Shortcode"
|
2077 |
+
msgstr "Shortcode"
|
2078 |
|
2079 |
+
#: views/view-list.php:63
|
2080 |
+
#@ wp-table-reloaded
|
2081 |
+
msgid "Copy"
|
2082 |
+
msgstr "Kopieren"
|
2083 |
+
|
2084 |
+
#: views/view-list.php:64
|
2085 |
#@ wp-table-reloaded
|
2086 |
+
msgid "Export"
|
2087 |
+
msgstr "Exportieren"
|
2088 |
|
2089 |
+
#: views/view-list.php:66
|
2090 |
+
#, php-format
|
|
|
|
|
|
|
2091 |
#@ wp-table-reloaded
|
2092 |
+
msgid "Preview of Table %s"
|
2093 |
+
msgstr "Vorschau von Tabelle %s"
|
2094 |
|
2095 |
+
#: views/view-list.php:67
|
|
|
2096 |
#@ wp-table-reloaded
|
2097 |
+
msgid "Preview"
|
2098 |
+
msgstr "Vorschau"
|
2099 |
|
2100 |
+
#: views/view-list.php:78
|
|
|
2101 |
#@ wp-table-reloaded
|
2102 |
+
msgid "Copy Tables"
|
2103 |
+
msgstr "Tabellen kopieren"
|
2104 |
|
2105 |
+
#: views/view-list.php:78
|
|
|
2106 |
#@ wp-table-reloaded
|
2107 |
+
msgid "Delete Tables"
|
2108 |
+
msgstr "Tabellen löschen"
|
2109 |
|
2110 |
+
#: views/view-options.php:3
|
2111 |
#@ wp-table-reloaded
|
2112 |
+
msgid "WP-Table Reloaded has several options which affect the plugin behavior in different areas."
|
2113 |
+
msgstr "WP-Table Reloaded hat mehrere Optionen, die das Plugin-Verhalten in verschiedenen Bereichen beinflussen."
|
2114 |
|
2115 |
+
#: views/view-options.php:4
|
|
|
2116 |
#@ wp-table-reloaded
|
2117 |
+
msgid "Frontend Options influence the output and used features of tables in pages, posts or text-widgets."
|
2118 |
+
msgstr "Frontend-Optionen steuern die Ausgabe und verwendeten Funktionen von Tabellen auf Seiten, in Artikel und in Text-Widgets."
|
2119 |
|
2120 |
+
#: views/view-options.php:4
|
2121 |
#, php-format
|
2122 |
#@ wp-table-reloaded
|
2123 |
+
msgid "The Backend Options control the plugin's admin area, e.g. the "%s" screen."
|
2124 |
+
msgstr "Die Backend-Optionen steuern den Admin-Bereich des Plugins, wie z.B. die "%s"-Seite."
|
2125 |
|
2126 |
+
#: views/view-options.php:4
|
2127 |
+
#: views/view-options.php:54
|
2128 |
+
#: views/view-options.php:74
|
2129 |
+
#: views/view-options.php:78
|
2130 |
#@ wp-table-reloaded
|
2131 |
+
msgid "Edit Table"
|
2132 |
+
msgstr "Tabelle bearbeiten"
|
2133 |
|
2134 |
+
#: views/view-options.php:4
|
2135 |
#@ wp-table-reloaded
|
2136 |
+
msgid "Administrators have access to further Admin Options."
|
2137 |
+
msgstr "Administratoren können weitere Admin-Optionen ändern."
|
2138 |
|
2139 |
+
#: views/view-options.php:19
|
2140 |
#@ wp-table-reloaded
|
2141 |
+
msgid "Frontend Options"
|
2142 |
+
msgstr "Darstellungsoptionen"
|
2143 |
|
2144 |
+
#: views/view-options.php:23
|
2145 |
#@ wp-table-reloaded
|
2146 |
+
msgid "JavaScript library"
|
2147 |
+
msgstr "JavaScript-Bibliothek"
|
2148 |
|
2149 |
+
#: views/view-options.php:24
|
2150 |
#@ wp-table-reloaded
|
2151 |
+
msgid "Yes, enable the use of a JavaScript library."
|
2152 |
+
msgstr "Ja, aktiviere die Nutzung einer JavaScript-Bibliothek."
|
2153 |
|
2154 |
+
#: views/view-options.php:24
|
2155 |
#@ wp-table-reloaded
|
2156 |
+
msgid "WP-Table Reloaded includes three JavaScript libraries that can add useful features, like sorting, pagination, and filtering, to a table."
|
2157 |
+
msgstr "WP-Table Reloaded beinhaltet drei JavaScript-Bibliotheken, die einer Tabelle nützliche Funktionen (wie etwa Sortieren, Umblättern und Filtern) hinzufügen können."
|
2158 |
|
2159 |
+
#: views/view-options.php:28
|
2160 |
#@ wp-table-reloaded
|
2161 |
+
msgid "Select the library to use:"
|
2162 |
+
msgstr "Wähle die zu nutzende Bibliothek:"
|
2163 |
|
2164 |
+
#: views/view-options.php:29
|
2165 |
+
#: views/view-options.php:130
|
2166 |
#@ wp-table-reloaded
|
2167 |
+
msgid "recommended"
|
2168 |
+
msgstr "empfohlen"
|
2169 |
|
2170 |
+
#: views/view-options.php:32
|
2171 |
+
#, php-format
|
2172 |
#@ wp-table-reloaded
|
2173 |
+
msgid "(You can read more about each library's features on the <a href=\"%s\">plugin's website</a>.)"
|
2174 |
+
msgstr "(Mehr über die Funktionen jeder Bibliothek kannst du auf der <a href=\"%s\">Plugin-Webseite</a> lesen.)"
|
2175 |
|
2176 |
+
#: views/view-options.php:35
|
2177 |
#@ wp-table-reloaded
|
2178 |
+
msgid "Default CSS"
|
2179 |
+
msgstr "Standard-CSS"
|
2180 |
|
2181 |
+
#: views/view-options.php:37
|
2182 |
#@ wp-table-reloaded
|
2183 |
+
msgid "Yes, include and load the plugin's default CSS Stylesheets. This is highly recommended, if you use one of the JavaScript libraries!"
|
2184 |
+
msgstr "Ja, lade das Standard-CSS-Stylesheet des Plugins. Dies wird besonders bei Nutzung einer der JavaScript-Bibliotheken empfohlen!"
|
2185 |
|
2186 |
+
#: views/view-options.php:41
|
2187 |
#@ wp-table-reloaded
|
2188 |
+
msgid "Custom CSS"
|
2189 |
+
msgstr "Zusatz-CSS"
|
2190 |
|
2191 |
+
#: views/view-options.php:43
|
2192 |
#@ wp-table-reloaded
|
2193 |
+
msgid "Yes, include and load the following custom CSS commands."
|
2194 |
+
msgstr "Ja, lade die folgenden zusätzlichen CSS-Anweisungen."
|
2195 |
|
2196 |
+
#: views/view-options.php:43
|
2197 |
#@ wp-table-reloaded
|
2198 |
+
msgid "This should be used to change the table layout and styling."
|
2199 |
+
msgstr "Damit kann das Layout und das Aussehen von Tabellen geändert werden."
|
2200 |
|
2201 |
+
#: views/view-options.php:49
|
2202 |
+
#, php-format
|
2203 |
#@ wp-table-reloaded
|
2204 |
+
msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
|
2205 |
+
msgstr "In der <a href=\"%s\">FAQ</a> auf der Plugin-Webseite findest du Layout- bzw. Code-Beispiele."
|
2206 |
|
2207 |
+
#: views/view-options.php:49
|
2208 |
#, php-format
|
2209 |
#@ wp-table-reloaded
|
2210 |
+
msgid "Information on available CSS selectors can be found in the <a href=\"%s\">documentation</a>."
|
2211 |
+
msgstr "Informationen zu den verfügbaren CSS-Selektoren findest du in der <a href=\"%s\">Dokumentation</a>."
|
|
|
|
|
|
|
|
|
|
|
2212 |
|
2213 |
+
#: views/view-options.php:53
|
2214 |
#@ wp-table-reloaded
|
2215 |
+
msgid "Links in new window"
|
2216 |
+
msgstr "Neues Fenster für Links"
|
2217 |
|
2218 |
+
#: views/view-options.php:54
|
2219 |
+
#, php-format
|
2220 |
#@ wp-table-reloaded
|
2221 |
+
msgid "Yes, open links that are inserted with the "%s" button on the "%s" screen in a new browser window <strong>from now on</strong>."
|
2222 |
+
msgstr "Ja, öffne Links, die mit der "%s"-Schaltfläche auf der "%s"-Seite eingefügt werden <strong>von nun an</strong> in einem neuen Browser-Fenster."
|
2223 |
|
2224 |
+
#: views/view-options.php:61
|
2225 |
+
#: views/view-options.php:168
|
2226 |
#@ wp-table-reloaded
|
2227 |
+
msgid "Save Options"
|
2228 |
+
msgstr "Einstellungen speichern"
|
2229 |
|
2230 |
+
#: views/view-options.php:69
|
2231 |
#@ wp-table-reloaded
|
2232 |
+
msgid "Backend Options"
|
2233 |
+
msgstr "Backend-Optionen"
|
2234 |
|
2235 |
+
#: views/view-options.php:73
|
2236 |
#@ wp-table-reloaded
|
2237 |
+
msgid "Exit warning"
|
2238 |
+
msgstr "Warnung beim Verlassen"
|
2239 |
|
2240 |
+
#: views/view-options.php:74
|
2241 |
+
#, php-format
|
2242 |
#@ wp-table-reloaded
|
2243 |
+
msgid "Yes, show a warning message, if I leave the "%s" screen and have not yet saved my changes."
|
2244 |
+
msgstr "Ja, zeige eine Warnmeldung, wenn ich die "%s"-Seite verlassen will und gemachte Änderungen noch nicht gespeichert habe."
|
2245 |
|
2246 |
+
#: views/view-options.php:77
|
2247 |
#@ wp-table-reloaded
|
2248 |
+
msgid "Growing textareas"
|
2249 |
+
msgstr "Wachsende Eingabefelder"
|
2250 |
|
2251 |
+
#: views/view-options.php:78
|
2252 |
+
#, php-format
|
2253 |
#@ wp-table-reloaded
|
2254 |
+
msgid "Yes, enlarge the textareas on the "%s" screen when they are focussed."
|
2255 |
+
msgstr "Ja, vergrößere die Eingabefelder auf der "%s"-Seite, wenn sie fokussiert werden."
|
2256 |
|
2257 |
+
#: views/view-options.php:81
|
2258 |
#@ wp-table-reloaded
|
2259 |
+
msgid "List of Tables features"
|
2260 |
+
msgstr "Liste der Tabellen"
|
2261 |
|
2262 |
+
#: views/view-options.php:82
|
2263 |
+
#, php-format
|
|
|
2264 |
#@ wp-table-reloaded
|
2265 |
+
msgid "Yes, use the DataTables JavaScript features (sorting, pagination, filtering) on the "%s" screen."
|
2266 |
+
msgstr "Ja, die Funktionen der DataTables-JavaScript-Bibliothek (Sortieren, Paginierung, Suche) auch auf der "%s"-Seite nutzen."
|
2267 |
|
2268 |
+
#: views/view-options.php:90
|
|
|
|
|
2269 |
#@ wp-table-reloaded
|
2270 |
+
msgid "Admin Options"
|
2271 |
+
msgstr "Admin-Optionen"
|
2272 |
|
2273 |
+
#: views/view-options.php:92
|
2274 |
+
#: views/view-options.php:209
|
2275 |
+
#: views/view-options.php:223
|
2276 |
#@ wp-table-reloaded
|
2277 |
+
msgid "This area are only available to site administrators!"
|
2278 |
+
msgstr "Dieser Bereich ist nur für Administratoren zugänglich."
|
2279 |
|
2280 |
+
#: views/view-options.php:92
|
2281 |
#@ wp-table-reloaded
|
2282 |
+
msgid "You can therefore not change these options."
|
2283 |
+
msgstr "Du kannst daher keine Änderungen an diesen Einstellungen vornehmen."
|
2284 |
|
2285 |
+
#: views/view-options.php:97
|
2286 |
#@ wp-table-reloaded
|
2287 |
+
msgid "Plugin Access"
|
2288 |
+
msgstr "Zugriff auf das Plugin"
|
2289 |
|
2290 |
+
#: views/view-options.php:98
|
2291 |
#@ wp-table-reloaded
|
2292 |
+
msgid "To access WP-Table Reloaded, a user needs to be:"
|
2293 |
+
msgstr "Mindest-Rolle eines Nutzer, um WP-Table Reloaded nutzen zu können:"
|
2294 |
|
2295 |
+
#: views/view-options.php:99
|
2296 |
+
#: views/view-options.php:110
|
2297 |
+
#@ default
|
2298 |
+
msgctxt "User role"
|
2299 |
+
msgid "Administrator"
|
2300 |
+
msgstr ""
|
2301 |
|
2302 |
+
#: views/view-options.php:100
|
2303 |
+
#: views/view-options.php:111
|
2304 |
+
#@ default
|
2305 |
+
msgctxt "User role"
|
2306 |
+
msgid "Editor"
|
2307 |
+
msgstr ""
|
2308 |
+
|
2309 |
+
#: views/view-options.php:101
|
2310 |
+
#: views/view-options.php:112
|
2311 |
+
#@ default
|
2312 |
+
msgctxt "User role"
|
2313 |
+
msgid "Author"
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: views/view-options.php:102
|
2317 |
+
#@ default
|
2318 |
+
msgctxt "User role"
|
2319 |
+
msgid "Contributor"
|
2320 |
+
msgstr ""
|
2321 |
+
|
2322 |
+
#: views/view-options.php:108
|
2323 |
#@ wp-table-reloaded
|
2324 |
+
msgid "Plugin Options Access"
|
2325 |
+
msgstr "Zugriff auf Plugin-Einstellungen"
|
2326 |
|
2327 |
+
#: views/view-options.php:109
|
2328 |
#@ wp-table-reloaded
|
2329 |
+
msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
|
2330 |
+
msgstr "Mindest-Rolle eines Nutzers, um Plugin-Einstellungen ändern zu können:"
|
2331 |
|
2332 |
+
#: views/view-options.php:113
|
2333 |
#@ wp-table-reloaded
|
2334 |
+
msgid "Admin Options, Dump file Import, and Manual Plugin Uninstall are always accessible by Administrators only, regardless of this setting."
|
2335 |
+
msgstr "Admin-Optionen, Dump-Datei-Import und Manuelle Plugin-Deinstallation sind unabhängig von dieser Einstellung immer nur für Administratoren zugänglich."
|
2336 |
|
2337 |
+
#: views/view-options.php:117
|
2338 |
#@ wp-table-reloaded
|
2339 |
+
msgid "Plugin Language"
|
2340 |
+
msgstr "Plugin-Sprache"
|
2341 |
|
2342 |
+
#: views/view-options.php:118
|
2343 |
#@ wp-table-reloaded
|
2344 |
+
msgid "WP-Table Reloaded shall be shown in this language:"
|
2345 |
+
msgstr "WP-Table Reloaded soll in dieser Sprache angezeigt werden:"
|
2346 |
|
2347 |
+
#: views/view-options.php:119
|
2348 |
#, php-format
|
2349 |
#@ wp-table-reloaded
|
2350 |
+
msgid "WordPress Default (currently %s)"
|
2351 |
+
msgstr "WordPress-Standard (derzeit %s)"
|
2352 |
|
2353 |
+
#: views/view-options.php:128
|
2354 |
#@ wp-table-reloaded
|
2355 |
+
msgid "Admin menu entry"
|
2356 |
+
msgstr "Admin-Menü-Eintrag"
|
2357 |
|
2358 |
+
#: views/view-options.php:129
|
2359 |
#@ wp-table-reloaded
|
2360 |
+
msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
|
2361 |
+
msgstr "WP-Table Reloaded soll als Untereintrag zu diesem Menüeintrag erscheinen:"
|
2362 |
+
|
2363 |
+
#: views/view-options.php:130
|
2364 |
+
#@ default
|
2365 |
+
msgid "Tools"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: views/view-options.php:131
|
2369 |
+
#@ default
|
2370 |
+
msgid "Posts"
|
2371 |
+
msgstr ""
|
2372 |
+
|
2373 |
+
#: views/view-options.php:138
|
2374 |
+
#@ default
|
2375 |
+
msgid "Pages"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: views/view-options.php:139
|
2379 |
+
#@ default
|
2380 |
+
msgid "Plugins"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: views/view-options.php:140
|
2384 |
+
#@ default
|
2385 |
+
msgid "Settings"
|
2386 |
+
msgstr ""
|
2387 |
+
|
2388 |
+
#: views/view-options.php:141
|
2389 |
+
#@ default
|
2390 |
+
msgid "Dashboard"
|
2391 |
+
msgstr ""
|
2392 |
|
2393 |
+
#: views/view-options.php:142
|
2394 |
#@ wp-table-reloaded
|
2395 |
+
msgid "Top-Level"
|
2396 |
+
msgstr "Hauptebene"
|
2397 |
|
2398 |
+
#: views/view-options.php:147
|
2399 |
#@ wp-table-reloaded
|
2400 |
+
msgid "Frontend Edit Link"
|
2401 |
+
msgstr "Bearbeiten-Link"
|
2402 |
|
2403 |
+
#: views/view-options.php:148
|
2404 |
#@ wp-table-reloaded
|
2405 |
+
msgid "Yes, show an \"Edit\" link to users with sufficient rights near every table on the frontend."
|
2406 |
+
msgstr "Ja, zeige Nutzern mit entsprechenden Rechten einen \"Bearbeiten\"-Link neben allen ausgegeben Tabellen an."
|
2407 |
|
2408 |
+
#: views/view-options.php:152
|
2409 |
#@ wp-table-reloaded
|
2410 |
+
msgid "WordPress Search"
|
2411 |
+
msgstr "WordPress-Suche"
|
2412 |
|
2413 |
+
#: views/view-options.php:153
|
2414 |
#@ wp-table-reloaded
|
2415 |
+
msgid "Yes, the WordPress Search shall also find posts and pages that contain the search term inside a table."
|
2416 |
+
msgstr "Ja, die WordPress-Suche soll Artikel und Seiten finden, die das Suchwort innerhalb einer Tabelle beinhalten."
|
2417 |
|
2418 |
+
#: views/view-options.php:157
|
2419 |
#@ wp-table-reloaded
|
2420 |
+
msgid "Remove upon Deactivation"
|
2421 |
+
msgstr "Löschen beim Deaktivieren"
|
2422 |
|
2423 |
+
#: views/view-options.php:158
|
2424 |
#@ wp-table-reloaded
|
2425 |
+
msgid "Yes, remove all plugin related data from the database when the plugin is deactivated."
|
2426 |
+
msgstr "Ja, lösche alle zum Plugin gehörigen Daten (Tabellen und Einstellungen) aus der Datenbank, wenn das Datenbank deaktiviert wird."
|
2427 |
|
2428 |
+
#: views/view-options.php:158
|
2429 |
#@ wp-table-reloaded
|
2430 |
+
msgid "Should be activated directly before deactivation only!"
|
2431 |
+
msgstr "Sollte nur direkt vor Deaktivierung ausgewählt werden!"
|
2432 |
|
2433 |
+
#: views/view-options.php:178
|
2434 |
#@ wp-table-reloaded
|
2435 |
+
msgid "WP-Table Reloaded Data Export and Backup"
|
2436 |
+
msgstr "WP-Table Reloaded - Datenexport und Sicherung"
|
2437 |
|
2438 |
+
#: views/view-options.php:181
|
|
|
2439 |
#@ wp-table-reloaded
|
2440 |
+
msgid "WP-Table Reloaded can export and import a so-called dump file that contains all tables, their settings and the plugin's options."
|
2441 |
+
msgstr "WP-Table Reloaded kann eine sogenannte Dump-Datei, die alle Tabellen, Einstellungen und Optionen enthält, exportieren und importieren."
|
2442 |
|
2443 |
+
#: views/view-options.php:181
|
|
|
2444 |
#@ wp-table-reloaded
|
2445 |
+
msgid "This file can be used as a backup or to move all data to another WordPress site."
|
2446 |
+
msgstr "Diese Datei kann als Sicherung verwendet werden oder um alle Daten zu einer anderen WordPress-Installation umzuziehen."
|
2447 |
|
2448 |
+
#: views/view-options.php:184
|
|
|
2449 |
#@ wp-table-reloaded
|
2450 |
+
msgid "Export a dump file"
|
2451 |
+
msgstr "Export einer Dump-Datei"
|
2452 |
|
2453 |
+
#: views/view-options.php:186
|
2454 |
#@ wp-table-reloaded
|
2455 |
+
msgid "To export all Tables and their settings, click the button below to generate and download a dump file."
|
2456 |
+
msgstr "Um alle Tabellen und deren Einstellungen zu exportieren, klicke auf die Schaltfläche unten. Dies erzeugt eine Dump-Datei zum Herunterladen."
|
2457 |
|
2458 |
+
#: views/view-options.php:186
|
2459 |
#@ wp-table-reloaded
|
2460 |
+
msgid "<strong>Warning</strong>: Do <strong>not</strong> edit the content of that file under any circumstances as you will destroy the file!"
|
2461 |
+
msgstr "<strong>Warnung:</strong> Der Inhalt der Datei darf keinesfalls per Hand bearbeitet werden, da dies die Datei unbrauchbar machen wird!"
|
2462 |
|
2463 |
+
#: views/view-options.php:195
|
2464 |
#@ wp-table-reloaded
|
2465 |
+
msgid "Import a dump file"
|
2466 |
+
msgstr "Import einer Dump-Datei"
|
2467 |
|
2468 |
+
#: views/view-options.php:197
|
2469 |
#@ wp-table-reloaded
|
2470 |
+
msgid "To import a WP-Table Reloaded dump file and restore the included data, upload the file from your computer."
|
2471 |
+
msgstr "Um eine Dump-Datei von WP-Table Reloaded zu importieren und alle darin enthaltenen Tabellen und Einstellungen zu übernehmen, lade die Datei von deinem Computer hoch."
|
2472 |
|
2473 |
+
#: views/view-options.php:197
|
2474 |
#@ wp-table-reloaded
|
2475 |
+
msgid "All current data of this WP-Table Reloaded installation (Tables, Options, Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
|
2476 |
+
msgstr "Alle jetzigen Daten (Tabellen, Einstellungen, Optionen) dieser Installation von WP-Table Reloaded werden mit den Daten aus der Datei <strong>überschrieben</strong>!"
|
2477 |
|
2478 |
+
#: views/view-options.php:197
|
2479 |
#@ wp-table-reloaded
|
2480 |
+
msgid "Do not proceed, if you do not understand this!"
|
2481 |
+
msgstr "Fahre nicht fort, wenn du dies nicht verstehst!"
|
2482 |
|
2483 |
+
#: views/view-options.php:197
|
|
|
2484 |
#@ wp-table-reloaded
|
2485 |
+
msgid "It is highly recommended to export and backup the data of this installation before importing another dump file (see above)."
|
2486 |
+
msgstr "Es wird dringend empfohlen, vor dem Import einer Dump-Datei eine Sicherung der Daten dieser Installation durchzuführen (siehe oben)."
|
2487 |
|
2488 |
+
#: views/view-options.php:203
|
|
|
2489 |
#@ wp-table-reloaded
|
2490 |
+
msgid "Select Dump File"
|
2491 |
+
msgstr "Wähle die Dump-Datei"
|
2492 |
|
2493 |
+
#: views/view-options.php:205
|
2494 |
#@ wp-table-reloaded
|
2495 |
+
msgid "Import Dump File"
|
2496 |
+
msgstr "Importiere die Dump-Datei"
|
2497 |
|
2498 |
+
#: views/view-options.php:215
|
2499 |
#@ wp-table-reloaded
|
2500 |
+
msgid "Manually Uninstall WP-Table Reloaded"
|
2501 |
+
msgstr "WP-Table Reloaded manuell deinstallieren"
|
2502 |
|
2503 |
+
#: views/view-options.php:217
|
|
|
2504 |
#@ wp-table-reloaded
|
2505 |
+
msgid "Uninstalling <strong>will permanently delete</strong> all tables, data, and options, that belong to WP-Table Reloaded from the database, including all tables you added or imported."
|
2506 |
+
msgstr "Das Deinstallieren wird alle Tabellen, Einstellungen und Optionen, die zu WP-Table Reloaded gehören, permanent aus der Datenbank <strong>löschen</strong>, inklusive aller hingefügter und importierer Tabellen."
|
2507 |
|
2508 |
+
#: views/view-options.php:217
|
|
|
2509 |
#@ wp-table-reloaded
|
2510 |
+
msgid "You will manually need to remove the plugin's files from the plugin folder afterwards."
|
2511 |
+
msgstr "Anschließend können alle zum Plugin gehörigen Dateien manuell aus dem Plugin-Ordner gelöscht werden."
|
2512 |
|
2513 |
+
#: views/view-options.php:217
|
2514 |
#@ wp-table-reloaded
|
2515 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
2516 |
+
msgstr "Sei hiermit äußerst vorsichtig und klicke die Schaltfläche nur, wenn du weißt, was du tust!"
|
2517 |
|
2518 |
+
#: views/view-options.php:221
|
2519 |
#@ wp-table-reloaded
|
2520 |
+
msgid "Uninstall Plugin WP-Table Reloaded"
|
2521 |
+
msgstr "Plugin WP-Table Reloaded deinstallieren"
|
2522 |
|
2523 |
+
#: views/view-uninstall.php:3
|
2524 |
#@ wp-table-reloaded
|
2525 |
+
msgid "Plugin deactivated successfully."
|
2526 |
+
msgstr "Plugin erfolgreich deaktiviert."
|
2527 |
+
|
2528 |
+
#: views/view-uninstall.php:4
|
2529 |
+
#@ wp-table-reloaded
|
2530 |
+
msgid "All tables, data and options were deleted. You may now manually remove the plugin's subfolder from your WordPress plugin folder or use the \"Delete\" link on the Plugins page."
|
2531 |
+
msgstr "Alle Tabellen, Plugin-Daten und -Einstellungen wurden aus der Datenbank entfernt. Du kannst die Dateien des Plugins jetzt manuell aus dem Plugin-Unterordner auf deinem Server löschen oder dazu den \"Löschen\"-Link auf der WordPress-Plugins-Seite nutzen."
|
2532 |
|
2533 |
#. translators: plugin header field 'PluginURI'
|
2534 |
#: wp-table-reloaded.php:0
|
2542 |
msgid "This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML."
|
2543 |
msgstr "Dieses Plugin erlaubt die komfortable Verwaltung von Tabellen in WordPress. Dafür werden keine HTML-Kenntnisse benötigt. Die Daten werden in einer Eingabemaske eingegeben und mittels eines Shortcodes in Artikel, Seiten oder Text-Widgets eingebunden. Zusätzlich können einer Tabelle mit einer JavaScript-Bibliothek weitere Fähigkeiten, wie Sortieren, Paginierung und Filterung hinzugefügt werden."
|
2544 |
|
2545 |
+
#. translators: plugin header field 'Author'
|
2546 |
+
#: wp-table-reloaded.php:0
|
2547 |
+
#@ wp-table-reloaded
|
2548 |
+
msgid "Tobias Bäthge"
|
2549 |
+
msgstr "Tobias Bäthge"
|
2550 |
+
|
2551 |
#. translators: plugin header field 'AuthorURI'
|
2552 |
#: wp-table-reloaded.php:0
|
2553 |
#@ wp-table-reloaded
|
2554 |
msgid "http://tobias.baethge.com/"
|
2555 |
msgstr "http://tobias.baethge.com/"
|
2556 |
|
2557 |
+
#: controllers/controller-admin.php:1263
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2558 |
#@ wp-table-reloaded
|
2559 |
+
msgid "<span style=\"font-size:120%\">Important note: WP-Table Reloaded has been discontinued and will no longer be developed.<br /><span style=\"font-weight:normal\">It has officially been replaced with <a href=\"http://wordpress.org/plugins/tablepress/\">TablePress</a>, which not only fixed many problems, but also has better and new features.<br />Please <a href=\"http://tobias.baethge.com/2013/01/tablepress-replaces-wp-table-reloaded/\" style=\"font-weight:bold\">read this announcement</a> for more information and switch from WP-Table Reloaded to TablePress.</span></span>"
|
2560 |
+
msgstr "<span style=\"font-size:120%\">Wichtiger Hinweis: WP-Table Reloaded wurde eingestellt und wird nicht weiter entwickelt.<br /><span style=\"font-weight:normal\">Es wurde offiziell durch <a href=\"http://wordpress.org/plugins/tablepress/\">TablePress</a> ersetzt, das nicht nur viele Probleme behebt, sondern auch viele neue und bessere Funktionen mitbringt.<br />Bitte <a href=\"http://tobias.baethge.com/2013/01/tablepress-replaces-wp-table-reloaded/\" style=\"font-weight:bold\">lies diese Ankündigung</a> und wechsele von WP-Table Reloaded zu TablePress.</span></span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
2561 |
|
2562 |
#. translators: plugin header field 'Version'
|
2563 |
#: wp-table-reloaded.php:0
|
2564 |
#@ wp-table-reloaded
|
2565 |
+
msgid "1.9.4"
|
2566 |
msgstr ""
|
2567 |
|
languages/wp-table-reloaded-fi.po
CHANGED
@@ -2336,12 +2336,12 @@ msgstr "http://tobias.baethge.com/"
|
|
2336 |
#~ msgid ""
|
2337 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2338 |
#~ "com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate "
|
2339 |
-
#~ "the plugin in the <a href=\"http://wordpress.org/
|
2340 |
#~ "reloaded/\">WordPress Plugin Directory</a>."
|
2341 |
#~ msgstr ""
|
2342 |
#~ "Jos pidät lisäosasta, ole hyvä ja tee <a href=\"http://tobias.baethge.com/"
|
2343 |
#~ "wordpress-plugins/donate/\"><strong>lahjoitus</strong></a> ja pisteytä "
|
2344 |
-
#~ "lisäosa <a href=\"http://wordpress.org/
|
2345 |
#~ "\">WordPressin lisäosahakemistossa</a>."
|
2346 |
|
2347 |
#~ msgid "''alt'' text of the image"
|
2336 |
#~ msgid ""
|
2337 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2338 |
#~ "com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate "
|
2339 |
+
#~ "the plugin in the <a href=\"http://wordpress.org/plugins/wp-table-"
|
2340 |
#~ "reloaded/\">WordPress Plugin Directory</a>."
|
2341 |
#~ msgstr ""
|
2342 |
#~ "Jos pidät lisäosasta, ole hyvä ja tee <a href=\"http://tobias.baethge.com/"
|
2343 |
#~ "wordpress-plugins/donate/\"><strong>lahjoitus</strong></a> ja pisteytä "
|
2344 |
+
#~ "lisäosa <a href=\"http://wordpress.org/plugins/wp-table-reloaded/"
|
2345 |
#~ "\">WordPressin lisäosahakemistossa</a>."
|
2346 |
|
2347 |
#~ msgid "''alt'' text of the image"
|
languages/wp-table-reloaded-fi_FI.po
CHANGED
@@ -2336,12 +2336,12 @@ msgstr "http://tobias.baethge.com/"
|
|
2336 |
#~ msgid ""
|
2337 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2338 |
#~ "com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate "
|
2339 |
-
#~ "the plugin in the <a href=\"http://wordpress.org/
|
2340 |
#~ "reloaded/\">WordPress Plugin Directory</a>."
|
2341 |
#~ msgstr ""
|
2342 |
#~ "Jos pidät lisäosasta, ole hyvä ja tee <a href=\"http://tobias.baethge.com/"
|
2343 |
#~ "wordpress-plugins/donate/\"><strong>lahjoitus</strong></a> ja pisteytä "
|
2344 |
-
#~ "lisäosa <a href=\"http://wordpress.org/
|
2345 |
#~ "\">WordPressin lisäosahakemistossa</a>."
|
2346 |
|
2347 |
#~ msgid "''alt'' text of the image"
|
2336 |
#~ msgid ""
|
2337 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2338 |
#~ "com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate "
|
2339 |
+
#~ "the plugin in the <a href=\"http://wordpress.org/plugins/wp-table-"
|
2340 |
#~ "reloaded/\">WordPress Plugin Directory</a>."
|
2341 |
#~ msgstr ""
|
2342 |
#~ "Jos pidät lisäosasta, ole hyvä ja tee <a href=\"http://tobias.baethge.com/"
|
2343 |
#~ "wordpress-plugins/donate/\"><strong>lahjoitus</strong></a> ja pisteytä "
|
2344 |
+
#~ "lisäosa <a href=\"http://wordpress.org/plugins/wp-table-reloaded/"
|
2345 |
#~ "\">WordPressin lisäosahakemistossa</a>."
|
2346 |
|
2347 |
#~ msgid "''alt'' text of the image"
|
languages/wp-table-reloaded-sq_AL.po
CHANGED
@@ -704,8 +704,8 @@ msgid "More Information and Documentation"
|
|
704 |
msgstr "Informacione dhe dokumentacione të tjera"
|
705 |
|
706 |
#: wp-table-reloaded-admin.php:1234
|
707 |
-
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/
|
708 |
-
msgstr "Më shumë informacione gjen tek <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Faqja e Plugin</a> ose tek faqja e <a href=\"http://wordpress.org/
|
709 |
|
710 |
#: wp-table-reloaded-admin.php:1234
|
711 |
#: wp-table-reloaded-admin.php:1325
|
@@ -721,8 +721,8 @@ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias
|
|
721 |
msgstr "Ky Plugin u shkrua nga <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> . Plugini është Falas dhe nën liçencën GPL v2 ."
|
722 |
|
723 |
#: wp-table-reloaded-admin.php:1241
|
724 |
-
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/
|
725 |
-
msgstr "Nëse të pëlqen ky plugin atëher mund të<a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>dhurosh diçka</strong></a> ose vlerëso pluginin në faqen e <a href=\"http://wordpress.org/
|
726 |
|
727 |
#: wp-table-reloaded-admin.php:1241
|
728 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
704 |
msgstr "Informacione dhe dokumentacione të tjera"
|
705 |
|
706 |
#: wp-table-reloaded-admin.php:1234
|
707 |
+
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
708 |
+
msgstr "Më shumë informacione gjen tek <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">Faqja e Plugin</a> ose tek faqja e <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Plugin Directory.</a>"
|
709 |
|
710 |
#: wp-table-reloaded-admin.php:1234
|
711 |
#: wp-table-reloaded-admin.php:1325
|
721 |
msgstr "Ky Plugin u shkrua nga <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> . Plugini është Falas dhe nën liçencën GPL v2 ."
|
722 |
|
723 |
#: wp-table-reloaded-admin.php:1241
|
724 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
725 |
+
msgstr "Nëse të pëlqen ky plugin atëher mund të<a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>dhurosh diçka</strong></a> ose vlerëso pluginin në faqen e <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> . Faleminderit!"
|
726 |
|
727 |
#: wp-table-reloaded-admin.php:1241
|
728 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
languages/wp-table-reloaded-sv_SE.po
CHANGED
@@ -2347,12 +2347,12 @@ msgstr "Alla tabeller, data och inställningar raderades. Du kan nu manuellt ta
|
|
2347 |
#~ msgid ""
|
2348 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2349 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2350 |
-
#~ "<a href=\"http://wordpress.org/
|
2351 |
#~ "\">WordPress Plugin Directory</a>."
|
2352 |
#~ msgstr ""
|
2353 |
#~ "Om du gillar detta tillägg, var vänlig överväg <a href=\"http://tobias."
|
2354 |
#~ "baethge.com/donate/\"><strong>en donation</strong></a> och betygsätt "
|
2355 |
-
#~ "tillägget på <a href=\"http://wordpress.org/
|
2356 |
#~ "reloaded/\">WordPress Plugin Directory</a>."
|
2357 |
|
2358 |
#~ msgid "This is the \"List Tables\" screen."
|
2347 |
#~ msgid ""
|
2348 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2349 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2350 |
+
#~ "<a href=\"http://wordpress.org/plugins/wp-table-reloaded/"
|
2351 |
#~ "\">WordPress Plugin Directory</a>."
|
2352 |
#~ msgstr ""
|
2353 |
#~ "Om du gillar detta tillägg, var vänlig överväg <a href=\"http://tobias."
|
2354 |
#~ "baethge.com/donate/\"><strong>en donation</strong></a> och betygsätt "
|
2355 |
+
#~ "tillägget på <a href=\"http://wordpress.org/plugins/wp-table-"
|
2356 |
#~ "reloaded/\">WordPress Plugin Directory</a>."
|
2357 |
|
2358 |
#~ msgid "This is the \"List Tables\" screen."
|
languages/wp-table-reloaded-tr_TR.po
CHANGED
@@ -526,7 +526,7 @@ msgid "More Information and Documentation"
|
|
526 |
msgstr "Daha Fazla Bilgi Ve Döküman"
|
527 |
|
528 |
#: wp-table-reloaded-admin.php:1039
|
529 |
-
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/
|
530 |
msgstr "Daha fazla bilgiyi <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-roladed/\">eklentinin websitesinde</a> bulabilirsiniz. Belgeler, eklenti desteği ve yardım istekleri çok yakında hazır olacak."
|
531 |
|
532 |
#: wp-table-reloaded-admin.php:1044
|
@@ -538,8 +538,8 @@ msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias
|
|
538 |
msgstr "Bu eklenti <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> tarafından yazılmıştır. GPL 2 ile Ücretsiz Yazılım olarak lisanslanmıştır."
|
539 |
|
540 |
#: wp-table-reloaded-admin.php:1046
|
541 |
-
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/
|
542 |
-
msgstr "Eğer eklentiyi sevdiyseniz, lütfen <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">bağış yapın</a> veya <a href=\"http://wordpress.org/
|
543 |
|
544 |
#: wp-table-reloaded-admin.php:1051
|
545 |
msgid "Credits and Thanks"
|
526 |
msgstr "Daha Fazla Bilgi Ve Döküman"
|
527 |
|
528 |
#: wp-table-reloaded-admin.php:1039
|
529 |
+
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded/\">plugin's website</a> or on its page in the <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. A documentation and certain support and help request possibilities will be available soon."
|
530 |
msgstr "Daha fazla bilgiyi <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-roladed/\">eklentinin websitesinde</a> bulabilirsiniz. Belgeler, eklenti desteği ve yardım istekleri çok yakında hazır olacak."
|
531 |
|
532 |
#: wp-table-reloaded-admin.php:1044
|
538 |
msgstr "Bu eklenti <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> tarafından yazılmıştır. GPL 2 ile Ücretsiz Yazılım olarak lisanslanmıştır."
|
539 |
|
540 |
#: wp-table-reloaded-admin.php:1046
|
541 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">donating</a> or rating it at the <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>. Thanks!"
|
542 |
+
msgstr "Eğer eklentiyi sevdiyseniz, lütfen <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\">bağış yapın</a> veya <a href=\"http://wordpress.org/plugins/wp-table-reloaded/\">WordPress Eklenti Dizininde</a> oy verin. Teşekkürler!"
|
543 |
|
544 |
#: wp-table-reloaded-admin.php:1051
|
545 |
msgid "Credits and Thanks"
|
languages/wp-table-reloaded-ua_UA.po
CHANGED
@@ -2359,7 +2359,7 @@ msgstr "http://tobias.baethge.com/"
|
|
2359 |
#~ msgid ""
|
2360 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2361 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2362 |
-
#~ "<a href=\"http://wordpress.org/
|
2363 |
#~ "\">WordPress Plugin Directory</a>."
|
2364 |
#~ msgstr ""
|
2365 |
#~ "Pokud se V?m plugin l?bil a ?sp??n? ho vyu??v?te, zva?te pros?m mo?nost "
|
2359 |
#~ msgid ""
|
2360 |
#~ "If you like the plugin, please consider <a href=\"http://tobias.baethge."
|
2361 |
#~ "com/donate/\"><strong>a donation</strong></a> and rate the plugin in the "
|
2362 |
+
#~ "<a href=\"http://wordpress.org/plugins/wp-table-reloaded/"
|
2363 |
#~ "\">WordPress Plugin Directory</a>."
|
2364 |
#~ msgstr ""
|
2365 |
#~ "Pokud se V?m plugin l?bil a ?sp??n? ho vyu??v?te, zva?te pros?m mo?nost "
|
languages/wp-table-reloaded.pot
CHANGED
@@ -1,715 +1,823 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the WP-Table Reloaded package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP-Table Reloaded 1.9.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#:
|
16 |
-
msgid ""
|
17 |
-
"It is recommended to export and backup the data of important tables "
|
18 |
-
"regularly."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
-
msgid ""
|
23 |
-
"Select the table, the desired export format and (for CSV only) a delimiter."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#:
|
27 |
-
msgid ""
|
28 |
-
"You may choose to download the export file. Otherwise it will be shown on "
|
29 |
-
"this page."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
msgid ""
|
34 |
-
"Be aware that only the table data, but no options or settings are exported."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
msgid ""
|
39 |
-
"To backup all tables, including their settings, at once use the "%"
|
40 |
-
"s" button in the "%s"."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#:
|
48 |
-
|
49 |
-
msgid "Plugin Options"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: views/view-
|
57 |
-
msgid "
|
|
|
|
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: views/view-
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: views/view-
|
65 |
-
msgid "
|
|
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: views/view-
|
69 |
-
msgid "
|
|
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: views/view-
|
73 |
-
msgid "
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#:
|
77 |
-
msgid "
|
|
|
|
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
-
|
82 |
-
msgid "No tables were found."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#:
|
86 |
-
msgid ""
|
87 |
-
"You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to "
|
88 |
-
"get started!"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#:
|
92 |
-
msgid "
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#:
|
96 |
msgid ""
|
97 |
-
"
|
98 |
-
"
|
|
|
|
|
|
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
-
#:
|
102 |
-
#: views/view-ajax_preview.php:5
|
103 |
msgid ""
|
104 |
-
"
|
105 |
-
"
|
106 |
-
"in the editor."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
|
|
111 |
msgstr ""
|
112 |
|
113 |
-
#:
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
#: views/view-options.php:196
|
118 |
-
msgctxt "expand"
|
119 |
-
msgid "Hide"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#:
|
123 |
-
|
124 |
-
#: views/view-about.php:89 views/view-options.php:19 views/view-options.php:70
|
125 |
-
#: views/view-options.php:91 views/view-options.php:185
|
126 |
-
#: views/view-options.php:196
|
127 |
-
msgid "Expand"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: views/view-
|
131 |
-
msgid "
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
-
|
136 |
-
#: views/view-import.php:109 views/view-list.php:15 views/view-list.php:25
|
137 |
-
#: views/view-add.php:13
|
138 |
-
msgid "Table Name"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
|
143 |
-
#: views/view-import.php:110 views/view-list.php:16 views/view-list.php:26
|
144 |
-
#: views/view-add.php:17
|
145 |
-
msgid "Description"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
150 |
msgstr ""
|
151 |
|
152 |
-
#:
|
153 |
-
msgid "
|
154 |
msgstr ""
|
155 |
|
156 |
-
#:
|
157 |
-
|
158 |
-
msgid "Update Changes"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
162 |
-
|
163 |
-
msgid "Save and go back"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
-
|
168 |
-
#: views/view-options.php:172
|
169 |
-
msgid "Cancel"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#:
|
173 |
-
msgid "
|
174 |
msgstr ""
|
175 |
|
176 |
-
#:
|
177 |
-
msgid "
|
178 |
msgstr ""
|
179 |
|
180 |
-
#:
|
181 |
-
msgid "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#:
|
185 |
-
msgid "
|
186 |
msgstr ""
|
187 |
|
188 |
-
#:
|
189 |
-
msgid "
|
190 |
msgstr ""
|
191 |
|
192 |
-
#:
|
193 |
-
msgid "
|
194 |
msgstr ""
|
195 |
|
196 |
-
#:
|
197 |
-
msgid "
|
198 |
msgstr ""
|
199 |
|
200 |
-
#:
|
201 |
-
msgid "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#:
|
205 |
-
|
206 |
-
msgid "Hide"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#:
|
210 |
-
|
211 |
-
msgid "Unhide"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#:
|
215 |
-
|
216 |
-
msgid "Selected rows: %s %s"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
-
|
221 |
-
msgid "Selected columns: %s %s"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#:
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#:
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#:
|
237 |
-
msgid "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#:
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#:
|
245 |
-
msgid "
|
|
|
|
|
|
|
246 |
msgstr ""
|
247 |
|
248 |
-
#:
|
249 |
-
|
250 |
-
msgid "Selected rows: %s %s"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
254 |
-
msgid "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
-
|
259 |
-
|
260 |
msgstr ""
|
261 |
|
262 |
-
#:
|
263 |
-
msgid "
|
|
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
-
#:
|
267 |
-
msgid "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#:
|
271 |
-
msgid "
|
|
|
|
|
272 |
msgstr ""
|
273 |
|
274 |
-
#:
|
275 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
msgstr ""
|
277 |
|
278 |
-
#:
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#:
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#:
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#:
|
291 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
msgstr ""
|
293 |
|
294 |
-
#:
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#:
|
299 |
-
msgid "
|
|
|
|
|
300 |
msgstr ""
|
301 |
|
302 |
-
#:
|
303 |
-
msgid "
|
|
|
|
|
304 |
msgstr ""
|
305 |
|
306 |
-
#:
|
307 |
-
msgid "Table
|
308 |
msgstr ""
|
309 |
|
310 |
-
#:
|
311 |
-
msgid "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#:
|
315 |
-
msgid "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#:
|
319 |
-
msgid "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#:
|
323 |
-
msgid "Row
|
324 |
msgstr ""
|
325 |
|
326 |
-
#:
|
327 |
-
msgid ""
|
328 |
-
"Highlight a row by changing its background color while the mouse cursor "
|
329 |
-
"hovers above it."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#:
|
333 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
msgstr ""
|
335 |
|
336 |
-
#:
|
337 |
msgid ""
|
338 |
-
"
|
339 |
-
"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#:
|
343 |
-
msgid "
|
|
|
|
|
344 |
msgstr ""
|
345 |
|
346 |
-
#:
|
347 |
msgid ""
|
348 |
-
"
|
349 |
-
"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#:
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#:
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#:
|
361 |
-
msgid "
|
362 |
-
|
|
|
|
|
363 |
|
364 |
-
#:
|
365 |
-
msgid "Table
|
366 |
-
|
|
|
|
|
367 |
|
368 |
-
#:
|
369 |
-
|
370 |
-
|
|
|
|
|
|
|
371 |
|
372 |
-
#:
|
373 |
-
msgid "
|
374 |
msgstr ""
|
375 |
|
376 |
-
#:
|
377 |
-
msgid ""
|
378 |
-
"The resulting HTML output of the table shall be cached in the WordPress "
|
379 |
-
"database cache for faster page generation."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#:
|
383 |
-
msgid "
|
384 |
msgstr ""
|
385 |
|
386 |
-
#:
|
387 |
-
msgid ""
|
388 |
-
"Enter a string that will be given to the table as an additional class for "
|
389 |
-
"styling with CSS."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#:
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
-
#:
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#:
|
401 |
-
|
|
|
402 |
msgstr ""
|
403 |
|
404 |
-
#:
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#:
|
409 |
-
msgid "
|
410 |
msgstr ""
|
411 |
|
412 |
-
#:
|
413 |
-
msgid ""
|
414 |
-
"You must enable the use of a JavaScript library on the "%s" screen "
|
415 |
-
"first."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#:
|
419 |
-
msgid "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#:
|
423 |
-
msgid ""
|
424 |
-
"You can enable certain features for the DataTables JavaScript library here."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
-
msgid ""
|
429 |
-
"More information on these features can be found on the <a href=\"http://www."
|
430 |
-
"datatables.net/\">DataTables website</a>."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#:
|
434 |
-
msgid ""
|
435 |
-
"You can currently not change these options, because you have not enabled the "
|
436 |
-
""DataTables" or the "DataTables+TableTools" JavaScript "
|
437 |
-
"library on the "%s" screen."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
-
msgid ""
|
442 |
-
"It is not possible to use these features with the "Tablesorter" or "
|
443 |
-
""Tablesorter Extended" libraries."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#:
|
447 |
-
msgid "
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: views/view-
|
451 |
-
msgid "
|
452 |
msgstr ""
|
453 |
|
454 |
-
#:
|
455 |
-
msgid "
|
456 |
msgstr ""
|
457 |
|
458 |
-
#:
|
459 |
-
msgid ""
|
460 |
-
"Yes, enable pagination (showing only a certain number of rows) of the table "
|
461 |
-
"by the visitor."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#:
|
465 |
-
msgid "
|
466 |
msgstr ""
|
467 |
|
468 |
-
#:
|
469 |
-
msgid "
|
|
|
|
|
470 |
msgstr ""
|
471 |
|
472 |
-
#:
|
473 |
msgid ""
|
474 |
-
"
|
475 |
-
"
|
|
|
|
|
476 |
msgstr ""
|
477 |
|
478 |
-
#:
|
479 |
-
msgid "
|
480 |
msgstr ""
|
481 |
|
482 |
-
#:
|
483 |
-
msgid ""
|
484 |
-
"Yes, enable the visitor to filter or search the table. Only rows with the "
|
485 |
-
"search word in them are shown."
|
486 |
msgstr ""
|
487 |
|
488 |
-
|
489 |
-
|
|
|
|
|
|
|
490 |
msgstr ""
|
491 |
|
492 |
-
#:
|
493 |
-
msgid ""
|
494 |
-
"Yes, show the table information display. This shows information and "
|
495 |
-
"statistics about the currently visible data, including filtering."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#:
|
499 |
-
msgid "
|
500 |
msgstr ""
|
501 |
|
502 |
-
#:
|
503 |
-
msgid ""
|
504 |
-
"Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save "
|
505 |
-
"to XLS, Print Table) for this table."
|
506 |
msgstr ""
|
507 |
|
508 |
-
#:
|
509 |
-
|
510 |
-
"
|
511 |
-
"JavaScript library."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#:
|
515 |
-
msgid "
|
516 |
msgstr ""
|
517 |
|
518 |
-
#:
|
519 |
-
msgid ""
|
520 |
-
"Enter additional DataTables JavaScript parameters that will be included with "
|
521 |
-
"the script call here."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#:
|
525 |
-
msgid ""
|
526 |
-
"For advanced use only. Read the <a href=\"http://www.datatables.net/"
|
527 |
-
"\">DataTables documentation</a> before."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: views/view-
|
531 |
-
msgid "
|
532 |
msgstr ""
|
533 |
|
534 |
-
#:
|
535 |
-
msgid "
|
536 |
msgstr ""
|
537 |
|
538 |
-
#:
|
539 |
-
msgid ""
|
540 |
-
"For example, this could be information about the source or the creator of "
|
541 |
-
"the data."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#:
|
545 |
-
msgid ""
|
546 |
-
"You can show this data in the same way as tables by using the shortcode "
|
547 |
-
"<strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#:
|
551 |
-
msgid "
|
552 |
msgstr ""
|
553 |
|
554 |
-
#:
|
555 |
-
msgid "
|
556 |
msgstr ""
|
557 |
|
558 |
-
#:
|
559 |
-
|
560 |
-
#: views/view-import.php:111
|
561 |
-
msgid "Action"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#:
|
565 |
-
msgid "
|
566 |
msgstr ""
|
567 |
|
568 |
-
#:
|
569 |
-
msgid "
|
|
|
|
|
|
|
|
|
570 |
msgstr ""
|
571 |
|
572 |
-
#:
|
573 |
msgid ""
|
574 |
-
"
|
575 |
-
"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#:
|
579 |
-
msgid "
|
580 |
msgstr ""
|
581 |
|
582 |
-
#:
|
583 |
-
msgid "
|
584 |
msgstr ""
|
585 |
|
586 |
-
#:
|
587 |
-
msgid "
|
|
|
|
|
588 |
msgstr ""
|
589 |
|
590 |
-
#:
|
591 |
-
msgid "
|
|
|
|
|
592 |
msgstr ""
|
593 |
|
594 |
-
#:
|
595 |
-
msgid "
|
|
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
-
#:
|
599 |
-
msgid ""
|
600 |
-
"Click the "%s" link after the desired table and the corresponding "
|
601 |
-
"shortcode will be inserted into the editor (<strong>[table id=<ID> /]</"
|
602 |
-
"strong>)."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#:
|
606 |
-
msgid "Insert"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#:
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
msgstr ""
|
614 |
|
615 |
-
#:
|
616 |
-
msgid "
|
|
|
|
|
617 |
msgstr ""
|
618 |
|
619 |
-
#:
|
620 |
-
msgid "
|
621 |
msgstr ""
|
622 |
|
623 |
-
#:
|
624 |
msgid ""
|
625 |
-
"
|
626 |
-
"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#:
|
630 |
msgid ""
|
631 |
-
"
|
632 |
-
"existing table."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#:
|
636 |
-
msgid "
|
637 |
msgstr ""
|
638 |
|
639 |
-
#:
|
640 |
-
msgid "
|
|
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
-
#:
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#:
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
-
#:
|
652 |
-
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
-
#:
|
656 |
-
|
|
|
657 |
msgstr ""
|
658 |
|
659 |
-
#:
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#:
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#:
|
668 |
-
msgid "
|
669 |
msgstr ""
|
670 |
|
671 |
-
#:
|
672 |
-
msgid "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#:
|
676 |
-
msgid "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#:
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#:
|
684 |
-
msgid "
|
685 |
msgstr ""
|
686 |
|
687 |
-
#:
|
688 |
-
msgid "
|
689 |
msgstr ""
|
690 |
|
691 |
-
#:
|
692 |
-
msgid "
|
|
|
|
|
693 |
msgstr ""
|
694 |
|
695 |
-
#:
|
696 |
-
msgid "
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
-
#:
|
700 |
-
msgid "
|
|
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
-
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: views/view-
|
708 |
-
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
-
#:
|
712 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
#: views/view-about.php:5
|
@@ -769,6 +877,14 @@ msgid ""
|
|
769 |
"corresponding HTML will be added to it for you."
|
770 |
msgstr ""
|
771 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
#: views/view-about.php:14
|
773 |
msgid ""
|
774 |
"You can also select the desired table from a list (after clicking the button "
|
@@ -776,11 +892,6 @@ msgid ""
|
|
776 |
"be added for you."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: views/view-about.php:14 views/view-list.php:2
|
780 |
-
#: controllers/controller-admin.php:1795
|
781 |
-
msgid "Table"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
#: views/view-about.php:14
|
785 |
msgid "Tables can be styled by changing and adding CSS commands."
|
786 |
msgstr ""
|
@@ -807,34 +918,10 @@ msgstr ""
|
|
807 |
msgid "More Information and Documentation"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: views/view-about.php:21 classes/helper.class.php:40
|
811 |
-
msgid ""
|
812 |
-
"More information about WP-Table Reloaded can be found on the <a href=\"%s"
|
813 |
-
"\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress "
|
814 |
-
"Plugin Directory</a>."
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: views/view-about.php:21 classes/helper.class.php:41
|
818 |
-
msgid "For technical information, see the <a href=\"%s\">documentation</a>."
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
#: views/view-about.php:26
|
822 |
msgid "Help and Support"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: views/view-about.php:28 classes/helper.class.php:42
|
826 |
-
msgid ""
|
827 |
-
"<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress "
|
828 |
-
"Support Forums</a>."
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: views/view-about.php:28 classes/helper.class.php:43
|
832 |
-
msgid ""
|
833 |
-
"Before asking for support, please carefully read the <a href=\"%s"
|
834 |
-
"\">Frequently Asked Questions</a> where you will find answered to the most "
|
835 |
-
"common questions, and search through the forums."
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
#: views/view-about.php:28
|
839 |
msgid ""
|
840 |
"If you do not find an answer there, please <a href=\"%s\">open a new thread</"
|
@@ -854,12 +941,6 @@ msgstr ""
|
|
854 |
msgid "It is licensed as Free Software under GPL 2."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: views/view-about.php:35 classes/helper.class.php:44
|
858 |
-
msgid ""
|
859 |
-
"If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is "
|
860 |
-
"recommended."
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
#: views/view-about.php:35
|
864 |
msgid ""
|
865 |
"Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
|
@@ -903,1240 +984,1165 @@ msgstr ""
|
|
903 |
msgid "the submitters of translations:"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: views/view-about.php:
|
907 |
msgid "%s (thanks to %s)"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: views/view-about.php:
|
911 |
msgid ""
|
912 |
"and to all donors, contributors, supporters, reviewers and users of the "
|
913 |
"plugin!"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: views/view-about.php:
|
917 |
msgid "Debug and Version Information"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: views/view-about.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
921 |
msgid "You are using the following versions of the software."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: views/view-about.php:
|
925 |
msgid "Please provide this information in bug reports."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: views/view-about.php:
|
929 |
msgid "Plugin installed"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: views/view-
|
933 |
msgid ""
|
934 |
-
"
|
935 |
-
"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: views/view-
|
939 |
-
msgid ""
|
940 |
-
"Frontend Options influence the output and used features of tables in pages, "
|
941 |
-
"posts or text-widgets."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: views/view-
|
945 |
-
|
946 |
-
|
947 |
-
|
|
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: views/view-
|
951 |
-
|
952 |
-
msgid "Edit Table"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: views/view-
|
956 |
-
|
|
|
|
|
|
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: views/view-
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: views/view-
|
964 |
-
msgid "
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: views/view-
|
968 |
-
msgid "
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: views/view-
|
972 |
-
msgid ""
|
973 |
-
"WP-Table Reloaded includes three JavaScript libraries that can add useful "
|
974 |
-
"features, like sorting, pagination, and filtering, to a table."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: views/view-
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: views/view-
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: views/view-
|
986 |
msgid ""
|
987 |
-
"
|
988 |
-
"
|
989 |
-
|
990 |
-
|
991 |
-
#: views/view-options.php:36
|
992 |
-
msgid "Default CSS"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: views/view-
|
996 |
-
msgid ""
|
997 |
-
"Yes, include and load the plugin's default CSS Stylesheets. This is highly "
|
998 |
-
"recommended, if you use one of the JavaScript libraries!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: views/view-
|
1002 |
-
|
|
|
|
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: views/view-
|
1006 |
-
|
|
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: views/view-
|
1010 |
-
msgid "This
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: views/view-
|
1014 |
-
msgid "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: views/view-
|
1018 |
-
msgid ""
|
1019 |
-
"Information on available CSS selectors can be found in the <a href=\"%s"
|
1020 |
-
"\">documentation</a>."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: views/view-
|
1024 |
-
msgid "
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: views/view-
|
1028 |
msgid ""
|
1029 |
-
"
|
1030 |
-
"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: views/view-
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: views/view-
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: views/view-
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: views/view-
|
1046 |
-
msgid ""
|
1047 |
-
"Yes, show a warning message, if I leave the "%s" screen and have "
|
1048 |
-
"not yet saved my changes."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: views/view-
|
1052 |
-
|
|
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: views/view-
|
1056 |
-
|
1057 |
-
|
1058 |
-
"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: views/view-
|
1062 |
-
msgid "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: views/view-
|
1066 |
-
msgid ""
|
1067 |
-
"Yes, use the DataTables JavaScript features (sorting, pagination, filtering) "
|
1068 |
-
"on the "%s" screen."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: views/view-
|
1072 |
-
msgid "
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: views/view-
|
1076 |
-
msgid "
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: views/view-
|
1080 |
-
|
1081 |
-
msgid "This area are only available to site administrators!"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: views/view-
|
1085 |
-
msgid "
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: views/view-
|
1089 |
-
msgid "
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: views/view-
|
1093 |
-
msgid "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: views/view-
|
1097 |
-
msgctxt "
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: views/view-
|
1102 |
-
msgctxt "
|
1103 |
-
msgid "
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: views/view-
|
1107 |
-
msgctxt "
|
1108 |
-
msgid "
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: views/view-
|
1112 |
-
msgctxt "
|
1113 |
-
msgid "
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: views/view-
|
1117 |
-
msgid "
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: views/view-
|
1121 |
-
msgid "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: views/view-
|
1125 |
-
msgid ""
|
1126 |
-
"Admin Options, Dump file Import, and Manual Plugin Uninstall are always "
|
1127 |
-
"accessible by Administrators only, regardless of this setting."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: views/view-
|
1131 |
-
msgid "
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: views/view-
|
1135 |
-
msgid "
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: views/view-
|
1139 |
-
msgid "
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: views/view-
|
1143 |
-
|
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: views/view-
|
1147 |
-
msgid "
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: views/view-
|
1151 |
-
|
|
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: views/view-
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: views/view-
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: views/view-
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: views/view-
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: views/view-
|
1171 |
-
msgid "
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: views/view-
|
1175 |
-
msgid "
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: views/view-
|
1179 |
-
msgid "
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: views/view-
|
1183 |
-
msgid ""
|
1184 |
-
"Yes, show an \"Edit\" link to users with sufficient rights near every table "
|
1185 |
-
"on the frontend."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: views/view-
|
1189 |
-
msgid "
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: views/view-
|
1193 |
-
msgid ""
|
1194 |
-
"Yes, the WordPress Search shall also find posts and pages that contain the "
|
1195 |
-
"search term inside a table."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: views/view-
|
1199 |
-
msgid "
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: views/view-
|
1203 |
-
msgid ""
|
1204 |
-
"Yes, remove all plugin related data from the database when the plugin is "
|
1205 |
-
"deactivated."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: views/view-
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: views/view-
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: views/view-
|
1217 |
-
msgid ""
|
1218 |
-
"WP-Table Reloaded can export and import a so-called dump file that contains "
|
1219 |
-
"all tables, their settings and the plugin's options."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: views/view-
|
1223 |
-
msgid ""
|
1224 |
-
"This file can be used as a backup or to move all data to another WordPress "
|
1225 |
-
"site."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: views/view-
|
1229 |
-
msgid "
|
|
|
|
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: views/view-
|
1233 |
-
msgid ""
|
1234 |
-
"To export all Tables and their settings, click the button below to generate "
|
1235 |
-
"and download a dump file."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: views/view-
|
1239 |
msgid ""
|
1240 |
-
"
|
1241 |
-
"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: views/view-
|
1245 |
-
msgid "
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: views/view-
|
1249 |
msgid ""
|
1250 |
-
"
|
1251 |
-
"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: views/view-
|
1255 |
-
msgid ""
|
1256 |
-
"All current data of this WP-Table Reloaded installation (Tables, Options, "
|
1257 |
-
"Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: views/view-
|
1261 |
-
msgid "
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: views/view-
|
1265 |
-
msgid ""
|
1266 |
-
"It is highly recommended to export and backup the data of this installation "
|
1267 |
-
"before importing another dump file (see above)."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: views/view-
|
1271 |
-
msgid "
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: views/view-
|
1275 |
-
msgid "
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: views/view-
|
1279 |
-
msgid "
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: views/view-
|
1283 |
msgid ""
|
1284 |
-
"
|
1285 |
-
"
|
1286 |
-
"tables you added or imported."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: views/view-
|
1290 |
-
msgid ""
|
1291 |
-
"You will manually need to remove the plugin's files from the plugin folder "
|
1292 |
-
"afterwards."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: views/view-
|
1296 |
msgid ""
|
1297 |
-
"
|
1298 |
-
"
|
1299 |
-
msgstr ""
|
1300 |
-
|
1301 |
-
#: views/view-options.php:222
|
1302 |
-
msgid "Uninstall Plugin WP-Table Reloaded"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: views/view-
|
1306 |
-
msgid "
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: views/view-
|
1310 |
-
msgid "
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: views/view-
|
1314 |
-
msgid ""
|
1315 |
-
"All tables, data and options were deleted. You may now manually remove the "
|
1316 |
-
"plugin's subfolder from your WordPress plugin folder or use the \"Delete\" "
|
1317 |
-
"link on the Plugins page."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: views/view-
|
1321 |
-
msgid "
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: views/view-
|
1325 |
-
msgid "
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: views/view-
|
1329 |
msgid ""
|
1330 |
-
"You
|
1331 |
-
"
|
1332 |
-
msgstr ""
|
1333 |
-
|
1334 |
-
#: views/view-list.php:39
|
1335 |
-
msgid "(no name)"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: views/view-
|
1339 |
-
msgid "
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: views/view-
|
1343 |
-
msgid "
|
|
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: views/view-
|
1347 |
-
msgid "
|
|
|
|
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: views/view-
|
1351 |
-
msgid "
|
|
|
|
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: views/view-
|
1355 |
-
msgid "
|
|
|
|
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: views/view-
|
1359 |
-
msgid "
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: views/view-
|
1363 |
-
msgid "
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: views/view-
|
1367 |
-
msgid "
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: views/view-
|
1371 |
-
msgid "
|
|
|
|
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: views/view-
|
1375 |
-
msgid "
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: views/view-
|
1379 |
-
msgid "
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: views/view-
|
1383 |
-
msgid "
|
|
|
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: views/view-
|
1387 |
-
msgid "
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: views/view-
|
1391 |
msgid ""
|
1392 |
-
"
|
1393 |
-
"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: views/view-
|
1397 |
-
msgid "
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: views/view-
|
1401 |
-
msgid "
|
|
|
|
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: views/view-
|
1405 |
-
msgid "
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: views/view-
|
1409 |
-
msgid "
|
|
|
|
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: views/view-
|
1413 |
-
msgid "
|
|
|
|
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: views/view-
|
1417 |
-
msgid "
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#:
|
1421 |
-
msgid "
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#:
|
1425 |
-
msgid "
|
|
|
|
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#:
|
1429 |
-
msgid "
|
|
|
|
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#:
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#:
|
1437 |
-
msgid "
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#:
|
1441 |
-
msgid "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
-
msgid "
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#:
|
1449 |
-
msgid "
|
|
|
|
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#:
|
1453 |
-
msgid "
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#:
|
1457 |
-
msgid "
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#:
|
1461 |
-
msgid "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#:
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#:
|
1469 |
-
msgid "
|
|
|
|
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#:
|
1473 |
-
msgid "
|
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#:
|
1477 |
-
msgid "
|
|
|
|
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#:
|
1481 |
-
msgid "
|
|
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#:
|
1485 |
-
msgid "
|
|
|
|
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#:
|
1489 |
-
msgid "
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#:
|
1493 |
-
msgid "
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#:
|
1497 |
-
msgid "
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#:
|
1501 |
-
msgid "
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#:
|
1505 |
-
msgid ""
|
1506 |
-
"Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, "
|
1507 |
-
"please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s"
|
1508 |
-
"\">documentation</a>, and the <a href=\"%s\">support</a> section."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#:
|
1512 |
-
msgid "
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#:
|
1516 |
-
msgid "
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#:
|
1520 |
msgid ""
|
1521 |
-
"
|
|
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#:
|
1525 |
-
msgid ""
|
1526 |
-
"If you like the new features and enhancements, I would appreciate a small <a "
|
1527 |
-
"href=\"%s\">donation</a>. Thank you."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#:
|
1531 |
-
msgid "
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#:
|
1535 |
msgid ""
|
1536 |
-
"
|
1537 |
-
"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#:
|
1541 |
-
msgid ""
|
1542 |
-
"If it works and you are satisfied with the results of managing your %s "
|
1543 |
-
"table, isn't it worth at least one dollar or euro?"
|
1544 |
-
msgid_plural ""
|
1545 |
-
"If it works and you are satisfied with the results of managing your %s "
|
1546 |
-
"tables, isn't it worth at least one dollar or euro?"
|
1547 |
-
msgstr[0] ""
|
1548 |
-
msgstr[1] ""
|
1549 |
-
|
1550 |
-
#: controllers/controller-admin.php:320
|
1551 |
msgid ""
|
1552 |
-
"
|
1553 |
-
"
|
1554 |
-
"free time! Thank you!"
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
-
#: controllers/controller-admin.php:321
|
1558 |
-
msgid "Sure, no problem!"
|
1559 |
-
msgstr ""
|
1560 |
-
|
1561 |
-
#: controllers/controller-admin.php:322
|
1562 |
-
msgid "I already donated."
|
1563 |
-
msgstr ""
|
1564 |
-
|
1565 |
-
#: controllers/controller-admin.php:323
|
1566 |
-
msgid "No, thanks. Don't ask again."
|
1567 |
-
msgstr ""
|
1568 |
-
|
1569 |
-
#: controllers/controller-admin.php:351
|
1570 |
-
msgid "Table "%s" added successfully."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#:
|
1574 |
-
msgid ""
|
1575 |
-
"Table edited successfully. This Table now has the ID %s. You'll need to "
|
1576 |
-
"adjust existing shortcodes accordingly."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#:
|
1580 |
-
msgid ""
|
1581 |
-
"The ID could not be changed from %s to %s, because there already is a Table "
|
1582 |
-
"with that ID."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#:
|
1586 |
-
msgid "
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#:
|
1590 |
-
msgid "
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#:
|
1594 |
-
msgid "
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#:
|
1598 |
-
msgid "
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#:
|
1602 |
-
msgid "
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#:
|
1606 |
-
msgid "
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#:
|
1610 |
-
msgid "
|
1611 |
-
msgid_plural "Rows could not be deleted."
|
1612 |
-
msgstr[0] ""
|
1613 |
-
msgstr[1] ""
|
1614 |
-
|
1615 |
-
#: controllers/controller-admin.php:565
|
1616 |
-
msgid "Row deleted successfully."
|
1617 |
-
msgid_plural "Rows deleted successfully."
|
1618 |
-
msgstr[0] ""
|
1619 |
-
msgstr[1] ""
|
1620 |
-
|
1621 |
-
#: controllers/controller-admin.php:575
|
1622 |
-
msgid "Column could not be deleted."
|
1623 |
-
msgid_plural "Columns could not be deleted."
|
1624 |
-
msgstr[0] ""
|
1625 |
-
msgstr[1] ""
|
1626 |
-
|
1627 |
-
#: controllers/controller-admin.php:588
|
1628 |
-
msgid "Column deleted successfully."
|
1629 |
-
msgid_plural "Columns deleted successfully."
|
1630 |
-
msgstr[0] ""
|
1631 |
-
msgstr[1] ""
|
1632 |
-
|
1633 |
-
#: controllers/controller-admin.php:611
|
1634 |
-
msgid "Row inserted successfully."
|
1635 |
-
msgid_plural "Rows inserted successfully."
|
1636 |
-
msgstr[0] ""
|
1637 |
-
msgstr[1] ""
|
1638 |
-
|
1639 |
-
#: controllers/controller-admin.php:638
|
1640 |
-
msgid "Column inserted successfully."
|
1641 |
-
msgid_plural "Columns inserted successfully."
|
1642 |
-
msgstr[0] ""
|
1643 |
-
msgstr[1] ""
|
1644 |
-
|
1645 |
-
#: controllers/controller-admin.php:653
|
1646 |
-
msgid "Row added successfully."
|
1647 |
-
msgid_plural "Rows added successfully."
|
1648 |
-
msgstr[0] ""
|
1649 |
-
msgstr[1] ""
|
1650 |
-
|
1651 |
-
#: controllers/controller-admin.php:667
|
1652 |
-
msgid "Column added successfully."
|
1653 |
-
msgid_plural "Columns added successfully."
|
1654 |
-
msgstr[0] ""
|
1655 |
-
msgstr[1] ""
|
1656 |
-
|
1657 |
-
#: controllers/controller-admin.php:674
|
1658 |
-
msgid "Could not add Custom Data Field, because you did not enter a name."
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#:
|
1662 |
-
msgid ""
|
1663 |
-
"Could not add Custom Data Field, because the name you entered is reserved "
|
1664 |
-
"for other table data."
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#:
|
1668 |
-
msgid ""
|
1669 |
-
"Could not add Custom Data Field, because the name contained illegal "
|
1670 |
-
"characters."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#:
|
1674 |
-
msgid ""
|
1675 |
-
"Could not add Custom Data Field, because a Field with that name already "
|
1676 |
-
"exists."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#:
|
1680 |
-
msgid "
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#:
|
1684 |
-
msgid "
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#:
|
1688 |
-
msgid "Table
|
1689 |
-
msgid_plural "Tables copied successfully."
|
1690 |
-
msgstr[0] ""
|
1691 |
-
msgstr[1] ""
|
1692 |
-
|
1693 |
-
#: controllers/controller-admin.php:745
|
1694 |
-
msgid "Table deleted successfully."
|
1695 |
-
msgid_plural "Tables deleted successfully."
|
1696 |
-
msgstr[0] ""
|
1697 |
-
msgstr[1] ""
|
1698 |
-
|
1699 |
-
#: controllers/controller-admin.php:766 controllers/controller-admin.php:921
|
1700 |
-
#: controllers/controller-admin.php:959
|
1701 |
-
msgid "Table imported successfully."
|
1702 |
-
msgid_plural "Tables imported successfully."
|
1703 |
-
msgstr[0] ""
|
1704 |
-
msgstr[1] ""
|
1705 |
-
|
1706 |
-
#: controllers/controller-admin.php:773
|
1707 |
-
msgid "You did not select any tables!"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#:
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#:
|
1715 |
-
msgid "
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#:
|
1719 |
-
msgid "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#:
|
1723 |
-
msgid "
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#:
|
1727 |
-
msgid "
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#:
|
1731 |
-
|
1732 |
-
msgid "Imported Table"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#:
|
1736 |
-
msgid "
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#:
|
1740 |
-
msgid "
|
|
|
|
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#:
|
1744 |
-
msgid "
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#:
|
1748 |
-
msgid "
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#:
|
1752 |
-
msgid "
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#:
|
1756 |
-
msgid "
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#:
|
1760 |
-
msgid "
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#:
|
1764 |
-
msgid "
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#:
|
1768 |
-
msgid "Table
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#:
|
1772 |
-
msgid "
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#:
|
1776 |
-
msgid "
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#:
|
1780 |
-
msgid "
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#:
|
1784 |
msgid ""
|
1785 |
-
"
|
1786 |
-
"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#:
|
1790 |
msgid ""
|
1791 |
-
"
|
1792 |
-
"
|
1793 |
-
"the "%s" button on the <a href=\"%s\">WP-Table Reloaded website</"
|
1794 |
-
"a>."
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#:
|
1798 |
-
msgid "
|
|
|
|
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#:
|
1802 |
-
|
|
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
|
1806 |
-
|
1807 |
-
#: controllers/controller-admin.php:1262 controllers/controller-admin.php:1266
|
1808 |
-
#: controllers/controller-admin.php:1268
|
1809 |
-
msgid "WP-Table Reloaded"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#:
|
1813 |
-
msgid "
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#:
|
1817 |
-
msgid "
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#:
|
1821 |
-
msgid "
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#:
|
1825 |
-
msgid "
|
|
|
|
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#:
|
1829 |
-
msgid "
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#:
|
1833 |
-
msgid "
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#:
|
1837 |
-
msgid "
|
|
|
|
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#:
|
1841 |
-
msgid "
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#:
|
1845 |
-
msgid "
|
|
|
|
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#:
|
1849 |
-
msgid "
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#:
|
1853 |
-
msgid "
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#:
|
1857 |
-
msgid "
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
-
msgid "
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#:
|
1865 |
-
msgid "
|
|
|
|
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#:
|
1869 |
-
msgid "
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#:
|
1873 |
msgid ""
|
1874 |
-
"
|
1875 |
-
"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#:
|
1879 |
-
msgid "
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#:
|
1883 |
-
msgid "
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#:
|
1887 |
-
msgid ""
|
1888 |
-
"To insert the following HTML code for a link into a cell, just click the "
|
1889 |
-
"cell after closing this dialog."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#:
|
1893 |
msgid ""
|
1894 |
-
"
|
1895 |
-
"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#:
|
1899 |
-
msgid ""
|
1900 |
-
"The Media Library will open, from which you can select the desired image or "
|
1901 |
-
"insert the image URL."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#:
|
1905 |
-
msgid "
|
|
|
|
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#:
|
1909 |
-
msgid "
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#:
|
1913 |
msgid ""
|
1914 |
-
"
|
1915 |
-
"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#:
|
1919 |
-
msgid ""
|
1920 |
-
"To combine cells within a column, click into the cell below the cell that "
|
1921 |
-
"has the content the combined cells shall have."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#:
|
1925 |
-
|
|
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#:
|
1929 |
-
msgid ""
|
1930 |
-
"The selected tables and all content will be erased. Do you really want to "
|
1931 |
-
"delete them?"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#:
|
1935 |
-
msgid ""
|
1936 |
-
"Do you really want to import the selected tables from the wp-Table plugin?"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#:
|
1940 |
-
msgid "
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#:
|
1944 |
-
|
1945 |
-
|
1946 |
-
"delete it?"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#:
|
1950 |
-
|
|
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#:
|
1954 |
-
|
|
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#:
|
1958 |
-
|
1959 |
-
msgid "
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#:
|
1963 |
-
|
1964 |
-
msgid "You have not selected any columns."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#:
|
1968 |
-
msgid "
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#:
|
1972 |
-
msgid "
|
|
|
|
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#:
|
1976 |
-
msgid "
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#:
|
1980 |
-
msgid "
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#:
|
1984 |
-
msgid "
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#:
|
1988 |
-
msgid "
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#:
|
1992 |
-
msgid "
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#:
|
1996 |
-
msgid "
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#:
|
2000 |
-
msgid ""
|
2001 |
-
"Warning: You will lose all current Tables and Settings! You should create a "
|
2002 |
-
"backup first. Be warned!"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#:
|
2006 |
-
msgid ""
|
2007 |
-
"You have made changes to the content of this table and not yet saved them."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#:
|
2011 |
-
msgid ""
|
2012 |
-
"You should first click "%s" or they will be lost if you navigate "
|
2013 |
-
"away from this page."
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#:
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#:
|
2021 |
-
msgid "
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#:
|
2025 |
-
msgid "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#:
|
2029 |
-
msgid "
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#:
|
2033 |
-
msgid "
|
|
|
|
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#:
|
2037 |
-
msgid "
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#:
|
2041 |
-
msgid "
|
|
|
|
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#:
|
2045 |
-
msgid "
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#:
|
2049 |
-
msgid "
|
|
|
|
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#:
|
2053 |
-
msgid "
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#:
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#:
|
2061 |
-
msgid "
|
|
|
|
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#:
|
2065 |
-
msgid "
|
|
|
|
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#:
|
2069 |
-
msgid "
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#:
|
2073 |
msgid ""
|
2074 |
-
"
|
2075 |
-
"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#:
|
2079 |
-
msgid "
|
|
|
|
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#:
|
2083 |
-
msgid "
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#:
|
2087 |
msgid ""
|
2088 |
-
"
|
|
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#:
|
2092 |
msgid ""
|
2093 |
-
"
|
2094 |
-
"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#:
|
2098 |
-
msgid "
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#:
|
2102 |
msgid ""
|
2103 |
-
"
|
2104 |
-
"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#:
|
2108 |
-
msgid ""
|
2109 |
-
"Combining consecutive cells within the same column is called \"rowspanning\"."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#:
|
2113 |
-
msgid ""
|
2114 |
-
"To combine cells, add the keyword #rowspan# to the cell below the one with "
|
2115 |
-
"the content for the combined cell by using the corresponding button."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#:
|
2119 |
-
msgid "
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#:
|
2123 |
-
msgid "
|
|
|
|
|
|
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#:
|
2127 |
-
msgid "
|
|
|
|
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#:
|
2131 |
-
msgid "
|
|
|
|
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#:
|
2135 |
-
msgid "
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#:
|
2139 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2140 |
msgstr ""
|
2141 |
|
2142 |
#. Plugin URI of the plugin/theme
|
@@ -2153,7 +2159,7 @@ msgid ""
|
|
2153 |
msgstr ""
|
2154 |
|
2155 |
#. Author of the plugin/theme
|
2156 |
-
msgid "Tobias
|
2157 |
msgstr ""
|
2158 |
|
2159 |
#. Author URI of the plugin/theme
|
1 |
+
# Copyright (C) 2013 WP-Table Reloaded
|
2 |
# This file is distributed under the same license as the WP-Table Reloaded package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP-Table Reloaded 1.9.4\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
7 |
+
"POT-Creation-Date: 2013-01-27 20:58:28+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: classes/export.class.php:28 classes/import.class.php:36
|
16 |
+
msgid "CSV - Character-Separated Values"
|
|
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: classes/export.class.php:29 classes/import.class.php:37
|
20 |
+
msgid "HTML - Hypertext Markup Language"
|
|
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: classes/export.class.php:30 classes/import.class.php:38
|
24 |
+
msgid "XML - eXtended Markup Language"
|
|
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: classes/export.class.php:33
|
28 |
+
msgid "; (semicolon)"
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: classes/export.class.php:34
|
32 |
+
msgid ", (comma)"
|
|
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: classes/export.class.php:35
|
36 |
+
msgid ": (colon)"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: classes/export.class.php:36
|
40 |
+
msgid ". (dot)"
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: classes/export.class.php:37
|
44 |
+
msgid "| (pipe)"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: classes/helper.class.php:40 views/view-about.php:21
|
48 |
+
msgid ""
|
49 |
+
"More information about WP-Table Reloaded can be found on the <a href=\"%s"
|
50 |
+
"\">plugin's website</a> or on its page in the <a href=\"%s\">WordPress "
|
51 |
+
"Plugin Directory</a>."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: classes/helper.class.php:41 views/view-about.php:21
|
55 |
+
msgid "For technical information, see the <a href=\"%s\">documentation</a>."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: classes/helper.class.php:42 views/view-about.php:28
|
59 |
+
msgid ""
|
60 |
+
"<a href=\"%s\">Support</a> is provided through the <a href=\"%s\">WordPress "
|
61 |
+
"Support Forums</a>."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: classes/helper.class.php:43 views/view-about.php:28
|
65 |
+
msgid ""
|
66 |
+
"Before asking for support, please carefully read the <a href=\"%s"
|
67 |
+
"\">Frequently Asked Questions</a> where you will find answered to the most "
|
68 |
+
"common questions, and search through the forums."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: classes/helper.class.php:44 views/view-about.php:35
|
72 |
+
msgid ""
|
73 |
+
"If you like the plugin, <a href=\"%s\"><strong>a donation</strong></a> is "
|
74 |
+
"recommended."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: classes/helper.class.php:74
|
78 |
+
msgid ""
|
79 |
+
"Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-"
|
80 |
+
"table-reloaded-english/\">WP-Table Reloaded</a>."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/helper.class.php:74
|
84 |
+
msgid "Support the plugin with your <a href=\"%s\">donation</a>!"
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: classes/helper.class.php:104 classes/helper.class.php:109
|
88 |
+
msgid "Table cells can span across more than one column or row."
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: classes/helper.class.php:104
|
92 |
+
msgid ""
|
93 |
+
"Combining consecutive cells within the same row is called \"colspanning\"."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: classes/helper.class.php:104
|
97 |
msgid ""
|
98 |
+
"To combine cells, add the keyword #colspan# to the cell to the right of the "
|
99 |
+
"one with the content for the combined cell by using the corresponding button."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: classes/helper.class.php:104 classes/helper.class.php:109
|
103 |
+
msgid "Repeat this to add the keyword to all cells that shall be connected."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: classes/helper.class.php:104 classes/helper.class.php:109
|
|
|
107 |
msgid ""
|
108 |
+
"Be aware that the JavaScript libraries will not work on tables which have "
|
109 |
+
"combined cells."
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: classes/helper.class.php:109
|
113 |
+
msgid ""
|
114 |
+
"Combining consecutive cells within the same column is called \"rowspanning\"."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: classes/helper.class.php:109
|
118 |
+
msgid ""
|
119 |
+
"To combine cells, add the keyword #rowspan# to the cell below the one with "
|
120 |
+
"the content for the combined cell by using the corresponding button."
|
|
|
|
|
|
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: classes/helper.class.php:118
|
124 |
+
msgid "Help"
|
|
|
|
|
|
|
|
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: classes/render.class.php:149 views/view-list.php:60
|
128 |
+
msgid "Edit"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: controllers/controller-admin.php:258
|
132 |
+
msgid "Arabic"
|
|
|
|
|
|
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: controllers/controller-admin.php:259
|
136 |
+
msgid "Belarusian"
|
|
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: controllers/controller-admin.php:260
|
140 |
+
msgid "Bulgarian"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: controllers/controller-admin.php:261
|
144 |
+
msgid "Czech"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: controllers/controller-admin.php:262
|
148 |
+
msgid "German"
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: controllers/controller-admin.php:263
|
152 |
+
msgid "English"
|
|
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: controllers/controller-admin.php:264
|
156 |
+
msgid "Spanish"
|
|
|
|
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: controllers/controller-admin.php:265
|
160 |
+
msgid "Finnish"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: controllers/controller-admin.php:266
|
164 |
+
msgid "French"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: controllers/controller-admin.php:267
|
168 |
+
msgid "Hebrew"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: controllers/controller-admin.php:268
|
172 |
+
msgid "Hindi"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: controllers/controller-admin.php:269
|
176 |
+
msgid "Croatian"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: controllers/controller-admin.php:270
|
180 |
+
msgid "Indonesian"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: controllers/controller-admin.php:271
|
184 |
+
msgid "Italian"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: controllers/controller-admin.php:272
|
188 |
+
msgid "Japanese"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: controllers/controller-admin.php:273
|
192 |
+
msgid "Dutch"
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: controllers/controller-admin.php:274
|
196 |
+
msgid "Polish"
|
|
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: controllers/controller-admin.php:275
|
200 |
+
msgid "Brazilian Portuguese"
|
|
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: controllers/controller-admin.php:276
|
204 |
+
msgid "Portuguese (Portugal)"
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: controllers/controller-admin.php:277
|
208 |
+
msgid "Russian"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: controllers/controller-admin.php:278
|
212 |
+
msgid "Slovak"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: controllers/controller-admin.php:279
|
216 |
+
msgid "Swedish"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: controllers/controller-admin.php:280
|
220 |
+
msgid "Ukrainian"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: controllers/controller-admin.php:281
|
224 |
+
msgid "Chinese (Simplified)"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: controllers/controller-admin.php:311
|
228 |
+
msgid ""
|
229 |
+
"Welcome to WP-Table Reloaded %s. If you encounter any questions or problems, "
|
230 |
+
"please refer to the <a href=\"%s\">FAQ</a>, the <a href=\"%s"
|
231 |
+
"\">documentation</a>, and the <a href=\"%s\">support</a> section."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: controllers/controller-admin.php:312
|
235 |
+
msgid "Thank you for upgrading to WP-Table Reloaded %s."
|
|
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: controllers/controller-admin.php:312
|
239 |
+
msgid "This version includes several bugfixes and a few enhancements."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: controllers/controller-admin.php:312
|
243 |
+
msgid ""
|
244 |
+
"Please read the <a href=\"%s\">release announcement</a> for more information."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: controllers/controller-admin.php:312
|
248 |
+
msgid ""
|
249 |
+
"If you like the new features and enhancements, I would appreciate a small <a "
|
250 |
+
"href=\"%s\">donation</a>. Thank you."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: controllers/controller-admin.php:317
|
254 |
+
msgid "Hide this message"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: controllers/controller-admin.php:325
|
258 |
+
msgid ""
|
259 |
+
"Thanks for using this plugin! You've installed WP-Table Reloaded over a "
|
260 |
+
"month ago."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: controllers/controller-admin.php:325
|
264 |
+
msgid ""
|
265 |
+
"If it works and you are satisfied with the results of managing your %s "
|
266 |
+
"table, isn't it worth at least one dollar or euro?"
|
267 |
+
msgid_plural ""
|
268 |
+
"If it works and you are satisfied with the results of managing your %s "
|
269 |
+
"tables, isn't it worth at least one dollar or euro?"
|
270 |
+
msgstr[0] ""
|
271 |
+
msgstr[1] ""
|
272 |
+
|
273 |
+
#: controllers/controller-admin.php:326
|
274 |
+
msgid ""
|
275 |
+
"<a href=\"%s\">Donations</a> help me to continue support and development of "
|
276 |
+
"this <i>free</i> software - things for which I spend countless hours of my "
|
277 |
+
"free time! Thank you!"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: controllers/controller-admin.php:327
|
281 |
+
msgid "Sure, no problem!"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: controllers/controller-admin.php:328
|
285 |
+
msgid "I already donated."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: controllers/controller-admin.php:329
|
289 |
+
msgid "No, thanks. Don't ask again."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: controllers/controller-admin.php:335
|
293 |
+
msgid ""
|
294 |
+
"Important note: WP-Table Reloaded is being discontinued and will no longer "
|
295 |
+
"be developed.<br /><span style=\"font-weight:normal\">Instead, it will be "
|
296 |
+
"officially replaced with <a href=\"http://wordpress.org/plugins/"
|
297 |
+
"tablepress/\">TablePress</a>, which not only fixed many problems, but also "
|
298 |
+
"has better and new features.<br />Please <a href=\"http://tobias.baethge."
|
299 |
+
"com/2013/01/tablepress-replaces-wp-table-reloaded/\" style=\"font-weight:bold"
|
300 |
+
"\">read this announcement</a> for more information and switch from WP-Table "
|
301 |
+
"Reloaded to TablePress soon.</span>"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: controllers/controller-admin.php:361
|
305 |
+
msgid "Table "%s" added successfully."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: controllers/controller-admin.php:392
|
309 |
+
msgid ""
|
310 |
+
"Table edited successfully. This Table now has the ID %s. You'll need to "
|
311 |
+
"adjust existing shortcodes accordingly."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: controllers/controller-admin.php:394
|
315 |
+
msgid ""
|
316 |
+
"The ID could not be changed from %s to %s, because there already is a Table "
|
317 |
+
"with that ID."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: controllers/controller-admin.php:397
|
321 |
+
msgid "Table edited successfully."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: controllers/controller-admin.php:445
|
325 |
+
msgid "Rows swapped successfully."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: controllers/controller-admin.php:466
|
329 |
+
msgid "Columns swapped successfully."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: controllers/controller-admin.php:507
|
333 |
+
msgid "Table sorted successfully."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: controllers/controller-admin.php:530
|
337 |
+
msgid "Row moved successfully."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: controllers/controller-admin.php:557
|
341 |
+
msgid "Column moved successfully."
|
|
|
|
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: controllers/controller-admin.php:565
|
345 |
+
msgid "Row could not be deleted."
|
346 |
+
msgid_plural "Rows could not be deleted."
|
347 |
+
msgstr[0] ""
|
348 |
+
msgstr[1] ""
|
349 |
+
|
350 |
+
#: controllers/controller-admin.php:574
|
351 |
+
msgid "Row deleted successfully."
|
352 |
+
msgid_plural "Rows deleted successfully."
|
353 |
+
msgstr[0] ""
|
354 |
+
msgstr[1] ""
|
355 |
+
|
356 |
+
#: controllers/controller-admin.php:584
|
357 |
+
msgid "Column could not be deleted."
|
358 |
+
msgid_plural "Columns could not be deleted."
|
359 |
+
msgstr[0] ""
|
360 |
+
msgstr[1] ""
|
361 |
+
|
362 |
+
#: controllers/controller-admin.php:597
|
363 |
+
msgid "Column deleted successfully."
|
364 |
+
msgid_plural "Columns deleted successfully."
|
365 |
+
msgstr[0] ""
|
366 |
+
msgstr[1] ""
|
367 |
+
|
368 |
+
#: controllers/controller-admin.php:620
|
369 |
+
msgid "Row inserted successfully."
|
370 |
+
msgid_plural "Rows inserted successfully."
|
371 |
+
msgstr[0] ""
|
372 |
+
msgstr[1] ""
|
373 |
+
|
374 |
+
#: controllers/controller-admin.php:647
|
375 |
+
msgid "Column inserted successfully."
|
376 |
+
msgid_plural "Columns inserted successfully."
|
377 |
+
msgstr[0] ""
|
378 |
+
msgstr[1] ""
|
379 |
+
|
380 |
+
#: controllers/controller-admin.php:662
|
381 |
+
msgid "Row added successfully."
|
382 |
+
msgid_plural "Rows added successfully."
|
383 |
+
msgstr[0] ""
|
384 |
+
msgstr[1] ""
|
385 |
+
|
386 |
+
#: controllers/controller-admin.php:676
|
387 |
+
msgid "Column added successfully."
|
388 |
+
msgid_plural "Columns added successfully."
|
389 |
+
msgstr[0] ""
|
390 |
+
msgstr[1] ""
|
391 |
+
|
392 |
+
#: controllers/controller-admin.php:683
|
393 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: controllers/controller-admin.php:688
|
397 |
msgid ""
|
398 |
+
"Could not add Custom Data Field, because the name you entered is reserved "
|
399 |
+
"for other table data."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: controllers/controller-admin.php:694
|
403 |
+
msgid ""
|
404 |
+
"Could not add Custom Data Field, because the name contained illegal "
|
405 |
+
"characters."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: controllers/controller-admin.php:698
|
409 |
msgid ""
|
410 |
+
"Could not add Custom Data Field, because a Field with that name already "
|
411 |
+
"exists."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: controllers/controller-admin.php:704
|
415 |
+
msgid "Custom Data Field added successfully."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: controllers/controller-admin.php:744 controllers/controller-admin.php:800
|
419 |
+
msgid "Copy of"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: controllers/controller-admin.php:748
|
423 |
+
msgid "Table copied successfully."
|
424 |
+
msgid_plural "Tables copied successfully."
|
425 |
+
msgstr[0] ""
|
426 |
+
msgstr[1] ""
|
427 |
|
428 |
+
#: controllers/controller-admin.php:754
|
429 |
+
msgid "Table deleted successfully."
|
430 |
+
msgid_plural "Tables deleted successfully."
|
431 |
+
msgstr[0] ""
|
432 |
+
msgstr[1] ""
|
433 |
|
434 |
+
#: controllers/controller-admin.php:775 controllers/controller-admin.php:930
|
435 |
+
#: controllers/controller-admin.php:968
|
436 |
+
msgid "Table imported successfully."
|
437 |
+
msgid_plural "Tables imported successfully."
|
438 |
+
msgstr[0] ""
|
439 |
+
msgstr[1] ""
|
440 |
|
441 |
+
#: controllers/controller-admin.php:782
|
442 |
+
msgid "You did not select any tables!"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: controllers/controller-admin.php:805
|
446 |
+
msgid "Table "%s" copied successfully."
|
|
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: controllers/controller-admin.php:823
|
450 |
+
msgid "Table "%s" deleted successfully."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: controllers/controller-admin.php:831
|
454 |
+
msgid "Custom Data Field deleted successfully."
|
|
|
|
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: controllers/controller-admin.php:833
|
458 |
+
msgid "Custom Data Field could not be deleted."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: controllers/controller-admin.php:839
|
462 |
+
msgid "Delete failed."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: controllers/controller-admin.php:871 controllers/controller-admin.php:881
|
466 |
+
#: controllers/controller-admin.php:892
|
467 |
+
msgid "Imported Table"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: controllers/controller-admin.php:872 controllers/controller-admin.php:893
|
471 |
+
msgid "from %s"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: controllers/controller-admin.php:882
|
475 |
+
msgid "via form"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: controllers/controller-admin.php:909 controllers/controller-admin.php:946
|
479 |
+
msgid "Table could not be imported."
|
|
|
|
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: controllers/controller-admin.php:926
|
483 |
+
msgid "Table %s (%s) replaced successfully."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: controllers/controller-admin.php:976 controllers/controller-admin.php:1171
|
487 |
+
msgid "You do not have sufficient rights to perform this action."
|
|
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: controllers/controller-admin.php:983
|
491 |
+
msgid "You did not upload a WP-Table Reloaded dump file."
|
|
|
|
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: controllers/controller-admin.php:992
|
495 |
+
msgid "The uploaded dump file is empty. Please upload a valid dump file."
|
|
|
|
|
|
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: controllers/controller-admin.php:1020
|
499 |
+
msgid "All Tables, Settings and Options were successfully imported."
|
|
|
|
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: controllers/controller-admin.php:1049
|
503 |
+
msgid "Table "%s" exported successfully."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: controllers/controller-admin.php:1094 views/view-options.php:232
|
507 |
+
msgid "You do not have sufficient rights to access the Plugin Options."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: controllers/controller-admin.php:1152
|
511 |
+
msgid "Options saved successfully."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: controllers/controller-admin.php:1155
|
515 |
+
msgid "<a href=\"%s\">Click here to Proceed.</a>"
|
|
|
|
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: controllers/controller-admin.php:1221
|
519 |
+
msgid "There is no table with this ID!"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: controllers/controller-admin.php:1248
|
523 |
+
msgid ""
|
524 |
+
"Thank you very much! Your donation is highly appreciated. You just "
|
525 |
+
"contributed to the further development of WP-Table Reloaded!"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: controllers/controller-admin.php:1250
|
529 |
msgid ""
|
530 |
+
"No problem! I still hope you enjoy the benefits that WP-Table Reloaded "
|
531 |
+
"brings to you. If you should want to change your mind, you'll always find "
|
532 |
+
"the "%s" button on the <a href=\"%s\">WP-Table Reloaded website</"
|
533 |
+
"a>."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: controllers/controller-admin.php:1250 controllers/controller-admin.php:1701
|
537 |
+
msgid "Donate"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: controllers/controller-admin.php:1273 controllers/controller-admin.php:1280
|
541 |
+
msgid "List of Tables"
|
|
|
|
|
542 |
msgstr ""
|
543 |
|
544 |
+
#. #-#-#-#-# plugin.pot (WP-Table Reloaded 1.9.4) #-#-#-#-#
|
545 |
+
#. Plugin Name of the plugin/theme
|
546 |
+
#: controllers/controller-admin.php:1273 controllers/controller-admin.php:1277
|
547 |
+
#: controllers/controller-admin.php:1279
|
548 |
+
msgid "WP-Table Reloaded"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: controllers/controller-admin.php:1274 controllers/controller-admin.php:1310
|
552 |
+
msgid "Add new Table"
|
|
|
|
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: controllers/controller-admin.php:1275 controllers/controller-admin.php:1311
|
556 |
+
msgid "Import a Table"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: controllers/controller-admin.php:1276 controllers/controller-admin.php:1312
|
560 |
+
msgid "Export a Table"
|
|
|
|
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: controllers/controller-admin.php:1277 controllers/controller-admin.php:1319
|
564 |
+
#: views/view-edit.php:348 views/view-edit.php:362 views/view-export.php:10
|
565 |
+
msgid "Plugin Options"
|
|
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: controllers/controller-admin.php:1278
|
569 |
+
msgid "About WP-Table Reloaded"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: controllers/controller-admin.php:1286
|
573 |
+
msgid "Edit Table "%s" (ID %s)"
|
|
|
|
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: controllers/controller-admin.php:1287
|
577 |
+
msgid "Preview of Table "%s" (ID %s)"
|
|
|
|
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: controllers/controller-admin.php:1309 views/view-options.php:82
|
581 |
+
msgid "List Tables"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: controllers/controller-admin.php:1320
|
585 |
+
msgid "About the plugin"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: controllers/controller-admin.php:1697
|
589 |
+
msgid "WP-Table Reloaded Plugin Page"
|
|
|
|
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: controllers/controller-admin.php:1697
|
593 |
+
msgid "Plugin Page"
|
|
|
|
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: controllers/controller-admin.php:1698
|
597 |
+
msgid "Frequently Asked Questions"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: controllers/controller-admin.php:1698
|
601 |
+
msgid "FAQ"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: controllers/controller-admin.php:1699
|
605 |
+
msgid "Support"
|
|
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: controllers/controller-admin.php:1700
|
609 |
+
msgid "Plugin Documentation"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: controllers/controller-admin.php:1700
|
613 |
+
msgid "Documentation"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: controllers/controller-admin.php:1701
|
617 |
+
msgid "Support WP-Table Reloaded with your donation!"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: controllers/controller-admin.php:1740
|
621 |
msgid ""
|
622 |
+
"Do you really want to activate this? You should only do that right before "
|
623 |
+
"uninstallation!"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: controllers/controller-admin.php:1741
|
627 |
+
msgid "URL of link to insert"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: controllers/controller-admin.php:1742
|
631 |
+
msgid "Text of link"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: controllers/controller-admin.php:1743
|
635 |
+
msgid ""
|
636 |
+
"To insert the following HTML code for a link into a cell, just click the "
|
637 |
+
"cell after closing this dialog."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: controllers/controller-admin.php:1744
|
641 |
+
msgid ""
|
642 |
+
"To insert an image, click "OK" and then click into the cell into "
|
643 |
+
"which you want to insert the image."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: controllers/controller-admin.php:1744
|
647 |
+
msgid ""
|
648 |
+
"The Media Library will open, from which you can select the desired image or "
|
649 |
+
"insert the image URL."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: controllers/controller-admin.php:1744
|
653 |
+
msgid "Click the "%s" button to insert the image."
|
|
|
|
|
|
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: controllers/controller-admin.php:1744
|
657 |
+
msgid "Insert into Post"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: controllers/controller-admin.php:1745
|
661 |
+
msgid ""
|
662 |
+
"To combine cells within a row, click into the cell to the right of the cell "
|
663 |
+
"that has the content the combined cells shall have."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: controllers/controller-admin.php:1746
|
667 |
+
msgid ""
|
668 |
+
"To combine cells within a column, click into the cell below the cell that "
|
669 |
+
"has the content the combined cells shall have."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: controllers/controller-admin.php:1747
|
673 |
+
msgid "Do you want to copy the selected tables?"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: controllers/controller-admin.php:1748
|
677 |
msgid ""
|
678 |
+
"The selected tables and all content will be erased. Do you really want to "
|
679 |
+
"delete them?"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: controllers/controller-admin.php:1749
|
683 |
msgid ""
|
684 |
+
"Do you really want to import the selected tables from the wp-Table plugin?"
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: controllers/controller-admin.php:1750
|
688 |
+
msgid "Do you want to copy this table?"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: controllers/controller-admin.php:1751
|
692 |
+
msgid ""
|
693 |
+
"The complete table and all content will be erased. Do you really want to "
|
694 |
+
"delete it?"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: controllers/controller-admin.php:1752
|
698 |
+
msgid "Do you really want to delete the selected rows?"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: controllers/controller-admin.php:1753
|
702 |
+
msgid "Do you really want to delete the selected columns?"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: controllers/controller-admin.php:1754 controllers/controller-admin.php:1758
|
706 |
+
#: controllers/controller-admin.php:1760
|
707 |
+
msgid "You have not selected any rows."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: controllers/controller-admin.php:1755 controllers/controller-admin.php:1759
|
711 |
+
#: controllers/controller-admin.php:1761
|
712 |
+
msgid "You have not selected any columns."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: controllers/controller-admin.php:1756
|
716 |
+
msgid "You can not delete all rows of the table at once!"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: controllers/controller-admin.php:1757
|
720 |
+
msgid "You can not delete all columns of the table at once!"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: controllers/controller-admin.php:1762
|
724 |
+
msgid "Do you really want to import this table from the wp-Table plugin?"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: controllers/controller-admin.php:1763
|
728 |
+
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: controllers/controller-admin.php:1764
|
732 |
+
msgid "Are you really sure?"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: controllers/controller-admin.php:1765
|
736 |
+
msgid "Do you really want to change the ID of the table?"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: controllers/controller-admin.php:1766
|
740 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: controllers/controller-admin.php:1767
|
744 |
+
msgid "To show this table, use this shortcode:"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: controllers/controller-admin.php:1768
|
748 |
+
msgid ""
|
749 |
+
"Warning: You will lose all current Tables and Settings! You should create a "
|
750 |
+
"backup first. Be warned!"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: controllers/controller-admin.php:1769
|
754 |
+
msgid ""
|
755 |
+
"You have made changes to the content of this table and not yet saved them."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: controllers/controller-admin.php:1769
|
759 |
+
msgid ""
|
760 |
+
"You should first click "%s" or they will be lost if you navigate "
|
761 |
+
"away from this page."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: controllers/controller-admin.php:1769 views/view-edit.php:41
|
765 |
+
#: views/view-edit.php:253 views/view-edit.php:403 views/view-edit.php:454
|
766 |
+
msgid "Update Changes"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: controllers/controller-admin.php:1817 views/view-about.php:14
|
770 |
+
#: views/view-list.php:2
|
771 |
+
msgid "Table"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: controllers/controller-admin.php:1818
|
775 |
+
msgid "Insert a Table"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: controllers/controller-admin.php:1875
|
779 |
+
msgid "Please wait..."
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: controllers/controller-admin.php:1876
|
783 |
+
msgid "Show _MENU_ Tables"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: controllers/controller-admin.php:1877
|
787 |
+
msgid "All"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: controllers/controller-admin.php:1878 views/view-ajax_list.php:53
|
791 |
+
#: views/view-export.php:72 views/view-list.php:87
|
792 |
+
msgid "No tables were found."
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: controllers/controller-admin.php:1879
|
796 |
+
msgid "_START_ to _END_ of _TOTAL_ Tables"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: controllers/controller-admin.php:1880
|
800 |
+
msgid "(filtered from _MAX_ Tables)"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: controllers/controller-admin.php:1881
|
804 |
+
msgid "Filter:"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: controllers/controller-admin.php:1882
|
808 |
+
msgid "First"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: controllers/controller-admin.php:1883
|
812 |
+
msgid "Back"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: controllers/controller-admin.php:1884
|
816 |
+
msgid "Next"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: controllers/controller-admin.php:1885
|
820 |
+
msgid "Last"
|
821 |
msgstr ""
|
822 |
|
823 |
#: views/view-about.php:5
|
877 |
"corresponding HTML will be added to it for you."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: views/view-about.php:14 views/view-ajax_preview.php:5 views/view-edit.php:9
|
881 |
+
#: views/view-list.php:2
|
882 |
+
msgid ""
|
883 |
+
"To insert the table into a page, post or text-widget, copy the shortcode "
|
884 |
+
"<strong>[table id=%s /]</strong> and paste it into the corresponding place "
|
885 |
+
"in the editor."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
#: views/view-about.php:14
|
889 |
msgid ""
|
890 |
"You can also select the desired table from a list (after clicking the button "
|
892 |
"be added for you."
|
893 |
msgstr ""
|
894 |
|
|
|
|
|
|
|
|
|
|
|
895 |
#: views/view-about.php:14
|
896 |
msgid "Tables can be styled by changing and adding CSS commands."
|
897 |
msgstr ""
|
918 |
msgid "More Information and Documentation"
|
919 |
msgstr ""
|
920 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
921 |
#: views/view-about.php:26
|
922 |
msgid "Help and Support"
|
923 |
msgstr ""
|
924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
#: views/view-about.php:28
|
926 |
msgid ""
|
927 |
"If you do not find an answer there, please <a href=\"%s\">open a new thread</"
|
941 |
msgid "It is licensed as Free Software under GPL 2."
|
942 |
msgstr ""
|
943 |
|
|
|
|
|
|
|
|
|
|
|
|
|
944 |
#: views/view-about.php:35
|
945 |
msgid ""
|
946 |
"Please rate the plugin in the <a href=\"%s\">WordPress Plugin Directory</a>."
|
984 |
msgid "the submitters of translations:"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: views/view-about.php:83
|
988 |
msgid "%s (thanks to %s)"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: views/view-about.php:86
|
992 |
msgid ""
|
993 |
"and to all donors, contributors, supporters, reviewers and users of the "
|
994 |
"plugin!"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: views/view-about.php:92
|
998 |
msgid "Debug and Version Information"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: views/view-about.php:92 views/view-edit.php:15 views/view-edit.php:51
|
1002 |
+
#: views/view-edit.php:104 views/view-edit.php:262 views/view-edit.php:358
|
1003 |
+
#: views/view-edit.php:412 views/view-options.php:19 views/view-options.php:69
|
1004 |
+
#: views/view-options.php:90 views/view-options.php:184
|
1005 |
+
#: views/view-options.php:195
|
1006 |
+
msgctxt "expand"
|
1007 |
+
msgid "Hide"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: views/view-about.php:92 views/view-edit.php:15 views/view-edit.php:51
|
1011 |
+
#: views/view-edit.php:104 views/view-edit.php:262 views/view-edit.php:358
|
1012 |
+
#: views/view-edit.php:412 views/view-options.php:19 views/view-options.php:69
|
1013 |
+
#: views/view-options.php:90 views/view-options.php:184
|
1014 |
+
#: views/view-options.php:195
|
1015 |
+
msgid "Expand"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: views/view-about.php:95
|
1019 |
msgid "You are using the following versions of the software."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: views/view-about.php:95
|
1023 |
msgid "Please provide this information in bug reports."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: views/view-about.php:98
|
1027 |
msgid "Plugin installed"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: views/view-add.php:4
|
1031 |
msgid ""
|
1032 |
+
"To add a new table, enter its name, a description (optional) and the number "
|
1033 |
+
"of rows and columns."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: views/view-add.php:4
|
1037 |
+
msgid "You may also add, insert or delete rows and columns later."
|
|
|
|
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: views/view-add.php:13 views/view-ajax_list.php:14
|
1041 |
+
#: views/view-ajax_list.php:22 views/view-edit.php:23 views/view-edit.php:283
|
1042 |
+
#: views/view-import.php:100 views/view-import.php:109 views/view-list.php:15
|
1043 |
+
#: views/view-list.php:25
|
1044 |
+
msgid "Table Name"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: views/view-add.php:14
|
1048 |
+
msgid "Enter Table Name"
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: views/view-add.php:17 views/view-ajax_list.php:15
|
1052 |
+
#: views/view-ajax_list.php:23 views/view-edit.php:27
|
1053 |
+
#: views/view-import.php:101 views/view-import.php:110 views/view-list.php:16
|
1054 |
+
#: views/view-list.php:26
|
1055 |
+
msgid "Description"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: views/view-add.php:18
|
1059 |
+
msgid "Enter Description"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: views/view-add.php:21
|
1063 |
+
msgid "Number of Rows"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: views/view-add.php:25
|
1067 |
+
msgid "Number of Columns"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: views/view-add.php:32
|
1071 |
+
msgid "Add Table"
|
|
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: views/view-ajax_list.php:3 views/view-list.php:2
|
1075 |
+
msgid "This is a list of all available tables."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: views/view-ajax_list.php:3
|
1079 |
+
msgid "You may insert a table into a post or page here."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: views/view-ajax_list.php:4
|
1083 |
msgid ""
|
1084 |
+
"Click the "%s" link after the desired table and the corresponding "
|
1085 |
+
"shortcode will be inserted into the editor (<strong>[table id=<ID> /]</"
|
1086 |
+
"strong>)."
|
|
|
|
|
|
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: views/view-ajax_list.php:4 views/view-ajax_list.php:44
|
1090 |
+
msgid "Insert"
|
|
|
|
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: views/view-ajax_list.php:13 views/view-ajax_list.php:21
|
1094 |
+
#: views/view-import.php:99 views/view-import.php:108 views/view-list.php:13
|
1095 |
+
#: views/view-list.php:23
|
1096 |
+
msgid "ID"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: views/view-ajax_list.php:16 views/view-ajax_list.php:24
|
1100 |
+
#: views/view-edit.php:424 views/view-import.php:102 views/view-import.php:111
|
1101 |
+
msgid "Action"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: views/view-ajax_preview.php:3
|
1105 |
+
msgid "This is a preview of your table."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: views/view-ajax_preview.php:4
|
1109 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: views/view-ajax_preview.php:4
|
1113 |
+
msgid "The JavaScript libraries are also not available in this preview."
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: views/view-edit.php:8
|
1117 |
+
msgid "On this page, you can edit the content of the table."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: views/view-edit.php:8
|
1121 |
msgid ""
|
1122 |
+
"It is also possible to change the table structure by inserting, deleting, "
|
1123 |
+
"moving, and swapping columns and rows."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: views/view-edit.php:15
|
1127 |
+
msgid "Table Information"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: views/view-edit.php:19
|
1131 |
+
msgid "Table ID"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: views/view-edit.php:32 views/view-list.php:17 views/view-list.php:27
|
1135 |
+
msgid "Last Modified"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: views/view-edit.php:33 views/view-list.php:44
|
1139 |
+
msgid "by"
|
|
|
|
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: views/view-edit.php:42 views/view-edit.php:254 views/view-edit.php:404
|
1143 |
+
#: views/view-edit.php:455
|
1144 |
+
msgid "Save and go back"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: views/view-edit.php:45 views/view-edit.php:257 views/view-edit.php:407
|
1148 |
+
#: views/view-edit.php:458 views/view-options.php:64
|
1149 |
+
#: views/view-options.php:171
|
1150 |
+
msgid "Cancel"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: views/view-edit.php:51
|
1154 |
+
msgid "Table Contents"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: views/view-edit.php:104
|
1158 |
+
msgid "Data Manipulation"
|
|
|
|
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: views/view-edit.php:114 views/view-options.php:54
|
1162 |
+
msgid "Insert Link"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: views/view-edit.php:115
|
1166 |
+
msgid "Insert Image"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: views/view-edit.php:124
|
1170 |
+
msgid "ascending"
|
|
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: views/view-edit.php:125
|
1174 |
+
msgid "descending"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: views/view-edit.php:128
|
1178 |
+
msgid "Sort table by column %s in %s order"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: views/view-edit.php:130
|
1182 |
+
msgid "Sort"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: views/view-edit.php:135 views/view-edit.php:139
|
1186 |
+
msgctxt "item"
|
1187 |
+
msgid "Hide"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: views/view-edit.php:136 views/view-edit.php:140
|
1191 |
+
msgctxt "item"
|
1192 |
+
msgid "Unhide"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: views/view-edit.php:137
|
1196 |
+
msgctxt "hide_unhide"
|
1197 |
+
msgid "Selected rows: %s %s"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: views/view-edit.php:141
|
1201 |
+
msgctxt "hide_unhide"
|
1202 |
+
msgid "Selected columns: %s %s"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: views/view-edit.php:144
|
1206 |
+
msgid "Combine cells in a row:"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: views/view-edit.php:145
|
1210 |
+
msgid "Add colspan"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: views/view-edit.php:148
|
1214 |
+
msgid "Combine cells in a column:"
|
|
|
|
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: views/view-edit.php:149
|
1218 |
+
msgid "Add rowspan"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: views/view-edit.php:155
|
1222 |
+
msgid "Insert row"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: views/view-edit.php:156 views/view-edit.php:160 views/view-list.php:65
|
1226 |
+
msgid "Delete"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: views/view-edit.php:157
|
1230 |
+
msgctxt "insert_delete"
|
1231 |
+
msgid "Selected rows: %s %s"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: views/view-edit.php:159
|
1235 |
+
msgid "Insert column"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: views/view-edit.php:161
|
1239 |
+
msgctxt "insert_delete"
|
1240 |
+
msgid "Selected columns: %s %s"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: views/view-edit.php:171
|
1244 |
+
msgid "Add %s row(s)"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: views/view-edit.php:172 views/view-edit.php:175 views/view-edit.php:449
|
1248 |
+
msgid "Add"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: views/view-edit.php:174
|
1252 |
+
msgid "Add %s column(s)"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: views/view-edit.php:189
|
1256 |
+
msgid "Swap rows %s and %s"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: views/view-edit.php:191 views/view-edit.php:206
|
1260 |
+
msgid "Swap"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: views/view-edit.php:204
|
1264 |
+
msgid "Swap columns %s and %s"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: views/view-edit.php:219 views/view-edit.php:239
|
1268 |
+
msgid "before"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: views/view-edit.php:220 views/view-edit.php:240
|
1272 |
+
msgid "after"
|
|
|
|
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: views/view-edit.php:223
|
1276 |
+
msgid "Move row %s %s row %s"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: views/view-edit.php:225 views/view-edit.php:245
|
1280 |
+
msgid "Move"
|
|
|
|
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: views/view-edit.php:243
|
1284 |
+
msgid "Move column %s %s column %s"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: views/view-edit.php:262
|
1288 |
+
msgid "Table Styling Options"
|
|
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: views/view-edit.php:264
|
1292 |
+
msgid "These settings will only be used for this table."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: views/view-edit.php:267
|
1296 |
+
msgid "Alternating row colors"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: views/view-edit.php:268
|
1300 |
+
msgid "Every second row has an alternating background color."
|
|
|
|
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: views/view-edit.php:271
|
1304 |
+
msgid "Row Highlighting"
|
|
|
|
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: views/view-edit.php:272
|
1308 |
+
msgid ""
|
1309 |
+
"Highlight a row by changing its background color while the mouse cursor "
|
1310 |
+
"hovers above it."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: views/view-edit.php:275
|
1314 |
+
msgid "Table head"
|
|
|
|
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: views/view-edit.php:276
|
1318 |
msgid ""
|
1319 |
+
"The first row of your table is the table head (HTML tags <thead> and "
|
1320 |
+
"<th>)."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: views/view-edit.php:279
|
1324 |
+
msgid "Table footer"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: views/view-edit.php:280
|
1328 |
msgid ""
|
1329 |
+
"The last row of your table is the table footer (HTML tags <tfoot> and "
|
1330 |
+
"<th>)."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: views/view-edit.php:289 views/view-edit.php:306
|
1334 |
+
msgid "above"
|
|
|
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: views/view-edit.php:291 views/view-edit.php:308
|
1338 |
+
msgid "below"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: views/view-edit.php:294
|
1342 |
+
msgid "The Table Name shall be written %s the table (HTML tag <h2>)."
|
|
|
|
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: views/view-edit.php:300
|
1346 |
+
msgid "Table Description"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: views/view-edit.php:311
|
1350 |
+
msgid "The Table Description shall be written %s the table."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: views/view-edit.php:317
|
1354 |
+
msgid "Cache Table Output"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: views/view-edit.php:318
|
1358 |
msgid ""
|
1359 |
+
"The resulting HTML output of the table shall be cached in the WordPress "
|
1360 |
+
"database cache for faster page generation."
|
|
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: views/view-edit.php:321
|
1364 |
+
msgid "Extra CSS Class"
|
|
|
|
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: views/view-edit.php:322
|
1368 |
msgid ""
|
1369 |
+
"Enter a string that will be given to the table as an additional class for "
|
1370 |
+
"styling with CSS."
|
|
|
|
|
|
|
|
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: views/view-edit.php:322
|
1374 |
+
msgid "This is not the place to enter \"Custom CSS\" code!"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: views/view-edit.php:325
|
1378 |
+
msgid "Use JavaScript library"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: views/view-edit.php:333 views/view-edit.php:345
|
1382 |
+
msgid "You can change further settings for this library below."
|
|
|
|
|
|
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: views/view-edit.php:337 views/view-edit.php:341
|
1386 |
+
msgid "The table will then be sortable by the visitor."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: views/view-edit.php:348
|
1390 |
+
msgid "Yes, use the "%s" JavaScript library with this table."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: views/view-edit.php:348
|
1394 |
msgid ""
|
1395 |
+
"You must enable the use of a JavaScript library on the "%s" screen "
|
1396 |
+
"first."
|
|
|
|
|
|
|
|
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: views/view-edit.php:358
|
1400 |
+
msgid "DataTables JavaScript Features"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: views/view-edit.php:360
|
1404 |
+
msgid ""
|
1405 |
+
"You can enable certain features for the DataTables JavaScript library here."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: views/view-edit.php:360
|
1409 |
+
msgid ""
|
1410 |
+
"More information on these features can be found on the <a href=\"http://www."
|
1411 |
+
"datatables.net/\">DataTables website</a>."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: views/view-edit.php:362
|
1415 |
+
msgid ""
|
1416 |
+
"You can currently not change these options, because you have not enabled the "
|
1417 |
+
""DataTables" JavaScript library on the "%s" screen."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: views/view-edit.php:362
|
1421 |
+
msgid ""
|
1422 |
+
"It is not possible to use these features with the "Tablesorter" or "
|
1423 |
+
""Tablesorter Extended" libraries."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: views/view-edit.php:366
|
1427 |
+
msgid "Sorting"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: views/view-edit.php:367
|
1431 |
+
msgid "Yes, enable sorting of table data by the visitor."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: views/view-edit.php:370
|
1435 |
+
msgid "Pagination"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: views/view-edit.php:375
|
1439 |
+
msgid ""
|
1440 |
+
"Yes, enable pagination (showing only a certain number of rows) of the table "
|
1441 |
+
"by the visitor."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: views/view-edit.php:377
|
1445 |
+
msgid "Show %1$s rows of the table per page."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: views/view-edit.php:383
|
1449 |
+
msgid "Length Change"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: views/view-edit.php:384
|
1453 |
+
msgid ""
|
1454 |
+
"Yes, allow the visitor to change the number of rows shown when using "
|
1455 |
+
"pagination."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: views/view-edit.php:387
|
1459 |
+
msgid "Filtering/Search"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: views/view-edit.php:388
|
1463 |
msgid ""
|
1464 |
+
"Yes, enable the visitor to filter or search the table. Only rows with the "
|
1465 |
+
"search word in them are shown."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: views/view-edit.php:391
|
1469 |
+
msgid "Info Bar"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: views/view-edit.php:392
|
1473 |
+
msgid ""
|
1474 |
+
"Yes, show the table information display. This shows information and "
|
1475 |
+
"statistics about the currently visible data, including filtering."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: views/view-edit.php:395
|
1479 |
+
msgid "Custom Commands"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: views/view-edit.php:396
|
1483 |
+
msgid ""
|
1484 |
+
"Enter additional DataTables JavaScript parameters that will be included with "
|
1485 |
+
"the script call here."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: views/view-edit.php:396
|
1489 |
+
msgid ""
|
1490 |
+
"For advanced use only. Read the <a href=\"http://www.datatables.net/"
|
1491 |
+
"\">DataTables documentation</a> before."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: views/view-edit.php:412
|
1495 |
+
msgid "Custom Data Fields"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: views/view-edit.php:414
|
1499 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: views/view-edit.php:414
|
1503 |
+
msgid ""
|
1504 |
+
"For example, this could be information about the source or the creator of "
|
1505 |
+
"the data."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: views/view-edit.php:416
|
1509 |
+
msgid ""
|
1510 |
+
"You can show this data in the same way as tables by using the shortcode "
|
1511 |
+
"<strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: views/view-edit.php:422
|
1515 |
+
msgid "Field Name"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: views/view-edit.php:423
|
1519 |
+
msgid "Value"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: views/view-edit.php:437
|
1523 |
+
msgid "Delete Field"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: views/view-edit.php:439
|
1527 |
+
msgid "View shortcode"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: views/view-edit.php:448
|
1531 |
+
msgid ""
|
1532 |
+
"To add a new Custom Data Field, enter its name (only lowercase letters, "
|
1533 |
+
"numbers, _ and -)."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: views/view-edit.php:449
|
1537 |
+
msgid "Custom Data Field Name"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: views/view-edit.php:463
|
1541 |
+
msgid "Other actions"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: views/view-edit.php:466
|
1545 |
+
msgid "Delete Table"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: views/view-edit.php:467 views/view-export.php:60
|
1549 |
+
msgid "Export Table"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: views/view-export.php:10
|
1553 |
+
msgid ""
|
1554 |
+
"It is recommended to export and backup the data of important tables "
|
1555 |
+
"regularly."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: views/view-export.php:10
|
1559 |
+
msgid ""
|
1560 |
+
"Select the table, the desired export format and (for CSV only) a delimiter."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: views/view-export.php:10
|
1564 |
+
msgid ""
|
1565 |
+
"You may choose to download the export file. Otherwise it will be shown on "
|
1566 |
+
"this page."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: views/view-export.php:10
|
1570 |
+
msgid ""
|
1571 |
+
"Be aware that only the table data, but no options or settings are exported."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: views/view-export.php:10
|
1575 |
+
msgid ""
|
1576 |
+
"To backup all tables, including their settings, at once use the ""
|
1577 |
+
"%s" button in the "%s"."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: views/view-export.php:10 views/view-options.php:189
|
1581 |
+
msgid "Create and Download Dump File"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: views/view-export.php:18
|
1585 |
+
msgid "Select Table to Export"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: views/view-export.php:34
|
1589 |
+
msgid "Select Export Format"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: views/view-export.php:44
|
1593 |
+
msgid "Select Delimiter to use"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: views/view-export.php:51
|
1597 |
+
msgid "Only needed for CSV export."
|
|
|
|
|
|
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: views/view-export.php:54
|
1601 |
+
msgid "Download file"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: views/view-export.php:55
|
1605 |
+
msgid "Yes, I want to download the export file."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: views/view-export.php:72 views/view-list.php:87
|
1609 |
msgid ""
|
1610 |
+
"You should <a href=\"%s\">add</a> or <a href=\"%s\">import</a> a table to "
|
1611 |
+
"get started!"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: views/view-import.php:3
|
1615 |
+
msgid "WP-Table Reloaded can import tables from existing data."
|
|
|
|
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: views/view-import.php:3
|
1619 |
+
msgid "This may be a CSV, XML or HTML file, each with a certain structure."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: views/view-import.php:3
|
1623 |
msgid ""
|
1624 |
+
"To import an existing table, please select its format and the source for the "
|
1625 |
+
"import."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: views/view-import.php:3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1629 |
msgid ""
|
1630 |
+
"You can also decide, if you want to import it as a new table or replace an "
|
1631 |
+
"existing table."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: views/view-import.php:10
|
1635 |
+
msgid "Select Import Format"
|
|
|
|
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: views/view-import.php:21
|
1639 |
+
msgid "Add or Replace Table?"
|
|
|
|
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: views/view-import.php:23
|
1643 |
+
msgid "Add as new Table"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: views/view-import.php:24
|
1647 |
+
msgid "Replace existing Table"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: views/view-import.php:28
|
1651 |
+
msgid "Select existing Table to Replace"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: views/view-import.php:45
|
1655 |
+
msgid "Select source for Import"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: views/view-import.php:47
|
1659 |
+
msgid "File upload"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: views/view-import.php:48
|
1663 |
+
msgid "URL"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: views/view-import.php:49
|
1667 |
+
msgid "Manual input"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: views/view-import.php:50
|
1671 |
+
msgid "File on server"
|
|
|
|
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: views/view-import.php:54
|
1675 |
+
msgid "Select File with Table to Import"
|
|
|
|
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: views/view-import.php:58
|
1679 |
+
msgid "URL to Import Table from"
|
|
|
|
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: views/view-import.php:62
|
1683 |
+
msgid "Path to file on server"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: views/view-import.php:66
|
1687 |
+
msgid "Paste data with Table to Import"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: views/view-import.php:72
|
1691 |
+
msgid "Import Table"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: views/view-import.php:86
|
1695 |
+
msgid "Import from original wp-Table plugin"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: views/view-import.php:132
|
1699 |
+
msgid "Import"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: views/view-import.php:140 views/view-list.php:78
|
1703 |
+
msgid "Bulk actions:"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: views/view-import.php:140
|
1707 |
+
msgid "Import Tables"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: views/view-import.php:146
|
1711 |
+
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: views/view-list.php:2
|
1715 |
+
msgid "You may add, edit, copy, delete or preview tables here."
|
|
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: views/view-list.php:2
|
1719 |
+
msgid "Each table has a unique ID that needs to be adjusted in that shortcode."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: views/view-list.php:2
|
1723 |
+
msgid ""
|
1724 |
+
"You can also click the button "%s" in the editor toolbar to select "
|
1725 |
+
"and insert a table."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: views/view-list.php:39
|
1729 |
+
msgid "(no name)"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: views/view-list.php:40
|
1733 |
+
msgid "(no description)"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: views/view-list.php:58
|
1737 |
+
msgid "Edit %s"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: views/view-list.php:62
|
1741 |
+
msgid "Shortcode"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: views/view-list.php:63
|
1745 |
+
msgid "Copy"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: views/view-list.php:64
|
1749 |
+
msgid "Export"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: views/view-list.php:66
|
1753 |
+
msgid "Preview of Table %s"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: views/view-list.php:67
|
1757 |
+
msgid "Preview"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: views/view-list.php:78
|
1761 |
+
msgid "Copy Tables"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: views/view-list.php:78
|
1765 |
+
msgid "Delete Tables"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: views/view-options.php:3
|
1769 |
msgid ""
|
1770 |
+
"WP-Table Reloaded has several options which affect the plugin behavior in "
|
1771 |
+
"different areas."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: views/view-options.php:4
|
1775 |
msgid ""
|
1776 |
+
"Frontend Options influence the output and used features of tables in pages, "
|
1777 |
+
"posts or text-widgets."
|
|
|
|
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: views/view-options.php:4
|
1781 |
+
msgid ""
|
1782 |
+
"The Backend Options control the plugin's admin area, e.g. the "%s" "
|
1783 |
+
"screen."
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: views/view-options.php:4 views/view-options.php:54
|
1787 |
+
#: views/view-options.php:74 views/view-options.php:78
|
1788 |
+
msgid "Edit Table"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: views/view-options.php:4
|
1792 |
+
msgid "Administrators have access to further Admin Options."
|
|
|
|
|
|
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: views/view-options.php:19
|
1796 |
+
msgid "Frontend Options"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: views/view-options.php:23
|
1800 |
+
msgid "JavaScript library"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: views/view-options.php:24
|
1804 |
+
msgid "Yes, enable the use of a JavaScript library."
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: views/view-options.php:24
|
1808 |
+
msgid ""
|
1809 |
+
"WP-Table Reloaded includes three JavaScript libraries that can add useful "
|
1810 |
+
"features, like sorting, pagination, and filtering, to a table."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: views/view-options.php:28
|
1814 |
+
msgid "Select the library to use:"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: views/view-options.php:29 views/view-options.php:130
|
1818 |
+
msgid "recommended"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: views/view-options.php:32
|
1822 |
+
msgid ""
|
1823 |
+
"(You can read more about each library's features on the <a href=\"%s"
|
1824 |
+
"\">plugin's website</a>.)"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: views/view-options.php:35
|
1828 |
+
msgid "Default CSS"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: views/view-options.php:37
|
1832 |
+
msgid ""
|
1833 |
+
"Yes, include and load the plugin's default CSS Stylesheets. This is highly "
|
1834 |
+
"recommended, if you use one of the JavaScript libraries!"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: views/view-options.php:41
|
1838 |
+
msgid "Custom CSS"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: views/view-options.php:43
|
1842 |
+
msgid "Yes, include and load the following custom CSS commands."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: views/view-options.php:43
|
1846 |
+
msgid "This should be used to change the table layout and styling."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: views/view-options.php:49
|
1850 |
+
msgid "You can get styling examples from the <a href=\"%s\">FAQ</a>."
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: views/view-options.php:49
|
1854 |
+
msgid ""
|
1855 |
+
"Information on available CSS selectors can be found in the <a href=\"%s"
|
1856 |
+
"\">documentation</a>."
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: views/view-options.php:53
|
1860 |
+
msgid "Links in new window"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: views/view-options.php:54
|
1864 |
msgid ""
|
1865 |
+
"Yes, open links that are inserted with the "%s" button on the "
|
1866 |
+
""%s" screen in a new browser window <strong>from now on</strong>."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: views/view-options.php:61 views/view-options.php:168
|
1870 |
+
msgid "Save Options"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: views/view-options.php:69
|
1874 |
+
msgid "Backend Options"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: views/view-options.php:73
|
1878 |
+
msgid "Exit warning"
|
|
|
|
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: views/view-options.php:74
|
1882 |
msgid ""
|
1883 |
+
"Yes, show a warning message, if I leave the "%s" screen and have "
|
1884 |
+
"not yet saved my changes."
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: views/view-options.php:77
|
1888 |
+
msgid "Growing textareas"
|
|
|
|
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: views/view-options.php:78
|
1892 |
+
msgid ""
|
1893 |
+
"Yes, enlarge the textareas on the "%s" screen when they are "
|
1894 |
+
"focussed."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: views/view-options.php:81
|
1898 |
+
msgid "List of Tables features"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: views/view-options.php:82
|
1902 |
msgid ""
|
1903 |
+
"Yes, use the DataTables JavaScript features (sorting, pagination, filtering) "
|
1904 |
+
"on the "%s" screen."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: views/view-options.php:90
|
1908 |
+
msgid "Admin Options"
|
|
|
|
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: views/view-options.php:92 views/view-options.php:209
|
1912 |
+
#: views/view-options.php:223
|
1913 |
+
msgid "This area are only available to site administrators!"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: views/view-options.php:92
|
1917 |
+
msgid "You can therefore not change these options."
|
|
|
|
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: views/view-options.php:97
|
1921 |
+
msgid "Plugin Access"
|
|
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: views/view-options.php:98
|
1925 |
+
msgid "To access WP-Table Reloaded, a user needs to be:"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: views/view-options.php:99 views/view-options.php:110
|
1929 |
+
msgctxt "User role"
|
1930 |
+
msgid "Administrator"
|
|
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: views/view-options.php:100 views/view-options.php:111
|
1934 |
+
msgctxt "User role"
|
1935 |
+
msgid "Editor"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: views/view-options.php:101 views/view-options.php:112
|
1939 |
+
msgctxt "User role"
|
1940 |
+
msgid "Author"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: views/view-options.php:102
|
1944 |
+
msgctxt "User role"
|
1945 |
+
msgid "Contributor"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: views/view-options.php:108
|
1949 |
+
msgid "Plugin Options Access"
|
|
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: views/view-options.php:109
|
1953 |
+
msgid "To access the Plugin Options of WP-Table Reloaded, a user needs to be:"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: views/view-options.php:113
|
1957 |
+
msgid ""
|
1958 |
+
"Admin Options, Dump file Import, and Manual Plugin Uninstall are always "
|
1959 |
+
"accessible by Administrators only, regardless of this setting."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: views/view-options.php:117
|
1963 |
+
msgid "Plugin Language"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: views/view-options.php:118
|
1967 |
+
msgid "WP-Table Reloaded shall be shown in this language:"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: views/view-options.php:119
|
1971 |
+
msgid "WordPress Default (currently %s)"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: views/view-options.php:128
|
1975 |
+
msgid "Admin menu entry"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: views/view-options.php:129
|
1979 |
+
msgid "WP-Table Reloaded shall be shown in this section of the admin menu:"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: views/view-options.php:130
|
1983 |
+
msgid "Tools"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: views/view-options.php:131
|
1987 |
+
msgid "Posts"
|
|
|
|
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: views/view-options.php:138
|
1991 |
+
msgid "Pages"
|
|
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: views/view-options.php:139
|
1995 |
+
msgid "Plugins"
|
|
|
|
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: views/view-options.php:140
|
1999 |
+
msgid "Settings"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: views/view-options.php:141
|
2003 |
+
msgid "Dashboard"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: views/view-options.php:142
|
2007 |
+
msgid "Top-Level"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: views/view-options.php:147
|
2011 |
+
msgid "Frontend Edit Link"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: views/view-options.php:148
|
2015 |
+
msgid ""
|
2016 |
+
"Yes, show an \"Edit\" link to users with sufficient rights near every table "
|
2017 |
+
"on the frontend."
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: views/view-options.php:152
|
2021 |
+
msgid "WordPress Search"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: views/view-options.php:153
|
2025 |
+
msgid ""
|
2026 |
+
"Yes, the WordPress Search shall also find posts and pages that contain the "
|
2027 |
+
"search term inside a table."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: views/view-options.php:157
|
2031 |
+
msgid "Remove upon Deactivation"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: views/view-options.php:158
|
2035 |
+
msgid ""
|
2036 |
+
"Yes, remove all plugin related data from the database when the plugin is "
|
2037 |
+
"deactivated."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: views/view-options.php:158
|
2041 |
+
msgid "Should be activated directly before deactivation only!"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: views/view-options.php:178
|
2045 |
+
msgid "WP-Table Reloaded Data Export and Backup"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: views/view-options.php:181
|
2049 |
+
msgid ""
|
2050 |
+
"WP-Table Reloaded can export and import a so-called dump file that contains "
|
2051 |
+
"all tables, their settings and the plugin's options."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: views/view-options.php:181
|
2055 |
+
msgid ""
|
2056 |
+
"This file can be used as a backup or to move all data to another WordPress "
|
2057 |
+
"site."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: views/view-options.php:184
|
2061 |
+
msgid "Export a dump file"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: views/view-options.php:186
|
2065 |
msgid ""
|
2066 |
+
"To export all Tables and their settings, click the button below to generate "
|
2067 |
+
"and download a dump file."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: views/view-options.php:186
|
2071 |
+
msgid ""
|
2072 |
+
"<strong>Warning</strong>: Do <strong>not</strong> edit the content of that "
|
2073 |
+
"file under any circumstances as you will destroy the file!"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: views/view-options.php:195
|
2077 |
+
msgid "Import a dump file"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: views/view-options.php:197
|
2081 |
msgid ""
|
2082 |
+
"To import a WP-Table Reloaded dump file and restore the included data, "
|
2083 |
+
"upload the file from your computer."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: views/view-options.php:197
|
2087 |
msgid ""
|
2088 |
+
"All current data of this WP-Table Reloaded installation (Tables, Options, "
|
2089 |
+
"Settings) <strong>WILL BE OVERWRITTEN</strong> with the data from the file!"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: views/view-options.php:197
|
2093 |
+
msgid "Do not proceed, if you do not understand this!"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: views/view-options.php:197
|
2097 |
msgid ""
|
2098 |
+
"It is highly recommended to export and backup the data of this installation "
|
2099 |
+
"before importing another dump file (see above)."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: views/view-options.php:203
|
2103 |
+
msgid "Select Dump File"
|
|
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: views/view-options.php:205
|
2107 |
+
msgid "Import Dump File"
|
|
|
|
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: views/view-options.php:215
|
2111 |
+
msgid "Manually Uninstall WP-Table Reloaded"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: views/view-options.php:217
|
2115 |
+
msgid ""
|
2116 |
+
"Uninstalling <strong>will permanently delete</strong> all tables, data, and "
|
2117 |
+
"options, that belong to WP-Table Reloaded from the database, including all "
|
2118 |
+
"tables you added or imported."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: views/view-options.php:217
|
2122 |
+
msgid ""
|
2123 |
+
"You will manually need to remove the plugin's files from the plugin folder "
|
2124 |
+
"afterwards."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: views/view-options.php:217
|
2128 |
+
msgid ""
|
2129 |
+
"Be very careful with this and only click the button if you know what you are "
|
2130 |
+
"doing!"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: views/view-options.php:221
|
2134 |
+
msgid "Uninstall Plugin WP-Table Reloaded"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: views/view-uninstall.php:3
|
2138 |
+
msgid "Plugin deactivated successfully."
|
2139 |
+
msgstr ""
|
2140 |
+
|
2141 |
+
#: views/view-uninstall.php:4
|
2142 |
+
msgid ""
|
2143 |
+
"All tables, data and options were deleted. You may now manually remove the "
|
2144 |
+
"plugin's subfolder from your WordPress plugin folder or use the \"Delete\" "
|
2145 |
+
"link on the Plugins page."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
#. Plugin URI of the plugin/theme
|
2159 |
msgstr ""
|
2160 |
|
2161 |
#. Author of the plugin/theme
|
2162 |
+
msgid "Tobias Bäthge"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
#. Author URI of the plugin/theme
|
readme.txt
CHANGED
@@ -3,16 +3,16 @@ Contributors: TobiasBg
|
|
3 |
Donate link: http://tobias.baethge.com/donate/
|
4 |
Tags: html,table,data,editor,csv,import,export,excel,widget,admin,sidebar
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.9.
|
8 |
|
9 |
-
WP-Table Reloaded is outdated! Please
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
14 |
-
>
|
15 |
-
> For users of WP-Table Reloaded,
|
16 |
|
17 |
WP-Table Reloaded enables you to create and manage tables in your WP's admin area. No HTML knowledge is needed. A comfortable backend allows to easily edit table data. Tables can contain any type of data and additional JavaScript libraries can be used to extend it with features like sorting, pagination, filtering, and more. You can include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
|
18 |
|
@@ -31,16 +31,16 @@ Wenn dir das Plugin gefällt, bewerte es bitte hier im WordPress Plugin Director
|
|
31 |
== Screenshots ==
|
32 |
|
33 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
34 |
-
>
|
35 |
-
> For users of WP-Table Reloaded,
|
36 |
|
37 |
Screenshots are available on http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
|
38 |
|
39 |
== Installation ==
|
40 |
|
41 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
42 |
-
>
|
43 |
-
> For users of WP-Table Reloaded,
|
44 |
|
45 |
The easiest way is through your WordPress Admin area. Go to the plugin section and search for "WP-Table Reloaded" in the WordPress Plugin Directory. Then you can click "Install" and the following steps will be done for you automatically. You just have to activate the plugin (step 5).
|
46 |
|
@@ -59,18 +59,13 @@ Manual Installation works just as for most other WordPress plugins:
|
|
59 |
== Frequently Asked Questions ==
|
60 |
|
61 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
62 |
-
>
|
63 |
-
> For users of WP-Table Reloaded,
|
64 |
|
65 |
= Where can I find answers to Frequently Asked Questions? =
|
66 |
|
67 |
A wide group of questions, regarding different features or styling has been answered in the [FAQ section](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/faq/) on the plugin's website.
|
68 |
|
69 |
-
= Can I use wp-Table and WP-Table Reloaded together? =
|
70 |
-
|
71 |
-
Yes! You can have both wp-Table and WP-Table Reloaded installed in your WordPress! They will not interfere (as they are not using anything together). They are completely independent from each other.
|
72 |
-
If WP-Table Reloaded finds the wp-Table database tables, it can import the found tables into it's own format, so that you can completely upgrade from wp-Table to WP-Table Reloaded.
|
73 |
-
|
74 |
= Support? =
|
75 |
|
76 |
For support questions, bug reports, or feature requests, please use the [WordPress Support Forums](http://wordpress.org/support/plugin/wp-table-reloaded). Please [search](http://wordpress.org/support/) through the forums first, and then only [open a new thread](http://wordpress.org/support/plugin/wp-table-reloaded) if you don't find an existing answer. Thank you!
|
@@ -96,8 +91,8 @@ Die Webseite des Plugins ist auch [auf Deutsch](http://tobias.baethge.com/wordpr
|
|
96 |
== Usage ==
|
97 |
|
98 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
99 |
-
>
|
100 |
-
> For users of WP-Table Reloaded,
|
101 |
|
102 |
After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
|
103 |
Everything should be self-explaining there.
|
@@ -125,8 +120,12 @@ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something
|
|
125 |
== Changelog ==
|
126 |
|
127 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
128 |
-
>
|
129 |
-
> For users of WP-Table Reloaded,
|
|
|
|
|
|
|
|
|
130 |
|
131 |
= Version 1.9.3 =
|
132 |
* enhancement: reduce problems with blank space below tables, caused by a no-longer necessary minimum height
|
@@ -287,6 +286,9 @@ I'm also happy about [donations](http://tobias.baethge.com/donate/) or something
|
|
287 |
|
288 |
== Upgrade Notice ==
|
289 |
|
|
|
|
|
|
|
290 |
= 1.9.3 =
|
291 |
This upgrade includes several bugfixes and a few enhancements, and is a recommended maintenance release.
|
292 |
|
@@ -312,4 +314,4 @@ This upgrade fixes a few minor bugs and enhances the WP Search integration and t
|
|
312 |
This upgrade adds features like "colspan"/"rowspan" support, support for the WP Search, and more. WordPress 2.8 or higher is now required!
|
313 |
|
314 |
= 1.5 =
|
315 |
-
This upgrade contains a new JavaScript library for sorting, pagination, and filtering, and many more improvements to the interface.
|
3 |
Donate link: http://tobias.baethge.com/donate/
|
4 |
Tags: html,table,data,editor,csv,import,export,excel,widget,admin,sidebar
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 3.6
|
7 |
+
Stable tag: 1.9.4
|
8 |
|
9 |
+
WP-Table Reloaded is outdated! Please install its successor TablePress only. Visit http://tablepress.org/ for more information.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
14 |
+
> Please do not install WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/plugins/tablepress/) plugin, which is the official successor of WP-Table Reloaded.
|
15 |
+
> For users of WP-Table Reloaded, it is recommended to [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
16 |
|
17 |
WP-Table Reloaded enables you to create and manage tables in your WP's admin area. No HTML knowledge is needed. A comfortable backend allows to easily edit table data. Tables can contain any type of data and additional JavaScript libraries can be used to extend it with features like sorting, pagination, filtering, and more. You can include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
|
18 |
|
31 |
== Screenshots ==
|
32 |
|
33 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
34 |
+
> Please do not install WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/plugins/tablepress/) plugin, which is the official successor of WP-Table Reloaded.
|
35 |
+
> For users of WP-Table Reloaded, it is recommended to [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
36 |
|
37 |
Screenshots are available on http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
|
38 |
|
39 |
== Installation ==
|
40 |
|
41 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
42 |
+
> Please do not install WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/plugins/tablepress/) plugin, which is the official successor of WP-Table Reloaded.
|
43 |
+
> For users of WP-Table Reloaded, it is recommended to [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
44 |
|
45 |
The easiest way is through your WordPress Admin area. Go to the plugin section and search for "WP-Table Reloaded" in the WordPress Plugin Directory. Then you can click "Install" and the following steps will be done for you automatically. You just have to activate the plugin (step 5).
|
46 |
|
59 |
== Frequently Asked Questions ==
|
60 |
|
61 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
62 |
+
> Please do not install WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/plugins/tablepress/) plugin, which is the official successor of WP-Table Reloaded.
|
63 |
+
> For users of WP-Table Reloaded, it is recommended to [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
64 |
|
65 |
= Where can I find answers to Frequently Asked Questions? =
|
66 |
|
67 |
A wide group of questions, regarding different features or styling has been answered in the [FAQ section](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/faq/) on the plugin's website.
|
68 |
|
|
|
|
|
|
|
|
|
|
|
69 |
= Support? =
|
70 |
|
71 |
For support questions, bug reports, or feature requests, please use the [WordPress Support Forums](http://wordpress.org/support/plugin/wp-table-reloaded). Please [search](http://wordpress.org/support/) through the forums first, and then only [open a new thread](http://wordpress.org/support/plugin/wp-table-reloaded) if you don't find an existing answer. Thank you!
|
91 |
== Usage ==
|
92 |
|
93 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
94 |
+
> Please do not install WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/plugins/tablepress/) plugin, which is the official successor of WP-Table Reloaded.
|
95 |
+
> For users of WP-Table Reloaded, it is recommended to [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
96 |
|
97 |
After installing the plugin, you can add, import, export, edit, copy, delete, ... tables via the "WP-Table Reloaded" screen which appears under the "Tools" section in your Admin menu.
|
98 |
Everything should be self-explaining there.
|
120 |
== Changelog ==
|
121 |
|
122 |
> #### Attention: WP-Table Reloaded has been replaced with TablePress!
|
123 |
+
> Please do not install WP-Table Reloaded anymore! Instead, please use the [TablePress](http://wordpress.org/plugins/tablepress/) plugin, which is the official successor of WP-Table Reloaded.
|
124 |
+
> For users of WP-Table Reloaded, it is recommended to [migrate](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
125 |
+
|
126 |
+
= Version 1.9.4 =
|
127 |
+
* bugfix: Remove TableTools for DataTables, due to incompatibility
|
128 |
+
* Important note: WP-Table Reloaded is outdated! Please [switch](http://tablepress.org/migration-from-wp-table-reloaded/) to TablePress.
|
129 |
|
130 |
= Version 1.9.3 =
|
131 |
* enhancement: reduce problems with blank space below tables, caused by a no-longer necessary minimum height
|
286 |
|
287 |
== Upgrade Notice ==
|
288 |
|
289 |
+
= 1.9.4 =
|
290 |
+
This upgrade includes an important bugfix and removes the TableTools. It is a strongly recommended maintenance release.
|
291 |
+
|
292 |
= 1.9.3 =
|
293 |
This upgrade includes several bugfixes and a few enhancements, and is a recommended maintenance release.
|
294 |
|
314 |
This upgrade adds features like "colspan"/"rowspan" support, support for the WP Search, and more. WordPress 2.8 or higher is now required!
|
315 |
|
316 |
= 1.5 =
|
317 |
+
This upgrade contains a new JavaScript library for sorting, pagination, and filtering, and many more improvements to the interface.
|
views/view-about.php
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
<div class="postbox">
|
19 |
<h3 class="hndle"><span><?php _e( 'More Information and Documentation', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
20 |
<div class="inside">
|
21 |
-
<p><?php printf( __( 'More information about WP-Table Reloaded can be found on the <a href="%s">plugin\'s website</a> or on its page in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/', 'http://wordpress.org/
|
22 |
</div>
|
23 |
</div>
|
24 |
|
@@ -32,7 +32,7 @@
|
|
32 |
<div class="postbox">
|
33 |
<h3 class="hndle"><span><?php _e( 'Author and License', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
34 |
<div class="inside">
|
35 |
-
<p><?php printf( __( 'This plugin was written by <a href="%s">Tobias Bäthge</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/' ); ?> <?php _e( 'It is licensed as Free Software under GPL 2.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php printf( __( 'If you like the plugin, <a href="%s"><strong>a donation</strong></a> is recommended.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/donate/' ); ?> <?php printf( __( 'Please rate the plugin in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://wordpress.org/
|
36 |
</div>
|
37 |
</div>
|
38 |
|
18 |
<div class="postbox">
|
19 |
<h3 class="hndle"><span><?php _e( 'More Information and Documentation', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
20 |
<div class="inside">
|
21 |
+
<p><?php printf( __( 'More information about WP-Table Reloaded can be found on the <a href="%s">plugin\'s website</a> or on its page in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/', 'http://wordpress.org/plugins/wp-table-reloaded/' ); ?> <?php printf( __( 'For technical information, see the <a href="%s">documentation</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/documentation/' ); ?></p>
|
22 |
</div>
|
23 |
</div>
|
24 |
|
32 |
<div class="postbox">
|
33 |
<h3 class="hndle"><span><?php _e( 'Author and License', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
34 |
<div class="inside">
|
35 |
+
<p><?php printf( __( 'This plugin was written by <a href="%s">Tobias Bäthge</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/' ); ?> <?php _e( 'It is licensed as Free Software under GPL 2.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php printf( __( 'If you like the plugin, <a href="%s"><strong>a donation</strong></a> is recommended.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/donate/' ); ?> <?php printf( __( 'Please rate the plugin in the <a href="%s">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://wordpress.org/plugins/wp-table-reloaded/' ); ?><br/><?php _e( 'Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
36 |
</div>
|
37 |
</div>
|
38 |
|
views/view-edit.php
CHANGED
@@ -326,14 +326,12 @@
|
|
326 |
<td>
|
327 |
<?php
|
328 |
switch ( $this->options['tablesorter_script'] ) {
|
|
|
|
|
329 |
case 'datatables':
|
330 |
$js_library = 'DataTables';
|
331 |
$js_library_text = __( 'You can change further settings for this library below.' , WP_TABLE_RELOADED_TEXTDOMAIN );
|
332 |
break;
|
333 |
-
case 'datatables-tabletools':
|
334 |
-
$js_library = 'DataTables+TableTools';
|
335 |
-
$js_library_text = __( 'You can change further settings for this library below.' , WP_TABLE_RELOADED_TEXTDOMAIN );
|
336 |
-
break;
|
337 |
case 'tablesorter':
|
338 |
$js_library = 'Tablesorter';
|
339 |
$js_library_text = __( 'The table will then be sortable by the visitor.' , WP_TABLE_RELOADED_TEXTDOMAIN );
|
@@ -354,15 +352,14 @@
|
|
354 |
</div>
|
355 |
|
356 |
<?php
|
357 |
-
$datatables_enabled = $this->options['enable_tablesorter'] && ( 'datatables' == $this->options['tablesorter_script']
|
358 |
-
$tabletools_enabled = $this->options['enable_tablesorter'] && ( 'datatables-tabletools' == $this->options['tablesorter_script'] );
|
359 |
?>
|
360 |
<div class="postbox<?php echo $this->helper->postbox_closed( 'datatables-features', false ); ?>">
|
361 |
<h3 class="hndle"><span><?php _e( 'DataTables JavaScript Features', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php echo _x( 'Hide', 'expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
362 |
<div class="inside">
|
363 |
<p><?php _e( 'You can enable certain features for the DataTables JavaScript library here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'More information on these features can be found on the <a href="http://www.datatables.net/">DataTables website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
364 |
<?php if ( !$datatables_enabled ) { ?>
|
365 |
-
<p><strong><?php printf( __( 'You can currently not change these options, because you have not enabled the "DataTables"
|
366 |
<?php } ?>
|
367 |
<table class="wp-table-reloaded-options wp-table-reloaded-datatables-options">
|
368 |
<tr>
|
@@ -394,13 +391,6 @@
|
|
394 |
<th scope="row"><?php _e( 'Info Bar', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
395 |
<td><input type="checkbox" name="table[options][datatables_info]" id="table_options_datatables_info"<?php checked( $table['options']['datatables_info'] ); ?><?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_info"><?php _e( 'Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
396 |
</tr>
|
397 |
-
<tr>
|
398 |
-
<th scope="row"><?php _e( 'TableTools', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
399 |
-
<td><input type="checkbox" name="table[options][datatables_tabletools]" id="table_options_datatables_tabletools"<?php checked( $table['options']['datatables_tabletools'] ); ?><?php echo ( !$tabletools_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_tabletools">
|
400 |
-
<?php _e( 'Yes, activate the TableTools functions (Copy to Clipboard, Save to CSV, Save to XLS, Print Table) for this table.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
401 |
-
if ( !$tabletools_enabled ) { echo '<br/> <small>('; _e( 'This option can only be used with the "DataTables+TableTools" JavaScript library.', WP_TABLE_RELOADED_TEXTDOMAIN ); echo ')</small>';}
|
402 |
-
?></label></td>
|
403 |
-
</tr>
|
404 |
<tr>
|
405 |
<th scope="row"><?php _e( 'Custom Commands', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
406 |
<td><input type="text" name="table[options][datatables_customcommands]" id="table_options_datatables_customcommands"<?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="<?php echo $this->helper->safe_output( $table['options']['datatables_customcommands'] ); ?>" style="width:100%" /> <label for="table_options_datatables_customcommands"><small><br/><?php _e( 'Enter additional DataTables JavaScript parameters that will be included with the script call here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> (<?php _e( 'For advanced use only. Read the <a href="http://www.datatables.net/">DataTables documentation</a> before.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>)</small></label></td>
|
326 |
<td>
|
327 |
<?php
|
328 |
switch ( $this->options['tablesorter_script'] ) {
|
329 |
+
case 'datatables-tabletools':
|
330 |
+
$this->options['tablesorter_script'] = 'datatables'; // for backward compatibility
|
331 |
case 'datatables':
|
332 |
$js_library = 'DataTables';
|
333 |
$js_library_text = __( 'You can change further settings for this library below.' , WP_TABLE_RELOADED_TEXTDOMAIN );
|
334 |
break;
|
|
|
|
|
|
|
|
|
335 |
case 'tablesorter':
|
336 |
$js_library = 'Tablesorter';
|
337 |
$js_library_text = __( 'The table will then be sortable by the visitor.' , WP_TABLE_RELOADED_TEXTDOMAIN );
|
352 |
</div>
|
353 |
|
354 |
<?php
|
355 |
+
$datatables_enabled = $this->options['enable_tablesorter'] && ( 'datatables' == $this->options['tablesorter_script'] );
|
|
|
356 |
?>
|
357 |
<div class="postbox<?php echo $this->helper->postbox_closed( 'datatables-features', false ); ?>">
|
358 |
<h3 class="hndle"><span><?php _e( 'DataTables JavaScript Features', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php echo _x( 'Hide', 'expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
359 |
<div class="inside">
|
360 |
<p><?php _e( 'You can enable certain features for the DataTables JavaScript library here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'More information on these features can be found on the <a href="http://www.datatables.net/">DataTables website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
361 |
<?php if ( !$datatables_enabled ) { ?>
|
362 |
+
<p><strong><?php printf( __( 'You can currently not change these options, because you have not enabled the "DataTables" JavaScript library on the "%s" screen.', WP_TABLE_RELOADED_TEXTDOMAIN ), __( 'Plugin Options', WP_TABLE_RELOADED_TEXTDOMAIN ) ); ?><br/><?php _e( 'It is not possible to use these features with the "Tablesorter" or "Tablesorter Extended" libraries.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></strong></p>
|
363 |
<?php } ?>
|
364 |
<table class="wp-table-reloaded-options wp-table-reloaded-datatables-options">
|
365 |
<tr>
|
391 |
<th scope="row"><?php _e( 'Info Bar', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
392 |
<td><input type="checkbox" name="table[options][datatables_info]" id="table_options_datatables_info"<?php checked( $table['options']['datatables_info'] ); ?><?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_datatables_info"><?php _e( 'Yes, show the table information display. This shows information and statistics about the currently visible data, including filtering.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
393 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
<tr>
|
395 |
<th scope="row"><?php _e( 'Custom Commands', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
396 |
<td><input type="text" name="table[options][datatables_customcommands]" id="table_options_datatables_customcommands"<?php echo ( !$datatables_enabled || !$table['options']['use_tablesorter'] || !$table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="<?php echo $this->helper->safe_output( $table['options']['datatables_customcommands'] ); ?>" style="width:100%" /> <label for="table_options_datatables_customcommands"><small><br/><?php _e( 'Enter additional DataTables JavaScript parameters that will be included with the script call here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> (<?php _e( 'For advanced use only. Read the <a href="http://www.datatables.net/">DataTables documentation</a> before.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>)</small></label></td>
|
views/view-options.php
CHANGED
@@ -26,8 +26,7 @@
|
|
26 |
<tr>
|
27 |
<th scope="row"> </th>
|
28 |
<td><?php _e( 'Select the library to use:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <select id="options_tablesorter_script" name="options[tablesorter_script]"<?php disabled( $this->options['enable_tablesorter'], false ); ?>>
|
29 |
-
<option<?php selected( $this->options['tablesorter_script'], 'datatables' ); ?> value="datatables">DataTables (<?php _e( 'recommended', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>)</option>
|
30 |
-
<option<?php selected( $this->options['tablesorter_script'], 'datatables-tabletools' ); ?> value="datatables-tabletools">DataTables+TableTools</option>
|
31 |
<option<?php selected( $this->options['tablesorter_script'], 'tablesorter' ); ?> value="tablesorter">Tablesorter</option>
|
32 |
<option<?php selected( $this->options['tablesorter_script'], 'tablesorter_extended' ); ?> value="tablesorter_extended">Tablesorter Extended</option>
|
33 |
</select> <?php printf( __( '(You can read more about each library\'s features on the <a href="%s">plugin\'s website</a>.)', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/' ); ?></td>
|
26 |
<tr>
|
27 |
<th scope="row"> </th>
|
28 |
<td><?php _e( 'Select the library to use:', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <select id="options_tablesorter_script" name="options[tablesorter_script]"<?php disabled( $this->options['enable_tablesorter'], false ); ?>>
|
29 |
+
<option<?php selected( in_array( $this->options['tablesorter_script'], array( 'datatables', 'datatables-tabletools' ), true ), true ); ?> value="datatables">DataTables (<?php _e( 'recommended', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>)</option>
|
|
|
30 |
<option<?php selected( $this->options['tablesorter_script'], 'tablesorter' ); ?> value="tablesorter">Tablesorter</option>
|
31 |
<option<?php selected( $this->options['tablesorter_script'], 'tablesorter_extended' ); ?> value="tablesorter_extended">Tablesorter Extended</option>
|
32 |
</select> <?php printf( __( '(You can read more about each library\'s features on the <a href="%s">plugin\'s website</a>.)', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/go/wp-table-reloaded/website/' ); ?></td>
|
wp-table-reloaded.php
CHANGED
@@ -4,14 +4,14 @@
|
|
4 |
*
|
5 |
* @package WP-Table Reloaded
|
6 |
* @author Tobias Bäthge
|
7 |
-
* @version 1.9.
|
8 |
*/
|
9 |
|
10 |
/*
|
11 |
Plugin Name: WP-Table Reloaded
|
12 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
13 |
Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
|
14 |
-
Version: 1.9.
|
15 |
Author: Tobias Bäthge
|
16 |
Author URI: http://tobias.baethge.com/
|
17 |
Author eMail: wordpress@tobias.baethge.com
|
@@ -47,7 +47,7 @@ if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
|
|
47 |
if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
|
48 |
define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
|
49 |
if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
|
50 |
-
define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.9.
|
51 |
|
52 |
/**
|
53 |
* Decide whether admin controller or frontend controller is loaded
|
4 |
*
|
5 |
* @package WP-Table Reloaded
|
6 |
* @author Tobias Bäthge
|
7 |
+
* @version 1.9.4
|
8 |
*/
|
9 |
|
10 |
/*
|
11 |
Plugin Name: WP-Table Reloaded
|
12 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
13 |
Description: This plugin allows you to create and easily manage tables in the admin-area of WordPress. A comfortable backend allows an easy manipulation of table data. You can then include the tables into your posts, on your pages or in text widgets by using a shortcode or a template tag function. Tables can be imported and exported from/to CSV, XML and HTML.
|
14 |
+
Version: 1.9.4
|
15 |
Author: Tobias Bäthge
|
16 |
Author URI: http://tobias.baethge.com/
|
17 |
Author eMail: wordpress@tobias.baethge.com
|
47 |
if ( !defined( 'WP_TABLE_RELOADED__FILE__' ) )
|
48 |
define( 'WP_TABLE_RELOADED__FILE__', __FILE__ );
|
49 |
if ( !defined( 'WP_TABLE_RELOADED_PLUGIN_VERSION' ) )
|
50 |
+
define( 'WP_TABLE_RELOADED_PLUGIN_VERSION', '1.9.4' );
|
51 |
|
52 |
/**
|
53 |
* Decide whether admin controller or frontend controller is loaded
|