Version Description
Download this release
Release Info
Developer | TobiasBg |
Plugin | WP-Table Reloaded |
Version | 1.4 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.4
- admin/admin-editor-buttons-script.dev.js +36 -0
- admin/admin-editor-buttons-script.js +1 -37
- admin/admin-script.dev.js +249 -0
- admin/admin-script.js +1 -161
- admin/admin-style.css +1 -59
- admin/admin-style.dev.css +177 -0
- admin/index.php +3 -0
- img/index.php +3 -0
- index.php +3 -0
- js/index.php +3 -0
- js/jquery.tablesorter.extended.js +988 -0
- languages/index.php +3 -0
- languages/wp-table-reloaded-cs_CZ.mo +0 -0
- languages/wp-table-reloaded-cs_CZ.po +654 -304
- languages/wp-table-reloaded-de_DE.mo +0 -0
- languages/wp-table-reloaded-de_DE.po +957 -324
- languages/wp-table-reloaded-es_ES.mo +0 -0
- languages/wp-table-reloaded-es_ES.po +1600 -726
- languages/wp-table-reloaded-it_IT.mo +0 -0
- languages/wp-table-reloaded-it_IT.po +1306 -0
- languages/wp-table-reloaded-ja.mo +0 -0
- languages/wp-table-reloaded-ja.po +1313 -0
- languages/wp-table-reloaded-pt_BR.mo +0 -0
- languages/wp-table-reloaded-pt_BR.po +950 -317
- languages/wp-table-reloaded-ru_RU.mo +0 -0
- languages/wp-table-reloaded-ru_RU.po +753 -312
- languages/wp-table-reloaded-sv_SE.mo +0 -0
- languages/wp-table-reloaded-sv_SE.po +638 -290
- languages/wp-table-reloaded.pot +612 -265
- php/arraysort.class.php +2 -6
- php/index.php +3 -0
- php/parsecsv.class.php +5 -3
- php/wp-table-reloaded-export.class.php +3 -3
- php/wp-table-reloaded-import.class.php +83 -23
- readme.txt +27 -14
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- wp-table-reloaded-admin.php +973 -304
- wp-table-reloaded-frontend.php +148 -16
- wp-table-reloaded.php +28 -32
admin/admin-editor-buttons-script.dev.js
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function($){
|
2 |
+
|
3 |
+
var editor_toolbar = $("#ed_toolbar");
|
4 |
+
|
5 |
+
if ( editor_toolbar ) {
|
6 |
+
var theButton = document.createElement('input');
|
7 |
+
theButton.type = 'button';
|
8 |
+
theButton.value = WP_Table_Reloaded_Admin.str_EditorButtonCaption;
|
9 |
+
theButton.className = 'ed_button';
|
10 |
+
theButton.title = WP_Table_Reloaded_Admin.str_EditorButtonCaption;
|
11 |
+
theButton.id = 'ed_button_wp_table_reloaded';
|
12 |
+
editor_toolbar.append( theButton );
|
13 |
+
$("#ed_button_wp_table_reloaded").click( wp_table_reloaded_button_click );
|
14 |
+
}
|
15 |
+
|
16 |
+
function wp_table_reloaded_button_click() {
|
17 |
+
|
18 |
+
var title = 'WP-Table Reloaded';
|
19 |
+
var url = WP_Table_Reloaded_Admin.str_EditorButtonAjaxURL;
|
20 |
+
|
21 |
+
tb_show( title, url, false);
|
22 |
+
|
23 |
+
$("#TB_ajaxContent").width("auto").height("94.5%")
|
24 |
+
.click(function(event) {
|
25 |
+
var $target = $(event.target);
|
26 |
+
if ( $target.is('a.send_table_to_editor') ) {
|
27 |
+
var table_id = $target.attr('title');
|
28 |
+
send_to_editor( '[table id=' + table_id + ' /]' );
|
29 |
+
}
|
30 |
+
return false;
|
31 |
+
});
|
32 |
+
|
33 |
+
return false;
|
34 |
+
}
|
35 |
+
|
36 |
+
});
|
admin/admin-editor-buttons-script.js
CHANGED
@@ -1,37 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
2 |
-
|
3 |
-
var editor_toolbar = $("#ed_toolbar");
|
4 |
-
|
5 |
-
if ( editor_toolbar ) {
|
6 |
-
var theButton = document.createElement('input');
|
7 |
-
theButton.type = 'button';
|
8 |
-
theButton.value = WP_Table_Reloaded_Admin.str_EditorButtonCaption;
|
9 |
-
theButton.className = 'ed_button';
|
10 |
-
theButton.title = WP_Table_Reloaded_Admin.str_EditorButtonCaption;
|
11 |
-
theButton.id = 'ed_button_wp_table_reloaded';
|
12 |
-
editor_toolbar.append( theButton );
|
13 |
-
$("#ed_button_wp_table_reloaded").click( wp_table_reloaded_button_click );
|
14 |
-
}
|
15 |
-
|
16 |
-
function wp_table_reloaded_button_click() {
|
17 |
-
|
18 |
-
var title = 'WP-Table Reloaded';
|
19 |
-
var url = WP_Table_Reloaded_Admin.str_EditorButtonAjaxURL.replace(/&/g, "&");
|
20 |
-
url = url.replace(/&/g, "&");
|
21 |
-
|
22 |
-
tb_show( title, url, false);
|
23 |
-
|
24 |
-
$("#TB_ajaxContent").width("100%").height("100%")
|
25 |
-
.click(function(event) {
|
26 |
-
var $target = $(event.target);
|
27 |
-
if ( $target.is('a.send_table_to_editor') ) {
|
28 |
-
var table_id = $target.attr('title');
|
29 |
-
send_to_editor( '[table id=' + table_id + ' /]' );
|
30 |
-
}
|
31 |
-
return false;
|
32 |
-
});
|
33 |
-
|
34 |
-
return false;
|
35 |
-
}
|
36 |
-
|
37 |
-
});
|
1 |
+
jQuery(document).ready(function(c){var d=c("#ed_toolbar");if(d){var b=document.createElement("input");b.type="button";b.value=WP_Table_Reloaded_Admin.str_EditorButtonCaption;b.className="ed_button";b.title=WP_Table_Reloaded_Admin.str_EditorButtonCaption;b.id="ed_button_wp_table_reloaded";d.append(b);c("#ed_button_wp_table_reloaded").click(a)}function a(){var f="WP-Table Reloaded";var e=WP_Table_Reloaded_Admin.str_EditorButtonAjaxURL;tb_show(f,e,false);c("#TB_ajaxContent").width("auto").height("94.5%").click(function(h){var g=c(h.target);if(g.is("a.send_table_to_editor")){var i=g.attr("title");send_to_editor("[table id="+i+" /]")}return false});return false}});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/admin-script.dev.js
ADDED
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready( function( $ ) {
|
2 |
+
|
3 |
+
// WP_Table_Reloaded_Admin object will contain all localized strings
|
4 |
+
|
5 |
+
// jQuery's original toggleClass needs jQuery 1.3, which is only available since 1.3
|
6 |
+
// which is only available since WP 2.8, that's why we copy the function here to maintain
|
7 |
+
// backward compatibility
|
8 |
+
jQuery.each({
|
9 |
+
TBtoggleClass: function( classNames, state ) {
|
10 |
+
if( typeof state !== "boolean" )
|
11 |
+
state = !jQuery.className.has( this, classNames );
|
12 |
+
jQuery.className[ state ? "add" : "remove" ]( this, classNames );
|
13 |
+
}
|
14 |
+
}, function(name, fn){
|
15 |
+
jQuery.fn[ name ] = function() {
|
16 |
+
return this.each( fn, arguments );
|
17 |
+
};
|
18 |
+
});
|
19 |
+
|
20 |
+
// function to toggle textarea background color according to state of checkboxes
|
21 |
+
// uses TBtoggleClass instead of toggleClass, see above
|
22 |
+
var cb_id, cb_class;
|
23 |
+
$( '#table_contents tbody :checkbox' ).change( function() {
|
24 |
+
$( '#table_contents tbody :checkbox' ).each( function() {
|
25 |
+
cb_id = $(this).attr('id');
|
26 |
+
cb_class = ( -1 != cb_id.search(/row/) ) ? 'row-hidden' : 'column-hidden';
|
27 |
+
$( '#table_contents .' + cb_id ).TBtoggleClass( cb_class, $(this).attr('checked') );
|
28 |
+
} );
|
29 |
+
})
|
30 |
+
.change();
|
31 |
+
|
32 |
+
// functions to make focussed textareas bigger
|
33 |
+
// commented code is for handling all textareas in same row or same column
|
34 |
+
// var ta_idx, tas;
|
35 |
+
$( '#table_contents textarea' ).focus( function() {
|
36 |
+
$( '#table_contents .focus' ).removeClass('focus');
|
37 |
+
$(this).parents('tr').find('textarea').addClass('focus');
|
38 |
+
//tas = $(this).parents('tr').find('textarea');
|
39 |
+
//ta_idx = $( tas ).index( this ) + 2; // 2 is from: 1: <th> infront, 1: 1-based-index
|
40 |
+
//$( '#table_contents tr :nth-child(' + ta_idx + ') textarea' ).add( tas ).addClass('focus');
|
41 |
+
} );
|
42 |
+
//.blur( function() {
|
43 |
+
// $(this).parents('tr').find('textarea').removeClass('focus');
|
44 |
+
//tas = $(this).parents('tr').find('textarea');
|
45 |
+
//ta_idx = $( tas ).index( this ) + 2; // 2 is from: 1: <th> infront, 1: 1-based-index
|
46 |
+
//$( '#table_contents tr :nth-child(' + ta_idx + ') textarea' ).add( tas ).removeClass('focus');
|
47 |
+
//} );
|
48 |
+
|
49 |
+
// old code that makes textareas grow depending on content
|
50 |
+
/*
|
51 |
+
$("#table_contents textarea").keypress(function () {
|
52 |
+
var currentTextsize = $(this).val().split('\n').length;
|
53 |
+
|
54 |
+
if ( 0 < currentTextsize ) {
|
55 |
+
$(this).attr('rows', currentTextsize);
|
56 |
+
}
|
57 |
+
}).keypress();
|
58 |
+
*/
|
59 |
+
|
60 |
+
// show export delimiter selectbox only if export format is csv
|
61 |
+
$( '#export_format' ).change( function () {
|
62 |
+
if ( 'csv' == $(this).val() )
|
63 |
+
$('.tr-export-delimiter').css('display','table-row');
|
64 |
+
else
|
65 |
+
$('.tr-export-delimiter').css('display','none');
|
66 |
+
})
|
67 |
+
.change();
|
68 |
+
|
69 |
+
// confirm change of table ID
|
70 |
+
var table_id = $( '.wp-table-reloaded-table-information #table_id' ).val();
|
71 |
+
$( '.wp-table-reloaded-table-information #table_id' ).change( function () {
|
72 |
+
if ( table_id != $(this).val() ) {
|
73 |
+
if ( confirm( WP_Table_Reloaded_Admin.str_ChangeTableID ) )
|
74 |
+
table_id = $(this).val();
|
75 |
+
else
|
76 |
+
$(this).val( table_id );
|
77 |
+
}
|
78 |
+
} );
|
79 |
+
|
80 |
+
// show select box for table to replace only if needed
|
81 |
+
$( '.tr-import-addreplace input' ).click( function () {
|
82 |
+
if( 'replace' == $( '.tr-import-addreplace input:checked' ).val() )
|
83 |
+
$( '.tr-import-addreplace-table' ).css('display','table-row');
|
84 |
+
else
|
85 |
+
$( '.tr-import-addreplace-table' ).css('display','none');
|
86 |
+
} );
|
87 |
+
$( '.tr-import-addreplace input:checked' ).click();
|
88 |
+
|
89 |
+
// show only checked import fields depending on radio button
|
90 |
+
$( '.tr-import-from input' ).click( function () {
|
91 |
+
$('.tr-import-file-upload').css('display','none');
|
92 |
+
$('.tr-import-url').css('display','none');
|
93 |
+
$('.tr-import-form-field').css('display','none');
|
94 |
+
$('.tr-import-server').css('display','none');
|
95 |
+
|
96 |
+
$( '.tr-import-' + $( '.tr-import-from input:checked' ).val() ).css('display','table-row');
|
97 |
+
} );
|
98 |
+
$('.tr-import-from input:checked').click();
|
99 |
+
|
100 |
+
// enable/disable custom css textarea according to state of checkbox
|
101 |
+
$( '#options_use_custom_css' ).change( function () {
|
102 |
+
if( $(this).attr('checked') )
|
103 |
+
$( '#options_custom_css' ).removeAttr("disabled");
|
104 |
+
else
|
105 |
+
$( '#options_custom_css' ).attr("disabled", true);
|
106 |
+
} );
|
107 |
+
|
108 |
+
// enable/disable Extended Tablesorter checkbox according to state of checkbox
|
109 |
+
$( '#options_enable_tablesorter' ).change( function () {
|
110 |
+
if( $(this).attr('checked') )
|
111 |
+
$( '#options_use_tablesorter_extended' ).removeAttr("disabled");
|
112 |
+
else
|
113 |
+
$( '#options_use_tablesorter_extended' ).attr("disabled", true);
|
114 |
+
} );
|
115 |
+
|
116 |
+
// enable/disable "use tableheadline" according to state of checkbox
|
117 |
+
$( '#table_options_first_row_th' ).change( function () {
|
118 |
+
if( $(this).attr('checked') && $( '#tablesorter_enabled' ).val() ) {
|
119 |
+
$( '#table_options_use_tablesorter' ).removeAttr("disabled");
|
120 |
+
} else {
|
121 |
+
$( '#table_options_use_tablesorter' ).attr("disabled", true);
|
122 |
+
}
|
123 |
+
} );
|
124 |
+
|
125 |
+
// confirm uninstall setting
|
126 |
+
$( '#options_uninstall_upon_deactivation').click( function () {
|
127 |
+
if( $(this).attr('checked') )
|
128 |
+
return confirm( WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation );
|
129 |
+
} );
|
130 |
+
|
131 |
+
|
132 |
+
// insert link functions
|
133 |
+
var insert_html = '';
|
134 |
+
function add_html() {
|
135 |
+
var current_content = $(this).val();
|
136 |
+
$(this).val( current_content + insert_html );
|
137 |
+
$( '#table_contents textarea' ).unbind( 'click', add_html );
|
138 |
+
}
|
139 |
+
|
140 |
+
$( '#a-insert-link' ).click( function () {
|
141 |
+
var link_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL + ':', 'http://' );
|
142 |
+
if ( link_url ) {
|
143 |
+
var link_text = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText + ':', WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText );
|
144 |
+
if ( link_text ) {
|
145 |
+
insert_html = '<a href="' + link_url + '">' + link_text + '</a>';
|
146 |
+
if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain + '\n\n' + insert_html ) ) {
|
147 |
+
$("#table_contents textarea").bind('click', add_html);
|
148 |
+
}
|
149 |
+
}
|
150 |
+
}
|
151 |
+
return false;
|
152 |
+
} );
|
153 |
+
|
154 |
+
// insert image functions
|
155 |
+
function call_media_library_thickbox() {
|
156 |
+
edCanvas = this;
|
157 |
+
$( '#table_contents textarea' ).unbind( 'click', call_media_library_thickbox );
|
158 |
+
var link = $( '#a-insert-image' );
|
159 |
+
tb_show( link.attr('title'), link.attr('href'), link.attr('rel') );
|
160 |
+
$(this).blur();
|
161 |
+
}
|
162 |
+
|
163 |
+
function add_image() {
|
164 |
+
$(this).unbind( 'click' ); // this unbind is for WP 2.8, where our script is added before thickbox.js
|
165 |
+
$(this).bind('click', add_image);
|
166 |
+
if ( true == confirm( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox ) )
|
167 |
+
$("#table_contents textarea").bind( 'click', call_media_library_thickbox );
|
168 |
+
}
|
169 |
+
$( '#a-insert-image' ).unbind( 'click' ).bind('click', add_image); // this unbind is for WP < 2.8, where our script is added after thickbox.js
|
170 |
+
|
171 |
+
// not all characters allowed for name of Custom Data Field
|
172 |
+
$( '#insert_custom_field_name' ).keyup( function () {
|
173 |
+
$(this).val( $(this).val().toLowerCase().replace(/[^a-z0-9_-]/g, '') );
|
174 |
+
} );
|
175 |
+
|
176 |
+
// remove/add title on focus/blur
|
177 |
+
$( '.focus-blur-change' ).focus( function () {
|
178 |
+
if ( $(this).attr('title') == $(this).val() )
|
179 |
+
$(this).val( '' );
|
180 |
+
} )
|
181 |
+
.blur( function () {
|
182 |
+
if ( '' == $(this).val() )
|
183 |
+
$(this).val( $(this).attr('title') );
|
184 |
+
} );
|
185 |
+
|
186 |
+
$( '#table_custom_fields textarea' ).focus( function() {
|
187 |
+
$( '#table_custom_fields .focus' ).removeClass('focus');
|
188 |
+
$(this).addClass('focus');
|
189 |
+
} );
|
190 |
+
|
191 |
+
// confirmation of certain actions
|
192 |
+
$( 'input.bulk_copy_tables' ).click( function () {
|
193 |
+
return confirm( WP_Table_Reloaded_Admin.str_BulkCopyTablesLink );
|
194 |
+
} );
|
195 |
+
|
196 |
+
$( 'input.bulk_delete_tables' ).click( function () {
|
197 |
+
return confirm( WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink );
|
198 |
+
} );
|
199 |
+
|
200 |
+
$( 'input.bulk_wp_table_import_tables' ).click( function () {
|
201 |
+
return confirm( WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink );
|
202 |
+
} );
|
203 |
+
|
204 |
+
$( 'a.copy_table_link' ).click( function () {
|
205 |
+
return confirm( WP_Table_Reloaded_Admin.str_CopyTableLink );
|
206 |
+
} );
|
207 |
+
|
208 |
+
/*
|
209 |
+
// moved to inline script, because of using wpList script
|
210 |
+
$( 'a.delete_table_link' ).click( function () {
|
211 |
+
return confirm( WP_Table_Reloaded_Admin.str_DeleteTableLink );
|
212 |
+
} );
|
213 |
+
*/
|
214 |
+
|
215 |
+
$(' a.delete_row_link' ).click( function () {
|
216 |
+
return confirm( WP_Table_Reloaded_Admin.str_DeleteRowLink );
|
217 |
+
} );
|
218 |
+
|
219 |
+
$( 'a.delete_column_link' ).click( function () {
|
220 |
+
return confirm( WP_Table_Reloaded_Admin.str_DeleteColumnLink );
|
221 |
+
} );
|
222 |
+
|
223 |
+
$( 'a.import_wptable_link' ).click( function () {
|
224 |
+
return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
|
225 |
+
} );
|
226 |
+
|
227 |
+
$( 'a.uninstall_plugin_link' ).click( function () {
|
228 |
+
if ( confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_1 ) )
|
229 |
+
return confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_2 );
|
230 |
+
else
|
231 |
+
return false;
|
232 |
+
} );
|
233 |
+
|
234 |
+
$( 'a.cf_shortcode_link' ).click( function () {
|
235 |
+
var dummy = prompt( WP_Table_Reloaded_Admin.str_CFShortcodeMessage, $(this).attr('title') );
|
236 |
+
return false;
|
237 |
+
} );
|
238 |
+
|
239 |
+
$( 'a.table_shortcode_link' ).click( function () {
|
240 |
+
var dummy = prompt( WP_Table_Reloaded_Admin.str_TableShortcodeMessage, $(this).attr('title') );
|
241 |
+
return false;
|
242 |
+
} );
|
243 |
+
|
244 |
+
// toggling of boxes
|
245 |
+
$( '.postbox h3, .postbox .handlediv' ).click( function() {
|
246 |
+
$( $(this).parent().get(0) ).toggleClass('closed');
|
247 |
+
} );
|
248 |
+
|
249 |
+
} );
|
admin/admin-script.js
CHANGED
@@ -1,161 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
2 |
-
|
3 |
-
// WP_Table_Reloaded_Admin object will contain all localized strings
|
4 |
-
|
5 |
-
$("#export_format").change(function () {
|
6 |
-
if ( 'csv' == $(this).val() )
|
7 |
-
$(".tr-export-delimiter").css('display','table-row');
|
8 |
-
else
|
9 |
-
$(".tr-export-delimiter").css('display','none');
|
10 |
-
})
|
11 |
-
.change();
|
12 |
-
|
13 |
-
var table_id = $(".wp-table-reloaded-options #table_id").val();
|
14 |
-
$(".wp-table-reloaded-options #table_id").change(function () {
|
15 |
-
if ( table_id != $(this).val() ) {
|
16 |
-
if ( confirm( WP_Table_Reloaded_Admin.str_ChangeTableID ) )
|
17 |
-
table_id = $(this).val();
|
18 |
-
else
|
19 |
-
$(this).val( table_id );
|
20 |
-
}
|
21 |
-
});
|
22 |
-
|
23 |
-
$(".tr-import-addreplace input").click(function () {
|
24 |
-
$('.tr-import-addreplace-table').css('display','none');
|
25 |
-
|
26 |
-
if( 'replace' == $('.tr-import-addreplace input:checked').val() ) {
|
27 |
-
$('.tr-import-addreplace-table').css('display','table-row');
|
28 |
-
}
|
29 |
-
});
|
30 |
-
$('.tr-import-addreplace input:checked').click();
|
31 |
-
|
32 |
-
$(".tr-import-from input").click(function () {
|
33 |
-
$('.tr-import-file').css('display','none');
|
34 |
-
$('.tr-import-url').css('display','none');
|
35 |
-
$('.tr-import-field').css('display','none');
|
36 |
-
$('.tr-import-server').css('display','none');
|
37 |
-
|
38 |
-
if( 'file-upload' == $('.tr-import-from input:checked').val() ) {
|
39 |
-
$('.tr-import-file').css('display','table-row');
|
40 |
-
} else if( 'url' == $('.tr-import-from input:checked').val() ) {
|
41 |
-
$('.tr-import-url').css('display','table-row');
|
42 |
-
} else if( 'form-field' == $('.tr-import-from input:checked').val() ) {
|
43 |
-
$('.tr-import-field').css('display','table-row');
|
44 |
-
} else if( 'server' == $('.tr-import-from input:checked').val() ) {
|
45 |
-
$('.tr-import-server').css('display','table-row');
|
46 |
-
}
|
47 |
-
});
|
48 |
-
$('.tr-import-from input:checked').click();
|
49 |
-
|
50 |
-
$("#options_use_custom_css input").click(function () {
|
51 |
-
if( $('#options_use_custom_css input:checked').val() ) {
|
52 |
-
$('#options_custom_css').removeAttr("disabled");
|
53 |
-
} else {
|
54 |
-
$('#options_custom_css').attr("disabled", true);
|
55 |
-
}
|
56 |
-
return true;
|
57 |
-
});
|
58 |
-
|
59 |
-
$("#options_use_tableheadline input").click(function () {
|
60 |
-
if( $('#options_use_tableheadline input:checked').val() && $('#tablesorter_enabled').val() ) {
|
61 |
-
$('#options_use_tablesorter input').removeAttr("disabled");
|
62 |
-
} else {
|
63 |
-
$('#options_use_tablesorter input').attr("disabled", true);
|
64 |
-
}
|
65 |
-
return true;
|
66 |
-
});
|
67 |
-
|
68 |
-
$('.postbox h3, .postbox .handlediv').click( function() {
|
69 |
-
$($(this).parent().get(0)).toggleClass('closed');
|
70 |
-
} );
|
71 |
-
|
72 |
-
$("#options_uninstall input").click(function () {
|
73 |
-
if( $('#options_uninstall input:checked').val() ) {
|
74 |
-
return confirm( WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation );
|
75 |
-
}
|
76 |
-
});
|
77 |
-
|
78 |
-
/*
|
79 |
-
$("#table_contents textarea").keypress(function () {
|
80 |
-
var currentTextsize = $(this).val().split('\n').length;
|
81 |
-
|
82 |
-
if ( 0 < currentTextsize ) {
|
83 |
-
$(this).attr('rows', currentTextsize);
|
84 |
-
}
|
85 |
-
}).keypress();
|
86 |
-
*/
|
87 |
-
|
88 |
-
var insert_html = '';
|
89 |
-
|
90 |
-
function add_html() {
|
91 |
-
var old_value = $(this).val();
|
92 |
-
var new_value = old_value + insert_html;
|
93 |
-
$(this).val( new_value );
|
94 |
-
$("#table_contents textarea").unbind('click', add_html);
|
95 |
-
}
|
96 |
-
|
97 |
-
$("#a-insert-link").click(function () {
|
98 |
-
var link_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL + ':', 'http://' );
|
99 |
-
if ( link_url ) {
|
100 |
-
var link_text = prompt( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText + ':', WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText );
|
101 |
-
if ( link_text ) {
|
102 |
-
insert_html = '<a href="' + link_url + '">' + link_text + '</a>';
|
103 |
-
if ( confirm( WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain + '\n\n' + insert_html ) ) {
|
104 |
-
$("#table_contents textarea").bind('click', add_html);
|
105 |
-
}
|
106 |
-
}
|
107 |
-
}
|
108 |
-
return false;
|
109 |
-
});
|
110 |
-
|
111 |
-
$("#a-insert-image").click(function () {
|
112 |
-
var image_url = prompt( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertURL + ':', 'http://' );
|
113 |
-
if ( image_url ) {
|
114 |
-
var image_alt = prompt( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertAlt + ':', '' );
|
115 |
-
// if ( image_alt ) { // won't check for alt, because there are cases where an empty one makes sense
|
116 |
-
insert_html = '<img src="' + image_url + '" alt="' + image_alt + '" />';
|
117 |
-
if ( true == confirm( WP_Table_Reloaded_Admin.str_DataManipulationImageInsertExplain + '\n\n' + insert_html ) ) {
|
118 |
-
$("#table_contents textarea").bind('click', add_html);
|
119 |
-
}
|
120 |
-
// }
|
121 |
-
}
|
122 |
-
return false;
|
123 |
-
});
|
124 |
-
|
125 |
-
$("input.bulk_copy_tables").click(function () {
|
126 |
-
return confirm( WP_Table_Reloaded_Admin.str_BulkCopyTablesLink );
|
127 |
-
});
|
128 |
-
|
129 |
-
$("input.bulk_delete_tables").click(function () {
|
130 |
-
return confirm( WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink );
|
131 |
-
});
|
132 |
-
|
133 |
-
$("input.bulk_wp_table_import_tables").click(function () {
|
134 |
-
return confirm( WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink );
|
135 |
-
});
|
136 |
-
|
137 |
-
$("a.copy_table_link").click(function () {
|
138 |
-
return confirm( WP_Table_Reloaded_Admin.str_CopyTableLink );
|
139 |
-
});
|
140 |
-
|
141 |
-
$("a.delete_table_link").click(function () {
|
142 |
-
return confirm( WP_Table_Reloaded_Admin.str_DeleteTableLink );
|
143 |
-
});
|
144 |
-
|
145 |
-
$("a.delete_row_link").click(function () {
|
146 |
-
return confirm( WP_Table_Reloaded_Admin.str_DeleteRowLink );
|
147 |
-
});
|
148 |
-
|
149 |
-
$("a.delete_column_link").click(function () {
|
150 |
-
return confirm( WP_Table_Reloaded_Admin.str_DeleteColumnLink );
|
151 |
-
});
|
152 |
-
|
153 |
-
$("a.import_wptable_link").click(function () {
|
154 |
-
return confirm( WP_Table_Reloaded_Admin.str_ImportwpTableLink );
|
155 |
-
});
|
156 |
-
|
157 |
-
$("a.uninstall_plugin_link").click(function () {
|
158 |
-
if ( confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_1 ) ) { return confirm( WP_Table_Reloaded_Admin.str_UninstallPluginLink_2 ); } else { return false; }
|
159 |
-
});
|
160 |
-
|
161 |
-
});
|
1 |
+
jQuery(document).ready(function(f){jQuery.each({TBtoggleClass:function(j,i){if(typeof i!=="boolean"){i=!jQuery.className.has(this,j)}jQuery.className[i?"add":"remove"](this,j)}},function(i,j){jQuery.fn[i]=function(){return this.each(j,arguments)}});var e,a;f("#table_contents tbody :checkbox").change(function(){f("#table_contents tbody :checkbox").each(function(){e=f(this).attr("id");a=(-1!=e.search(/row/))?"row-hidden":"column-hidden";f("#table_contents ."+e).TBtoggleClass(a,f(this).attr("checked"))})}).change();f("#table_contents textarea").focus(function(){f("#table_contents .focus").removeClass("focus");f(this).parents("tr").find("textarea").addClass("focus")});f("#export_format").change(function(){if("csv"==f(this).val()){f(".tr-export-delimiter").css("display","table-row")}else{f(".tr-export-delimiter").css("display","none")}}).change();var h=f(".wp-table-reloaded-table-information #table_id").val();f(".wp-table-reloaded-table-information #table_id").change(function(){if(h!=f(this).val()){if(confirm(WP_Table_Reloaded_Admin.str_ChangeTableID)){h=f(this).val()}else{f(this).val(h)}}});f(".tr-import-addreplace input").click(function(){if("replace"==f(".tr-import-addreplace input:checked").val()){f(".tr-import-addreplace-table").css("display","table-row")}else{f(".tr-import-addreplace-table").css("display","none")}});f(".tr-import-addreplace input:checked").click();f(".tr-import-from input").click(function(){f(".tr-import-file-upload").css("display","none");f(".tr-import-url").css("display","none");f(".tr-import-form-field").css("display","none");f(".tr-import-server").css("display","none");f(".tr-import-"+f(".tr-import-from input:checked").val()).css("display","table-row")});f(".tr-import-from input:checked").click();f("#options_use_custom_css").change(function(){if(f(this).attr("checked")){f("#options_custom_css").removeAttr("disabled")}else{f("#options_custom_css").attr("disabled",true)}});f("#options_enable_tablesorter").change(function(){if(f(this).attr("checked")){f("#options_use_tablesorter_extended").removeAttr("disabled")}else{f("#options_use_tablesorter_extended").attr("disabled",true)}});f("#table_options_first_row_th").change(function(){if(f(this).attr("checked")&&f("#tablesorter_enabled").val()){f("#table_options_use_tablesorter").removeAttr("disabled")}else{f("#table_options_use_tablesorter").attr("disabled",true)}});f("#options_uninstall_upon_deactivation").click(function(){if(f(this).attr("checked")){return confirm(WP_Table_Reloaded_Admin.str_UninstallCheckboxActivation)}});var b="";function d(){var i=f(this).val();f(this).val(i+b);f("#table_contents textarea").unbind("click",d)}f("#a-insert-link").click(function(){var j=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertURL+":","http://");if(j){var i=prompt(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText+":",WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertText);if(i){b='<a href="'+j+'">'+i+"</a>";if(confirm(WP_Table_Reloaded_Admin.str_DataManipulationLinkInsertExplain+"\n\n"+b)){f("#table_contents textarea").bind("click",d)}}}return false});function g(){edCanvas=this;f("#table_contents textarea").unbind("click",g);var i=f("#a-insert-image");tb_show(i.attr("title"),i.attr("href"),i.attr("rel"));f(this).blur()}function c(){f(this).unbind("click");f(this).bind("click",c);if(true==confirm(WP_Table_Reloaded_Admin.str_DataManipulationImageInsertThickbox)){f("#table_contents textarea").bind("click",g)}}f("#a-insert-image").unbind("click").bind("click",c);f("#insert_custom_field_name").keyup(function(){f(this).val(f(this).val().toLowerCase().replace(/[^a-z0-9_-]/g,""))});f(".focus-blur-change").focus(function(){if(f(this).attr("title")==f(this).val()){f(this).val("")}}).blur(function(){if(""==f(this).val()){f(this).val(f(this).attr("title"))}});f("#table_custom_fields textarea").focus(function(){f("#table_custom_fields .focus").removeClass("focus");f(this).addClass("focus")});f("input.bulk_copy_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkCopyTablesLink)});f("input.bulk_delete_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkDeleteTablesLink)});f("input.bulk_wp_table_import_tables").click(function(){return confirm(WP_Table_Reloaded_Admin.str_BulkImportwpTableTablesLink)});f("a.copy_table_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_CopyTableLink)});f(" a.delete_row_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_DeleteRowLink)});f("a.delete_column_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_DeleteColumnLink)});f("a.import_wptable_link").click(function(){return confirm(WP_Table_Reloaded_Admin.str_ImportwpTableLink)});f("a.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}});f("a.cf_shortcode_link").click(function(){var i=prompt(WP_Table_Reloaded_Admin.str_CFShortcodeMessage,f(this).attr("title"));return false});f("a.table_shortcode_link").click(function(){var i=prompt(WP_Table_Reloaded_Admin.str_TableShortcodeMessage,f(this).attr("title"));return false});f(".postbox h3, .postbox .handlediv").click(function(){f(f(this).parent().get(0)).toggleClass("closed")})});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/admin-style.css
CHANGED
@@ -1,59 +1 @@
|
|
1 |
-
|
2 |
-
* This CSS file belongs to the Admin part *
|
3 |
-
* of WP-Table Reloaded 1.3! PLEASE DO NOT *
|
4 |
-
* make any changes here! Thank you! *
|
5 |
-
******************************************/
|
6 |
-
|
7 |
-
/* OWN PLUGIN STYLES */
|
8 |
-
|
9 |
-
table.wp-table-reloaded-options td {
|
10 |
-
padding: 5px 0px 5px 0px;
|
11 |
-
}
|
12 |
-
|
13 |
-
table.wp-table-reloaded-options th {
|
14 |
-
font-weight: normal;
|
15 |
-
text-align: left;
|
16 |
-
padding: 5px 10px 5px 0px;
|
17 |
-
vertical-align: middle;
|
18 |
-
}
|
19 |
-
|
20 |
-
table.wp-table-reloaded-data-manipulation { width:100%; }
|
21 |
-
|
22 |
-
.widefat td {
|
23 |
-
white-space:nowrap;
|
24 |
-
vertical-align: baseline!important;
|
25 |
-
}
|
26 |
-
|
27 |
-
table#table_contents td, table#table_contents th{
|
28 |
-
white-space:nowrap;
|
29 |
-
vertical-align:middle!important;
|
30 |
-
}
|
31 |
-
|
32 |
-
table#table_contents input[type=text] {
|
33 |
-
width:100%;
|
34 |
-
}
|
35 |
-
|
36 |
-
.hide_link, .expand_link {
|
37 |
-
position: absolute;
|
38 |
-
right: 10px;
|
39 |
-
font-weight: normal;
|
40 |
-
cursor: pointer;
|
41 |
-
padding: 0px!important;
|
42 |
-
}
|
43 |
-
|
44 |
-
.postbox h3.hndle {
|
45 |
-
cursor: pointer!important;
|
46 |
-
}
|
47 |
-
|
48 |
-
div.postbox .expand_link { display: none; }
|
49 |
-
div.closed .expand_link { display: inline!important; }
|
50 |
-
div.closed .hide_link { display: none; }
|
51 |
-
|
52 |
-
/* OVERRIDE EXISTING WP STYLES */
|
53 |
-
|
54 |
-
/* overwrite 980px max-width in WP < 2.7 */
|
55 |
-
div.wrap { max-width: 100%!important; }
|
56 |
-
|
57 |
-
.widefat tbody th.check-column {
|
58 |
-
padding: 0!important;
|
59 |
-
}
|
1 |
+
#wp-table-reloaded-list .table-id{font-size:12px;}#wp-table-reloaded-list .header{cursor:pointer;white-space:nowrap;}#wp-table-reloaded-list .header span{background-repeat:no-repeat;background-position:center;background-image:url('../img/bg.gif');margin-right:-5px;}#wp-table-reloaded-list .headerSortUp span{background-image:url('../img/asc.gif');}#wp-table-reloaded-list .headerSortDown span{background-image:url('../img/desc.gif');}#wp-table-reloaded-list .check-column{padding-right:7px!important;}#wp-table-reloaded-list .even{background-color:#F9F9F9;}textarea.row-hidden,textarea.column-hidden{background-color:#FFE0E0;}textarea.focus{height:84px;}.wp-table-reloaded-table-information td{padding:5px 0 5px 0;width:90%;}.wp-table-reloaded-newtable td{padding:5px 0 5px 0;width:85%;}.wp-table-reloaded-table-information th{font-weight:normal;text-align:left;padding:5px 10px 5px 0;vertical-align:middle;width:10%;min-width:130px;}.wp-table-reloaded-newtable,.wp-table-reloaded-table-information,.wp-table-reloaded-table-information input,.wp-table-reloaded-table-information textarea{width:100%;}.wp-table-reloaded-options td{padding:5px 0 5px 0;}.wp-table-reloaded-options th{font-weight:normal;text-align:left;padding:5px 10px 5px 0;vertical-align:middle;}.wp-table-reloaded-data-manipulation{width:100%;}.wp-table-reloaded-data-manipulation td{padding-top:7px!important;padding-bottom:7px!important;}.widefat td{vertical-align:baseline!important;}#table_custom_fields td{vertical-align:middle!important;}#table_contents td{white-space:nowrap;vertical-align:middle!important;}#table_contents th{white-space:nowrap;vertical-align:middle!important;text-align:center;}#table_contents textarea{min-width:180px;width:100%;}#table_contents .hide-columns .check-column{padding-left:7px;width:auto;}.no-wrap{white-space:nowrap;}.hide_link,.expand_link{position:absolute;right:10px;font-weight:normal;cursor:pointer;padding:0!important;}.postbox h3.hndle{cursor:pointer!important;}div.postbox .expand_link{display:none;}div.closed .expand_link{display:inline!important;}div.closed .hide_link{display:none;}div.wrap{max-width:100%!important;}#TB_ajaxContent{width:auto!important;height:94.5%!important;}#TB_ajaxContent .wrap{margin:0 7px 0 5px;}#TB_ajaxContent .wp-table-reloaded{background-color:#CDCDCD;width:100%;}#TB_ajaxContent .wp-table-reloaded th{border:1px solid #FFF;padding:4px;}#TB_ajaxContent .wp-table-reloaded td{padding:4px;background-color:#FFF;vertical-align:top;}#TB_ajaxContent .wp-table-reloaded .even td{background-color:#FFF;}#TB_ajaxContent .wp-table-reloaded .odd td{background-color:#F0F0F6;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/admin-style.dev.css
ADDED
@@ -0,0 +1,177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/******************************************
|
2 |
+
* This CSS file belongs to the Admin part *
|
3 |
+
* of WP-Table Reloaded 1.4! PLEASE DO NOT *
|
4 |
+
* make any changes here! Thank you! *
|
5 |
+
******************************************/
|
6 |
+
|
7 |
+
#wp-table-reloaded-list .table-id {
|
8 |
+
font-size:12px;
|
9 |
+
}
|
10 |
+
|
11 |
+
#wp-table-reloaded-list .header {
|
12 |
+
cursor:pointer;
|
13 |
+
white-space:nowrap;
|
14 |
+
}
|
15 |
+
|
16 |
+
#wp-table-reloaded-list .header span {
|
17 |
+
background-repeat:no-repeat;
|
18 |
+
background-position:center;
|
19 |
+
background-image:url( '../img/bg.gif' );
|
20 |
+
margin-right:-5px;
|
21 |
+
}
|
22 |
+
|
23 |
+
#wp-table-reloaded-list .headerSortUp span {
|
24 |
+
background-image:url( '../img/asc.gif' );
|
25 |
+
}
|
26 |
+
#wp-table-reloaded-list .headerSortDown span {
|
27 |
+
background-image:url( '../img/desc.gif' );
|
28 |
+
}
|
29 |
+
|
30 |
+
#wp-table-reloaded-list .check-column {
|
31 |
+
padding-right:7px!important;
|
32 |
+
}
|
33 |
+
|
34 |
+
#wp-table-reloaded-list .even { /* = alternate*/
|
35 |
+
background-color:#F9F9F9;
|
36 |
+
}
|
37 |
+
|
38 |
+
textarea.row-hidden, textarea.column-hidden {
|
39 |
+
background-color:#FFE0E0;
|
40 |
+
}
|
41 |
+
|
42 |
+
textarea.focus {
|
43 |
+
height:84px;
|
44 |
+
}
|
45 |
+
|
46 |
+
.wp-table-reloaded-table-information td {
|
47 |
+
padding:5px 0px 5px 0px;
|
48 |
+
width:90%;
|
49 |
+
}
|
50 |
+
|
51 |
+
|
52 |
+
.wp-table-reloaded-newtable td {
|
53 |
+
padding:5px 0px 5px 0px;
|
54 |
+
width:85%;
|
55 |
+
}
|
56 |
+
|
57 |
+
.wp-table-reloaded-table-information th {
|
58 |
+
font-weight:normal;
|
59 |
+
text-align:left;
|
60 |
+
padding:5px 10px 5px 0px;
|
61 |
+
vertical-align:middle;
|
62 |
+
width:10%;
|
63 |
+
min-width:130px;
|
64 |
+
}
|
65 |
+
|
66 |
+
.wp-table-reloaded-newtable, .wp-table-reloaded-table-information, .wp-table-reloaded-table-information input, .wp-table-reloaded-table-information textarea {
|
67 |
+
width:100%;
|
68 |
+
}
|
69 |
+
|
70 |
+
.wp-table-reloaded-options td {
|
71 |
+
padding:5px 0px 5px 0px;
|
72 |
+
}
|
73 |
+
|
74 |
+
.wp-table-reloaded-options th {
|
75 |
+
font-weight:normal;
|
76 |
+
text-align:left;
|
77 |
+
padding:5px 10px 5px 0px;
|
78 |
+
vertical-align:middle;
|
79 |
+
}
|
80 |
+
|
81 |
+
.wp-table-reloaded-data-manipulation { width:100%; }
|
82 |
+
|
83 |
+
.wp-table-reloaded-data-manipulation td {
|
84 |
+
padding-top:7px!important;
|
85 |
+
padding-bottom:7px!important;
|
86 |
+
}
|
87 |
+
|
88 |
+
.widefat td {
|
89 |
+
vertical-align:baseline!important;
|
90 |
+
}
|
91 |
+
|
92 |
+
#table_custom_fields td {
|
93 |
+
vertical-align:middle!important;
|
94 |
+
}
|
95 |
+
|
96 |
+
#table_contents td {
|
97 |
+
white-space:nowrap;
|
98 |
+
vertical-align:middle!important;
|
99 |
+
}
|
100 |
+
|
101 |
+
#table_contents th {
|
102 |
+
white-space:nowrap;
|
103 |
+
vertical-align:middle!important;
|
104 |
+
text-align:center;
|
105 |
+
}
|
106 |
+
|
107 |
+
#table_contents textarea {
|
108 |
+
min-width:180px;
|
109 |
+
width:100%;
|
110 |
+
}
|
111 |
+
|
112 |
+
#table_contents .hide-columns .check-column {
|
113 |
+
padding-left:7px;
|
114 |
+
width:auto;
|
115 |
+
}
|
116 |
+
|
117 |
+
.no-wrap {
|
118 |
+
white-space:nowrap;
|
119 |
+
}
|
120 |
+
|
121 |
+
.hide_link, .expand_link {
|
122 |
+
position:absolute;
|
123 |
+
right:10px;
|
124 |
+
font-weight:normal;
|
125 |
+
cursor:pointer;
|
126 |
+
padding:0px!important;
|
127 |
+
}
|
128 |
+
|
129 |
+
.postbox h3.hndle {
|
130 |
+
cursor:pointer!important;
|
131 |
+
}
|
132 |
+
|
133 |
+
div.postbox .expand_link { display: none; }
|
134 |
+
div.closed .expand_link { display: inline!important; }
|
135 |
+
div.closed .hide_link { display: none; }
|
136 |
+
|
137 |
+
/* OVERRIDE EXISTING WordPress STYLES */
|
138 |
+
|
139 |
+
/* overwrite 980px max-width in WP < 2.7 */
|
140 |
+
div.wrap { max-width:100%!important; }
|
141 |
+
|
142 |
+
/* table styles for the table preview */
|
143 |
+
|
144 |
+
/* Inner content div of thickbox needs to grow with outer div */
|
145 |
+
#TB_ajaxContent {
|
146 |
+
width:auto!important;
|
147 |
+
height:94.5%!important;
|
148 |
+
}
|
149 |
+
|
150 |
+
#TB_ajaxContent .wrap {
|
151 |
+
margin:0 7px 0 5px;
|
152 |
+
}
|
153 |
+
|
154 |
+
#TB_ajaxContent .wp-table-reloaded {
|
155 |
+
background-color:#CDCDCD;
|
156 |
+
width:100%;
|
157 |
+
}
|
158 |
+
|
159 |
+
/* Styles for the tablehead (<th>) (if enabled) */
|
160 |
+
#TB_ajaxContent .wp-table-reloaded th {
|
161 |
+
border:1px solid #FFF;
|
162 |
+
padding:4px;
|
163 |
+
}
|
164 |
+
|
165 |
+
#TB_ajaxContent .wp-table-reloaded td {
|
166 |
+
padding:4px;
|
167 |
+
background-color:#FFF;
|
168 |
+
vertical-align:top;
|
169 |
+
}
|
170 |
+
|
171 |
+
/* Styles for alternating row colors (if enabled) */
|
172 |
+
#TB_ajaxContent .wp-table-reloaded .even td {
|
173 |
+
background-color:#FFF;
|
174 |
+
}
|
175 |
+
#TB_ajaxContent .wp-table-reloaded .odd td {
|
176 |
+
background-color:#F0F0F6;
|
177 |
+
}
|
admin/index.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
3 |
+
?>
|
img/index.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
3 |
+
?>
|
index.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
3 |
+
?>
|
js/index.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
3 |
+
?>
|
js/jquery.tablesorter.extended.js
ADDED
@@ -0,0 +1,988 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
*
|
3 |
+
* TableSorter 2.0 - Client-side table sorting with ease!
|
4 |
+
* Version 2.0.5d (update)
|
5 |
+
* @requires jQuery v1.2.3
|
6 |
+
*
|
7 |
+
* Copyright (c) 2007 Christian Bach
|
8 |
+
* Examples and docs at: http://tablesorter.com
|
9 |
+
* Dual licensed under the MIT and GPL licenses:
|
10 |
+
* http://www.opensource.org/licenses/mit-license.php
|
11 |
+
* http://www.gnu.org/licenses/gpl.html
|
12 |
+
*
|
13 |
+
*/
|
14 |
+
/**
|
15 |
+
*
|
16 |
+
* @description Create a sortable table with multi-column sorting capabilitys
|
17 |
+
*
|
18 |
+
* @example $('table').tablesorter();
|
19 |
+
* @desc Create a simple tablesorter interface.
|
20 |
+
*
|
21 |
+
* @example $('table').tablesorter({ sortList:[[0,0],[1,0]] });
|
22 |
+
* @desc Create a tablesorter interface and sort on the first and secound column in ascending order.
|
23 |
+
*
|
24 |
+
* @example $('table').tablesorter({ headers: { 0: { sorter: false}, 1: {sorter: false} } } });
|
25 |
+
* @desc Create a tablesorter interface and disableing the first and secound column headers.
|
26 |
+
*
|
27 |
+
* @example $('table').tablesorter({ headers: { 0: {sorter: "digit"}, 1: {sorter: "currency"} } });
|
28 |
+
* @desc Create a tablesorter interface and set a column parser for the first and secound column.
|
29 |
+
*
|
30 |
+
*
|
31 |
+
* @param Object settings An object literal containing key/value pairs to provide optional settings.
|
32 |
+
*
|
33 |
+
* @option String cssHeader (optional) A string of the class name to be appended to sortable tr elements in the thead of the table.
|
34 |
+
* Default value: "header"
|
35 |
+
*
|
36 |
+
* @option String cssAsc (optional) A string of the class name to be appended to sortable tr elements in the thead on a ascending sort.
|
37 |
+
* Default value: "headerSortUp"
|
38 |
+
*
|
39 |
+
* @option String cssDesc (optional) A string of the class name to be appended to sortable tr elements in the thead on a descending sort.
|
40 |
+
* Default value: "headerSortDown"
|
41 |
+
*
|
42 |
+
* @option String sortInitialOrder (optional) A string of the inital sorting order can be asc or desc.
|
43 |
+
* Default value: "asc"
|
44 |
+
*
|
45 |
+
* @option String sortMultisortKey (optional) A string of the multi-column sort key.
|
46 |
+
* Default value: "shiftKey"
|
47 |
+
*
|
48 |
+
* @option String textExtraction (optional) A string of the text-extraction method to use.
|
49 |
+
* For complex html structures inside td cell set this option to "complex",
|
50 |
+
* on large tables the complex option can be slow.
|
51 |
+
* Default value: "simple"
|
52 |
+
*
|
53 |
+
* @option Object headers (optional) An array containing the forces sorting rules.
|
54 |
+
* This option let's you specify a default sorting rule.
|
55 |
+
* Default value: null
|
56 |
+
*
|
57 |
+
* @option Array sortList (optional) An array containing the forces sorting rules.
|
58 |
+
* This option let's you specify a default sorting rule.
|
59 |
+
* Default value: null
|
60 |
+
*
|
61 |
+
* @option Array sortForce (optional) An array containing forced sorting rules.
|
62 |
+
* This option let's you specify a default sorting rule, which is prepended to user-selected rules.
|
63 |
+
* Default value: null
|
64 |
+
*
|
65 |
+
* @option Array sortAppend (optional) An array containing forced sorting rules.
|
66 |
+
* This option let's you specify a default sorting rule, which is appended to user-selected rules.
|
67 |
+
* Default value: null
|
68 |
+
*
|
69 |
+
* @option Boolean widthFixed (optional) Boolean flag indicating if tablesorter should apply fixed widths to the table columns.
|
70 |
+
* This is usefull when using the pager companion plugin.
|
71 |
+
* This options requires the dimension jquery plugin.
|
72 |
+
* Default value: false
|
73 |
+
*
|
74 |
+
* @option Boolean cancelSelection (optional) Boolean flag indicating if tablesorter should cancel selection of the table headers text.
|
75 |
+
* Default value: true
|
76 |
+
*
|
77 |
+
* @option Boolean locale (optional) A locale String indicating which date format and decimal point to use.
|
78 |
+
* Default value: us
|
79 |
+
*
|
80 |
+
* @option Boolean debug (optional) Boolean flag indicating if tablesorter should display debuging information usefull for development.
|
81 |
+
*
|
82 |
+
* @option Boolean useUI (optional) Boolean flag indicating if tablesorter use the ui theme classes.
|
83 |
+
* Default value: false
|
84 |
+
* @type jQuery
|
85 |
+
*
|
86 |
+
* @name tablesorter
|
87 |
+
*
|
88 |
+
* @cat Plugins/Tablesorter
|
89 |
+
*
|
90 |
+
* @author Christian Bach/christian.bach@polyester.se
|
91 |
+
*/
|
92 |
+
|
93 |
+
(function($) {
|
94 |
+
$.extend({
|
95 |
+
tablesorter: new function() {
|
96 |
+
|
97 |
+
var parsers = [], widgets = [];
|
98 |
+
|
99 |
+
this.defaults = {
|
100 |
+
cssHeader: "header",
|
101 |
+
cssAsc: "headerSortUp",
|
102 |
+
cssDesc: "headerSortDown",
|
103 |
+
cssChildRow: "expand-child",
|
104 |
+
cssUI: {widget: "ui-widget ui-widget-content ui-corner-all", header: "ui-widget-header ui-corner-all", hover: "ui-state-hover", icon: "ui-icon", iconBoth: "ui-icon-arrowthick-2-n-s", iconDesc: "ui-icon-arrowthick-1-n", iconAsc: "ui-icon-arrowthick-1-s" },
|
105 |
+
sortInitialOrder: "asc",
|
106 |
+
sortMultiSortKey: "shiftKey",
|
107 |
+
sortForce: null,
|
108 |
+
sortAppend: null,
|
109 |
+
textExtraction: "simple",
|
110 |
+
parsers: {},
|
111 |
+
widgets: [],
|
112 |
+
widgetZebra: {css: ["even","odd"]},
|
113 |
+
headers: {},
|
114 |
+
widthFixed: false,
|
115 |
+
cancelSelection: true,
|
116 |
+
sortList: [],
|
117 |
+
headerList: [],
|
118 |
+
locale: "us",
|
119 |
+
format:{us: {decimal: '.', date: '/'}, en: {decimal: '.', date: '/'}, eu: {decimal: ',', date: '.'}, de: {decimal: ',', date: '.'}},
|
120 |
+
onRenderHeader: null,
|
121 |
+
selectorHeaders: 'thead th',
|
122 |
+
useUI: false,
|
123 |
+
debug: false
|
124 |
+
};
|
125 |
+
|
126 |
+
/* debuging utils */
|
127 |
+
function benchmark(s,d) {
|
128 |
+
log(s + "," + (new Date().getTime() - d.getTime()) + "ms");
|
129 |
+
}
|
130 |
+
|
131 |
+
this.benchmark = benchmark;
|
132 |
+
|
133 |
+
function log(s) {
|
134 |
+
if (typeof console != "undefined" && typeof console.debug != "undefined") {
|
135 |
+
console.log(s);
|
136 |
+
} else {
|
137 |
+
alert(s);
|
138 |
+
}
|
139 |
+
}
|
140 |
+
|
141 |
+
/* parsers utils */
|
142 |
+
function buildParserCache(table,$headers) {
|
143 |
+
|
144 |
+
if(table.config.debug) { var parsersDebug = ""; }
|
145 |
+
|
146 |
+
var rows = table.tBodies[0].rows;
|
147 |
+
|
148 |
+
if(table.tBodies[0].rows[0]) {
|
149 |
+
|
150 |
+
var list = [], cells = rows[0].cells, l = cells.length;
|
151 |
+
|
152 |
+
for (var i=0;i < l; i++) {
|
153 |
+
var p = false;
|
154 |
+
|
155 |
+
if($.metadata && ($($headers[i]).metadata() && $($headers[i]).metadata().sorter) ) {
|
156 |
+
|
157 |
+
p = getParserById($($headers[i]).metadata().sorter);
|
158 |
+
|
159 |
+
} else if((table.config.headers[i] && table.config.headers[i].sorter)) {
|
160 |
+
|
161 |
+
p = getParserById(table.config.headers[i].sorter);
|
162 |
+
}
|
163 |
+
if(!p) {
|
164 |
+
p = detectParserForColumn(table,cells[i]);
|
165 |
+
}
|
166 |
+
|
167 |
+
if(table.config.debug) { parsersDebug += "column:" + i + " parser:" +p.id + "\n"; }
|
168 |
+
|
169 |
+
list.push(p);
|
170 |
+
}
|
171 |
+
}
|
172 |
+
|
173 |
+
if(table.config.debug) { log(parsersDebug); }
|
174 |
+
|
175 |
+
return list;
|
176 |
+
};
|
177 |
+
|
178 |
+
function detectParserForColumn(table,node) {
|
179 |
+
var l = parsers.length;
|
180 |
+
for(var i=1; i < l; i++) {
|
181 |
+
if(parsers[i].is($.trim(getElementText(table.config,node)),table,node)) {
|
182 |
+
return parsers[i];
|
183 |
+
}
|
184 |
+
}
|
185 |
+
// 0 is always the generic parser (text)
|
186 |
+
return parsers[0];
|
187 |
+
}
|
188 |
+
|
189 |
+
function getParserById(name) {
|
190 |
+
var l = parsers.length;
|
191 |
+
for(var i=0; i < l; i++) {
|
192 |
+
if(parsers[i].id.toLowerCase() == name.toLowerCase()) {
|
193 |
+
return parsers[i];
|
194 |
+
}
|
195 |
+
}
|
196 |
+
return false;
|
197 |
+
}
|
198 |
+
|
199 |
+
/* utils */
|
200 |
+
function buildCache(table) {
|
201 |
+
|
202 |
+
if(table.config.debug) { var cacheTime = new Date(); }
|
203 |
+
|
204 |
+
|
205 |
+
var totalRows = (table.tBodies[0] && table.tBodies[0].rows.length) || 0,
|
206 |
+
totalCells = (table.tBodies[0].rows[0] && table.tBodies[0].rows[0].cells.length) || 0,
|
207 |
+
parsers = table.config.parsers,
|
208 |
+
cache = {row: [], normalized: []};
|
209 |
+
|
210 |
+
for (var i=0;i < totalRows; ++i) {
|
211 |
+
|
212 |
+
/** Add the table data to main data array */
|
213 |
+
var c = $(table.tBodies[0].rows[i]), cols = [];
|
214 |
+
|
215 |
+
// if this is a child row, add it to the last row's children and continue to the next row
|
216 |
+
if( c.hasClass(table.config.cssChildRow) ){
|
217 |
+
cache.row[cache.row.length-1] = cache.row[cache.row.length-1].add(c);
|
218 |
+
// go to the next for loop
|
219 |
+
continue;
|
220 |
+
}
|
221 |
+
|
222 |
+
cache.row.push(c);
|
223 |
+
|
224 |
+
for(var j=0; j < totalCells; ++j) {
|
225 |
+
cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));
|
226 |
+
}
|
227 |
+
|
228 |
+
cols.push(cache.normalized.length); // add position for rowCache
|
229 |
+
cache.normalized.push(cols);
|
230 |
+
cols = null;
|
231 |
+
};
|
232 |
+
|
233 |
+
if(table.config.debug) { benchmark("Building cache for " + totalRows + " rows:", cacheTime); }
|
234 |
+
|
235 |
+
return cache;
|
236 |
+
};
|
237 |
+
|
238 |
+
function getElementText(config,node) {
|
239 |
+
|
240 |
+
if(!node) return "";
|
241 |
+
|
242 |
+
var t = "";
|
243 |
+
|
244 |
+
if(config.textExtraction == "simple") {
|
245 |
+
if(node.childNodes[0] && node.childNodes[0].hasChildNodes()) {
|
246 |
+
t = node.childNodes[0].innerHTML;
|
247 |
+
} else {
|
248 |
+
t = node.innerHTML;
|
249 |
+
}
|
250 |
+
} else {
|
251 |
+
if(typeof(config.textExtraction) == "function") {
|
252 |
+
t = config.textExtraction(node);
|
253 |
+
} else {
|
254 |
+
t = $(node).text();
|
255 |
+
}
|
256 |
+
}
|
257 |
+
return t;
|
258 |
+
}
|
259 |
+
|
260 |
+
function appendToTable(table,cache) {
|
261 |
+
|
262 |
+
if(table.config.debug) {var appendTime = new Date();}
|
263 |
+
|
264 |
+
var c = cache,
|
265 |
+
r = c.row,
|
266 |
+
n= c.normalized,
|
267 |
+
totalRows = n.length,
|
268 |
+
checkCell = (n[0].length-1),
|
269 |
+
tableBody = $(table.tBodies[0]),
|
270 |
+
rows = [];
|
271 |
+
|
272 |
+
for (var i=0;i < totalRows; i++) {
|
273 |
+
var pos = n[i][checkCell];
|
274 |
+
rows.push(r[pos]);
|
275 |
+
if(!table.config.appender) {
|
276 |
+
|
277 |
+
var o = r[pos];
|
278 |
+
var l = o.length;
|
279 |
+
for(var j=0; j < l; j++) {
|
280 |
+
tableBody[0].appendChild(o[j]);
|
281 |
+
}
|
282 |
+
|
283 |
+
//tableBody.append(r[n[i][checkCell]]);
|
284 |
+
}
|
285 |
+
}
|
286 |
+
|
287 |
+
if(table.config.appender) {
|
288 |
+
|
289 |
+
table.config.appender(table,rows);
|
290 |
+
}
|
291 |
+
|
292 |
+
rows = null;
|
293 |
+
|
294 |
+
if(table.config.debug) { benchmark("Rebuilt table:", appendTime); }
|
295 |
+
|
296 |
+
//apply table widgets
|
297 |
+
applyWidget(table);
|
298 |
+
|
299 |
+
// trigger sortend
|
300 |
+
setTimeout(function() {
|
301 |
+
$(table).trigger("sortEnd");
|
302 |
+
},0);
|
303 |
+
|
304 |
+
};
|
305 |
+
|
306 |
+
function buildHeaders(table) {
|
307 |
+
|
308 |
+
if(table.config.debug) { var time = new Date(); }
|
309 |
+
|
310 |
+
var config = table.config;
|
311 |
+
var meta = ($.metadata) ? true : false; //, tableHeadersRows = [];
|
312 |
+
|
313 |
+
//for(var i = 0; i < table.tHead.rows.length; i++) { tableHeadersRows[i]=0; };
|
314 |
+
|
315 |
+
$tableHeaders = $(config.selectorHeaders,table).each(function(index) {
|
316 |
+
|
317 |
+
this.column = index;
|
318 |
+
this.order = formatSortingOrder(config.sortInitialOrder);
|
319 |
+
this.count = this.order;
|
320 |
+
|
321 |
+
if(checkHeaderMetadata(this) || checkHeaderOptions(table,index)) this.sortDisabled = true;
|
322 |
+
|
323 |
+
if(!this.sortDisabled) {
|
324 |
+
if (config.useUI) {
|
325 |
+
// add span element
|
326 |
+
$(this).prepend('<span></span>').children("span").addClass(config.cssUI.icon);
|
327 |
+
$(this).hover(function () {$(this).addClass(config.cssUI.hover);}, function () {$(this).removeClass(config.cssUI.hover);});
|
328 |
+
}
|
329 |
+
else {
|
330 |
+
if( config.onRenderHeader ) config.onRenderHeader.apply(this);
|
331 |
+
}
|
332 |
+
}
|
333 |
+
|
334 |
+
// add cell to headerList
|
335 |
+
config.headerList[index]= this;
|
336 |
+
});
|
337 |
+
|
338 |
+
if(table.config.debug) { benchmark("Built headers:", time); log($tableHeaders); }
|
339 |
+
|
340 |
+
return $tableHeaders;
|
341 |
+
|
342 |
+
};
|
343 |
+
|
344 |
+
function setupCss(table, $headers) {
|
345 |
+
var c = table.config;
|
346 |
+
|
347 |
+
if(c.useUI) {
|
348 |
+
$(table).parent("div:first").addClass(c.cssUI["widget"]);
|
349 |
+
$headers.addClass(c.cssUI.header);
|
350 |
+
return [c.cssUI.iconDesc,c.cssUI.iconAsc,c.cssUI.iconBoth];
|
351 |
+
|
352 |
+
}
|
353 |
+
else {
|
354 |
+
$headers.addClass(c.cssHeader);
|
355 |
+
return [c.cssDesc,c.cssAsc];
|
356 |
+
}
|
357 |
+
}
|
358 |
+
|
359 |
+
function checkCellColSpan(table, rows, row) {
|
360 |
+
var arr = [], r = table.tHead.rows, c = r[row].cells;
|
361 |
+
|
362 |
+
for(var i=0; i < c.length; i++) {
|
363 |
+
var cell = c[i];
|
364 |
+
|
365 |
+
if ( cell.colSpan > 1) {
|
366 |
+
arr = arr.concat(checkCellColSpan(table, headerArr,row++));
|
367 |
+
} else {
|
368 |
+
if(table.tHead.length == 1 || (cell.rowSpan > 1 || !r[row+1])) {
|
369 |
+
arr.push(cell);
|
370 |
+
}
|
371 |
+
//headerArr[row] = (i+row);
|
372 |
+
}
|
373 |
+
}
|
374 |
+
return arr;
|
375 |
+
};
|
376 |
+
|
377 |
+
function checkHeaderMetadata(cell) {
|
378 |
+
if(($.metadata) && ($(cell).metadata().sorter === false)) { return true; };
|
379 |
+
return false;
|
380 |
+
}
|
381 |
+
|
382 |
+
function checkHeaderOptions(table,i) {
|
383 |
+
if((table.config.headers[i]) && (table.config.headers[i].sorter === false)) { return true; };
|
384 |
+
return false;
|
385 |
+
}
|
386 |
+
|
387 |
+
function applyWidget(table) {
|
388 |
+
var c = table.config.widgets;
|
389 |
+
var l = c.length;
|
390 |
+
for(var i=0; i < l; i++) {
|
391 |
+
|
392 |
+
getWidgetById(c[i]).format(table);
|
393 |
+
}
|
394 |
+
|
395 |
+
}
|
396 |
+
|
397 |
+
function getWidgetById(name) {
|
398 |
+
var l = widgets.length;
|
399 |
+
for(var i=0; i < l; i++) {
|
400 |
+
if(widgets[i].id.toLowerCase() == name.toLowerCase() ) {
|
401 |
+
return widgets[i];
|
402 |
+
}
|
403 |
+
}
|
404 |
+
};
|
405 |
+
|
406 |
+
function formatSortingOrder(v) {
|
407 |
+
if(typeof(v) != "Number") {
|
408 |
+
return (v.toLowerCase() == "desc") ? 1 : 0;
|
409 |
+
} else {
|
410 |
+
return (v == 1) ? 1 : 0;
|
411 |
+
}
|
412 |
+
}
|
413 |
+
|
414 |
+
function isValueInArray(v, a) {
|
415 |
+
var l = a.length;
|
416 |
+
for(var i=0; i < l; i++) {
|
417 |
+
if(a[i][0] == v) {
|
418 |
+
return true;
|
419 |
+
}
|
420 |
+
}
|
421 |
+
return false;
|
422 |
+
}
|
423 |
+
|
424 |
+
function setHeadersCss(table,$headers, list, css) {
|
425 |
+
var c = table.config;
|
426 |
+
// remove all header information
|
427 |
+
if(c.useUI) {
|
428 |
+
$headers.children("span").removeClass(css[0]).removeClass(css[1]).addClass(css[2]);
|
429 |
+
} else {
|
430 |
+
$headers.removeClass(css[0]).removeClass(css[1]);
|
431 |
+
}
|
432 |
+
|
433 |
+
var h = [];
|
434 |
+
$headers.each(function(offset) {
|
435 |
+
if(!this.sortDisabled) {
|
436 |
+
h[this.column] = $(this);
|
437 |
+
}
|
438 |
+
});
|
439 |
+
|
440 |
+
var l = list.length;
|
441 |
+
for(var i=0; i < l; i++) {
|
442 |
+
if (c.useUI) {
|
443 |
+
h[list[i][0]].children("span").removeClass(css[2]).addClass(css[list[i][1]]);
|
444 |
+
} else {
|
445 |
+
h[list[i][0]].addClass(css[list[i][1]]);
|
446 |
+
}
|
447 |
+
}
|
448 |
+
}
|
449 |
+
|
450 |
+
function fixColumnWidth(table,$headers) {
|
451 |
+
var c = table.config;
|
452 |
+
if(c.widthFixed) {
|
453 |
+
var colgroup = $('<colgroup>');
|
454 |
+
$("tr:first td",table.tBodies[0]).each(function() {
|
455 |
+
colgroup.append($('<col>').css('width',$(this).width()));
|
456 |
+
});
|
457 |
+
$(table).prepend(colgroup);
|
458 |
+
};
|
459 |
+
}
|
460 |
+
|
461 |
+
function updateHeaderSortCount(table,sortList) {
|
462 |
+
var c = table.config, l = sortList.length;
|
463 |
+
for(var i=0; i < l; i++) {
|
464 |
+
var s = sortList[i], o = c.headerList[s[0]];
|
465 |
+
o.count = s[1];
|
466 |
+
o.count++;
|
467 |
+
}
|
468 |
+
}
|
469 |
+
|
470 |
+
/* sorting methods */
|
471 |
+
function multisort(table,sortList,cache) {
|
472 |
+
|
473 |
+
if(table.config.debug) { var sortTime = new Date(); }
|
474 |
+
|
475 |
+
var dynamicExp = "var sortWrapper = function(a,b) {", l = sortList.length;
|
476 |
+
|
477 |
+
// TODO: inline functions.
|
478 |
+
for(var i=0; i < l; i++) {
|
479 |
+
|
480 |
+
var c = sortList[i][0];
|
481 |
+
var order = sortList[i][1];
|
482 |
+
//var s = (getCachedSortType(table.config.parsers,c) == "text") ? ((order == 0) ? "sortText" : "sortTextDesc") : ((order == 0) ? "sortNumeric" : "sortNumericDesc");
|
483 |
+
//var s = (table.config.parsers[c].type == "text") ? ((order == 0) ? makeSortText(c) : makeSortTextDesc(c)) : ((order == 0) ? makeSortNumeric(c) : makeSortNumericDesc(c));
|
484 |
+
var s = (table.config.parsers[c].type == "text") ? ((order == 0) ? makeSortFunction("text", "asc", c) : makeSortFunction("text", "desc", c)) : ((order == 0) ? makeSortFunction("numeric", "asc", c) : makeSortFunction("numeric", "desc", c));
|
485 |
+
var e = "e" + i;
|
486 |
+
|
487 |
+
dynamicExp += "var " + e + " = " + s; // + "(a[" + c + "],b[" + c + "]); ";
|
488 |
+
dynamicExp += "if(" + e + ") { return " + e + "; } ";
|
489 |
+
dynamicExp += "else { ";
|
490 |
+
|
491 |
+
}
|
492 |
+
|
493 |
+
// if value is the same keep orignal order
|
494 |
+
var orgOrderCol = cache.normalized[0].length - 1;
|
495 |
+
dynamicExp += "return a[" + orgOrderCol + "]-b[" + orgOrderCol + "];";
|
496 |
+
|
497 |
+
for(var i=0; i < l; i++) {
|
498 |
+
dynamicExp += "}; ";
|
499 |
+
}
|
500 |
+
|
501 |
+
dynamicExp += "return 0; ";
|
502 |
+
dynamicExp += "}; ";
|
503 |
+
|
504 |
+
if(table.config.debug) { benchmark("Evaling expression:" + dynamicExp, new Date()); }
|
505 |
+
|
506 |
+
eval(dynamicExp);
|
507 |
+
|
508 |
+
cache.normalized.sort(sortWrapper);
|
509 |
+
|
510 |
+
if(table.config.debug) { benchmark("Sorting on " + sortList.toString() + " and dir " + order+ " time:", sortTime); }
|
511 |
+
|
512 |
+
return cache;
|
513 |
+
};
|
514 |
+
|
515 |
+
function makeSortFunction(type, direction, index) {
|
516 |
+
var a = "a[" + index + "]", b = "b[" + index + "]";
|
517 |
+
if (type == 'text' && direction == 'asc') {
|
518 |
+
return "(" + a + " == " + b + " ? 0 : (" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : (" + a + " < " + b + ") ? -1 : 1 )));";
|
519 |
+
} else if (type == 'text' && direction == 'desc') {
|
520 |
+
return "(" + a + " == " + b + " ? 0 : (" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : (" + b + " < " + a + ") ? -1 : 1 )));";
|
521 |
+
} else if (type == 'numeric' && direction == 'asc') {
|
522 |
+
return "(" + a + " === null && " + b + " === null) ? 0 :(" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : " + a + " - " + b + "));";
|
523 |
+
} else if (type == 'numeric' && direction == 'desc') {
|
524 |
+
return "(" + a + " === null && " + b + " === null) ? 0 :(" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : " + b + " - " + a + "));";
|
525 |
+
}
|
526 |
+
};
|
527 |
+
|
528 |
+
function makeSortText(i) {
|
529 |
+
return "((a[" + i + "] < b[" + i + "]) ? -1 : ((a[" + i + "] > b[" + i + "]) ? 1 : 0));";
|
530 |
+
};
|
531 |
+
|
532 |
+
function makeSortTextDesc(i) {
|
533 |
+
return "((b[" + i + "] < a[" + i + "]) ? -1 : ((b[" + i + "] > a[" + i + "]) ? 1 : 0));";
|
534 |
+
};
|
535 |
+
|
536 |
+
function makeSortNumeric(i) {
|
537 |
+
return "a[" + i + "]-b[" + i + "];";
|
538 |
+
};
|
539 |
+
|
540 |
+
function makeSortNumericDesc(i) {
|
541 |
+
return "b[" + i + "]-a[" + i + "];";
|
542 |
+
};
|
543 |
+
|
544 |
+
|
545 |
+
function sortText(a,b) {
|
546 |
+
return ((a < b) ? -1 : ((a > b) ? 1 : 0));
|
547 |
+
};
|
548 |
+
|
549 |
+
function sortTextDesc(a,b) {
|
550 |
+
return ((b < a) ? -1 : ((b > a) ? 1 : 0));
|
551 |
+
};
|
552 |
+
|
553 |
+
function sortNumeric(a,b) {
|
554 |
+
return a-b;
|
555 |
+
};
|
556 |
+
|
557 |
+
function sortNumericDesc(a,b) {
|
558 |
+
return b-a;
|
559 |
+
};
|
560 |
+
|
561 |
+
function getCachedSortType(parsers,i) {
|
562 |
+
return parsers[i].type;
|
563 |
+
};
|
564 |
+
|
565 |
+
/* public methods */
|
566 |
+
this.construct = function(settings) {
|
567 |
+
|
568 |
+
return this.each(function() {
|
569 |
+
|
570 |
+
if(!this.tHead || !this.tBodies) return;
|
571 |
+
|
572 |
+
var $this, $document,$headers, cache, config, shiftDown = 0, sortOrder;
|
573 |
+
|
574 |
+
this.config = {};
|
575 |
+
|
576 |
+
config = $.extend(this.config, $.tablesorter.defaults, settings);
|
577 |
+
|
578 |
+
// store common expression for speed
|
579 |
+
$this = $(this);
|
580 |
+
|
581 |
+
// save the settings where they read
|
582 |
+
$.data(this, "tablesorter", config);
|
583 |
+
|
584 |
+
// build headers
|
585 |
+
$headers = buildHeaders(this);
|
586 |
+
|
587 |
+
// try to auto detect column type, and store in tables config
|
588 |
+
this.config.parsers = buildParserCache(this,$headers);
|
589 |
+
|
590 |
+
// build the cache for the tbody cells
|
591 |
+
cache = buildCache(this);
|
592 |
+
|
593 |
+
// get class names and setup UI if needed
|
594 |
+
var sortCSS = setupCss(this, $headers);
|
595 |
+
|
596 |
+
// fixate columns if the users supplies the fixedWidth option
|
597 |
+
fixColumnWidth(this);
|
598 |
+
|
599 |
+
// apply event handling to headers
|
600 |
+
// this is to big, perhaps break it out?
|
601 |
+
$headers.click(function(e) {
|
602 |
+
|
603 |
+
var totalRows = ($this[0].tBodies[0] && $this[0].tBodies[0].rows.length) || 0;
|
604 |
+
|
605 |
+
if(!this.sortDisabled && totalRows > 0) {
|
606 |
+
|
607 |
+
// Only call sortStart if sorting is enabled.
|
608 |
+
$this.trigger("sortStart");
|
609 |
+
|
610 |
+
// store exp, for speed
|
611 |
+
var $cell = $(this);
|
612 |
+
|
613 |
+
// get current column index
|
614 |
+
var i = this.column;
|
615 |
+
|
616 |
+
// get current column sort order
|
617 |
+
this.order = this.count++ % 2;
|
618 |
+
|
619 |
+
// user only whants to sort on one column
|
620 |
+
if(!e[config.sortMultiSortKey]) {
|
621 |
+
|
622 |
+
// flush the sort list
|
623 |
+
config.sortList = [];
|
624 |
+
|
625 |
+
if(config.sortForce != null) {
|
626 |
+
var a = config.sortForce;
|
627 |
+
for(var j=0; j < a.length; j++) {
|
628 |
+
if(a[j][0] != i) {
|
629 |
+
config.sortList.push(a[j]);
|
630 |
+
}
|
631 |
+
}
|
632 |
+
}
|
633 |
+
|
634 |
+
// add column to sort list
|
635 |
+
config.sortList.push([i,this.order]);
|
636 |
+
|
637 |
+
// multi column sorting
|
638 |
+
} else {
|
639 |
+
// the user has clicked on an all ready sortet column.
|
640 |
+
if(isValueInArray(i,config.sortList)) {
|
641 |
+
|
642 |
+
// revers the sorting direction for all tables.
|
643 |
+
for(var j=0; j < config.sortList.length; j++) {
|
644 |
+
var s = config.sortList[j], o = config.headerList[s[0]];
|
645 |
+
if(s[0] == i) {
|
646 |
+
o.count = s[1];
|
647 |
+
o.count++;
|
648 |
+
s[1] = o.count % 2;
|
649 |
+
}
|
650 |
+
}
|
651 |
+
} else {
|
652 |
+
// add column to sort list array
|
653 |
+
config.sortList.push([i,this.order]);
|
654 |
+
}
|
655 |
+
};
|
656 |
+
setTimeout(function() {
|
657 |
+
//set css for headers
|
658 |
+
setHeadersCss($this[0],$headers,config.sortList,sortCSS);
|
659 |
+
appendToTable($this[0],multisort($this[0],config.sortList,cache));
|
660 |
+
},1);
|
661 |
+
// stop normal event by returning false
|
662 |
+
return false;
|
663 |
+
}
|
664 |
+
// cancel selection
|
665 |
+
}).mousedown(function() {
|
666 |
+
if(config.cancelSelection) {
|
667 |
+
this.onselectstart = function() {return false;};
|
668 |
+
return false;
|
669 |
+
}
|
670 |
+
});
|
671 |
+
|
672 |
+
// apply easy methods that trigger binded events
|
673 |
+
$this.bind("update",function() {
|
674 |
+
var me = this;
|
675 |
+
setTimeout(function() {
|
676 |
+
// rebuild parsers.
|
677 |
+
me.config.parsers = buildParserCache(me,$headers);
|
678 |
+
// rebuild the cache map
|
679 |
+
cache = buildCache(me);
|
680 |
+
},1);
|
681 |
+
}).bind("updateCell",function(e,cell) {
|
682 |
+
var config = this.config;
|
683 |
+
// get position from the dom.
|
684 |
+
var pos = [(cell.parentNode.rowIndex - 1),cell.cellIndex];
|
685 |
+
// update cache
|
686 |
+
cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format(getElementText(config,cell),cell);
|
687 |
+
|
688 |
+
}).bind("sorton",function(e,list) {
|
689 |
+
|
690 |
+
$(this).trigger("sortStart");
|
691 |
+
|
692 |
+
config.sortList = list;
|
693 |
+
|
694 |
+
// update and store the sortlist
|
695 |
+
var sortList = config.sortList;
|
696 |
+
|
697 |
+
// update header count index
|
698 |
+
updateHeaderSortCount(this,sortList);
|
699 |
+
|
700 |
+
//set css for headers
|
701 |
+
setHeadersCss(this,$headers,sortList,sortCSS);
|
702 |
+
|
703 |
+
// sort the table and append it to the dom
|
704 |
+
appendToTable(this,multisort(this,sortList,cache));
|
705 |
+
|
706 |
+
}).bind("appendCache",function() {
|
707 |
+
|
708 |
+
appendToTable(this,cache);
|
709 |
+
|
710 |
+
}).bind("applyWidgetId",function(e,id) {
|
711 |
+
|
712 |
+
getWidgetById(id).format(this);
|
713 |
+
|
714 |
+
}).bind("applyWidgets",function() {
|
715 |
+
// apply widgets
|
716 |
+
applyWidget(this);
|
717 |
+
});
|
718 |
+
|
719 |
+
if($.metadata && ($(this).metadata() && $(this).metadata().sortlist)) {
|
720 |
+
config.sortList = $(this).metadata().sortlist;
|
721 |
+
}
|
722 |
+
// if user has supplied a sort list to constructor.
|
723 |
+
if(config.sortList.length > 0) {
|
724 |
+
$this.trigger("sorton",[config.sortList]);
|
725 |
+
}
|
726 |
+
else {
|
727 |
+
// apply widgets only if there is no sort list in constructor
|
728 |
+
applyWidget(this);
|
729 |
+
}
|
730 |
+
});
|
731 |
+
};
|
732 |
+
|
733 |
+
this.addParser = function(parser) {
|
734 |
+
var l = parsers.length, a = true;
|
735 |
+
for(var i=0; i < l; i++) {
|
736 |
+
if(parsers[i].id.toLowerCase() == parser.id.toLowerCase()) {
|
737 |
+
a = false;
|
738 |
+
}
|
739 |
+
}
|
740 |
+
if(a) { parsers.push(parser); };
|
741 |
+
};
|
742 |
+
|
743 |
+
this.addWidget = function(widget) {
|
744 |
+
widgets.push(widget);
|
745 |
+
};
|
746 |
+
|
747 |
+
this.formatDate = function(s,config) {
|
748 |
+
if (config.locale != "us") {
|
749 |
+
var datePoint = '\\'+config.format[config.locale]["date"];
|
750 |
+
s = s.replace(new RegExp('[\\-'+datePoint+']', 'g'), config.format["us"]["date"]);
|
751 |
+
}
|
752 |
+
return s;
|
753 |
+
};
|
754 |
+
this.formatDecimal = function(s,config) {
|
755 |
+
if (config.locale != "us") {
|
756 |
+
s = s.replace(config.format[config.locale]["decimal"], config.format["us"]["decimal"]);
|
757 |
+
}
|
758 |
+
return s;
|
759 |
+
};
|
760 |
+
this.formatFloat = function(s) {
|
761 |
+
var i = parseFloat(s);
|
762 |
+
return (isNaN(i)) ? 0 : i;
|
763 |
+
};
|
764 |
+
this.formatInt = function(s) {
|
765 |
+
var i = parseInt(s);
|
766 |
+
return (isNaN(i)) ? 0 : i;
|
767 |
+
};
|
768 |
+
|
769 |
+
this.isDigit = function(s,config) {
|
770 |
+
var decimalPoint = '\\' + config.format[config.locale]["decimal"];
|
771 |
+
var exp = '/(^[+]?0(' + decimalPoint +'0+)?$)|(^([-+]?[0-9]*)$)|(^([-+]?((0?[0-9]*)' + decimalPoint +'(0*[0-9]*)))$)|(^[-+]?[0-9]*' + decimalPoint +'0+$)/';
|
772 |
+
return RegExp(exp).test($.trim(s));
|
773 |
+
};
|
774 |
+
|
775 |
+
this.clearTableBody = function(table) {
|
776 |
+
if($.browser.msie) {
|
777 |
+
function empty() {
|
778 |
+
while ( this.firstChild ) this.removeChild( this.firstChild );
|
779 |
+
}
|
780 |
+
empty.apply(table.tBodies[0]);
|
781 |
+
} else {
|
782 |
+
table.tBodies[0].innerHTML = "";
|
783 |
+
}
|
784 |
+
};
|
785 |
+
}
|
786 |
+
});
|
787 |
+
|
788 |
+
// extend plugin scope
|
789 |
+
$.fn.extend({
|
790 |
+
tablesorter: $.tablesorter.construct
|
791 |
+
});
|
792 |
+
|
793 |
+
// make shortcut
|
794 |
+
var ts = $.tablesorter;
|
795 |
+
|
796 |
+
// add default parsers
|
797 |
+
ts.addParser({
|
798 |
+
id: "text",
|
799 |
+
is: function(s) {
|
800 |
+
return true;
|
801 |
+
},
|
802 |
+
format: function(s) {
|
803 |
+
return $.trim(s.toLowerCase());
|
804 |
+
},
|
805 |
+
type: "text"
|
806 |
+
});
|
807 |
+
|
808 |
+
ts.addParser({
|
809 |
+
id: "digit",
|
810 |
+
is: function(s,table) {
|
811 |
+
var c = table.config;
|
812 |
+
return $.tablesorter.isDigit(s,c);
|
813 |
+
},
|
814 |
+
format: function(s,table) {
|
815 |
+
var c = table.config;
|
816 |
+
s = $.tablesorter.formatDecimal(s,c);
|
817 |
+
return $.tablesorter.formatFloat(s);
|
818 |
+
},
|
819 |
+
type: "numeric"
|
820 |
+
});
|
821 |
+
|
822 |
+
ts.addParser({
|
823 |
+
id: "currency",
|
824 |
+
is: function(s) {
|
825 |
+
return /^[£$€?.,]/.test(s);
|
826 |
+
},
|
827 |
+
format: function(s,table) {
|
828 |
+
var c = table.config;
|
829 |
+
s = $.tablesorter.formatDecimal(s,c);
|
830 |
+
return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));
|
831 |
+
},
|
832 |
+
type: "numeric"
|
833 |
+
});
|
834 |
+
|
835 |
+
ts.addParser({
|
836 |
+
id: "ipAddress",
|
837 |
+
is: function(s) {
|
838 |
+
return /^\d{2,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$/.test(s);
|
839 |
+
},
|
840 |
+
format: function(s) {
|
841 |
+
var a = s.split("."), r = "", l = a.length;
|
842 |
+
for(var i = 0; i < l; i++) {
|
843 |
+
var item = a[i];
|
844 |
+
if(item.length == 2) {
|
845 |
+
r += "0" + item;
|
846 |
+
} else {
|
847 |
+
r += item;
|
848 |
+
}
|
849 |
+
}
|
850 |
+
return $.tablesorter.formatFloat(r);
|
851 |
+
},
|
852 |
+
type: "numeric"
|
853 |
+
});
|
854 |
+
|
855 |
+
ts.addParser({
|
856 |
+
id: "url",
|
857 |
+
is: function(s) {
|
858 |
+
return /^(https?|ftp|file):\/\/$/.test(s);
|
859 |
+
},
|
860 |
+
format: function(s) {
|
861 |
+
return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));
|
862 |
+
},
|
863 |
+
type: "text"
|
864 |
+
});
|
865 |
+
|
866 |
+
ts.addParser({
|
867 |
+
id: "isoDate",
|
868 |
+
is: function(s) {
|
869 |
+
return /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);
|
870 |
+
},
|
871 |
+
format: function(s) {
|
872 |
+
return $.tablesorter.formatFloat((s != "") ? new Date(s.replace(new RegExp(/-/g),"/")).getTime() : "0");
|
873 |
+
},
|
874 |
+
type: "numeric"
|
875 |
+
});
|
876 |
+
|
877 |
+
ts.addParser({
|
878 |
+
id: "percent",
|
879 |
+
is: function(s) {
|
880 |
+
return /\%$/.test($.trim(s));
|
881 |
+
},
|
882 |
+
format: function(s,table) {
|
883 |
+
var c = table.config;
|
884 |
+
s = $.tablesorter.formatDecimal(s,c);
|
885 |
+
return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));
|
886 |
+
},
|
887 |
+
type: "numeric"
|
888 |
+
});
|
889 |
+
|
890 |
+
ts.addParser({
|
891 |
+
id: "usLongDate",
|
892 |
+
is: function(s) {
|
893 |
+
return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));
|
894 |
+
},
|
895 |
+
format: function(s) {
|
896 |
+
return $.tablesorter.formatFloat(new Date(s).getTime());
|
897 |
+
},
|
898 |
+
type: "numeric"
|
899 |
+
});
|
900 |
+
|
901 |
+
ts.addParser({
|
902 |
+
id: "mediumDate",
|
903 |
+
is: function(s,table) {
|
904 |
+
var c = table.config;
|
905 |
+
var datePoint = '\\' + c.format[c.locale]["date"];
|
906 |
+
var expStr = '\\d{1,2}[\\-'+datePoint+']\\d{1,2}[\\-'+datePoint+']\\d{4}';
|
907 |
+
return RegExp(expStr).test(s);
|
908 |
+
},
|
909 |
+
format: function(s,table) {
|
910 |
+
var c = table.config;
|
911 |
+
s = $.tablesorter.formatDate(s,c);
|
912 |
+
if(c.locale == "us") {
|
913 |
+
// reformat the string in ISO format
|
914 |
+
s = s.replace(/(\d{1,2})[\/](\d{1,2})[\/](\d{4})/, "$3/$1/$2");
|
915 |
+
} else if(c.locale == "en" || c.locale == "de" || c.locale == "eu") {
|
916 |
+
//reformat the string in ISO format
|
917 |
+
s = s.replace(/(\d{1,2})[\/](\d{1,2})[\/](\d{4})/, "$3/$2/$1");
|
918 |
+
}
|
919 |
+
return $.tablesorter.formatFloat((s != "") ? new Date(s).getTime() : 0);
|
920 |
+
},
|
921 |
+
type: "numeric"
|
922 |
+
});
|
923 |
+
|
924 |
+
ts.addParser({
|
925 |
+
id: "shortDate",
|
926 |
+
is: function(s,table) {
|
927 |
+
var c = table.config;
|
928 |
+
var datePoint = '\\'+c.format[c.locale]["date"];
|
929 |
+
var expStr = '\\d{1,2}[\\-'+datePoint+']\\d{1,2}[\\-'+datePoint+']\\d{2}';
|
930 |
+
return RegExp(expStr).test(s);
|
931 |
+
},
|
932 |
+
format: function(s,table) {
|
933 |
+
var c = table.config;
|
934 |
+
s = $.tablesorter.formatDate(s,c);
|
935 |
+
if(c.locale == "us") {
|
936 |
+
// reformat the string in non-ISO format
|
937 |
+
s = s.replace(/(\d{1,2})[\/](\d{1,2})[\/](\d{2})/, "$1/$2/$3");
|
938 |
+
} else if(c.locale == "en" || c.locale == "de" || c.locale == "eu") {
|
939 |
+
//reformat the string in non-ISO format
|
940 |
+
s = s.replace(/(\d{1,2})[\/](\d{1,2})[\/](\d{2})/, "$2/$1/$3");
|
941 |
+
}
|
942 |
+
return $.tablesorter.formatFloat((s != "") ? new Date(s).getTime() : 0);
|
943 |
+
},
|
944 |
+
type: "numeric"
|
945 |
+
});
|
946 |
+
|
947 |
+
|
948 |
+
ts.addParser({
|
949 |
+
id: "time",
|
950 |
+
is: function(s) {
|
951 |
+
return /^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);
|
952 |
+
},
|
953 |
+
format: function(s) {
|
954 |
+
return $.tablesorter.formatFloat(new Date("2000/01/01 " + s).getTime());
|
955 |
+
},
|
956 |
+
type: "numeric"
|
957 |
+
});
|
958 |
+
|
959 |
+
ts.addParser({
|
960 |
+
id: "metadata",
|
961 |
+
is: function(s) {
|
962 |
+
return false;
|
963 |
+
},
|
964 |
+
format: function(s,table,cell) {
|
965 |
+
var c = table.config, p = (!c.parserMetadataName) ? 'sortValue' : c.parserMetadataName;
|
966 |
+
return $(cell).metadata()[p];
|
967 |
+
},
|
968 |
+
type: "numeric"
|
969 |
+
});
|
970 |
+
|
971 |
+
// add default widgets
|
972 |
+
ts.addWidget({
|
973 |
+
id: "zebra",
|
974 |
+
format: function(table) {
|
975 |
+
if(table.config.debug) { var time = new Date(); }
|
976 |
+
var $tr, row = -1, odd;
|
977 |
+
// loop through the visible rows
|
978 |
+
$("tr:visible",table.tBodies[0]).each(function (i){
|
979 |
+
$tr = $(this);
|
980 |
+
// style children rows the same way the parent row was styled
|
981 |
+
if( !$tr.hasClass(table.config.cssChildRow) ) row++;
|
982 |
+
odd = (row%2 == 0);
|
983 |
+
$tr.removeClass(table.config.widgetZebra.css[odd?0:1]).addClass(table.config.widgetZebra.css[odd?1:0]);
|
984 |
+
});
|
985 |
+
if(table.config.debug) { $.tablesorter.benchmark("Applying Zebra widget", time); }
|
986 |
+
}
|
987 |
+
});
|
988 |
+
})(jQuery);
|
languages/index.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
3 |
+
?>
|
languages/wp-table-reloaded-cs_CZ.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-cs_CZ.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WP-Table Reloaded CZ (1.
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Separatista <pavelevap@separatista.net>\n"
|
8 |
"Language-Team: Separatista <pavelevap@separatista.net>\n"
|
@@ -50,933 +50,1269 @@ msgstr ". (tečka)"
|
|
50 |
msgid "| (pipe)"
|
51 |
msgstr "| (svislá čára)"
|
52 |
|
53 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
#, php-format
|
55 |
msgid "Table \"%s\" added successfully."
|
56 |
msgstr "Tabulka \"%s\" byla úspěšně vytvořena."
|
57 |
|
58 |
-
#: wp-table-reloaded-admin.php:
|
59 |
#, php-format
|
60 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
61 |
msgstr "Tabulka byla úspěšně aktualizována. Tato tabulka má nyní ID %s. Budete si podle toho muset upravit již existující zkrácené zápisy v příspěvcích."
|
62 |
|
63 |
-
#: wp-table-reloaded-admin.php:
|
64 |
#, php-format
|
65 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
66 |
msgstr "ID tabulky nemohlo být změněno z %s na %s, protože tabulka s tímto ID již existuje."
|
67 |
|
68 |
-
#: wp-table-reloaded-admin.php:
|
69 |
msgid "Table edited successfully."
|
70 |
msgstr "Tabulka byla úspěšně aktualizována."
|
71 |
|
72 |
-
#: wp-table-reloaded-admin.php:
|
73 |
msgid "Rows swapped successfully."
|
74 |
msgstr "Řádky byly úspěšně prohozeny."
|
75 |
|
76 |
-
#: wp-table-reloaded-admin.php:
|
77 |
msgid "Columns swapped successfully."
|
78 |
msgstr "Sloupce byly úspěšně prohozeny."
|
79 |
|
80 |
-
#: wp-table-reloaded-admin.php:
|
81 |
msgid "Table sorted successfully."
|
82 |
msgstr "Hodnoty v tabulce byly úspěšně seřazeny."
|
83 |
|
84 |
-
#: wp-table-reloaded-admin.php:
|
85 |
msgid "Row added successfully."
|
86 |
msgid_plural "Rows added successfully."
|
87 |
msgstr[0] "Řádek byl úspěšně přidán."
|
88 |
msgstr[1] "Řádky byly úspěšně přidány."
|
89 |
msgstr[2] "Řádky byly úspěšně přidány."
|
90 |
|
91 |
-
#: wp-table-reloaded-admin.php:
|
92 |
msgid "Column added successfully."
|
93 |
msgid_plural "Columns added successfully."
|
94 |
msgstr[0] "Sloupec byl úspěšně smazán."
|
95 |
msgstr[1] "Sloupce byly úspěšně přidány."
|
96 |
msgstr[2] "Sloupce byly úspěšně přidány."
|
97 |
|
98 |
-
#: wp-table-reloaded-admin.php:
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
msgid "Copy of"
|
101 |
msgstr "Kopie -"
|
102 |
|
103 |
-
#: wp-table-reloaded-admin.php:
|
104 |
msgid "Table copied successfully."
|
105 |
msgid_plural "Tables copied successfully."
|
106 |
msgstr[0] "Tabulka byla úspěšně zkopírována."
|
107 |
msgstr[1] "Tabulky byly úspěšně zkopírovány."
|
108 |
msgstr[2] "Tabulky byly úspěšně zkopírovány."
|
109 |
|
110 |
-
#: wp-table-reloaded-admin.php:
|
111 |
msgid "Table deleted successfully."
|
112 |
msgid_plural "Tables deleted successfully."
|
113 |
msgstr[0] "Tabulka byla úspěšně smazána."
|
114 |
msgstr[1] "Tabulky byly úspěšně smazány."
|
115 |
msgstr[2] "Tabulky byly úspěšně smazány."
|
116 |
|
117 |
-
#: wp-table-reloaded-admin.php:
|
118 |
-
#: wp-table-reloaded-admin.php:
|
119 |
-
#: wp-table-reloaded-admin.php:
|
120 |
msgid "Table imported successfully."
|
121 |
msgid_plural "Tables imported successfully."
|
122 |
msgstr[0] "Tabulka byla úspěšně importována."
|
123 |
msgstr[1] "Tabulky byly úspěšně importovány."
|
124 |
msgstr[2] "Tabulky byly úspěšně importovány."
|
125 |
|
126 |
-
#: wp-table-reloaded-admin.php:
|
127 |
msgid "You did not select any tables!"
|
128 |
msgstr "Nevybrali jste žádnou tabulku!"
|
129 |
|
130 |
-
#: wp-table-reloaded-admin.php:
|
131 |
#, php-format
|
132 |
msgid "Table \"%s\" copied successfully."
|
133 |
msgstr "Tabulka \"%s\" byla úspěšně zkopírována."
|
134 |
|
135 |
-
#: wp-table-reloaded-admin.php:
|
136 |
#, php-format
|
137 |
msgid "Table \"%s\" deleted successfully."
|
138 |
msgstr "Tabulka \"%s\" byla úspěšně smazána."
|
139 |
|
140 |
-
#: wp-table-reloaded-admin.php:
|
141 |
msgid "Row deleted successfully."
|
142 |
msgstr "Řádek byl úspěšně smazán."
|
143 |
|
144 |
-
#: wp-table-reloaded-admin.php:
|
145 |
msgid "Column deleted successfully."
|
146 |
msgstr "Sloupec byl úspěšně smazán."
|
147 |
|
148 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
msgid "Delete failed."
|
150 |
msgstr "Při mazání došlo k chybě."
|
151 |
|
152 |
-
#: wp-table-reloaded-admin.php:
|
153 |
msgid "Row inserted successfully."
|
154 |
msgstr "Řádek byl úspěšně vložen."
|
155 |
|
156 |
-
#: wp-table-reloaded-admin.php:
|
157 |
msgid "Column inserted successfully."
|
158 |
msgstr "Sloupec byl úspěšně vložen."
|
159 |
|
160 |
-
#: wp-table-reloaded-admin.php:
|
161 |
msgid "Insert failed."
|
162 |
msgstr "Při vkládání došlo k chybě."
|
163 |
|
164 |
-
#: wp-table-reloaded-admin.php:
|
165 |
-
#: wp-table-reloaded-admin.php:
|
166 |
-
#: wp-table-reloaded-admin.php:
|
167 |
msgid "Imported Table"
|
168 |
msgstr "Importovaná tabulka"
|
169 |
|
170 |
-
#: wp-table-reloaded-admin.php:
|
171 |
-
#: wp-table-reloaded-admin.php:
|
172 |
#, php-format
|
173 |
msgid "from %s"
|
174 |
msgstr "z %s"
|
175 |
|
176 |
-
#: wp-table-reloaded-admin.php:
|
177 |
msgid "via form"
|
178 |
msgstr "pomocí formuláře"
|
179 |
|
180 |
-
#: wp-table-reloaded-admin.php:
|
181 |
-
#: wp-table-reloaded-admin.php:
|
182 |
msgid "Table could not be imported."
|
183 |
msgstr "Tabulka nemohla být importována."
|
184 |
|
185 |
-
#: wp-table-reloaded-admin.php:
|
186 |
#, php-format
|
187 |
msgid "Table %s (%s) replaced successfully."
|
188 |
msgstr "Tabulka %s (%s) byla úspěšně nahrazena."
|
189 |
|
190 |
-
#: wp-table-reloaded-admin.php:
|
191 |
#, php-format
|
192 |
msgid "Table \"%s\" exported successfully."
|
193 |
msgstr "Tabulka \"%s\" byla úspěšně exportována."
|
194 |
|
195 |
-
#: wp-table-reloaded-admin.php:
|
196 |
msgid "Options saved successfully."
|
197 |
msgstr "Nastavení bylo úspěšně uloženo."
|
198 |
|
199 |
#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
|
200 |
#. Plugin Name of an extension
|
201 |
-
#: wp-table-reloaded-admin.php:
|
|
|
202 |
msgid "WP-Table Reloaded"
|
203 |
-
msgstr "
|
204 |
|
205 |
-
#: wp-table-reloaded-admin.php:
|
|
|
206 |
msgid "Plugin deactivated successfully."
|
207 |
msgstr "Plugin byl úspěšně deaktivován."
|
208 |
|
209 |
-
#: wp-table-reloaded-admin.php:
|
|
|
210 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
211 |
msgstr "Všechny tabulky, jejich data a nastavení byly smazány. Nyní můžete smazat i samotnou složku pluginu, která se nachází ve Vašem adresáři s pluginy Wordpressu."
|
212 |
|
213 |
-
#: wp-table-reloaded-admin.php:
|
214 |
-
#: wp-table-reloaded-admin.php:
|
215 |
msgid "List of Tables"
|
216 |
msgstr "Správa tabulek"
|
217 |
|
218 |
-
#: wp-table-reloaded-admin.php:
|
219 |
-
#: wp-table-reloaded-admin.php:
|
220 |
msgid "This is a list of all available tables."
|
221 |
msgstr "Zde vidíte přehled všech dosud vytvořených tabulek."
|
222 |
|
223 |
-
#: wp-table-reloaded-admin.php:
|
224 |
msgid "You may insert a table into a post or page here."
|
225 |
msgstr "Můžete vybranou tabulku vložit přímo do příspěvku nebo stránky."
|
226 |
|
227 |
-
#: wp-table-reloaded-admin.php:
|
228 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
229 |
msgstr "Vyberte si tabulku a klikněte na odkaz \"Vložit\", čímž bude odpovídající zkrácený zápis (<strong>[table id=<the_table_ID> /]</strong>) automaticky vložen."
|
230 |
|
231 |
-
#: wp-table-reloaded-admin.php:
|
232 |
-
#: wp-table-reloaded-admin.php:
|
233 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
-
#: wp-table-reloaded-admin.php:
|
238 |
-
#: wp-table-reloaded-admin.php:
|
239 |
-
#: wp-table-reloaded-admin.php:
|
240 |
-
#: wp-table-reloaded-admin.php:
|
241 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
242 |
msgid "Table Name"
|
243 |
msgstr "Název tabulky"
|
244 |
|
245 |
-
#: wp-table-reloaded-admin.php:
|
246 |
-
#: wp-table-reloaded-admin.php:
|
247 |
-
#: wp-table-reloaded-admin.php:
|
248 |
-
#: wp-table-reloaded-admin.php:
|
249 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
250 |
msgid "Description"
|
251 |
msgstr "Stručný popis"
|
252 |
|
253 |
-
#: wp-table-reloaded-admin.php:
|
254 |
-
#: wp-table-reloaded-admin.php:
|
255 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
256 |
msgid "Action"
|
257 |
msgstr "Akce"
|
258 |
|
259 |
-
#: wp-table-reloaded-admin.php:
|
260 |
msgid "Insert"
|
261 |
msgstr "Vložit"
|
262 |
|
263 |
-
#: wp-table-reloaded-admin.php:
|
264 |
-
#: wp-table-reloaded-admin.php:
|
265 |
-
#: wp-table-reloaded-admin.php:
|
266 |
msgid "No tables found."
|
267 |
msgstr "Nebyly nalezeny žádné vytvořené tabulky."
|
268 |
|
269 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
msgid "You may add, edit, copy or delete tables here."
|
271 |
msgstr "Můžete zde vytvářet, upravovat, kopírovat nebo mazat tabulky."
|
272 |
|
273 |
-
#: wp-table-reloaded-admin.php:
|
274 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
275 |
msgstr "Pokud chcete některou tabulku vložit do příspěvku, stránky nebo textového widgetu, použijte buď zkrácený zápis <strong>[table id=<the_table_ID> /]</strong> nebo přímo tlačítko \"tabulky\" v HTML editoru."
|
276 |
|
277 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
msgid "Edit"
|
279 |
msgstr "Upravit"
|
280 |
|
281 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
282 |
msgid "Copy"
|
283 |
msgstr "Kopírovat"
|
284 |
|
285 |
-
#: wp-table-reloaded-admin.php:
|
286 |
msgid "Export"
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: wp-table-reloaded-admin.php:
|
290 |
msgid "Delete"
|
291 |
msgstr "Smazat"
|
292 |
|
293 |
-
#: wp-table-reloaded-admin.php:
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
msgid "Bulk actions:"
|
296 |
msgstr "Hromadné úpravy:"
|
297 |
|
298 |
-
#: wp-table-reloaded-admin.php:
|
299 |
msgid "Copy Tables"
|
300 |
msgstr "Kopírovat tabulky"
|
301 |
|
302 |
-
#: wp-table-reloaded-admin.php:
|
303 |
msgid "Delete Tables"
|
304 |
msgstr "Smazat tabulky"
|
305 |
|
306 |
-
#: wp-table-reloaded-admin.php:
|
307 |
-
#: wp-table-reloaded-admin.php:
|
308 |
#, php-format
|
309 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
310 |
msgstr "Můžete si nějakou <a href=\"%s\">vytvořit</a> nebo <a href=\"%s\">naimportovat</a>!"
|
311 |
|
312 |
-
#: wp-table-reloaded-admin.php:
|
313 |
-
#: wp-table-reloaded-admin.php:
|
314 |
msgid "Add new Table"
|
315 |
msgstr "Vytvořit tabulku"
|
316 |
|
317 |
-
#: wp-table-reloaded-admin.php:
|
318 |
-
msgid "You can add a new table here. Just enter
|
319 |
-
msgstr "Zde můžete vytvořit novou tabulku. Stačí pouze zadat její název, stručný popis (volitelné) a počet řádků a sloupc
|
|
|
|
|
|
|
|
|
320 |
|
321 |
-
#: wp-table-reloaded-admin.php:
|
322 |
msgid "Enter Table Name"
|
323 |
msgstr "Zadejte název tabulky"
|
324 |
|
325 |
-
#: wp-table-reloaded-admin.php:
|
326 |
msgid "Enter Description"
|
327 |
msgstr "Zadejte stručný popis"
|
328 |
|
329 |
-
#: wp-table-reloaded-admin.php:
|
330 |
msgid "Number of Rows"
|
331 |
msgstr "Počet řádků"
|
332 |
|
333 |
-
#: wp-table-reloaded-admin.php:
|
334 |
msgid "Number of Columns"
|
335 |
msgstr "Počet sloupců"
|
336 |
|
337 |
-
#: wp-table-reloaded-admin.php:
|
338 |
msgid "Add Table"
|
339 |
msgstr "Vytvořit tabulku"
|
340 |
|
341 |
-
#: wp-table-reloaded-admin.php:
|
342 |
#, php-format
|
343 |
-
msgid "Edit Table \"%s\""
|
344 |
-
msgstr "Upravit tabulku \"%s\""
|
345 |
|
346 |
-
#: wp-table-reloaded-admin.php:
|
347 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
348 |
msgstr "Zde můžete upravovat samotný obsah tabulky, stejně jako přidávat nebo mazat sloupce a řádky."
|
349 |
|
350 |
-
#: wp-table-reloaded-admin.php:
|
351 |
-
#, php-format
|
352 |
-
msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
|
353 |
-
msgstr "Pokud chcete některou tabulku zobrazit přímo v příspěvku, stránce nebo textovém widgetu, použijte následující zkrácený zápis: <strong>[table id=%s /]</strong>"
|
354 |
-
|
355 |
-
#: wp-table-reloaded-admin.php:818
|
356 |
msgid "Table Information"
|
357 |
msgstr "Informace o tabulce"
|
358 |
|
359 |
-
#: wp-table-reloaded-admin.php:
|
360 |
msgid "Table ID"
|
361 |
msgstr "ID tabulky"
|
362 |
|
363 |
-
#: wp-table-reloaded-admin.php:
|
364 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
365 |
msgid "Update Changes"
|
366 |
msgstr "Aktualizovat změny"
|
367 |
|
368 |
-
#: wp-table-reloaded-admin.php:
|
369 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
370 |
msgid "Save and go back"
|
371 |
msgstr "Aktualizovat a vrátit se zpět"
|
372 |
|
373 |
-
#: wp-table-reloaded-admin.php:
|
374 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
375 |
msgid "Cancel"
|
376 |
msgstr "Zrušit"
|
377 |
|
378 |
-
#: wp-table-reloaded-admin.php:
|
379 |
msgid "Table Contents"
|
380 |
msgstr "Obsah tabulky"
|
381 |
|
382 |
-
#: wp-table-reloaded-admin.php:
|
383 |
-
#: wp-table-reloaded-admin.php:
|
384 |
-
#: wp-table-reloaded-admin.php:
|
385 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
386 |
msgid "Hide"
|
387 |
msgstr "Skrýt"
|
388 |
|
389 |
-
#: wp-table-reloaded-admin.php:
|
390 |
-
#: wp-table-reloaded-admin.php:
|
391 |
-
#: wp-table-reloaded-admin.php:
|
392 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
393 |
msgid "Expand"
|
394 |
msgstr "Zobrazit"
|
395 |
|
396 |
-
#: wp-table-reloaded-admin.php:
|
397 |
msgid "Insert Row"
|
398 |
msgstr "Vložit řádek"
|
399 |
|
400 |
-
#: wp-table-reloaded-admin.php:
|
401 |
msgid "Delete Row"
|
402 |
msgstr "Smazat řádek"
|
403 |
|
404 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
405 |
msgid "Insert Column"
|
406 |
msgstr "Vložit sloupec"
|
407 |
|
408 |
-
#: wp-table-reloaded-admin.php:
|
409 |
msgid "Delete Column"
|
410 |
msgstr "Smazat sloupec"
|
411 |
|
412 |
-
#: wp-table-reloaded-admin.php:
|
413 |
#, php-format
|
414 |
msgid "Add %s row(s)"
|
415 |
msgstr "Přidat %s řádek(y)"
|
416 |
|
417 |
-
#: wp-table-reloaded-admin.php:
|
418 |
-
#: wp-table-reloaded-admin.php:
|
|
|
419 |
msgid "Add"
|
420 |
msgstr "Přidat"
|
421 |
|
422 |
-
#: wp-table-reloaded-admin.php:
|
423 |
#, php-format
|
424 |
msgid "Add %s column(s)"
|
425 |
msgstr "Přidat %s sloupec(e)"
|
426 |
|
427 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
428 |
msgid "Data Manipulation"
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: wp-table-reloaded-admin.php:
|
432 |
#, php-format
|
433 |
msgid "Swap rows %s and %s"
|
434 |
msgstr "Prohodit řádky %s a %s"
|
435 |
|
436 |
-
#: wp-table-reloaded-admin.php:
|
437 |
-
#: wp-table-reloaded-admin.php:
|
438 |
msgid "Swap"
|
439 |
msgstr "Prohodit"
|
440 |
|
441 |
-
#: wp-table-reloaded-admin.php:
|
442 |
#, php-format
|
443 |
msgid "Swap columns %s and %s"
|
444 |
msgstr "Prohodit sloupce %s a %s"
|
445 |
|
446 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Insert Link"
|
448 |
msgstr "Vložit odkaz"
|
449 |
|
450 |
-
#: wp-table-reloaded-admin.php:
|
451 |
msgid "Insert Image"
|
452 |
msgstr "Vložit obrázek"
|
453 |
|
454 |
-
#: wp-table-reloaded-admin.php:
|
455 |
msgid "ascending"
|
456 |
msgstr "vzestupně"
|
457 |
|
458 |
-
#: wp-table-reloaded-admin.php:
|
459 |
msgid "descending"
|
460 |
msgstr "sestupně"
|
461 |
|
462 |
-
#: wp-table-reloaded-admin.php:
|
463 |
#, php-format
|
464 |
msgid "Sort table by column %s in %s order"
|
465 |
msgstr "Seřadit data v tabulce podle sloupce %s %s"
|
466 |
|
467 |
-
#: wp-table-reloaded-admin.php:
|
468 |
msgid "Sort"
|
469 |
msgstr "Seřadit"
|
470 |
|
471 |
-
#: wp-table-reloaded-admin.php:
|
472 |
msgid "Table Settings"
|
473 |
msgstr "Nastavení tabulky"
|
474 |
|
475 |
-
#: wp-table-reloaded-admin.php:
|
476 |
msgid "These settings will only be used for this table."
|
477 |
msgstr "Toto nastavení bude použito pouze pro tuto tabulku."
|
478 |
|
479 |
-
#: wp-table-reloaded-admin.php:
|
480 |
msgid "Alternating row colors"
|
481 |
msgstr "Střídaní barev řádků tabulky"
|
482 |
|
483 |
-
#: wp-table-reloaded-admin.php:
|
484 |
msgid "Every second row will have an alternating background color."
|
485 |
msgstr "Každý druhý řádek bude mít odlišné barevné pozadí."
|
486 |
|
487 |
-
#: wp-table-reloaded-admin.php:
|
488 |
msgid "Use Table Headline"
|
489 |
msgstr "Použít záhlaví tabulky"
|
490 |
|
491 |
-
#: wp-table-reloaded-admin.php:
|
492 |
-
msgid "The first row of your table will use the
|
493 |
-
msgstr "První řádek
|
494 |
|
495 |
-
#: wp-table-reloaded-admin.php:
|
496 |
msgid "Print Table Name"
|
497 |
msgstr "Zobrazit název tabulky"
|
498 |
|
499 |
-
#: wp-table-reloaded-admin.php:
|
500 |
-
msgid "The Table Name will be written above the table in a
|
501 |
-
msgstr "Název tabulky bude zobrazen nad tabulkou a bude mu přiřazena HTML značka
|
502 |
|
503 |
-
#: wp-table-reloaded-admin.php:
|
504 |
msgid "Print Table Description"
|
505 |
msgstr "Zobrazit stručný popis"
|
506 |
|
507 |
-
#: wp-table-reloaded-admin.php:
|
508 |
msgid "The Table Description will be written under the table."
|
509 |
msgstr "Stručný popis bude zobrazen pod tabulkou."
|
510 |
|
511 |
-
#: wp-table-reloaded-admin.php:
|
512 |
msgid "Use Tablesorter"
|
513 |
msgstr "Použít Tablesorter"
|
514 |
|
515 |
-
#: wp-table-reloaded-admin.php:
|
516 |
-
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>.
|
517 |
-
msgstr "Můžete čtenářům povolit vlastní interaktivní řazení dat v tabulce pomocí
|
518 |
|
519 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
msgid "Other actions"
|
521 |
msgstr "Další možnosti"
|
522 |
|
523 |
-
#: wp-table-reloaded-admin.php:
|
524 |
msgid "Delete Table"
|
525 |
msgstr "Smazat tabulku"
|
526 |
|
527 |
-
#: wp-table-reloaded-admin.php:
|
528 |
-
#: wp-table-reloaded-admin.php:
|
529 |
msgid "Export Table"
|
530 |
msgstr "Exportovat tabulku"
|
531 |
|
532 |
-
#: wp-table-reloaded-admin.php:
|
533 |
-
#: wp-table-reloaded-admin.php:
|
534 |
msgid "Import a Table"
|
535 |
msgstr "Importovat tabulku"
|
536 |
|
537 |
-
#: wp-table-reloaded-admin.php:
|
538 |
-
msgid "You may import a table from existing data here
|
539 |
-
msgstr "Zde můžete
|
|
|
|
|
|
|
|
|
540 |
|
541 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
542 |
msgid "Select Import Format"
|
543 |
msgstr "Vyberte formát importovaného souboru"
|
544 |
|
545 |
-
#: wp-table-reloaded-admin.php:
|
546 |
msgid "Add or Replace Table?"
|
547 |
msgstr "Vytvořit novou nebo nahradit stávající tabulku?"
|
548 |
|
549 |
-
#: wp-table-reloaded-admin.php:
|
550 |
msgid "Add as new Table"
|
551 |
msgstr "Vytvořit novou tabulku"
|
552 |
|
553 |
-
#: wp-table-reloaded-admin.php:
|
554 |
msgid "Replace existing Table"
|
555 |
msgstr "Nahradit stávající tabulku"
|
556 |
|
557 |
-
#: wp-table-reloaded-admin.php:
|
558 |
msgid "Select existing Table to Replace"
|
559 |
msgstr "Vyberte stávající tabulku, kterou chcete nahradit"
|
560 |
|
561 |
-
#: wp-table-reloaded-admin.php:
|
562 |
msgid "Select source for import"
|
563 |
-
msgstr "Vyberte zdroj, odkud chcete
|
564 |
|
565 |
-
#: wp-table-reloaded-admin.php:
|
566 |
msgid "File upload"
|
567 |
msgstr "Nahrát soubor"
|
568 |
|
569 |
-
#: wp-table-reloaded-admin.php:
|
570 |
msgid "URL"
|
571 |
msgstr "URL adresa"
|
572 |
|
573 |
-
#: wp-table-reloaded-admin.php:
|
574 |
msgid "Manual input"
|
575 |
msgstr "Vložit ručně"
|
576 |
|
577 |
-
#: wp-table-reloaded-admin.php:
|
578 |
msgid "File on server"
|
579 |
msgstr "Soubor na serveru"
|
580 |
|
581 |
-
#: wp-table-reloaded-admin.php:
|
582 |
msgid "Select File with Table to Import"
|
583 |
msgstr "Vyberte konkrétní soubor s tabulkovými daty, která budou naimportována"
|
584 |
|
585 |
-
#: wp-table-reloaded-admin.php:
|
586 |
msgid "URL to import table from"
|
587 |
msgstr "URL adresa, ze které chcete tabulku importovat"
|
588 |
|
589 |
-
#: wp-table-reloaded-admin.php:
|
590 |
msgid "Path to file on server"
|
591 |
msgstr "Cesta k souboru na serveru"
|
592 |
|
593 |
-
#: wp-table-reloaded-admin.php:
|
594 |
msgid "Paste data with Table to Import"
|
595 |
msgstr "Vložte tabulková data, která budou naimportována"
|
596 |
|
597 |
-
#: wp-table-reloaded-admin.php:
|
598 |
msgid "Import Table"
|
599 |
msgstr "Importovat tabulku"
|
600 |
|
601 |
-
#: wp-table-reloaded-admin.php:
|
602 |
msgid "Import from original wp-Table plugin"
|
603 |
msgstr "Importovat tabulky z původního pluginu wp-Table"
|
604 |
|
605 |
-
#: wp-table-reloaded-admin.php:
|
606 |
msgid "Import"
|
607 |
msgstr "Importovat"
|
608 |
|
609 |
-
#: wp-table-reloaded-admin.php:
|
610 |
msgid "Import Tables"
|
611 |
msgstr "Importovat tabulky"
|
612 |
|
613 |
-
#: wp-table-reloaded-admin.php:
|
614 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
615 |
msgstr "Vypadá to, že máte sice nainstalovaný také původní plugin wp-Table (jehož autorem je Alex Rabe), ale nebyly v něm nalezeny žádné tabulky."
|
616 |
|
617 |
-
#: wp-table-reloaded-admin.php:
|
618 |
-
#: wp-table-reloaded-admin.php:
|
619 |
msgid "Export a Table"
|
620 |
msgstr "Exportovat tabulku"
|
621 |
|
622 |
-
#: wp-table-reloaded-admin.php:
|
623 |
-
msgid "You may export a table here. Just select the table, your desired export format and
|
624 |
-
msgstr "Zde můžete exportovat tabulku. Stačí si ji vybrat a zvolit příslušný exportní formát a oddělovač dat (potřebné pouze pro formát CSV)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
|
626 |
-
#: wp-table-reloaded-admin.php:
|
627 |
msgid "Select Table to Export"
|
628 |
msgstr "Zvolte tabulku, kterou chcete exportovat"
|
629 |
|
630 |
-
#: wp-table-reloaded-admin.php:
|
631 |
msgid "Select Export Format"
|
632 |
msgstr "Zvolte exportní formát"
|
633 |
|
634 |
-
#: wp-table-reloaded-admin.php:
|
635 |
msgid "Select Delimiter to use"
|
636 |
msgstr "Zvolte oddělovač dat"
|
637 |
|
638 |
-
#: wp-table-reloaded-admin.php:
|
639 |
msgid "<small>(Only needed for CSV export.)</small>"
|
640 |
msgstr "<small>(Potřebné pouze pro exportní formát CSV.)</small>"
|
641 |
|
642 |
-
#: wp-table-reloaded-admin.php:
|
643 |
msgid "Download file"
|
644 |
msgstr "Stáhnout soubor"
|
645 |
|
646 |
-
#: wp-table-reloaded-admin.php:
|
647 |
msgid "Yes, I want to download the export file."
|
648 |
msgstr "Ano, exportovaný soubor s tabulkou si chci rovnou stáhnout."
|
649 |
|
650 |
-
#: wp-table-reloaded-admin.php:
|
651 |
msgid "General Plugin Options"
|
652 |
msgstr "Obecné nastavení pluginu"
|
653 |
|
654 |
-
#: wp-table-reloaded-admin.php:
|
655 |
-
msgid "You may change these global options
|
656 |
-
msgstr "Zde můžete měnit
|
657 |
|
658 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
659 |
msgid "Frontend Options"
|
660 |
msgstr "Nastavení zobrazení tabulek pro čtenáře"
|
661 |
|
662 |
-
#: wp-table-reloaded-admin.php:
|
663 |
msgid "Enable Tablesorter-JavaScript?"
|
664 |
msgstr "Povolit Tablesorter?"
|
665 |
|
666 |
-
#: wp-table-reloaded-admin.php:
|
667 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
668 |
-
msgstr "Ano, povolit jQuery plugin <a href=\"http://www.tablesorter.com/\">Tablesorter</a>. Tato volba umožňuje, aby si mohli
|
669 |
|
670 |
-
#: wp-table-reloaded-admin.php:
|
671 |
msgid "Add custom CSS?"
|
672 |
msgstr "Použít vlastní CSS?"
|
673 |
|
674 |
-
#: wp-table-reloaded-admin.php:
|
675 |
-
msgid "Yes, include and load the following CSS-snippet on my site inside a
|
676 |
-
msgstr "Ano, chci použít na svém webu následující CSS styly (
|
677 |
|
678 |
-
#: wp-table-reloaded-admin.php:
|
679 |
msgid "Enter custom CSS"
|
680 |
msgstr "Vložit vlastní CSS"
|
681 |
|
682 |
-
#: wp-table-reloaded-admin.php:
|
683 |
#, php-format
|
684 |
-
msgid "
|
685 |
-
msgstr "
|
686 |
|
687 |
-
#: wp-table-reloaded-admin.php:
|
688 |
#, php-format
|
689 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
690 |
-
msgstr "Pro další informace o CSS stylování tabulek navštivte
|
691 |
|
692 |
-
#: wp-table-reloaded-admin.php:
|
693 |
msgid "Just copy the contents of a file into the textarea."
|
694 |
msgstr "Stačí pouze nakopírovat CSS získané z konkrétního příkladu do pole pro vložení vlastního CSS."
|
695 |
|
696 |
-
#: wp-table-reloaded-admin.php:
|
697 |
-
|
698 |
-
|
|
|
|
|
|
|
|
|
|
|
699 |
|
700 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
701 |
msgid "Uninstall Plugin upon Deactivation?"
|
702 |
msgstr "Odinstalovat plugin při jeho deaktivaci?"
|
703 |
|
704 |
-
#: wp-table-reloaded-admin.php:
|
705 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
706 |
-
msgstr "Ano, chci všechno odinstalovat, pokud bude plugin deaktivován. Upozornění: Tuto možnost byste měli povolit pouze těsně před samotnou deaktivací tohoto pluginu
|
707 |
|
708 |
-
#: wp-table-reloaded-admin.php:
|
709 |
-
msgid "
|
710 |
-
msgstr "
|
711 |
|
712 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
msgid "Save Options"
|
714 |
msgstr "Uložit nastavení"
|
715 |
|
716 |
-
#: wp-table-reloaded-admin.php:
|
717 |
msgid "Manually Uninstall Plugin"
|
718 |
msgstr "Ručně odinstalovat plugin"
|
719 |
|
720 |
-
#: wp-table-reloaded-admin.php:
|
721 |
-
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported
|
722 |
-
msgstr "Zde můžete plugin kompletně odinstalovat. Touto akcí <strong>smažete</strong> všechny tabulky, data a nastavení, která s tímto pluginem souvisí, a to včetně všech vytvořených nebo naimportovaných tabulek
|
723 |
|
724 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
725 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
726 |
msgstr "Odinstalovat plugin WP-Table Reloaded"
|
727 |
|
728 |
-
#: wp-table-reloaded-admin.php:
|
729 |
-
msgid "
|
730 |
-
msgstr "Informace o pluginu"
|
731 |
|
732 |
-
#: wp-table-reloaded-admin.php:
|
733 |
msgid "Plugin Purpose"
|
734 |
msgstr "K čemu je možné plugin použít?"
|
735 |
|
736 |
-
#: wp-table-reloaded-admin.php:
|
737 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
738 |
msgstr "Pomocí pluginu můžete jednoduše vytvářet a spravovat tabulky přímo v administraci Wordpressu."
|
739 |
|
740 |
-
#: wp-table-reloaded-admin.php:
|
741 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
742 |
msgstr "Tabulky mohou kromě písmen a čísel obsahovat také HTML značky (tzn. že můžete do tabulky vkládat odkazy nebo obrázky)."
|
743 |
|
744 |
-
#: wp-table-reloaded-admin.php:
|
745 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
746 |
msgstr "Poté můžete tabulky vkládat do příspěvků, stránek nebo textových widgetů pomocí jednoduchého zkráceného zápisu."
|
747 |
|
748 |
-
#: wp-table-reloaded-admin.php:
|
749 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
750 |
msgstr "Pokud chcete zobrazit Vaše tabulky kdekoliv jinde v šabloně, můžete použít příslušné funkce."
|
751 |
|
752 |
-
#: wp-table-reloaded-admin.php:
|
753 |
msgid "Usage"
|
754 |
msgstr "Použití"
|
755 |
|
756 |
-
#: wp-table-reloaded-admin.php:
|
757 |
msgid "At first you should add or import a table."
|
758 |
msgstr "Nejdříve byste měli vytvořit, nebo naimportovat nějakou tabulku."
|
759 |
|
760 |
-
#: wp-table-reloaded-admin.php:
|
761 |
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."
|
762 |
msgstr "To znamená, že si můžete nechat pluginem vytvořit novou prázdnou tabulku, nebo můžete naimportovat nějakou Vaši tabulku ze souboru ve formátu CSV, XML nebo HTML."
|
763 |
|
764 |
-
#: wp-table-reloaded-admin.php:
|
765 |
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."
|
766 |
msgstr "Poté můžete libovolně upravovat data v tabulce, měnit její strukturu (tj. přidávat či mazat řádky a sloupce, přesunovat je a také řadit data podle jednotlivých sloupců) a používat další specifická nastavení jako střídaní barev řádků v tabulce nebo zobrazování názvu a stručného popisu."
|
767 |
|
768 |
-
#: wp-table-reloaded-admin.php:
|
769 |
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."
|
770 |
msgstr "Pro přidání odkazu nebo obrázku do tabulky jsou připravena příslušná tlačítka, pomocí kterých jednoduše zadáte URL a text odkazu a potom pouze kliknete tam, kam má být odpovídající vygenerovaný HTML kód automaticky přidán."
|
771 |
|
772 |
-
#: wp-table-reloaded-admin.php:
|
773 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
774 |
msgstr "Pro vložení tabulky do příspěvku, stránky nebo textového widgetu pak stačí napsat pouze zkrácený zápis [table id=<table-id>]."
|
775 |
|
776 |
-
#: wp-table-reloaded-admin.php:
|
777 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
778 |
msgstr "Můžete si tabulku také přímo vybrat z jejich seznamu (dostanete se k němu kliknutím na tlačítko \"tabulky\" v HTML editoru) a odpovídající zkrácený zápis bude už vložen automaticky."
|
779 |
|
780 |
-
#: wp-table-reloaded-admin.php:
|
781 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
782 |
msgstr "Můžete také upravovat zobrazování tabulek pomocí CSS stylů, konkrétní příklady naleznete na stránkách pluginu. Každá tabulka má proto v HTML přiřazeny CSS třídy \"wp-table-reloaded\" a \"wp-table-reloaded-<table-id>\"."
|
783 |
|
784 |
-
#: wp-table-reloaded-admin.php:
|
785 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
786 |
msgstr "Můžete také používat CSS třídy \"column-<number>\" a \"row-<number>\" pro nastavení specifického zobrazení pro konkrétní řádky a sloupce. Pomocí těchto tříd také můžete nastavit např. šířku sloupců a zarovnání textu v tabulce."
|
787 |
|
788 |
-
#: wp-table-reloaded-admin.php:
|
789 |
msgid "More Information and Documentation"
|
790 |
msgstr "Další informace a manuál"
|
791 |
|
792 |
-
#: wp-table-reloaded-admin.php:
|
793 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
794 |
msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a> nebo také v <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
|
795 |
|
796 |
-
#: wp-table-reloaded-admin.php:
|
797 |
-
#: wp-table-reloaded-admin.php:
|
798 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
799 |
msgstr "V případě problémů nahlédněte do <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">manuálu</a>, nebo se obraťte na autora s žádostí o <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">podporu</a>."
|
800 |
|
801 |
-
#: wp-table-reloaded-admin.php:
|
802 |
msgid "Author and Licence"
|
803 |
msgstr "Autor a licence"
|
804 |
|
805 |
-
#: wp-table-reloaded-admin.php:
|
806 |
-
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is
|
807 |
-
msgstr "Tento plugin vytvořil <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> a dostupný zdarma s licenčními podmínkami GPL 2."
|
808 |
|
809 |
-
#: wp-table-reloaded-admin.php:
|
810 |
-
|
811 |
-
|
|
|
812 |
|
813 |
-
#: wp-table-reloaded-admin.php:
|
814 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
815 |
msgstr "Peněžní dary a dobré hodnocení mě motivují k dalšímu vývoji tohoto pluginu a poskytování dlouhodobé podpory. Každý (i sebemenší) finanční obnos je vítán! Děkuji!"
|
816 |
|
817 |
-
#: wp-table-reloaded-admin.php:
|
818 |
msgid "Credits and Thanks"
|
819 |
msgstr "Poděkování"
|
820 |
|
821 |
-
#: wp-table-reloaded-admin.php:
|
822 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
823 |
msgstr "Moje poděkování patří zejména autorovi původního pluginu pro tvorbu tabulek ve Wordpressu - wp-Table (<a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a>),"
|
824 |
|
825 |
-
#: wp-table-reloaded-admin.php:
|
826 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
827 |
msgstr "Christianu Bachovi za jeho <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
828 |
|
829 |
-
#: wp-table-reloaded-admin.php:
|
830 |
msgid "the submitters of translations:"
|
831 |
msgstr "překladatelům do následujících jazykových verzí:"
|
832 |
|
833 |
-
#: wp-table-reloaded-admin.php:
|
834 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
835 |
msgstr "albánština (<a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
836 |
|
837 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
838 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
839 |
msgstr "brazilská portugalština (<a href=\"http://www.pensarics.com/\">Rics</a>)"
|
840 |
|
841 |
-
#: wp-table-reloaded-admin.php:
|
842 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
843 |
msgstr "čeština (<a href=\"http://www.separatista.net/\">Separatista</a>)"
|
844 |
|
845 |
-
#: wp-table-reloaded-admin.php:
|
846 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
847 |
msgstr "francouzština (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
848 |
|
849 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
msgid "Polish (thanks to Alex Kortan)"
|
851 |
msgstr "polština (Alex Kortan)"
|
852 |
|
853 |
-
#: wp-table-reloaded-admin.php:
|
854 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
855 |
msgstr "ruština (<a href=\"http://wp-skins.info/\">Truper</a>)"
|
856 |
|
857 |
-
#: wp-table-reloaded-admin.php:
|
858 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
859 |
msgstr "španělština (<a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> a <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
860 |
|
861 |
-
#: wp-table-reloaded-admin.php:
|
862 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
863 |
msgstr "švédština (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
864 |
|
865 |
-
#: wp-table-reloaded-admin.php:
|
866 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
867 |
msgstr "turečtina (<a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
868 |
|
869 |
-
#: wp-table-reloaded-admin.php:
|
870 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
871 |
msgstr "a také všem dárcům, přispěvatelům, testerům, recenzentům a uživatelům tohoto pluginu!"
|
872 |
|
873 |
-
#: wp-table-reloaded-admin.php:
|
874 |
msgid "Debug and Version Information"
|
875 |
msgstr "Verze pluginu a technické informace pro podporu"
|
876 |
|
877 |
-
#: wp-table-reloaded-admin.php:
|
878 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
879 |
msgstr "Používáte následující verze programů. <strong>Použijte prosím tyto informace při kontaktování podpory pluginu.</strong>"
|
880 |
|
881 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
882 |
msgid "List Tables"
|
883 |
msgstr "Zobrazit tabulky"
|
884 |
|
885 |
-
#: wp-table-reloaded-admin.php:
|
886 |
msgid "Plugin Options"
|
887 |
msgstr "Nastavení pluginu"
|
888 |
|
889 |
-
#: wp-table-reloaded-admin.php:
|
890 |
msgid "About the Plugin"
|
891 |
msgstr "O pluginu"
|
892 |
|
893 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
894 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
895 |
msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a>."
|
896 |
|
897 |
-
#: wp-table-reloaded-admin.php:
|
898 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
899 |
msgstr "Opravdu chcete tuto možnost povolit? Měli byste tak učinit pouze před definitivní deaktivací tohoto pluginu!"
|
900 |
|
901 |
-
#: wp-table-reloaded-admin.php:
|
902 |
msgid "URL of link to insert"
|
903 |
msgstr "Vložte URL adresu"
|
904 |
|
905 |
-
#: wp-table-reloaded-admin.php:
|
906 |
msgid "Text of link"
|
907 |
msgstr "Vložte text odkazu"
|
908 |
|
909 |
-
#: wp-table-reloaded-admin.php:
|
910 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
911 |
msgstr "Abyste vložili tento odkaz do tabulky, tak si po uzavření tohoto okna pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
|
912 |
|
913 |
-
#: wp-table-reloaded-admin.php:
|
914 |
-
msgid "
|
915 |
-
msgstr "
|
916 |
|
917 |
-
#: wp-table-reloaded-admin.php:
|
918 |
-
msgid "
|
919 |
-
msgstr "
|
920 |
|
921 |
-
#: wp-table-reloaded-admin.php:
|
922 |
-
|
923 |
-
|
|
|
|
|
|
|
|
|
|
|
924 |
|
925 |
-
#: wp-table-reloaded-admin.php:
|
926 |
msgid "Do you want to copy the selected tables?"
|
927 |
msgstr "Opravdu chcete zvolené tabulky zkopírovat?"
|
928 |
|
929 |
-
#: wp-table-reloaded-admin.php:
|
930 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
931 |
msgstr "Vybrané tabulky (včetně jejich obsahu) budou kompletně smazány. Opravdu je chcete smazat?"
|
932 |
|
933 |
-
#: wp-table-reloaded-admin.php:
|
934 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
935 |
msgstr "Opravdu chcete importovat vybrané tabulky z původního pluginu wp-Table?"
|
936 |
|
937 |
-
#: wp-table-reloaded-admin.php:
|
938 |
msgid "Do you want to copy this table?"
|
939 |
msgstr "Opravdu chcete tuto tabulku zkopírovat?"
|
940 |
|
941 |
-
#: wp-table-reloaded-admin.php:
|
942 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
943 |
msgstr "Celá tabulka (včetně jejího obsahu) bude kompletně smazána. Opravdu ji chcete smazat?"
|
944 |
|
945 |
-
#: wp-table-reloaded-admin.php:
|
946 |
msgid "Do you really want to delete this row?"
|
947 |
msgstr "Opravdu chcete smazat tento řádek?"
|
948 |
|
949 |
-
#: wp-table-reloaded-admin.php:
|
950 |
msgid "Do you really want to delete this column?"
|
951 |
msgstr "Opravdu chcete smazat tento sloupec?"
|
952 |
|
953 |
-
#: wp-table-reloaded-admin.php:
|
954 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
955 |
msgstr "Opravdu chcete importovat tuto tabulku z původního pluginu wp-Table?"
|
956 |
|
957 |
-
#: wp-table-reloaded-admin.php:
|
958 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
959 |
msgstr "Opravdu chcete plugin odinstalovat smazat tak všechna příslušná data?"
|
960 |
|
961 |
-
#: wp-table-reloaded-admin.php:
|
962 |
msgid "Are you really sure?"
|
963 |
msgstr "Jste si opravdu jisti?"
|
964 |
|
965 |
-
#: wp-table-reloaded-admin.php:
|
966 |
msgid "Do you really want to change the ID of the table?"
|
967 |
msgstr "Opravdu chcete změnit ID tabulky?"
|
968 |
|
969 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
msgid "Table"
|
971 |
msgstr "tabulky"
|
972 |
|
|
|
|
|
|
|
|
|
973 |
#. Plugin URI of an extension
|
974 |
msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
975 |
msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
976 |
|
977 |
#. Description of an extension
|
978 |
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."
|
979 |
-
msgstr "Pomocí tohoto pluginu můžete jednoduše vytvářet a upravovat tabulky přímo v administraci Wordpressu. Pomocí příjemného rozhraní lze také snadno manipulovat s daty v tabulce. Jednotlivé tabulky můžete vkládat do Vašich příspěvků, stránek nebo textových widgetů jednoduše pomocí zkráceného zápisu nebo speciální šablonové funkce. Tabulky mohou být importovány a exportovány z/do formátů CSV, XML a HTML."
|
980 |
|
981 |
#. Author of an extension
|
982 |
msgid "Tobias Bäthge"
|
@@ -986,6 +1322,20 @@ msgstr "Tobias Bäthge"
|
|
986 |
msgid "http://tobias.baethge.com/"
|
987 |
msgstr "http://tobias.baethge.com/"
|
988 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
989 |
#~ msgid "- or -"
|
990 |
#~ msgstr "- nebo -"
|
991 |
#~ msgid "(upload will be preferred over pasting)"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WP-Table Reloaded CZ (1.4)\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
5 |
+
"POT-Creation-Date: 2009-07-21 08:59+0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Separatista <pavelevap@separatista.net>\n"
|
8 |
"Language-Team: Separatista <pavelevap@separatista.net>\n"
|
50 |
msgid "| (pipe)"
|
51 |
msgstr "| (svislá čára)"
|
52 |
|
53 |
+
#: wp-table-reloaded-admin.php:179
|
54 |
+
#, php-format
|
55 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
56 |
+
msgstr "Děkujeme, že používáte plugin WP-Table Reloaded, který jste si nainstalovali již před více než měsícem. Pokud jste s ním spokojeni, všechno správně funguje a používáte ho na správu svých %s tabulek, nestálo by zato poslat autorovi slespoň jeden dolar nebo euro? "
|
57 |
+
|
58 |
+
#: wp-table-reloaded-admin.php:180
|
59 |
+
#, php-format
|
60 |
+
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!"
|
61 |
+
msgstr "<a href=\"%s\">Peněžní dary</a> mi pomáhají k poskytování dlouhodobé podpory a dalšímu vývoji tohoto <i>zdarma</i> dostupného pluginu, což jsou aktivity, které z mého volného času zabírají nekonečně mnoho hodin! Děkuji!"
|
62 |
+
|
63 |
+
#: wp-table-reloaded-admin.php:181
|
64 |
+
msgid "Sure, no problem!"
|
65 |
+
msgstr "Jistě, to je samozřejmé!"
|
66 |
+
|
67 |
+
#: wp-table-reloaded-admin.php:182
|
68 |
+
msgid "I already donated."
|
69 |
+
msgstr "Už jsem přispěl."
|
70 |
+
|
71 |
+
#: wp-table-reloaded-admin.php:183
|
72 |
+
msgid "No, thanks. Don't ask again."
|
73 |
+
msgstr "Ne, děkuji. A už mi to nepřipomínejte."
|
74 |
+
|
75 |
+
#: wp-table-reloaded-admin.php:208
|
76 |
#, php-format
|
77 |
msgid "Table \"%s\" added successfully."
|
78 |
msgstr "Tabulka \"%s\" byla úspěšně vytvořena."
|
79 |
|
80 |
+
#: wp-table-reloaded-admin.php:236
|
81 |
#, php-format
|
82 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
83 |
msgstr "Tabulka byla úspěšně aktualizována. Tato tabulka má nyní ID %s. Budete si podle toho muset upravit již existující zkrácené zápisy v příspěvcích."
|
84 |
|
85 |
+
#: wp-table-reloaded-admin.php:238
|
86 |
#, php-format
|
87 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
88 |
msgstr "ID tabulky nemohlo být změněno z %s na %s, protože tabulka s tímto ID již existuje."
|
89 |
|
90 |
+
#: wp-table-reloaded-admin.php:241
|
91 |
msgid "Table edited successfully."
|
92 |
msgstr "Tabulka byla úspěšně aktualizována."
|
93 |
|
94 |
+
#: wp-table-reloaded-admin.php:279
|
95 |
msgid "Rows swapped successfully."
|
96 |
msgstr "Řádky byly úspěšně prohozeny."
|
97 |
|
98 |
+
#: wp-table-reloaded-admin.php:300
|
99 |
msgid "Columns swapped successfully."
|
100 |
msgstr "Sloupce byly úspěšně prohozeny."
|
101 |
|
102 |
+
#: wp-table-reloaded-admin.php:331
|
103 |
msgid "Table sorted successfully."
|
104 |
msgstr "Hodnoty v tabulce byly úspěšně seřazeny."
|
105 |
|
106 |
+
#: wp-table-reloaded-admin.php:346
|
107 |
msgid "Row added successfully."
|
108 |
msgid_plural "Rows added successfully."
|
109 |
msgstr[0] "Řádek byl úspěšně přidán."
|
110 |
msgstr[1] "Řádky byly úspěšně přidány."
|
111 |
msgstr[2] "Řádky byly úspěšně přidány."
|
112 |
|
113 |
+
#: wp-table-reloaded-admin.php:360
|
114 |
msgid "Column added successfully."
|
115 |
msgid_plural "Columns added successfully."
|
116 |
msgstr[0] "Sloupec byl úspěšně smazán."
|
117 |
msgstr[1] "Sloupce byly úspěšně přidány."
|
118 |
msgstr[2] "Sloupce byly úspěšně přidány."
|
119 |
|
120 |
+
#: wp-table-reloaded-admin.php:381
|
121 |
+
msgid "Row moved successfully."
|
122 |
+
msgstr "Řádek byl úspěšně přesunut."
|
123 |
+
|
124 |
+
#: wp-table-reloaded-admin.php:406
|
125 |
+
msgid "Column moved successfully."
|
126 |
+
msgstr "Sloupec byl úspěšně přesunut."
|
127 |
+
|
128 |
+
#: wp-table-reloaded-admin.php:413
|
129 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
130 |
+
msgstr "Uživatelské pole nemohlo být k tabulce přidáno, protože jste nezadali jeho název."
|
131 |
+
|
132 |
+
#: wp-table-reloaded-admin.php:418
|
133 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
134 |
+
msgstr "Uživatelské pole nemohlo být k tabulce přidáno, protože zadaný název již plugin používá pro jiné informace."
|
135 |
+
|
136 |
+
#: wp-table-reloaded-admin.php:424
|
137 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
138 |
+
msgstr "Uživatelské pole nemohlo být k tabulce přidáno, protože jeho název obsahoval nepovolené znaky."
|
139 |
+
|
140 |
+
#: wp-table-reloaded-admin.php:428
|
141 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
142 |
+
msgstr "Uživatelské pole nemohlo být k tabulce přidáno, protože pole se stejným názvem již existuje."
|
143 |
+
|
144 |
+
#: wp-table-reloaded-admin.php:434
|
145 |
+
msgid "Custom Data Field added successfully."
|
146 |
+
msgstr "Uživatelské pole bylo úspěšně vytvořeno."
|
147 |
+
|
148 |
+
#: wp-table-reloaded-admin.php:470
|
149 |
+
#: wp-table-reloaded-admin.php:525
|
150 |
msgid "Copy of"
|
151 |
msgstr "Kopie -"
|
152 |
|
153 |
+
#: wp-table-reloaded-admin.php:474
|
154 |
msgid "Table copied successfully."
|
155 |
msgid_plural "Tables copied successfully."
|
156 |
msgstr[0] "Tabulka byla úspěšně zkopírována."
|
157 |
msgstr[1] "Tabulky byly úspěšně zkopírovány."
|
158 |
msgstr[2] "Tabulky byly úspěšně zkopírovány."
|
159 |
|
160 |
+
#: wp-table-reloaded-admin.php:480
|
161 |
msgid "Table deleted successfully."
|
162 |
msgid_plural "Tables deleted successfully."
|
163 |
msgstr[0] "Tabulka byla úspěšně smazána."
|
164 |
msgstr[1] "Tabulky byly úspěšně smazány."
|
165 |
msgstr[2] "Tabulky byly úspěšně smazány."
|
166 |
|
167 |
+
#: wp-table-reloaded-admin.php:501
|
168 |
+
#: wp-table-reloaded-admin.php:701
|
169 |
+
#: wp-table-reloaded-admin.php:739
|
170 |
msgid "Table imported successfully."
|
171 |
msgid_plural "Tables imported successfully."
|
172 |
msgstr[0] "Tabulka byla úspěšně importována."
|
173 |
msgstr[1] "Tabulky byly úspěšně importovány."
|
174 |
msgstr[2] "Tabulky byly úspěšně importovány."
|
175 |
|
176 |
+
#: wp-table-reloaded-admin.php:508
|
177 |
msgid "You did not select any tables!"
|
178 |
msgstr "Nevybrali jste žádnou tabulku!"
|
179 |
|
180 |
+
#: wp-table-reloaded-admin.php:530
|
181 |
#, php-format
|
182 |
msgid "Table \"%s\" copied successfully."
|
183 |
msgstr "Tabulka \"%s\" byla úspěšně zkopírována."
|
184 |
|
185 |
+
#: wp-table-reloaded-admin.php:546
|
186 |
#, php-format
|
187 |
msgid "Table \"%s\" deleted successfully."
|
188 |
msgstr "Tabulka \"%s\" byla úspěšně smazána."
|
189 |
|
190 |
+
#: wp-table-reloaded-admin.php:557
|
191 |
msgid "Row deleted successfully."
|
192 |
msgstr "Řádek byl úspěšně smazán."
|
193 |
|
194 |
+
#: wp-table-reloaded-admin.php:571
|
195 |
msgid "Column deleted successfully."
|
196 |
msgstr "Sloupec byl úspěšně smazán."
|
197 |
|
198 |
+
#: wp-table-reloaded-admin.php:580
|
199 |
+
msgid "Custom Data Field deleted successfully."
|
200 |
+
msgstr "Uživatelské pole bylo úspěšně smazáno."
|
201 |
+
|
202 |
+
#: wp-table-reloaded-admin.php:582
|
203 |
+
msgid "Custom Data Field could not be deleted."
|
204 |
+
msgstr "Uživatelské pole tabulky nemohlo být smazáno."
|
205 |
+
|
206 |
+
#: wp-table-reloaded-admin.php:588
|
207 |
msgid "Delete failed."
|
208 |
msgstr "Při mazání došlo k chybě."
|
209 |
|
210 |
+
#: wp-table-reloaded-admin.php:614
|
211 |
msgid "Row inserted successfully."
|
212 |
msgstr "Řádek byl úspěšně vložen."
|
213 |
|
214 |
+
#: wp-table-reloaded-admin.php:624
|
215 |
msgid "Column inserted successfully."
|
216 |
msgstr "Sloupec byl úspěšně vložen."
|
217 |
|
218 |
+
#: wp-table-reloaded-admin.php:627
|
219 |
msgid "Insert failed."
|
220 |
msgstr "Při vkládání došlo k chybě."
|
221 |
|
222 |
+
#: wp-table-reloaded-admin.php:655
|
223 |
+
#: wp-table-reloaded-admin.php:664
|
224 |
+
#: wp-table-reloaded-admin.php:674
|
225 |
msgid "Imported Table"
|
226 |
msgstr "Importovaná tabulka"
|
227 |
|
228 |
+
#: wp-table-reloaded-admin.php:656
|
229 |
+
#: wp-table-reloaded-admin.php:675
|
230 |
#, php-format
|
231 |
msgid "from %s"
|
232 |
msgstr "z %s"
|
233 |
|
234 |
+
#: wp-table-reloaded-admin.php:665
|
235 |
msgid "via form"
|
236 |
msgstr "pomocí formuláře"
|
237 |
|
238 |
+
#: wp-table-reloaded-admin.php:685
|
239 |
+
#: wp-table-reloaded-admin.php:716
|
240 |
msgid "Table could not be imported."
|
241 |
msgstr "Tabulka nemohla být importována."
|
242 |
|
243 |
+
#: wp-table-reloaded-admin.php:697
|
244 |
#, php-format
|
245 |
msgid "Table %s (%s) replaced successfully."
|
246 |
msgstr "Tabulka %s (%s) byla úspěšně nahrazena."
|
247 |
|
248 |
+
#: wp-table-reloaded-admin.php:766
|
249 |
#, php-format
|
250 |
msgid "Table \"%s\" exported successfully."
|
251 |
msgstr "Tabulka \"%s\" byla úspěšně exportována."
|
252 |
|
253 |
+
#: wp-table-reloaded-admin.php:797
|
254 |
msgid "Options saved successfully."
|
255 |
msgstr "Nastavení bylo úspěšně uloženo."
|
256 |
|
257 |
#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
|
258 |
#. Plugin Name of an extension
|
259 |
+
#: wp-table-reloaded-admin.php:815
|
260 |
+
#: wp-table-reloaded-admin.php:958
|
261 |
msgid "WP-Table Reloaded"
|
262 |
+
msgstr "Tabulky"
|
263 |
|
264 |
+
#: wp-table-reloaded-admin.php:816
|
265 |
+
#: wp-table-reloaded-admin.php:1967
|
266 |
msgid "Plugin deactivated successfully."
|
267 |
msgstr "Plugin byl úspěšně deaktivován."
|
268 |
|
269 |
+
#: wp-table-reloaded-admin.php:817
|
270 |
+
#: wp-table-reloaded-admin.php:1967
|
271 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
272 |
msgstr "Všechny tabulky, jejich data a nastavení byly smazány. Nyní můžete smazat i samotnou složku pluginu, která se nachází ve Vašem adresáři s pluginy Wordpressu."
|
273 |
|
274 |
+
#: wp-table-reloaded-admin.php:833
|
275 |
+
#: wp-table-reloaded-admin.php:958
|
276 |
msgid "List of Tables"
|
277 |
msgstr "Správa tabulek"
|
278 |
|
279 |
+
#: wp-table-reloaded-admin.php:836
|
280 |
+
#: wp-table-reloaded-admin.php:961
|
281 |
msgid "This is a list of all available tables."
|
282 |
msgstr "Zde vidíte přehled všech dosud vytvořených tabulek."
|
283 |
|
284 |
+
#: wp-table-reloaded-admin.php:836
|
285 |
msgid "You may insert a table into a post or page here."
|
286 |
msgstr "Můžete vybranou tabulku vložit přímo do příspěvku nebo stránky."
|
287 |
|
288 |
+
#: wp-table-reloaded-admin.php:837
|
289 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
290 |
msgstr "Vyberte si tabulku a klikněte na odkaz \"Vložit\", čímž bude odpovídající zkrácený zápis (<strong>[table id=<the_table_ID> /]</strong>) automaticky vložen."
|
291 |
|
292 |
+
#: wp-table-reloaded-admin.php:846
|
293 |
+
#: wp-table-reloaded-admin.php:854
|
294 |
+
#: wp-table-reloaded-admin.php:973
|
295 |
+
#: wp-table-reloaded-admin.php:982
|
296 |
+
#: wp-table-reloaded-admin.php:1567
|
297 |
+
#: wp-table-reloaded-admin.php:1576
|
298 |
msgid "ID"
|
299 |
msgstr "ID"
|
300 |
|
301 |
+
#: wp-table-reloaded-admin.php:847
|
302 |
+
#: wp-table-reloaded-admin.php:855
|
303 |
+
#: wp-table-reloaded-admin.php:974
|
304 |
+
#: wp-table-reloaded-admin.php:983
|
305 |
+
#: wp-table-reloaded-admin.php:1067
|
306 |
+
#: wp-table-reloaded-admin.php:1121
|
307 |
+
#: wp-table-reloaded-admin.php:1568
|
308 |
+
#: wp-table-reloaded-admin.php:1577
|
309 |
msgid "Table Name"
|
310 |
msgstr "Název tabulky"
|
311 |
|
312 |
+
#: wp-table-reloaded-admin.php:848
|
313 |
+
#: wp-table-reloaded-admin.php:856
|
314 |
+
#: wp-table-reloaded-admin.php:975
|
315 |
+
#: wp-table-reloaded-admin.php:984
|
316 |
+
#: wp-table-reloaded-admin.php:1071
|
317 |
+
#: wp-table-reloaded-admin.php:1125
|
318 |
+
#: wp-table-reloaded-admin.php:1569
|
319 |
+
#: wp-table-reloaded-admin.php:1578
|
320 |
msgid "Description"
|
321 |
msgstr "Stručný popis"
|
322 |
|
323 |
+
#: wp-table-reloaded-admin.php:849
|
324 |
+
#: wp-table-reloaded-admin.php:857
|
325 |
+
#: wp-table-reloaded-admin.php:1414
|
326 |
+
#: wp-table-reloaded-admin.php:1570
|
327 |
+
#: wp-table-reloaded-admin.php:1579
|
328 |
msgid "Action"
|
329 |
msgstr "Akce"
|
330 |
|
331 |
+
#: wp-table-reloaded-admin.php:877
|
332 |
msgid "Insert"
|
333 |
msgstr "Vložit"
|
334 |
|
335 |
+
#: wp-table-reloaded-admin.php:886
|
336 |
+
#: wp-table-reloaded-admin.php:1045
|
337 |
+
#: wp-table-reloaded-admin.php:1699
|
338 |
msgid "No tables found."
|
339 |
msgstr "Nebyly nalezeny žádné vytvořené tabulky."
|
340 |
|
341 |
+
#: wp-table-reloaded-admin.php:906
|
342 |
+
#, php-format
|
343 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
344 |
+
msgstr "Náhled tabulky \"%s\" (ID %s)"
|
345 |
+
|
346 |
+
#: wp-table-reloaded-admin.php:909
|
347 |
+
msgid "This is a preview of the table data."
|
348 |
+
msgstr "Zde vidíte náhled vytvořené tabulky."
|
349 |
+
|
350 |
+
#: wp-table-reloaded-admin.php:910
|
351 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
352 |
+
msgstr "Tabulka však může vypadat na webu jinak, protože budou využity CSS styly!"
|
353 |
+
|
354 |
+
#: wp-table-reloaded-admin.php:911
|
355 |
+
#: wp-table-reloaded-admin.php:1106
|
356 |
+
#, php-format
|
357 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
358 |
+
msgstr "Pokud chcete tuto tabulku zobrazit přímo v příspěvku, stránce nebo textovém widgetu, použijte následující zkrácený zápis: <strong>[table id=%s /]</strong>."
|
359 |
+
|
360 |
+
#: wp-table-reloaded-admin.php:924
|
361 |
+
msgid "There is no table with this ID!"
|
362 |
+
msgstr "Žádná tabulka s tímto ID nebyla nalezena!"
|
363 |
+
|
364 |
+
#: wp-table-reloaded-admin.php:941
|
365 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
366 |
+
msgstr "Děkuji mnohokrát za váš peněžní dar, kterého si velmi vážím! Právě jste jím přispěli k dalšímu vývoji pluginu WP-Table Reloaded!"
|
367 |
+
|
368 |
+
#: wp-table-reloaded-admin.php:943
|
369 |
+
#, php-format
|
370 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
371 |
+
msgstr "Nevadí! Klidně dále zdarma využívejte všech výhod, které vám plugin WP-Table Reloaded přináší. Pokud byste ale třeba chtěli časem změnit názor, navštivte <a href=\"%s\">web pluginu WP-Table Reloaded</a>, kde naleznete informace o možnostech peněžního daru."
|
372 |
+
|
373 |
+
#: wp-table-reloaded-admin.php:961
|
374 |
msgid "You may add, edit, copy or delete tables here."
|
375 |
msgstr "Můžete zde vytvářet, upravovat, kopírovat nebo mazat tabulky."
|
376 |
|
377 |
+
#: wp-table-reloaded-admin.php:962
|
378 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
379 |
msgstr "Pokud chcete některou tabulku vložit do příspěvku, stránky nebo textového widgetu, použijte buď zkrácený zápis <strong>[table id=<the_table_ID> /]</strong> nebo přímo tlačítko \"tabulky\" v HTML editoru."
|
380 |
|
381 |
+
#: wp-table-reloaded-admin.php:976
|
382 |
+
#: wp-table-reloaded-admin.php:985
|
383 |
+
#: wp-table-reloaded-admin.php:1130
|
384 |
+
msgid "Last Modified"
|
385 |
+
msgstr "Poslední aktualizace"
|
386 |
+
|
387 |
+
#: wp-table-reloaded-admin.php:997
|
388 |
+
msgid "(no name)"
|
389 |
+
msgstr "(název nebyl uveden)"
|
390 |
+
|
391 |
+
#: wp-table-reloaded-admin.php:998
|
392 |
+
msgid "(no description)"
|
393 |
+
msgstr "(stručný popis nebyl uveden)"
|
394 |
+
|
395 |
+
#: wp-table-reloaded-admin.php:1002
|
396 |
+
#: wp-table-reloaded-admin.php:1131
|
397 |
+
msgid "by"
|
398 |
+
msgstr "uživatelem"
|
399 |
+
|
400 |
+
#: wp-table-reloaded-admin.php:1015
|
401 |
+
#, php-format
|
402 |
+
msgid "Edit %s"
|
403 |
+
msgstr "Upravit %s"
|
404 |
+
|
405 |
+
#: wp-table-reloaded-admin.php:1017
|
406 |
msgid "Edit"
|
407 |
msgstr "Upravit"
|
408 |
|
409 |
+
#: wp-table-reloaded-admin.php:1019
|
410 |
+
msgid "Shortcode"
|
411 |
+
msgstr "Zkrácený zápis"
|
412 |
+
|
413 |
+
#: wp-table-reloaded-admin.php:1020
|
414 |
msgid "Copy"
|
415 |
msgstr "Kopírovat"
|
416 |
|
417 |
+
#: wp-table-reloaded-admin.php:1021
|
418 |
msgid "Export"
|
419 |
+
msgstr "Exportovat"
|
420 |
|
421 |
+
#: wp-table-reloaded-admin.php:1022
|
422 |
msgid "Delete"
|
423 |
msgstr "Smazat"
|
424 |
|
425 |
+
#: wp-table-reloaded-admin.php:1023
|
426 |
+
#, php-format
|
427 |
+
msgid "Preview of Table %s"
|
428 |
+
msgstr "Náhled tabulky %s"
|
429 |
+
|
430 |
+
#: wp-table-reloaded-admin.php:1024
|
431 |
+
msgid "Preview"
|
432 |
+
msgstr "Náhled"
|
433 |
+
|
434 |
+
#: wp-table-reloaded-admin.php:1036
|
435 |
+
#: wp-table-reloaded-admin.php:1608
|
436 |
msgid "Bulk actions:"
|
437 |
msgstr "Hromadné úpravy:"
|
438 |
|
439 |
+
#: wp-table-reloaded-admin.php:1036
|
440 |
msgid "Copy Tables"
|
441 |
msgstr "Kopírovat tabulky"
|
442 |
|
443 |
+
#: wp-table-reloaded-admin.php:1036
|
444 |
msgid "Delete Tables"
|
445 |
msgstr "Smazat tabulky"
|
446 |
|
447 |
+
#: wp-table-reloaded-admin.php:1045
|
448 |
+
#: wp-table-reloaded-admin.php:1699
|
449 |
#, php-format
|
450 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
451 |
msgstr "Můžete si nějakou <a href=\"%s\">vytvořit</a> nebo <a href=\"%s\">naimportovat</a>!"
|
452 |
|
453 |
+
#: wp-table-reloaded-admin.php:1055
|
454 |
+
#: wp-table-reloaded-admin.php:1902
|
455 |
msgid "Add new Table"
|
456 |
msgstr "Vytvořit tabulku"
|
457 |
|
458 |
+
#: wp-table-reloaded-admin.php:1059
|
459 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
460 |
+
msgstr "Zde můžete vytvořit novou tabulku. Stačí pouze zadat její název, stručný popis (volitelné) a počet řádků a sloupců."
|
461 |
+
|
462 |
+
#: wp-table-reloaded-admin.php:1059
|
463 |
+
msgid "You may add, insert or delete rows and columns later."
|
464 |
+
msgstr "Později také samozřejmě můžete přidávat nové řádky a sloupce, vkládat je na libovolné místo v tabulce a mazat je."
|
465 |
|
466 |
+
#: wp-table-reloaded-admin.php:1068
|
467 |
msgid "Enter Table Name"
|
468 |
msgstr "Zadejte název tabulky"
|
469 |
|
470 |
+
#: wp-table-reloaded-admin.php:1072
|
471 |
msgid "Enter Description"
|
472 |
msgstr "Zadejte stručný popis"
|
473 |
|
474 |
+
#: wp-table-reloaded-admin.php:1075
|
475 |
msgid "Number of Rows"
|
476 |
msgstr "Počet řádků"
|
477 |
|
478 |
+
#: wp-table-reloaded-admin.php:1079
|
479 |
msgid "Number of Columns"
|
480 |
msgstr "Počet sloupců"
|
481 |
|
482 |
+
#: wp-table-reloaded-admin.php:1086
|
483 |
msgid "Add Table"
|
484 |
msgstr "Vytvořit tabulku"
|
485 |
|
486 |
+
#: wp-table-reloaded-admin.php:1102
|
487 |
#, php-format
|
488 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
489 |
+
msgstr "Upravit tabulku \"%s\" (ID %s)"
|
490 |
|
491 |
+
#: wp-table-reloaded-admin.php:1105
|
492 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
493 |
msgstr "Zde můžete upravovat samotný obsah tabulky, stejně jako přidávat nebo mazat sloupce a řádky."
|
494 |
|
495 |
+
#: wp-table-reloaded-admin.php:1113
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Table Information"
|
497 |
msgstr "Informace o tabulce"
|
498 |
|
499 |
+
#: wp-table-reloaded-admin.php:1117
|
500 |
msgid "Table ID"
|
501 |
msgstr "ID tabulky"
|
502 |
|
503 |
+
#: wp-table-reloaded-admin.php:1139
|
504 |
+
#: wp-table-reloaded-admin.php:1353
|
505 |
+
#: wp-table-reloaded-admin.php:1393
|
506 |
+
#: wp-table-reloaded-admin.php:1444
|
507 |
msgid "Update Changes"
|
508 |
msgstr "Aktualizovat změny"
|
509 |
|
510 |
+
#: wp-table-reloaded-admin.php:1140
|
511 |
+
#: wp-table-reloaded-admin.php:1354
|
512 |
+
#: wp-table-reloaded-admin.php:1394
|
513 |
+
#: wp-table-reloaded-admin.php:1445
|
514 |
msgid "Save and go back"
|
515 |
msgstr "Aktualizovat a vrátit se zpět"
|
516 |
|
517 |
+
#: wp-table-reloaded-admin.php:1143
|
518 |
+
#: wp-table-reloaded-admin.php:1357
|
519 |
+
#: wp-table-reloaded-admin.php:1397
|
520 |
+
#: wp-table-reloaded-admin.php:1448
|
521 |
msgid "Cancel"
|
522 |
msgstr "Zrušit"
|
523 |
|
524 |
+
#: wp-table-reloaded-admin.php:1149
|
525 |
msgid "Table Contents"
|
526 |
msgstr "Obsah tabulky"
|
527 |
|
528 |
+
#: wp-table-reloaded-admin.php:1149
|
529 |
+
#: wp-table-reloaded-admin.php:1246
|
530 |
+
#: wp-table-reloaded-admin.php:1362
|
531 |
+
#: wp-table-reloaded-admin.php:1402
|
532 |
+
#: wp-table-reloaded-admin.php:1750
|
533 |
+
#: wp-table-reloaded-admin.php:1852
|
534 |
msgid "Hide"
|
535 |
msgstr "Skrýt"
|
536 |
|
537 |
+
#: wp-table-reloaded-admin.php:1149
|
538 |
+
#: wp-table-reloaded-admin.php:1246
|
539 |
+
#: wp-table-reloaded-admin.php:1362
|
540 |
+
#: wp-table-reloaded-admin.php:1402
|
541 |
+
#: wp-table-reloaded-admin.php:1750
|
542 |
+
#: wp-table-reloaded-admin.php:1852
|
543 |
msgid "Expand"
|
544 |
msgstr "Zobrazit"
|
545 |
|
546 |
+
#: wp-table-reloaded-admin.php:1190
|
547 |
msgid "Insert Row"
|
548 |
msgstr "Vložit řádek"
|
549 |
|
550 |
+
#: wp-table-reloaded-admin.php:1192
|
551 |
msgid "Delete Row"
|
552 |
msgstr "Smazat řádek"
|
553 |
|
554 |
+
#: wp-table-reloaded-admin.php:1195
|
555 |
+
msgid "Row hidden"
|
556 |
+
msgstr "Skrýt řádek"
|
557 |
+
|
558 |
+
#: wp-table-reloaded-admin.php:1206
|
559 |
msgid "Insert Column"
|
560 |
msgstr "Vložit sloupec"
|
561 |
|
562 |
+
#: wp-table-reloaded-admin.php:1208
|
563 |
msgid "Delete Column"
|
564 |
msgstr "Smazat sloupec"
|
565 |
|
566 |
+
#: wp-table-reloaded-admin.php:1218
|
567 |
#, php-format
|
568 |
msgid "Add %s row(s)"
|
569 |
msgstr "Přidat %s řádek(y)"
|
570 |
|
571 |
+
#: wp-table-reloaded-admin.php:1219
|
572 |
+
#: wp-table-reloaded-admin.php:1221
|
573 |
+
#: wp-table-reloaded-admin.php:1439
|
574 |
msgid "Add"
|
575 |
msgstr "Přidat"
|
576 |
|
577 |
+
#: wp-table-reloaded-admin.php:1220
|
578 |
#, php-format
|
579 |
msgid "Add %s column(s)"
|
580 |
msgstr "Přidat %s sloupec(e)"
|
581 |
|
582 |
+
#: wp-table-reloaded-admin.php:1232
|
583 |
+
msgid "Column hidden"
|
584 |
+
msgstr "Skrýt sloupec"
|
585 |
+
|
586 |
+
#: wp-table-reloaded-admin.php:1246
|
587 |
msgid "Data Manipulation"
|
588 |
+
msgstr "Manipulace s obsahem tabulky"
|
589 |
|
590 |
+
#: wp-table-reloaded-admin.php:1260
|
591 |
#, php-format
|
592 |
msgid "Swap rows %s and %s"
|
593 |
msgstr "Prohodit řádky %s a %s"
|
594 |
|
595 |
+
#: wp-table-reloaded-admin.php:1262
|
596 |
+
#: wp-table-reloaded-admin.php:1280
|
597 |
msgid "Swap"
|
598 |
msgstr "Prohodit"
|
599 |
|
600 |
+
#: wp-table-reloaded-admin.php:1278
|
601 |
#, php-format
|
602 |
msgid "Swap columns %s and %s"
|
603 |
msgstr "Prohodit sloupce %s a %s"
|
604 |
|
605 |
+
#: wp-table-reloaded-admin.php:1294
|
606 |
+
#: wp-table-reloaded-admin.php:1317
|
607 |
+
msgid "before"
|
608 |
+
msgstr "před"
|
609 |
+
|
610 |
+
#: wp-table-reloaded-admin.php:1295
|
611 |
+
#: wp-table-reloaded-admin.php:1318
|
612 |
+
msgid "after"
|
613 |
+
msgstr "za"
|
614 |
+
|
615 |
+
#: wp-table-reloaded-admin.php:1298
|
616 |
+
#, php-format
|
617 |
+
msgid "Move row %s %s row %s"
|
618 |
+
msgstr "Přesunout řádek %s %s řádek %s"
|
619 |
+
|
620 |
+
#: wp-table-reloaded-admin.php:1300
|
621 |
+
#: wp-table-reloaded-admin.php:1323
|
622 |
+
msgid "Move"
|
623 |
+
msgstr "Přesunout"
|
624 |
+
|
625 |
+
#: wp-table-reloaded-admin.php:1321
|
626 |
+
#, php-format
|
627 |
+
msgid "Move column %s %s column %s"
|
628 |
+
msgstr "Přesunout sloupec %s %s sloupec %s"
|
629 |
+
|
630 |
+
#: wp-table-reloaded-admin.php:1327
|
631 |
msgid "Insert Link"
|
632 |
msgstr "Vložit odkaz"
|
633 |
|
634 |
+
#: wp-table-reloaded-admin.php:1328
|
635 |
msgid "Insert Image"
|
636 |
msgstr "Vložit obrázek"
|
637 |
|
638 |
+
#: wp-table-reloaded-admin.php:1338
|
639 |
msgid "ascending"
|
640 |
msgstr "vzestupně"
|
641 |
|
642 |
+
#: wp-table-reloaded-admin.php:1339
|
643 |
msgid "descending"
|
644 |
msgstr "sestupně"
|
645 |
|
646 |
+
#: wp-table-reloaded-admin.php:1342
|
647 |
#, php-format
|
648 |
msgid "Sort table by column %s in %s order"
|
649 |
msgstr "Seřadit data v tabulce podle sloupce %s %s"
|
650 |
|
651 |
+
#: wp-table-reloaded-admin.php:1345
|
652 |
msgid "Sort"
|
653 |
msgstr "Seřadit"
|
654 |
|
655 |
+
#: wp-table-reloaded-admin.php:1362
|
656 |
msgid "Table Settings"
|
657 |
msgstr "Nastavení tabulky"
|
658 |
|
659 |
+
#: wp-table-reloaded-admin.php:1364
|
660 |
msgid "These settings will only be used for this table."
|
661 |
msgstr "Toto nastavení bude použito pouze pro tuto tabulku."
|
662 |
|
663 |
+
#: wp-table-reloaded-admin.php:1367
|
664 |
msgid "Alternating row colors"
|
665 |
msgstr "Střídaní barev řádků tabulky"
|
666 |
|
667 |
+
#: wp-table-reloaded-admin.php:1368
|
668 |
msgid "Every second row will have an alternating background color."
|
669 |
msgstr "Každý druhý řádek bude mít odlišné barevné pozadí."
|
670 |
|
671 |
+
#: wp-table-reloaded-admin.php:1371
|
672 |
msgid "Use Table Headline"
|
673 |
msgstr "Použít záhlaví tabulky"
|
674 |
|
675 |
+
#: wp-table-reloaded-admin.php:1372
|
676 |
+
msgid "The first row of your table will use the <th> tag."
|
677 |
+
msgstr "První řádek tabulky bude použit jako záhlaví a bude mu přiřazena HTML značka <th>."
|
678 |
|
679 |
+
#: wp-table-reloaded-admin.php:1375
|
680 |
msgid "Print Table Name"
|
681 |
msgstr "Zobrazit název tabulky"
|
682 |
|
683 |
+
#: wp-table-reloaded-admin.php:1376
|
684 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
685 |
+
msgstr "Název tabulky bude zobrazen nad tabulkou a bude mu přiřazena HTML značka <h2>."
|
686 |
|
687 |
+
#: wp-table-reloaded-admin.php:1379
|
688 |
msgid "Print Table Description"
|
689 |
msgstr "Zobrazit stručný popis"
|
690 |
|
691 |
+
#: wp-table-reloaded-admin.php:1380
|
692 |
msgid "The Table Description will be written under the table."
|
693 |
msgstr "Stručný popis bude zobrazen pod tabulkou."
|
694 |
|
695 |
+
#: wp-table-reloaded-admin.php:1383
|
696 |
msgid "Use Tablesorter"
|
697 |
msgstr "Použít Tablesorter"
|
698 |
|
699 |
+
#: wp-table-reloaded-admin.php:1386
|
700 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
701 |
+
msgstr "Můžete čtenářům povolit vlastní interaktivní řazení dat v tabulce pomocí <a href=\"http://www.tablesorter.com/\">jQuery pluginu Tablesorter</a>."
|
702 |
|
703 |
+
#: wp-table-reloaded-admin.php:1386
|
704 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
705 |
+
msgstr "<small>Upozornění: Musíte Tablesorter nejdříve globálně povolit nahoře v menu \"Nastavení pluginu\" a zároveň musí být u konkrétní tabulky zaškrtnuta možnost \"Použít záhlaví tabulky\", aby vše správně fungovalo!</small>"
|
706 |
+
|
707 |
+
#: wp-table-reloaded-admin.php:1402
|
708 |
+
msgid "Custom Data Fields"
|
709 |
+
msgstr "Uživatelská pole tabulky"
|
710 |
+
|
711 |
+
#: wp-table-reloaded-admin.php:1404
|
712 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
713 |
+
msgstr "Uživatelská pole mohou být použita pro přiřazení doplňujících informací k tabulce."
|
714 |
+
|
715 |
+
#: wp-table-reloaded-admin.php:1404
|
716 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
717 |
+
msgstr "Příkladem mohou být např. informace o zdroji dat v tabulce, doplňující poznámky nebo uvedení autora tabulky."
|
718 |
+
|
719 |
+
#: wp-table-reloaded-admin.php:1406
|
720 |
+
#, php-format
|
721 |
+
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>."
|
722 |
+
msgstr "Tato data můžete zobrazovat v příspěvku (stránce) stejně jako samotnou tabulku použitím zkráceného zápisu <strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
723 |
+
|
724 |
+
#: wp-table-reloaded-admin.php:1412
|
725 |
+
msgid "Field Name"
|
726 |
+
msgstr "Název pole"
|
727 |
+
|
728 |
+
#: wp-table-reloaded-admin.php:1413
|
729 |
+
msgid "Value"
|
730 |
+
msgstr "Hodnota"
|
731 |
+
|
732 |
+
#: wp-table-reloaded-admin.php:1427
|
733 |
+
msgid "Delete Field"
|
734 |
+
msgstr "Smazat pole"
|
735 |
+
|
736 |
+
#: wp-table-reloaded-admin.php:1429
|
737 |
+
msgid "View shortcode"
|
738 |
+
msgstr "Zkrácený zápis"
|
739 |
+
|
740 |
+
#: wp-table-reloaded-admin.php:1438
|
741 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
742 |
+
msgstr "Pro přidání nového uživatelského pole k tabulce zadejte jeho název (používejte pouze malá písmena anglické abecedy, čísla, _ a -)."
|
743 |
+
|
744 |
+
#: wp-table-reloaded-admin.php:1439
|
745 |
+
msgid "Custom Data Field Name"
|
746 |
+
msgstr "Název uživatelského pole tabulky"
|
747 |
+
|
748 |
+
#: wp-table-reloaded-admin.php:1453
|
749 |
msgid "Other actions"
|
750 |
msgstr "Další možnosti"
|
751 |
|
752 |
+
#: wp-table-reloaded-admin.php:1456
|
753 |
msgid "Delete Table"
|
754 |
msgstr "Smazat tabulku"
|
755 |
|
756 |
+
#: wp-table-reloaded-admin.php:1457
|
757 |
+
#: wp-table-reloaded-admin.php:1688
|
758 |
msgid "Export Table"
|
759 |
msgstr "Exportovat tabulku"
|
760 |
|
761 |
+
#: wp-table-reloaded-admin.php:1469
|
762 |
+
#: wp-table-reloaded-admin.php:1903
|
763 |
msgid "Import a Table"
|
764 |
msgstr "Importovat tabulku"
|
765 |
|
766 |
+
#: wp-table-reloaded-admin.php:1473
|
767 |
+
msgid "You may import a table from existing data here."
|
768 |
+
msgstr "Zde můžete svoje existující data naimportovat do tabulky."
|
769 |
+
|
770 |
+
#: wp-table-reloaded-admin.php:1473
|
771 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
772 |
+
msgstr "Data mohou být ve formátu souborů CSV, XML nebo HTML a musí splňovat jasně specifikovanou strukturu, kterou naleznete v manuálu tohoto pluginu."
|
773 |
|
774 |
+
#: wp-table-reloaded-admin.php:1473
|
775 |
+
msgid "You may also select the import source."
|
776 |
+
msgstr "Můžete si také vybrat zdroj, odkud chcete tabulková data importovat."
|
777 |
+
|
778 |
+
#: wp-table-reloaded-admin.php:1480
|
779 |
msgid "Select Import Format"
|
780 |
msgstr "Vyberte formát importovaného souboru"
|
781 |
|
782 |
+
#: wp-table-reloaded-admin.php:1491
|
783 |
msgid "Add or Replace Table?"
|
784 |
msgstr "Vytvořit novou nebo nahradit stávající tabulku?"
|
785 |
|
786 |
+
#: wp-table-reloaded-admin.php:1493
|
787 |
msgid "Add as new Table"
|
788 |
msgstr "Vytvořit novou tabulku"
|
789 |
|
790 |
+
#: wp-table-reloaded-admin.php:1494
|
791 |
msgid "Replace existing Table"
|
792 |
msgstr "Nahradit stávající tabulku"
|
793 |
|
794 |
+
#: wp-table-reloaded-admin.php:1498
|
795 |
msgid "Select existing Table to Replace"
|
796 |
msgstr "Vyberte stávající tabulku, kterou chcete nahradit"
|
797 |
|
798 |
+
#: wp-table-reloaded-admin.php:1514
|
799 |
msgid "Select source for import"
|
800 |
+
msgstr "Vyberte zdroj, odkud chcete tabulková data importovat"
|
801 |
|
802 |
+
#: wp-table-reloaded-admin.php:1516
|
803 |
msgid "File upload"
|
804 |
msgstr "Nahrát soubor"
|
805 |
|
806 |
+
#: wp-table-reloaded-admin.php:1517
|
807 |
msgid "URL"
|
808 |
msgstr "URL adresa"
|
809 |
|
810 |
+
#: wp-table-reloaded-admin.php:1518
|
811 |
msgid "Manual input"
|
812 |
msgstr "Vložit ručně"
|
813 |
|
814 |
+
#: wp-table-reloaded-admin.php:1519
|
815 |
msgid "File on server"
|
816 |
msgstr "Soubor na serveru"
|
817 |
|
818 |
+
#: wp-table-reloaded-admin.php:1523
|
819 |
msgid "Select File with Table to Import"
|
820 |
msgstr "Vyberte konkrétní soubor s tabulkovými daty, která budou naimportována"
|
821 |
|
822 |
+
#: wp-table-reloaded-admin.php:1527
|
823 |
msgid "URL to import table from"
|
824 |
msgstr "URL adresa, ze které chcete tabulku importovat"
|
825 |
|
826 |
+
#: wp-table-reloaded-admin.php:1531
|
827 |
msgid "Path to file on server"
|
828 |
msgstr "Cesta k souboru na serveru"
|
829 |
|
830 |
+
#: wp-table-reloaded-admin.php:1535
|
831 |
msgid "Paste data with Table to Import"
|
832 |
msgstr "Vložte tabulková data, která budou naimportována"
|
833 |
|
834 |
+
#: wp-table-reloaded-admin.php:1541
|
835 |
msgid "Import Table"
|
836 |
msgstr "Importovat tabulku"
|
837 |
|
838 |
+
#: wp-table-reloaded-admin.php:1554
|
839 |
msgid "Import from original wp-Table plugin"
|
840 |
msgstr "Importovat tabulky z původního pluginu wp-Table"
|
841 |
|
842 |
+
#: wp-table-reloaded-admin.php:1600
|
843 |
msgid "Import"
|
844 |
msgstr "Importovat"
|
845 |
|
846 |
+
#: wp-table-reloaded-admin.php:1608
|
847 |
msgid "Import Tables"
|
848 |
msgstr "Importovat tabulky"
|
849 |
|
850 |
+
#: wp-table-reloaded-admin.php:1614
|
851 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
852 |
msgstr "Vypadá to, že máte sice nainstalovaný také původní plugin wp-Table (jehož autorem je Alex Rabe), ale nebyly v něm nalezeny žádné tabulky."
|
853 |
|
854 |
+
#: wp-table-reloaded-admin.php:1633
|
855 |
+
#: wp-table-reloaded-admin.php:1904
|
856 |
msgid "Export a Table"
|
857 |
msgstr "Exportovat tabulku"
|
858 |
|
859 |
+
#: wp-table-reloaded-admin.php:1637
|
860 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
861 |
+
msgstr "Zde můžete exportovat tabulku. Stačí si ji vybrat a zvolit příslušný exportní formát a oddělovač dat (potřebné pouze pro formát CSV)."
|
862 |
+
|
863 |
+
#: wp-table-reloaded-admin.php:1638
|
864 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
865 |
+
msgstr "Můžete si také zvolit, že chcete exportovaný soubor stáhnout, jinak se zobrazí přímo na této stránce."
|
866 |
+
|
867 |
+
#: wp-table-reloaded-admin.php:1639
|
868 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
869 |
+
msgstr "Je třeba si však uvědomit, že budou exportována pouze čistá tabulková data a nikoliv současné nastavení nebo vzhled tabulky."
|
870 |
|
871 |
+
#: wp-table-reloaded-admin.php:1647
|
872 |
msgid "Select Table to Export"
|
873 |
msgstr "Zvolte tabulku, kterou chcete exportovat"
|
874 |
|
875 |
+
#: wp-table-reloaded-admin.php:1662
|
876 |
msgid "Select Export Format"
|
877 |
msgstr "Zvolte exportní formát"
|
878 |
|
879 |
+
#: wp-table-reloaded-admin.php:1672
|
880 |
msgid "Select Delimiter to use"
|
881 |
msgstr "Zvolte oddělovač dat"
|
882 |
|
883 |
+
#: wp-table-reloaded-admin.php:1679
|
884 |
msgid "<small>(Only needed for CSV export.)</small>"
|
885 |
msgstr "<small>(Potřebné pouze pro exportní formát CSV.)</small>"
|
886 |
|
887 |
+
#: wp-table-reloaded-admin.php:1682
|
888 |
msgid "Download file"
|
889 |
msgstr "Stáhnout soubor"
|
890 |
|
891 |
+
#: wp-table-reloaded-admin.php:1683
|
892 |
msgid "Yes, I want to download the export file."
|
893 |
msgstr "Ano, exportovaný soubor s tabulkou si chci rovnou stáhnout."
|
894 |
|
895 |
+
#: wp-table-reloaded-admin.php:1708
|
896 |
msgid "General Plugin Options"
|
897 |
msgstr "Obecné nastavení pluginu"
|
898 |
|
899 |
+
#: wp-table-reloaded-admin.php:1712
|
900 |
+
msgid "You may change these global options."
|
901 |
+
msgstr "Zde můžete měnit globální nastavení pluginu."
|
902 |
|
903 |
+
#: wp-table-reloaded-admin.php:1713
|
904 |
+
msgid "They will effect all tables or the general plugin behavior."
|
905 |
+
msgstr "Toto nastavení ovlivní všechny tabulky nebo obecné vlastnosti pluginu."
|
906 |
+
|
907 |
+
#: wp-table-reloaded-admin.php:1720
|
908 |
msgid "Frontend Options"
|
909 |
msgstr "Nastavení zobrazení tabulek pro čtenáře"
|
910 |
|
911 |
+
#: wp-table-reloaded-admin.php:1724
|
912 |
msgid "Enable Tablesorter-JavaScript?"
|
913 |
msgstr "Povolit Tablesorter?"
|
914 |
|
915 |
+
#: wp-table-reloaded-admin.php:1725
|
916 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
917 |
+
msgstr "Ano, povolit jQuery plugin <a href=\"http://www.tablesorter.com/\">Tablesorter</a>. Tato volba umožňuje čtenářům, aby si mohli sami interaktivně a libovolně řadit data v tabulce tak, jak potřebují (může být aktivováno také selektivně pro každou tabulku jednotlivě v nastavení tabulky)."
|
918 |
|
919 |
+
#: wp-table-reloaded-admin.php:1728
|
920 |
msgid "Add custom CSS?"
|
921 |
msgstr "Použít vlastní CSS?"
|
922 |
|
923 |
+
#: wp-table-reloaded-admin.php:1730
|
924 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
925 |
+
msgstr "Ano, chci použít na svém webu následující CSS styly (budou se načítat v rámci HTML značky <style>)."
|
926 |
|
927 |
+
#: wp-table-reloaded-admin.php:1735
|
928 |
msgid "Enter custom CSS"
|
929 |
msgstr "Vložit vlastní CSS"
|
930 |
|
931 |
+
#: wp-table-reloaded-admin.php:1740
|
932 |
#, php-format
|
933 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
934 |
+
msgstr "Můžete zvýšit výkon svého webu také tím, že vlastní tabulkové CSS styly místo do tohoto pole přidáte přímo do souboru \"style.css\" ve vaší šabloně (tento soubor je umístěn konkrétně zde: <a href=\"%s\">%s</a>)."
|
935 |
|
936 |
+
#: wp-table-reloaded-admin.php:1741
|
937 |
#, php-format
|
938 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
939 |
+
msgstr "Pro další informace o CSS stylování tabulek navštivte <a href=\"%s\">stránky pluginu</a>, nebo použijte přímo některý z následujících vzorů: <a href=\"%s\">Příklad 1</a>, <a href=\"%s\">Příklad 2</a>."
|
940 |
|
941 |
+
#: wp-table-reloaded-admin.php:1741
|
942 |
msgid "Just copy the contents of a file into the textarea."
|
943 |
msgstr "Stačí pouze nakopírovat CSS získané z konkrétního příkladu do pole pro vložení vlastního CSS."
|
944 |
|
945 |
+
#: wp-table-reloaded-admin.php:1742
|
946 |
+
#, php-format
|
947 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
948 |
+
msgstr "Další možností je pak použití vlastního samostatného CSS souboru (uloženého např. v adresáři vaší šablony) pomocí importního CSS příkazu: %s"
|
949 |
+
|
950 |
+
#: wp-table-reloaded-admin.php:1750
|
951 |
+
msgid "Advanced Options"
|
952 |
+
msgstr "Pokročilé nastavení"
|
953 |
|
954 |
+
#: wp-table-reloaded-admin.php:1754
|
955 |
+
msgid "Use Tablesorter Extended?"
|
956 |
+
msgstr "Použít Rozšířený Tablesorter?"
|
957 |
+
|
958 |
+
#: wp-table-reloaded-admin.php:1755
|
959 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
960 |
+
msgstr "Ano, chci použít raději Rozšířený Tablesorter, jehož autorem je <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a>, místo původního jQuery skriptu Tablesorter (POZOR: Tato funkce je zatím v testovacím režimu!)."
|
961 |
+
|
962 |
+
#: wp-table-reloaded-admin.php:1758
|
963 |
msgid "Uninstall Plugin upon Deactivation?"
|
964 |
msgstr "Odinstalovat plugin při jeho deaktivaci?"
|
965 |
|
966 |
+
#: wp-table-reloaded-admin.php:1759
|
967 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
968 |
+
msgstr "Ano, chci všechno odinstalovat, pokud bude plugin deaktivován. Upozornění: Tuto možnost byste měli povolit pouze těsně před samotnou deaktivací tohoto pluginu v Přehledu pluginů!"
|
969 |
|
970 |
+
#: wp-table-reloaded-admin.php:1759
|
971 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
972 |
+
msgstr "(Toto nastavení nijak neovlivňuje možnost \"Ruční odinstalace pluginu\", kterou můžete provést níže!)"
|
973 |
|
974 |
+
#: wp-table-reloaded-admin.php:1762
|
975 |
+
msgid "Allow donation message?"
|
976 |
+
msgstr "Povolit upozornění o peněžním daru?"
|
977 |
+
|
978 |
+
#: wp-table-reloaded-admin.php:1763
|
979 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
980 |
+
msgstr "Ano, chci zobrazit informace o možnosti peněžního daru po uplynutí 30 dní od nainstalování pluginu."
|
981 |
+
|
982 |
+
#: wp-table-reloaded-admin.php:1772
|
983 |
msgid "Save Options"
|
984 |
msgstr "Uložit nastavení"
|
985 |
|
986 |
+
#: wp-table-reloaded-admin.php:1778
|
987 |
msgid "Manually Uninstall Plugin"
|
988 |
msgstr "Ručně odinstalovat plugin"
|
989 |
|
990 |
+
#: wp-table-reloaded-admin.php:1780
|
991 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
992 |
+
msgstr "Zde můžete plugin kompletně odinstalovat. Touto akcí <strong>smažete</strong> všechny tabulky, data a nastavení, která s tímto pluginem souvisí, a to včetně všech vytvořených nebo naimportovaných tabulek."
|
993 |
|
994 |
+
#: wp-table-reloaded-admin.php:1780
|
995 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
996 |
+
msgstr "Odinstalace je nevratný proces, takže buďte velmi opatrní a klikněte na tlačítko pouze v případě, že jste si opravdu jisti tím, co děláte a chcete plugin kompletně smazat!"
|
997 |
+
|
998 |
+
#: wp-table-reloaded-admin.php:1783
|
999 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
1000 |
msgstr "Odinstalovat plugin WP-Table Reloaded"
|
1001 |
|
1002 |
+
#: wp-table-reloaded-admin.php:1794
|
1003 |
+
msgid "About WP-Table Reloaded"
|
1004 |
+
msgstr "Informace o pluginu WP-Table Reloaded"
|
1005 |
|
1006 |
+
#: wp-table-reloaded-admin.php:1800
|
1007 |
msgid "Plugin Purpose"
|
1008 |
msgstr "K čemu je možné plugin použít?"
|
1009 |
|
1010 |
+
#: wp-table-reloaded-admin.php:1802
|
1011 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
1012 |
msgstr "Pomocí pluginu můžete jednoduše vytvářet a spravovat tabulky přímo v administraci Wordpressu."
|
1013 |
|
1014 |
+
#: wp-table-reloaded-admin.php:1802
|
1015 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
1016 |
msgstr "Tabulky mohou kromě písmen a čísel obsahovat také HTML značky (tzn. že můžete do tabulky vkládat odkazy nebo obrázky)."
|
1017 |
|
1018 |
+
#: wp-table-reloaded-admin.php:1802
|
1019 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
1020 |
msgstr "Poté můžete tabulky vkládat do příspěvků, stránek nebo textových widgetů pomocí jednoduchého zkráceného zápisu."
|
1021 |
|
1022 |
+
#: wp-table-reloaded-admin.php:1802
|
1023 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
1024 |
msgstr "Pokud chcete zobrazit Vaše tabulky kdekoliv jinde v šabloně, můžete použít příslušné funkce."
|
1025 |
|
1026 |
+
#: wp-table-reloaded-admin.php:1807
|
1027 |
msgid "Usage"
|
1028 |
msgstr "Použití"
|
1029 |
|
1030 |
+
#: wp-table-reloaded-admin.php:1809
|
1031 |
msgid "At first you should add or import a table."
|
1032 |
msgstr "Nejdříve byste měli vytvořit, nebo naimportovat nějakou tabulku."
|
1033 |
|
1034 |
+
#: wp-table-reloaded-admin.php:1809
|
1035 |
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."
|
1036 |
msgstr "To znamená, že si můžete nechat pluginem vytvořit novou prázdnou tabulku, nebo můžete naimportovat nějakou Vaši tabulku ze souboru ve formátu CSV, XML nebo HTML."
|
1037 |
|
1038 |
+
#: wp-table-reloaded-admin.php:1809
|
1039 |
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."
|
1040 |
msgstr "Poté můžete libovolně upravovat data v tabulce, měnit její strukturu (tj. přidávat či mazat řádky a sloupce, přesunovat je a také řadit data podle jednotlivých sloupců) a používat další specifická nastavení jako střídaní barev řádků v tabulce nebo zobrazování názvu a stručného popisu."
|
1041 |
|
1042 |
+
#: wp-table-reloaded-admin.php:1809
|
1043 |
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."
|
1044 |
msgstr "Pro přidání odkazu nebo obrázku do tabulky jsou připravena příslušná tlačítka, pomocí kterých jednoduše zadáte URL a text odkazu a potom pouze kliknete tam, kam má být odpovídající vygenerovaný HTML kód automaticky přidán."
|
1045 |
|
1046 |
+
#: wp-table-reloaded-admin.php:1809
|
1047 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
1048 |
msgstr "Pro vložení tabulky do příspěvku, stránky nebo textového widgetu pak stačí napsat pouze zkrácený zápis [table id=<table-id>]."
|
1049 |
|
1050 |
+
#: wp-table-reloaded-admin.php:1809
|
1051 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
1052 |
msgstr "Můžete si tabulku také přímo vybrat z jejich seznamu (dostanete se k němu kliknutím na tlačítko \"tabulky\" v HTML editoru) a odpovídající zkrácený zápis bude už vložen automaticky."
|
1053 |
|
1054 |
+
#: wp-table-reloaded-admin.php:1809
|
1055 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
1056 |
msgstr "Můžete také upravovat zobrazování tabulek pomocí CSS stylů, konkrétní příklady naleznete na stránkách pluginu. Každá tabulka má proto v HTML přiřazeny CSS třídy \"wp-table-reloaded\" a \"wp-table-reloaded-<table-id>\"."
|
1057 |
|
1058 |
+
#: wp-table-reloaded-admin.php:1809
|
1059 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
1060 |
msgstr "Můžete také používat CSS třídy \"column-<number>\" a \"row-<number>\" pro nastavení specifického zobrazení pro konkrétní řádky a sloupce. Pomocí těchto tříd také můžete nastavit např. šířku sloupců a zarovnání textu v tabulce."
|
1061 |
|
1062 |
+
#: wp-table-reloaded-admin.php:1814
|
1063 |
msgid "More Information and Documentation"
|
1064 |
msgstr "Další informace a manuál"
|
1065 |
|
1066 |
+
#: wp-table-reloaded-admin.php:1816
|
1067 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1068 |
msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a> nebo také v <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
|
1069 |
|
1070 |
+
#: wp-table-reloaded-admin.php:1816
|
1071 |
+
#: wp-table-reloaded-admin.php:1980
|
1072 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
1073 |
msgstr "V případě problémů nahlédněte do <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">manuálu</a>, nebo se obraťte na autora s žádostí o <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">podporu</a>."
|
1074 |
|
1075 |
+
#: wp-table-reloaded-admin.php:1821
|
1076 |
msgid "Author and Licence"
|
1077 |
msgstr "Autor a licence"
|
1078 |
|
1079 |
+
#: wp-table-reloaded-admin.php:1823
|
1080 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1081 |
+
msgstr "Tento plugin vytvořil <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> a je dostupný pro uživatele zdarma s licenčními podmínkami GPL 2."
|
1082 |
|
1083 |
+
#: wp-table-reloaded-admin.php:1823
|
1084 |
+
#: wp-table-reloaded-admin.php:1981
|
1085 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1086 |
+
msgstr "Pokud se Vám plugin líbil a úspěšně ho využíváte, zvažte prosím možnost <a href=\"http://tobias.baethge.com/donate/\"><strong>peněžního daru</strong></a> a ohodnoťte plugin v <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">oficiálním adresáři pluginů Wordpressu</a>."
|
1087 |
|
1088 |
+
#: wp-table-reloaded-admin.php:1823
|
1089 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
1090 |
msgstr "Peněžní dary a dobré hodnocení mě motivují k dalšímu vývoji tohoto pluginu a poskytování dlouhodobé podpory. Každý (i sebemenší) finanční obnos je vítán! Děkuji!"
|
1091 |
|
1092 |
+
#: wp-table-reloaded-admin.php:1828
|
1093 |
msgid "Credits and Thanks"
|
1094 |
msgstr "Poděkování"
|
1095 |
|
1096 |
+
#: wp-table-reloaded-admin.php:1831
|
1097 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
1098 |
msgstr "Moje poděkování patří zejména autorovi původního pluginu pro tvorbu tabulek ve Wordpressu - wp-Table (<a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a>),"
|
1099 |
|
1100 |
+
#: wp-table-reloaded-admin.php:1832
|
1101 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
1102 |
msgstr "Christianu Bachovi za jeho <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
1103 |
|
1104 |
+
#: wp-table-reloaded-admin.php:1833
|
1105 |
msgid "the submitters of translations:"
|
1106 |
msgstr "překladatelům do následujících jazykových verzí:"
|
1107 |
|
1108 |
+
#: wp-table-reloaded-admin.php:1834
|
1109 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
1110 |
msgstr "albánština (<a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
1111 |
|
1112 |
+
#: wp-table-reloaded-admin.php:1835
|
1113 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1114 |
+
msgstr "běloruština (<a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1115 |
+
|
1116 |
+
#: wp-table-reloaded-admin.php:1836
|
1117 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1118 |
msgstr "brazilská portugalština (<a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1119 |
|
1120 |
+
#: wp-table-reloaded-admin.php:1837
|
1121 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
1122 |
msgstr "čeština (<a href=\"http://www.separatista.net/\">Separatista</a>)"
|
1123 |
|
1124 |
+
#: wp-table-reloaded-admin.php:1838
|
1125 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
1126 |
msgstr "francouzština (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
1127 |
|
1128 |
+
#: wp-table-reloaded-admin.php:1839
|
1129 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1130 |
+
msgstr "italština (<a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1131 |
+
|
1132 |
+
#: wp-table-reloaded-admin.php:1840
|
1133 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1134 |
+
msgstr "japonština (<a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1135 |
+
|
1136 |
+
#: wp-table-reloaded-admin.php:1841
|
1137 |
msgid "Polish (thanks to Alex Kortan)"
|
1138 |
msgstr "polština (Alex Kortan)"
|
1139 |
|
1140 |
+
#: wp-table-reloaded-admin.php:1842
|
1141 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
1142 |
msgstr "ruština (<a href=\"http://wp-skins.info/\">Truper</a>)"
|
1143 |
|
1144 |
+
#: wp-table-reloaded-admin.php:1843
|
1145 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1146 |
msgstr "španělština (<a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> a <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1147 |
|
1148 |
+
#: wp-table-reloaded-admin.php:1844
|
1149 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
1150 |
msgstr "švédština (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
1151 |
|
1152 |
+
#: wp-table-reloaded-admin.php:1845
|
1153 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
1154 |
msgstr "turečtina (<a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
1155 |
|
1156 |
+
#: wp-table-reloaded-admin.php:1846
|
1157 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
1158 |
msgstr "a také všem dárcům, přispěvatelům, testerům, recenzentům a uživatelům tohoto pluginu!"
|
1159 |
|
1160 |
+
#: wp-table-reloaded-admin.php:1852
|
1161 |
msgid "Debug and Version Information"
|
1162 |
msgstr "Verze pluginu a technické informace pro podporu"
|
1163 |
|
1164 |
+
#: wp-table-reloaded-admin.php:1855
|
1165 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
1166 |
msgstr "Používáte následující verze programů. <strong>Použijte prosím tyto informace při kontaktování podpory pluginu.</strong>"
|
1167 |
|
1168 |
+
#: wp-table-reloaded-admin.php:1858
|
1169 |
+
msgid "Plugin installed"
|
1170 |
+
msgstr "Plugin byl nainstalován"
|
1171 |
+
|
1172 |
+
#: wp-table-reloaded-admin.php:1901
|
1173 |
msgid "List Tables"
|
1174 |
msgstr "Zobrazit tabulky"
|
1175 |
|
1176 |
+
#: wp-table-reloaded-admin.php:1906
|
1177 |
msgid "Plugin Options"
|
1178 |
msgstr "Nastavení pluginu"
|
1179 |
|
1180 |
+
#: wp-table-reloaded-admin.php:1907
|
1181 |
msgid "About the Plugin"
|
1182 |
msgstr "O pluginu"
|
1183 |
|
1184 |
+
#: wp-table-reloaded-admin.php:1948
|
1185 |
+
msgid "This is the \"List Tables\" screen."
|
1186 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Správa tabulek\"."
|
1187 |
+
|
1188 |
+
#: wp-table-reloaded-admin.php:1952
|
1189 |
+
msgid "This is the \"Edit Table\" screen."
|
1190 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Upravit tabulku\"."
|
1191 |
+
|
1192 |
+
#: wp-table-reloaded-admin.php:1955
|
1193 |
+
msgid "This is the \"Add new Table\" screen."
|
1194 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Vytvořit tabulku\"."
|
1195 |
+
|
1196 |
+
#: wp-table-reloaded-admin.php:1958
|
1197 |
+
msgid "This is the \"Import a Table\" screen."
|
1198 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Importovat tabulku\"."
|
1199 |
+
|
1200 |
+
#: wp-table-reloaded-admin.php:1961
|
1201 |
+
msgid "This is the \"Export a Table\" screen."
|
1202 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Exportovat tabulku\"."
|
1203 |
+
|
1204 |
+
#: wp-table-reloaded-admin.php:1964
|
1205 |
+
msgid "This is the \"Plugin Options\" screen."
|
1206 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Obecné nastavení pluginu\"."
|
1207 |
+
|
1208 |
+
#: wp-table-reloaded-admin.php:1970
|
1209 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1210 |
+
msgstr "Aktuálně se nacházíte v nabídce \"Informace o pluginu WP-Table Reloaded\"."
|
1211 |
+
|
1212 |
+
#: wp-table-reloaded-admin.php:1979
|
1213 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
1214 |
msgstr "Podrobnější informace můžete nalézt na <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">stránkách pluginu</a>."
|
1215 |
|
1216 |
+
#: wp-table-reloaded-admin.php:2260
|
1217 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
1218 |
msgstr "Opravdu chcete tuto možnost povolit? Měli byste tak učinit pouze před definitivní deaktivací tohoto pluginu!"
|
1219 |
|
1220 |
+
#: wp-table-reloaded-admin.php:2261
|
1221 |
msgid "URL of link to insert"
|
1222 |
msgstr "Vložte URL adresu"
|
1223 |
|
1224 |
+
#: wp-table-reloaded-admin.php:2262
|
1225 |
msgid "Text of link"
|
1226 |
msgstr "Vložte text odkazu"
|
1227 |
|
1228 |
+
#: wp-table-reloaded-admin.php:2263
|
1229 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
1230 |
msgstr "Abyste vložili tento odkaz do tabulky, tak si po uzavření tohoto okna pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
|
1231 |
|
1232 |
+
#: wp-table-reloaded-admin.php:2264
|
1233 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1234 |
+
msgstr "Pro vložení obrázku do tabulky klikněte nejdříve přímo do buňky, kam chcete obrázek vložit."
|
1235 |
|
1236 |
+
#: wp-table-reloaded-admin.php:2264
|
1237 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1238 |
+
msgstr "Otevře se okno Knihovny médií, kde si můžete požadovaný obrázek (a URL adresu kam bude odkazovat) jednoduše vybrat."
|
1239 |
|
1240 |
+
#: wp-table-reloaded-admin.php:2264
|
1241 |
+
#, php-format
|
1242 |
+
msgid "Click the \"%s\" button to insert the image."
|
1243 |
+
msgstr "Poté už jen klikněte na tlačítko \"%s\", čímž bude obrázek automaticky vložen do buňky."
|
1244 |
+
|
1245 |
+
#: wp-table-reloaded-admin.php:2264
|
1246 |
+
msgid "Insert into Post"
|
1247 |
+
msgstr "Vložit do příspěvku"
|
1248 |
|
1249 |
+
#: wp-table-reloaded-admin.php:2265
|
1250 |
msgid "Do you want to copy the selected tables?"
|
1251 |
msgstr "Opravdu chcete zvolené tabulky zkopírovat?"
|
1252 |
|
1253 |
+
#: wp-table-reloaded-admin.php:2266
|
1254 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
1255 |
msgstr "Vybrané tabulky (včetně jejich obsahu) budou kompletně smazány. Opravdu je chcete smazat?"
|
1256 |
|
1257 |
+
#: wp-table-reloaded-admin.php:2267
|
1258 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
1259 |
msgstr "Opravdu chcete importovat vybrané tabulky z původního pluginu wp-Table?"
|
1260 |
|
1261 |
+
#: wp-table-reloaded-admin.php:2268
|
1262 |
msgid "Do you want to copy this table?"
|
1263 |
msgstr "Opravdu chcete tuto tabulku zkopírovat?"
|
1264 |
|
1265 |
+
#: wp-table-reloaded-admin.php:2269
|
1266 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
1267 |
msgstr "Celá tabulka (včetně jejího obsahu) bude kompletně smazána. Opravdu ji chcete smazat?"
|
1268 |
|
1269 |
+
#: wp-table-reloaded-admin.php:2270
|
1270 |
msgid "Do you really want to delete this row?"
|
1271 |
msgstr "Opravdu chcete smazat tento řádek?"
|
1272 |
|
1273 |
+
#: wp-table-reloaded-admin.php:2271
|
1274 |
msgid "Do you really want to delete this column?"
|
1275 |
msgstr "Opravdu chcete smazat tento sloupec?"
|
1276 |
|
1277 |
+
#: wp-table-reloaded-admin.php:2272
|
1278 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
1279 |
msgstr "Opravdu chcete importovat tuto tabulku z původního pluginu wp-Table?"
|
1280 |
|
1281 |
+
#: wp-table-reloaded-admin.php:2273
|
1282 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
1283 |
msgstr "Opravdu chcete plugin odinstalovat smazat tak všechna příslušná data?"
|
1284 |
|
1285 |
+
#: wp-table-reloaded-admin.php:2274
|
1286 |
msgid "Are you really sure?"
|
1287 |
msgstr "Jste si opravdu jisti?"
|
1288 |
|
1289 |
+
#: wp-table-reloaded-admin.php:2275
|
1290 |
msgid "Do you really want to change the ID of the table?"
|
1291 |
msgstr "Opravdu chcete změnit ID tabulky?"
|
1292 |
|
1293 |
+
#: wp-table-reloaded-admin.php:2276
|
1294 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1295 |
+
msgstr "Pro zobrazení tohoto uživatelského pole tabulky v příspěvku (stránce) použijte následující zkrácený zápis:"
|
1296 |
+
|
1297 |
+
#: wp-table-reloaded-admin.php:2277
|
1298 |
+
msgid "To show this table, use this shortcode:"
|
1299 |
+
msgstr "Pro zobrazení této tabulky v příspěvku (stránce) použijte následující zkrácený zápis:"
|
1300 |
+
|
1301 |
+
#: wp-table-reloaded-admin.php:2318
|
1302 |
msgid "Table"
|
1303 |
msgstr "tabulky"
|
1304 |
|
1305 |
+
#: wp-table-reloaded-admin.php:2349
|
1306 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1307 |
+
msgstr "Děkujeme, že používáte plugin <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1308 |
+
|
1309 |
#. Plugin URI of an extension
|
1310 |
msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
1311 |
msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
1312 |
|
1313 |
#. Description of an extension
|
1314 |
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."
|
1315 |
+
msgstr "Pomocí tohoto pluginu můžete jednoduše vytvářet a upravovat tabulky přímo v administraci Wordpressu. Pomocí příjemného rozhraní lze také snadno manipulovat s daty v tabulce. Jednotlivé tabulky můžete vkládat do Vašich příspěvků, stránek nebo textových widgetů jednoduše pomocí zkráceného zápisu nebo speciální šablonové funkce. Tabulky mohou být importovány a exportovány z/do formátů CSV, XML a HTML. Česká verze a podrobnosti o pluginu: <a href=\"http://www.separatista.net\">Separatista</a>."
|
1316 |
|
1317 |
#. Author of an extension
|
1318 |
msgid "Tobias Bäthge"
|
1322 |
msgid "http://tobias.baethge.com/"
|
1323 |
msgstr "http://tobias.baethge.com/"
|
1324 |
|
1325 |
+
#~ msgid "URL of image to insert"
|
1326 |
+
#~ msgstr "Vložte URL adresu obrázku"
|
1327 |
+
|
1328 |
+
#, fuzzy
|
1329 |
+
#~ msgid ""alt" text of the image"
|
1330 |
+
#~ msgstr "Vložte ''alt'' text obrázku"
|
1331 |
+
#~ msgid ""
|
1332 |
+
#~ "To insert the following image into a cell, just click the cell after "
|
1333 |
+
#~ "closing this dialog."
|
1334 |
+
#~ msgstr ""
|
1335 |
+
#~ "Abyste vložili tento obrázek do tabulky, tak si po uzavření tohoto okna "
|
1336 |
+
#~ "pomocí tlačítka OK vyberte konkrétní místo v tabulce a klikněte tam."
|
1337 |
+
#~ msgid "Information about the plugin"
|
1338 |
+
#~ msgstr "Informace o pluginu"
|
1339 |
#~ msgid "- or -"
|
1340 |
#~ msgstr "- nebo -"
|
1341 |
#~ msgid "(upload will be preferred over pasting)"
|
languages/wp-table-reloaded-de_DE.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-de_DE.po
CHANGED
@@ -1,967 +1,1600 @@
|
|
1 |
-
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"
|
5 |
-
"
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Poedit-Language:
|
11 |
-
"X-Poedit-Country:
|
12 |
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c
|
14 |
"X-Poedit-Basepath: \n"
|
15 |
-
"X-Poedit-
|
|
|
|
|
16 |
|
17 |
-
#: wp-table-reloaded-admin.php:
|
18 |
#, php-format
|
|
|
19 |
msgid "Table \"%s\" added successfully."
|
20 |
msgstr "Tabelle \"%s\" erfolgreich angelegt."
|
21 |
|
22 |
-
#: wp-table-reloaded-admin.php:
|
|
|
23 |
msgid "Table edited successfully."
|
24 |
msgstr "Tabelle erfolgreich bearbeitet."
|
25 |
|
26 |
-
#: wp-table-reloaded-admin.php:
|
|
|
27 |
msgid "Rows swapped successfully."
|
28 |
msgstr "Zeilen erfolgreich getauscht."
|
29 |
|
30 |
-
#: wp-table-reloaded-admin.php:
|
|
|
31 |
msgid "Columns swapped successfully."
|
32 |
msgstr "Spalten erfolgreich getauscht."
|
33 |
|
34 |
-
#: wp-table-reloaded-admin.php:
|
35 |
#, php-format
|
|
|
36 |
msgid "Table \"%s\" copied successfully."
|
37 |
msgstr "Tabelle \"%s\" erfolgreich kopiert."
|
38 |
|
39 |
-
#: wp-table-reloaded-admin.php:
|
40 |
#, php-format
|
|
|
41 |
msgid "Table \"%s\" deleted successfully."
|
42 |
msgstr "Tabelle \"%s\" erfolgreich gelöscht."
|
43 |
|
44 |
-
#: wp-table-reloaded-admin.php:
|
|
|
45 |
msgid "Row deleted successfully."
|
46 |
msgstr "Zeile erfolgreich gelöscht."
|
47 |
|
48 |
-
#: wp-table-reloaded-admin.php:
|
|
|
49 |
msgid "Column deleted successfully."
|
50 |
msgstr "Spalte erfolgreich gelöscht."
|
51 |
|
52 |
-
#: wp-table-reloaded-admin.php:
|
|
|
53 |
msgid "Delete failed."
|
54 |
msgstr "Löschen fehlgeschlagen."
|
55 |
|
56 |
-
#: wp-table-reloaded-admin.php:
|
|
|
57 |
msgid "Row inserted successfully."
|
58 |
msgstr "Zeile erfolgreich eingefügt."
|
59 |
|
60 |
-
#: wp-table-reloaded-admin.php:
|
|
|
61 |
msgid "Column inserted successfully."
|
62 |
msgstr "Spalte erfolgreich eingefügt."
|
63 |
|
64 |
-
#: wp-table-reloaded-admin.php:
|
|
|
65 |
msgid "Insert failed."
|
66 |
msgstr "Einfügen fehlgeschlagen."
|
67 |
|
68 |
-
#: wp-table-reloaded-admin.php:
|
69 |
-
#: wp-table-reloaded-admin.php:
|
|
|
70 |
msgid "Table imported successfully."
|
71 |
msgstr "Tabelle erfolgreich importiert."
|
72 |
|
73 |
-
#: wp-table-reloaded-admin.php:
|
74 |
#, php-format
|
|
|
75 |
msgid "Table \"%s\" exported successfully."
|
76 |
msgstr "Tabelle \"%s\" erfolgreich exportiert."
|
77 |
|
78 |
-
#: wp-table-reloaded-admin.php:
|
|
|
79 |
msgid "Options saved successfully."
|
80 |
msgstr "Einstellungen erfolgreich gespeichert."
|
81 |
|
82 |
-
#: wp-table-reloaded-admin.php:
|
83 |
-
#: wp-table-reloaded-admin.php:
|
|
|
84 |
msgid "List of Tables"
|
85 |
msgstr "Liste der Tabellen"
|
86 |
|
87 |
-
#: wp-table-reloaded-admin.php:
|
88 |
-
#: wp-table-reloaded-admin.php:
|
89 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
90 |
msgid "ID"
|
91 |
msgstr "ID"
|
92 |
|
93 |
-
#: wp-table-reloaded-admin.php:
|
94 |
-
#: wp-table-reloaded-admin.php:
|
95 |
-
#: wp-table-reloaded-admin.php:
|
96 |
-
#: wp-table-reloaded-admin.php:
|
97 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
98 |
msgid "Table Name"
|
99 |
msgstr "Name der Tabelle"
|
100 |
|
101 |
-
#: wp-table-reloaded-admin.php:
|
102 |
-
#: wp-table-reloaded-admin.php:
|
103 |
-
#: wp-table-reloaded-admin.php:
|
104 |
-
#: wp-table-reloaded-admin.php:
|
105 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
106 |
msgid "Description"
|
107 |
msgstr "Beschreibung"
|
108 |
|
109 |
-
#: wp-table-reloaded-admin.php:
|
110 |
-
#: wp-table-reloaded-admin.php:
|
111 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
112 |
msgid "Action"
|
113 |
msgstr "Aktion"
|
114 |
|
115 |
-
#: wp-table-reloaded-admin.php:
|
|
|
116 |
msgid "Edit"
|
117 |
msgstr "Bearbeiten"
|
118 |
|
119 |
-
#: wp-table-reloaded-admin.php:
|
|
|
120 |
msgid "Do you want to copy this table?"
|
121 |
msgstr "Möchtest du diese Tabelle kopieren?"
|
122 |
|
123 |
-
#: wp-table-reloaded-admin.php:
|
|
|
124 |
msgid "Copy"
|
125 |
msgstr "Kopieren"
|
126 |
|
127 |
-
#: wp-table-reloaded-admin.php:
|
|
|
128 |
msgid "Export"
|
129 |
msgstr "Exportieren"
|
130 |
|
131 |
-
#: wp-table-reloaded-admin.php:
|
|
|
132 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
133 |
msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
|
134 |
|
135 |
-
#: wp-table-reloaded-admin.php:
|
|
|
136 |
msgid "Delete"
|
137 |
msgstr "Löschen"
|
138 |
|
139 |
-
#: wp-table-reloaded-admin.php:
|
140 |
-
#: wp-table-reloaded-admin.php:
|
141 |
-
#: wp-table-reloaded-admin.php:
|
|
|
142 |
msgid "No tables found."
|
143 |
msgstr "Keine Tabellen gefunden."
|
144 |
|
145 |
-
#: wp-table-reloaded-admin.php:
|
146 |
-
#: wp-table-reloaded-admin.php:
|
147 |
#, php-format
|
|
|
148 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
149 |
msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
|
150 |
|
151 |
-
#: wp-table-reloaded-admin.php:
|
152 |
-
#: wp-table-reloaded-admin.php:
|
|
|
153 |
msgid "Add new Table"
|
154 |
msgstr "Neue Tabelle anlegen"
|
155 |
|
156 |
-
#: wp-table-reloaded-admin.php:
|
157 |
-
|
158 |
-
msgstr "Hier kannst du eine neue Tabelle anlegen. Gib einfach ihren Namen, eine (optionale) Beschreibung und die Anzahl der Zeilen und Spalten ein.<br/>Du kannst später auch Zeilen oder Spalten hinzufügen, einfügen oder löschen."
|
159 |
-
|
160 |
-
#: wp-table-reloaded-admin.php:781
|
161 |
msgid "Number of Rows"
|
162 |
msgstr "Anzahl Zeilen"
|
163 |
|
164 |
-
#: wp-table-reloaded-admin.php:
|
|
|
165 |
msgid "Number of Columns"
|
166 |
msgstr "Anzahl Spalten"
|
167 |
|
168 |
-
#: wp-table-reloaded-admin.php:
|
|
|
169 |
msgid "Add Table"
|
170 |
msgstr "Tabelle anlegen"
|
171 |
|
172 |
-
#: wp-table-reloaded-admin.php:
|
|
|
173 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
174 |
msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
|
175 |
|
176 |
-
#: wp-table-reloaded-admin.php:
|
|
|
177 |
msgid "Table Information"
|
178 |
msgstr "Informationen über die Tabelle"
|
179 |
|
180 |
-
#: wp-table-reloaded-admin.php:
|
|
|
181 |
msgid "Table Contents"
|
182 |
msgstr "Inhalte der Tabelle"
|
183 |
|
184 |
-
#: wp-table-reloaded-admin.php:
|
|
|
185 |
msgid "Insert Row"
|
186 |
msgstr "Zeile einfügen"
|
187 |
|
188 |
-
#: wp-table-reloaded-admin.php:
|
|
|
189 |
msgid "Do you really want to delete this row?"
|
190 |
msgstr "Möchtest du diese Zeile wirklich löschen?"
|
191 |
|
192 |
-
#: wp-table-reloaded-admin.php:
|
|
|
193 |
msgid "Delete Row"
|
194 |
msgstr "Zeile löschen"
|
195 |
|
196 |
-
#: wp-table-reloaded-admin.php:
|
|
|
197 |
msgid "Insert Column"
|
198 |
msgstr "Spalte einfügen"
|
199 |
|
200 |
-
#: wp-table-reloaded-admin.php:
|
|
|
201 |
msgid "Do you really want to delete this column?"
|
202 |
msgstr "Möchtest du diese Spalte wirklich löschen?"
|
203 |
|
204 |
-
#: wp-table-reloaded-admin.php:
|
|
|
205 |
msgid "Delete Column"
|
206 |
msgstr "Spalte löschen"
|
207 |
|
208 |
-
#: wp-table-reloaded-admin.php:
|
209 |
-
#: wp-table-reloaded-admin.php:
|
|
|
210 |
msgid "Swap"
|
211 |
msgstr "Tauschen"
|
212 |
|
213 |
-
#: wp-table-reloaded-admin.php:
|
|
|
214 |
msgid "Table Settings"
|
215 |
msgstr "Einstellungen zur Tabelle"
|
216 |
|
217 |
-
#: wp-table-reloaded-admin.php:
|
|
|
218 |
msgid "These settings will only be used for this table."
|
219 |
msgstr "Diese Einstellungen gelten nur für diese Tabelle."
|
220 |
|
221 |
-
#: wp-table-reloaded-admin.php:
|
|
|
222 |
msgid "Alternating row colors"
|
223 |
msgstr "alternierende Zeilenfarben"
|
224 |
|
225 |
-
#: wp-table-reloaded-admin.php:
|
|
|
226 |
msgid "Every second row will have an alternating background color."
|
227 |
msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
|
228 |
|
229 |
-
#: wp-table-reloaded-admin.php:
|
|
|
230 |
msgid "Use Table Headline"
|
231 |
msgstr "Tabellenüberschrift"
|
232 |
|
233 |
-
#: wp-table-reloaded-admin.php:
|
234 |
-
|
235 |
-
msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag [th] markiert."
|
236 |
-
|
237 |
-
#: wp-table-reloaded-admin.php:996
|
238 |
msgid "Print Table Name"
|
239 |
msgstr "Tabellennamen ausgeben"
|
240 |
|
241 |
-
#: wp-table-reloaded-admin.php:
|
242 |
-
|
243 |
-
msgstr "Der Name der Tabelle wird in einem [h2]-HTML-Tag über die Tabelle geschrieben."
|
244 |
-
|
245 |
-
#: wp-table-reloaded-admin.php:1000
|
246 |
msgid "Print Table Description"
|
247 |
msgstr "Tabellenbeschreibung ausgeben"
|
248 |
|
249 |
-
#: wp-table-reloaded-admin.php:
|
|
|
250 |
msgid "The Table Description will be written under the table."
|
251 |
msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
|
252 |
|
253 |
-
#: wp-table-reloaded-admin.php:
|
|
|
254 |
msgid "Use Tablesorter"
|
255 |
msgstr "Tablesorter benutzen"
|
256 |
|
257 |
-
#: wp-table-reloaded-admin.php:
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
#: wp-table-reloaded-admin.php:1014
|
263 |
msgid "Update Changes"
|
264 |
msgstr "Änderungen speichern"
|
265 |
|
266 |
-
#: wp-table-reloaded-admin.php:
|
267 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
268 |
msgid "Save and go back"
|
269 |
msgstr "Speichern und zurück"
|
270 |
|
271 |
-
#: wp-table-reloaded-admin.php:
|
272 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
273 |
msgid "Cancel"
|
274 |
msgstr "Abbrechen"
|
275 |
|
276 |
-
#: wp-table-reloaded-admin.php:
|
|
|
277 |
msgid "Other actions"
|
278 |
msgstr "Andere Aktionen"
|
279 |
|
280 |
-
#: wp-table-reloaded-admin.php:
|
|
|
281 |
msgid "Delete Table"
|
282 |
msgstr "Tabelle löschen"
|
283 |
|
284 |
-
#: wp-table-reloaded-admin.php:
|
285 |
-
#: wp-table-reloaded-admin.php:
|
|
|
286 |
msgid "Export Table"
|
287 |
msgstr "Tabelle exportieren"
|
288 |
|
289 |
-
#: wp-table-reloaded-admin.php:
|
290 |
-
#: wp-table-reloaded-admin.php:
|
|
|
291 |
msgid "Import a Table"
|
292 |
msgstr "Eine Tabelle importieren"
|
293 |
|
294 |
-
#: wp-table-reloaded-admin.php:
|
|
|
295 |
msgid "Select File with Table to Import"
|
296 |
msgstr "Datei mit den zu importierenden Inhalten auswählen"
|
297 |
|
298 |
-
#: wp-table-reloaded-admin.php:
|
|
|
299 |
msgid "Import Table"
|
300 |
msgstr "Tabelle importieren"
|
301 |
|
302 |
-
#: wp-table-reloaded-admin.php:
|
303 |
-
#: wp-table-reloaded-admin.php:
|
|
|
304 |
msgid "Export a Table"
|
305 |
msgstr "Eine Tabelle exportieren"
|
306 |
|
307 |
-
#: wp-table-reloaded-admin.php:
|
|
|
308 |
msgid "Select Table to Export"
|
309 |
msgstr "zu exportierende Tabelle auswählen"
|
310 |
|
311 |
-
#: wp-table-reloaded-admin.php:
|
|
|
312 |
msgid "Select Export Format"
|
313 |
msgstr "gewünschtes Export-Format"
|
314 |
|
315 |
-
#: wp-table-reloaded-admin.php:
|
|
|
316 |
msgid "Select Delimiter to use"
|
317 |
msgstr "zu verwendendes Trennzeichen"
|
318 |
|
319 |
-
#: wp-table-reloaded-admin.php:
|
|
|
320 |
msgid "General Plugin Options"
|
321 |
msgstr "Plugin-Einstellungen"
|
322 |
|
323 |
-
#: wp-table-reloaded-admin.php:
|
324 |
-
|
325 |
-
msgstr "Hier können allgemeine Plugin-Einstellungen geändert werden<br/>Diese beeinflussen alle Tabellen oder das allgemeine Verhalten des Plugins."
|
326 |
-
|
327 |
-
#: wp-table-reloaded-admin.php:1306
|
328 |
msgid "Uninstall Plugin upon Deactivation?"
|
329 |
msgstr "Plugin beim Deaktivieren deinstallieren?"
|
330 |
|
331 |
-
#: wp-table-reloaded-admin.php:
|
|
|
332 |
msgid "Enable Tablesorter-JavaScript?"
|
333 |
msgstr "Tablesorter-JavaScript aktivieren?"
|
334 |
|
335 |
-
#: wp-table-reloaded-admin.php:
|
|
|
336 |
msgid "Save Options"
|
337 |
msgstr "Einstellungen speichern"
|
338 |
|
339 |
-
#: wp-table-reloaded-admin.php:
|
|
|
340 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
341 |
msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
|
342 |
|
343 |
-
#: wp-table-reloaded-admin.php:
|
|
|
344 |
msgid "Are you really sure?"
|
345 |
msgstr "Bist du wirklich sicher?"
|
346 |
|
347 |
-
#: wp-table-reloaded-admin.php:
|
348 |
-
|
349 |
-
msgstr "Informationen über das Plugin"
|
350 |
-
|
351 |
-
#: wp-table-reloaded-admin.php:1368
|
352 |
-
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licenced as Free Software under GPL 2."
|
353 |
-
msgstr "Dieses Plugin wurde von <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> programmiert. Es ist als Freie Software unter der GPL v2 lizenziert."
|
354 |
-
|
355 |
-
#: wp-table-reloaded-admin.php:1442
|
356 |
msgid "List Tables"
|
357 |
msgstr "Liste der Tabellen"
|
358 |
|
359 |
-
#: wp-table-reloaded-admin.php:
|
|
|
360 |
msgid "Plugin Options"
|
361 |
msgstr "Plugin-Einstellungen"
|
362 |
|
363 |
-
#: wp-table-reloaded-admin.php:
|
|
|
364 |
msgid "About the Plugin"
|
365 |
msgstr "Über das Plugin"
|
366 |
|
367 |
#: php/wp-table-reloaded-export.class.php:30
|
368 |
#: php/wp-table-reloaded-import.class.php:38
|
|
|
369 |
msgid "CSV - Character-Separated Values"
|
370 |
msgstr "CSV - Character-Separated Values"
|
371 |
|
372 |
#: php/wp-table-reloaded-export.class.php:32
|
373 |
#: php/wp-table-reloaded-import.class.php:40
|
|
|
374 |
msgid "XML - eXtended Markup Language"
|
375 |
msgstr "XML - eXtended Markup Language"
|
376 |
|
377 |
#: php/wp-table-reloaded-export.class.php:35
|
|
|
378 |
msgid "; (semicolon)"
|
379 |
msgstr "; (Semikolon)"
|
380 |
|
381 |
#: php/wp-table-reloaded-export.class.php:36
|
|
|
382 |
msgid ", (comma)"
|
383 |
msgstr ", (Komma)"
|
384 |
|
385 |
#: php/wp-table-reloaded-export.class.php:37
|
|
|
386 |
msgid ": (colon)"
|
387 |
msgstr ": (Doppelpunkt)"
|
388 |
|
389 |
-
#: wp-table-reloaded-admin.php:
|
|
|
390 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
391 |
msgstr "Plugin WP-Table Reloaded deinstallieren"
|
392 |
|
393 |
#: php/wp-table-reloaded-export.class.php:31
|
394 |
#: php/wp-table-reloaded-import.class.php:39
|
|
|
395 |
msgid "HTML - Hypertext Markup Language"
|
396 |
msgstr "HTML - Hypertext Markup Language"
|
397 |
|
398 |
-
#: wp-table-reloaded-admin.php:
|
399 |
-
#: wp-table-reloaded-admin.php:
|
|
|
400 |
msgid "Copy of"
|
401 |
msgstr "Kopie von"
|
402 |
|
403 |
-
#: wp-table-reloaded-admin.php:
|
404 |
-
#: wp-table-reloaded-admin.php:
|
405 |
-
#: wp-table-reloaded-admin.php:
|
|
|
406 |
msgid "Imported Table"
|
407 |
msgstr "Importierte Tabelle"
|
408 |
|
409 |
-
#: wp-table-reloaded-admin.php:
|
|
|
410 |
msgid "via form"
|
411 |
msgstr "via Eingabefeld"
|
412 |
|
413 |
-
#: wp-table-reloaded-admin.php:
|
414 |
-
#: wp-table-reloaded-admin.php:
|
|
|
415 |
msgid "Table could not be imported."
|
416 |
msgstr "Tabelle konnte nicht importiert werden."
|
417 |
|
418 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
419 |
msgid "WP-Table Reloaded"
|
420 |
msgstr "WP-Table Reloaded"
|
421 |
|
422 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
423 |
msgid "Plugin deactivated successfully."
|
424 |
msgstr "Plugin erfolgreich deaktiviert."
|
425 |
|
426 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
427 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
428 |
msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
|
429 |
|
430 |
-
#: wp-table-reloaded-admin.php:
|
|
|
431 |
msgid "Enter Table Name"
|
432 |
msgstr "Tabellennamen eingeben"
|
433 |
|
434 |
-
#: wp-table-reloaded-admin.php:
|
|
|
435 |
msgid "Enter Description"
|
436 |
msgstr "Beschreibung eingeben"
|
437 |
|
438 |
-
#: wp-table-reloaded-admin.php:
|
|
|
439 |
msgid "Select Import Format"
|
440 |
msgstr "Import-Format wählen"
|
441 |
|
442 |
-
#: wp-table-reloaded-admin.php:
|
|
|
443 |
msgid "<small>(Only needed for CSV export.)</small>"
|
444 |
msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
|
445 |
|
446 |
-
#: wp-table-reloaded-admin.php:
|
|
|
447 |
msgid "Paste data with Table to Import"
|
448 |
msgstr "zu importierende Tabelle einfügen"
|
449 |
|
450 |
-
#: wp-table-reloaded-admin.php:
|
|
|
451 |
msgid "Import"
|
452 |
msgstr "Import"
|
453 |
|
454 |
-
#: wp-table-reloaded-admin.php:
|
455 |
-
|
456 |
-
msgstr "Hier kann eine Tabelle exportiert werden. Einfach Tabelle, gewünschtes Export-Format und Trennzeichen (nur für CSV) auswählen.<br/>Du kannst wählen, ob du die Export-Datei downloaden oder anzeigen lassen möchtest."
|
457 |
-
|
458 |
-
#: wp-table-reloaded-admin.php:1239
|
459 |
msgid "Download file"
|
460 |
msgstr "Datei downloaden"
|
461 |
|
462 |
-
#: wp-table-reloaded-admin.php:
|
|
|
463 |
msgid "Yes, I want to download the export file."
|
464 |
msgstr "Ja, ich möchte die Export-Datei downloaden."
|
465 |
|
466 |
-
#: wp-table-reloaded-admin.php:
|
|
|
467 |
msgid "Frontend Options"
|
468 |
msgstr "Darstellungsoptionen"
|
469 |
|
470 |
-
#: wp-table-reloaded-admin.php:
|
471 |
-
|
472 |
-
msgstr "Verwaltungseinstellungen"
|
473 |
-
|
474 |
-
#: wp-table-reloaded-admin.php:1323
|
475 |
msgid "Manually Uninstall Plugin"
|
476 |
msgstr "Manuelle Plugin-Deinstallation"
|
477 |
|
478 |
-
#: wp-table-reloaded-admin.php:
|
479 |
-
|
480 |
-
msgstr "Hier kannst du das Plugin deinstallieren. Dies <strong>löscht</strong> alle Tabellen, Daten, Einstellungen, etc. die zum Plugin gehören, inklusive aller angelegter oder importierter Tabellen! Sei hiermit vorsichtig und klicke die Schaltfläche nur, wenn du weißt, was du tust!"
|
481 |
-
|
482 |
-
#: wp-table-reloaded-admin.php:1345
|
483 |
msgid "Plugin Purpose"
|
484 |
msgstr "Zweck des Plugins"
|
485 |
|
486 |
-
#: wp-table-reloaded-admin.php:
|
|
|
487 |
msgid "Usage"
|
488 |
msgstr "Benutzung"
|
489 |
|
490 |
-
#: wp-table-reloaded-admin.php:
|
|
|
491 |
msgid "More Information and Documentation"
|
492 |
msgstr "Weitere Informationen und Dokumentation"
|
493 |
|
494 |
-
#: wp-table-reloaded-admin.php:
|
|
|
495 |
msgid "Author and Licence"
|
496 |
msgstr "Autor und Lizenz"
|
497 |
|
498 |
-
#: wp-table-reloaded-admin.php:
|
|
|
499 |
msgid "Credits and Thanks"
|
500 |
msgstr "Danksagungen"
|
501 |
|
502 |
-
#: wp-table-reloaded-admin.php:
|
503 |
#, php-format
|
|
|
504 |
msgid "Swap rows %s and %s"
|
505 |
msgstr "Tausche die Zeilen %s und %s"
|
506 |
|
507 |
-
#: wp-table-reloaded-admin.php:
|
508 |
#, php-format
|
|
|
509 |
msgid "Swap columns %s and %s"
|
510 |
msgstr "Tausche die Spalten %s und %s"
|
511 |
|
512 |
-
#: wp-table-reloaded-admin.php:
|
|
|
513 |
msgid "Import from original wp-Table plugin"
|
514 |
msgstr "Import von Tabellen aus dem Plugin wp-Table"
|
515 |
|
516 |
-
#: wp-table-reloaded-admin.php:
|
|
|
517 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
518 |
msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
|
519 |
|
520 |
-
#: wp-table-reloaded-admin.php:
|
|
|
521 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
522 |
msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
|
523 |
|
524 |
-
#: wp-table-reloaded-admin.php:
|
|
|
525 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
526 |
msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
|
527 |
|
528 |
-
#: wp-table-reloaded-admin.php:
|
|
|
529 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
530 |
msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
|
531 |
|
532 |
-
#: wp-table-reloaded-admin.php:
|
|
|
533 |
msgid "the submitters of translations:"
|
534 |
msgstr "die Übersetzer:"
|
535 |
|
536 |
-
#: wp-table-reloaded-admin.php:
|
|
|
537 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
538 |
msgstr "Albanisch (danke an <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
539 |
|
540 |
-
#: wp-table-reloaded-admin.php:
|
|
|
541 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
542 |
msgstr "Französisch (danke an <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
543 |
|
544 |
-
#: wp-table-reloaded-admin.php:
|
|
|
545 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
546 |
msgstr "Russisch (danke an <a href=\"http://wp-skins.info/\">Truper</a>)"
|
547 |
|
548 |
-
#: wp-table-reloaded-admin.php:
|
|
|
549 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
550 |
msgstr "Schwedisch (danke an <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
551 |
|
552 |
-
#: wp-table-reloaded-admin.php:
|
|
|
553 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
554 |
msgstr "Türkisch (danke an <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
555 |
|
556 |
-
#: wp-table-reloaded-admin.php:
|
|
|
557 |
msgid "Add custom CSS?"
|
558 |
msgstr "Eigenes CSS hinzufügen?"
|
559 |
|
560 |
-
#: wp-table-reloaded-admin.php:
|
|
|
561 |
msgid "Enter custom CSS"
|
562 |
msgstr "Eigenes CSS eingeben"
|
563 |
|
564 |
-
#: wp-table-reloaded-admin.php:
|
565 |
-
|
566 |
-
msgid "Edit Table \"%s\""
|
567 |
-
msgstr "Bearbeite Tabelle \"%s\""
|
568 |
-
|
569 |
-
#: wp-table-reloaded-admin.php:813
|
570 |
-
#, php-format
|
571 |
-
msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
|
572 |
-
msgstr "Wenn du diese Tabelle in einem Beitrag, auf einer Seite oder in einem Text-Widget anzeigen möchtest, für dort einfach den Shortcode <strong>[table id=%s /]</strong> ein."
|
573 |
-
|
574 |
-
#: wp-table-reloaded-admin.php:914
|
575 |
msgid "Data Manipulation"
|
576 |
msgstr "Bearbeitungsfunktionen"
|
577 |
|
578 |
-
#: wp-table-reloaded-admin.php:
|
|
|
579 |
msgid "Insert Link"
|
580 |
msgstr "Link einfügen"
|
581 |
|
582 |
-
#: wp-table-reloaded-admin.php:
|
|
|
583 |
msgid "Insert Image"
|
584 |
msgstr "Bild einfügen"
|
585 |
|
586 |
-
#: wp-table-reloaded-admin.php:
|
|
|
587 |
msgid "URL of link to insert"
|
588 |
msgstr "URL des einzufügenden Links"
|
589 |
|
590 |
-
#: wp-table-reloaded-admin.php:
|
|
|
591 |
msgid "Text of link"
|
592 |
msgstr "Text des Links"
|
593 |
|
594 |
-
#: wp-table-reloaded-admin.php:
|
|
|
595 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
596 |
msgstr "Um den folgenden Link in eine Tabellenzelle einzufügen, klicke einfach auf diese."
|
597 |
|
598 |
-
#: wp-table-reloaded-admin.php:1686
|
599 |
-
msgid "URL of image to insert"
|
600 |
-
msgstr "URL des einzufügenden Bildes"
|
601 |
-
|
602 |
-
#: wp-table-reloaded-admin.php:1688
|
603 |
-
msgid "To insert the following image into a cell, just click the cell after closing this dialog."
|
604 |
-
msgstr "Um das folgende Bild in eine Tabellenzelle einzufügen, klicke einfach auf diese."
|
605 |
-
|
606 |
-
#: wp-table-reloaded-admin.php:1039
|
607 |
-
msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
|
608 |
-
msgstr "Hier kannst du eine Tabelle aus existierenden Daten importieren.<br/>Dies kann eine CSV-, XML- oder HTML-Datei sein. Sie benötigt jedoch eine bestimmte Struktur. Bitte lies bei Problemen die Dokumentation."
|
609 |
-
|
610 |
#: php/wp-table-reloaded-export.class.php:38
|
|
|
611 |
msgid ". (dot)"
|
612 |
msgstr ". (Punkt)"
|
613 |
|
614 |
#: php/wp-table-reloaded-export.class.php:39
|
|
|
615 |
msgid "| (pipe)"
|
616 |
msgstr "| (Strich)"
|
617 |
|
618 |
-
#: wp-table-reloaded-admin.php:
|
|
|
619 |
msgid "Table sorted successfully."
|
620 |
msgstr "Tabelle erfolgreich sortiert."
|
621 |
|
622 |
-
#: wp-table-reloaded-admin.php:
|
|
|
623 |
msgid "Table copied successfully."
|
624 |
msgid_plural "Tables copied successfully."
|
625 |
msgstr[0] "Tabelle erfolgreich kopiert."
|
626 |
msgstr[1] "Tabellen erfolgreich kopiert."
|
627 |
|
628 |
-
#: wp-table-reloaded-admin.php:
|
|
|
629 |
msgid "Table deleted successfully."
|
630 |
msgid_plural "Tables deleted successfully."
|
631 |
msgstr[0] "Tabelle erfolgreich gelöscht."
|
632 |
msgstr[1] "Tabellen erfolgreich gelöscht."
|
633 |
|
634 |
-
#: wp-table-reloaded-admin.php:
|
|
|
635 |
msgid "Table imported successfully."
|
636 |
msgid_plural "Tables imported successfully."
|
637 |
msgstr[0] "Tabelle erfolgreich importiert."
|
638 |
msgstr[1] "Tabellen erfolgreich importiert."
|
639 |
|
640 |
-
#: wp-table-reloaded-admin.php:
|
|
|
641 |
msgid "You did not select any tables!"
|
642 |
msgstr "Du hast keine Tabellen ausgewählt."
|
643 |
|
644 |
-
#: wp-table-reloaded-admin.php:
|
645 |
-
#: wp-table-reloaded-admin.php:
|
|
|
646 |
msgid "This is a list of all available tables."
|
647 |
msgstr "Dies ist eine Liste aller verfügbaren Tabellen."
|
648 |
|
649 |
-
#: wp-table-reloaded-admin.php:
|
|
|
650 |
msgid "You may insert a table into a post or page here."
|
651 |
msgstr "Hier kannst du eine Tabelle in einen Beitrag oder eine Seite einfügen."
|
652 |
|
653 |
-
#: wp-table-reloaded-admin.php:
|
|
|
654 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
655 |
msgstr "Klicke bei der einzufügenden Tabelle auf den Link \"Einfügen\", um den jeweiligen Shortcode in den Editor einzufügen (<strong>[table id=<ID_der_Tabelle> /]</strong>)."
|
656 |
|
657 |
-
#: wp-table-reloaded-admin.php:
|
|
|
658 |
msgid "Insert"
|
659 |
msgstr "Einfügen"
|
660 |
|
661 |
-
#: wp-table-reloaded-admin.php:
|
|
|
662 |
msgid "You may add, edit, copy or delete tables here."
|
663 |
msgstr "Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
|
664 |
|
665 |
-
#: wp-table-reloaded-admin.php:
|
|
|
666 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
667 |
msgstr "Um eine Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, nutze den Shortcode <strong>[table id=<ID_der_Tabelle> /]</strong> oder klicke in der Editer-Toolbar auf die Schaltfläche \"Tabelle\"."
|
668 |
|
669 |
-
#: wp-table-reloaded-admin.php:
|
670 |
-
#: wp-table-reloaded-admin.php:
|
|
|
671 |
msgid "Bulk actions:"
|
672 |
msgstr "Massenbearbeitung:"
|
673 |
|
674 |
-
#: wp-table-reloaded-admin.php:
|
|
|
675 |
msgid "Copy Tables"
|
676 |
msgstr "Tabellen kopieren"
|
677 |
|
678 |
-
#: wp-table-reloaded-admin.php:
|
|
|
679 |
msgid "Delete Tables"
|
680 |
msgstr "Tabellen löschen"
|
681 |
|
682 |
-
#: wp-table-reloaded-admin.php:
|
683 |
-
#: wp-table-reloaded-admin.php:
|
684 |
-
#: wp-table-reloaded-admin.php:
|
685 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
686 |
msgid "Hide"
|
687 |
msgstr "Ausblenden"
|
688 |
|
689 |
-
#: wp-table-reloaded-admin.php:
|
690 |
-
#: wp-table-reloaded-admin.php:
|
691 |
-
#: wp-table-reloaded-admin.php:
|
692 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
693 |
msgid "Expand"
|
694 |
msgstr "Erweitern"
|
695 |
|
696 |
-
#: wp-table-reloaded-admin.php:
|
|
|
697 |
msgid "ascending"
|
698 |
msgstr "aufsteigender"
|
699 |
|
700 |
-
#: wp-table-reloaded-admin.php:
|
|
|
701 |
msgid "descending"
|
702 |
msgstr "absteigender"
|
703 |
|
704 |
-
#: wp-table-reloaded-admin.php:
|
705 |
#, php-format
|
|
|
706 |
msgid "Sort table by column %s in %s order"
|
707 |
msgstr "Sortiere die Tabelle nach Spalte %s in %s Reihenfolge"
|
708 |
|
709 |
-
#: wp-table-reloaded-admin.php:
|
|
|
710 |
msgid "Sort"
|
711 |
msgstr "Sortieren"
|
712 |
|
713 |
-
#: wp-table-reloaded-admin.php:
|
|
|
714 |
msgid "Import Tables"
|
715 |
msgstr "Tabellen importieren"
|
716 |
|
717 |
-
#: wp-table-reloaded-admin.php:
|
|
|
718 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
719 |
msgstr "Ja, lade das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. Dieses macht angezeigte Tabellen durch den Besucher sortierbar (kann für jede Tabelle separat in ihren Optionen aktiviert werden)."
|
720 |
|
721 |
-
#: wp-table-reloaded-admin.php:
|
722 |
-
msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
|
723 |
-
msgstr "Ja, lade folgenden CSS-Code auf meiner Website in einem [style]-HTML-Tag."
|
724 |
-
|
725 |
-
#: wp-table-reloaded-admin.php:1293
|
726 |
-
#, php-format
|
727 |
-
msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
|
728 |
-
msgstr "(Du kannst eine bessere Seitenladegeschwindigkeit erreichen, wenn du den CSS-Code stattdessen in die Datei \"style.css\" (%s) deines Themes einbaust.)"
|
729 |
-
|
730 |
-
#: wp-table-reloaded-admin.php:1294
|
731 |
#, php-format
|
|
|
732 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
733 |
msgstr "Besuche die <a href=\"%s\">Plugin-Webseite</a> für Style-Beispiele oder verwende eine der folgenden: <a href=\"%s\">Beispiel-Datei 1</a> <a href=\"%s\">Beispiel-Datei 2</a>"
|
734 |
|
735 |
-
#: wp-table-reloaded-admin.php:
|
|
|
736 |
msgid "Just copy the contents of a file into the textarea."
|
737 |
msgstr "Kopiere einfach den Inhalt einer der Dateien in das Textfeld."
|
738 |
|
739 |
-
#: wp-table-reloaded-admin.php:
|
|
|
740 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
741 |
msgstr "Ja, alles deinstallieren, wenn das Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst unmittelbar vor dem Deaktivieren des Plugins auf der WordPress-Plugin-Seite ankreuzen!"
|
742 |
|
743 |
-
#: wp-table-reloaded-admin.php:
|
744 |
-
|
745 |
-
msgstr "<small>(Diese Einstellung hat keinen Einfluss auf die Schaltfläche \"Plugin WP-Table Reloaded deinstallieren\" unten!)</small>"
|
746 |
-
|
747 |
-
#: wp-table-reloaded-admin.php:1347
|
748 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
749 |
msgstr "Dieses Plugin ermöglicht dir das Erstellen und Verwalten von Tabellen im Admin-Bereich von WordPress."
|
750 |
|
751 |
-
#: wp-table-reloaded-admin.php:
|
|
|
752 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
753 |
msgstr "Diese Tabellen können Zeichenketten, Zahlen und sogar HTML (z.B. für Bilder oder Links) enthalten."
|
754 |
|
755 |
-
#: wp-table-reloaded-admin.php:
|
|
|
756 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
757 |
msgstr "Du kannst die Tabellen dann mit Hilfe eines Shortcodes in deinen Beiträgen, auf deinen Seiten oder in Text-Widgets anzeigen."
|
758 |
|
759 |
-
#: wp-table-reloaded-admin.php:
|
|
|
760 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
761 |
msgstr "Wenn du eine Tabelle an einer anderen Stelle in deinem Theme anzeigen möchtest, kannst du eine Template Tag Function nutzen."
|
762 |
|
763 |
-
#: wp-table-reloaded-admin.php:
|
|
|
764 |
msgid "At first you should add or import a table."
|
765 |
msgstr "Am Anfang solltest du eine neue Tabelle anlegen oder importieren."
|
766 |
|
767 |
-
#: wp-table-reloaded-admin.php:
|
|
|
768 |
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."
|
769 |
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."
|
770 |
|
771 |
-
#: wp-table-reloaded-admin.php:
|
|
|
772 |
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."
|
773 |
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."
|
774 |
|
775 |
-
#: wp-table-reloaded-admin.php:
|
|
|
776 |
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."
|
777 |
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."
|
778 |
|
779 |
-
#: wp-table-reloaded-admin.php:
|
|
|
780 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
781 |
-
msgstr "Um die Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, füge diesen einfach den Shortcode [table id=<ID_der_Tabelle
|
782 |
|
783 |
-
#: wp-table-reloaded-admin.php:
|
|
|
784 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
785 |
msgstr "Du kannst die gewünschte Tabelle auch aus einer Liste auswählen (nach einem Klick auf den Button \"Tabelle\" in der Toolbar des Editors) und der entsprechende Shortcode wird für automatisch eingefügt."
|
786 |
|
787 |
-
#: wp-table-reloaded-admin.php:
|
|
|
788 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
789 |
msgstr "Du kannst eine Tabelle auch mittels CSS stylen. Beispieldateien findest du auf der Plugin-Webseite. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Zusätzlich hat jede Tabelle die Klasse \"wp-table-reloaded-id-<ID_der_Tabelle>\"."
|
790 |
|
791 |
-
#: wp-table-reloaded-admin.php:
|
|
|
792 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
793 |
msgstr "Du kannst die Klassen \"column-<Nummer>\" und \"row-<Nummer>\" verwenden, um Zeilen und Spalten einzeln zu stylen. Verwende diese Klassen z.B. für verschiedene Spaltenbreiten oder die Textausrichtung."
|
794 |
|
795 |
-
#: wp-table-reloaded-admin.php:
|
|
|
796 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
797 |
msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a> oder auf der Plugin-Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> erhältlich."
|
798 |
|
799 |
-
#: wp-table-reloaded-admin.php:
|
800 |
-
#: wp-table-reloaded-admin.php:
|
|
|
801 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
802 |
msgstr "Lies die <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">Dokumentation</a> oder bitte um <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">Unterstützung</a>."
|
803 |
|
804 |
-
#: wp-table-reloaded-admin.php:
|
805 |
-
|
806 |
-
msgstr "Wenn dir das Plugin gefällt, ziehe doch eine <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>Spende</strong></a> in Betracht und bewerte das Plugin im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
807 |
-
|
808 |
-
#: wp-table-reloaded-admin.php:1368
|
809 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
810 |
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!"
|
811 |
|
812 |
-
#: wp-table-reloaded-admin.php:
|
|
|
813 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
814 |
msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
|
815 |
|
816 |
-
#: wp-table-reloaded-admin.php:
|
|
|
817 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
818 |
msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> und <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
819 |
|
820 |
-
#: wp-table-reloaded-admin.php:
|
|
|
821 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
822 |
msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
|
823 |
|
824 |
-
#: wp-table-reloaded-admin.php:
|
|
|
825 |
msgid "Debug and Version Information"
|
826 |
msgstr "Debug- und Versions-Informationen"
|
827 |
|
828 |
-
#: wp-table-reloaded-admin.php:
|
|
|
829 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
830 |
msgstr "Du nutzt folgende Software-Versionen. <strong>Bitte gib diese Informationen in Bug-Reports an.</strong>"
|
831 |
|
832 |
-
#: wp-table-reloaded-admin.php:
|
|
|
833 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
834 |
msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a>."
|
835 |
|
836 |
-
#: wp-table-reloaded-admin.php:
|
837 |
-
|
838 |
-
msgstr "''alt''-Text des Bildes"
|
839 |
-
|
840 |
-
#: wp-table-reloaded-admin.php:1689
|
841 |
msgid "Do you want to copy the selected tables?"
|
842 |
msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
|
843 |
|
844 |
-
#: wp-table-reloaded-admin.php:
|
|
|
845 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
846 |
msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
|
847 |
|
848 |
-
#: wp-table-reloaded-admin.php:
|
|
|
849 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
850 |
msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
|
851 |
|
852 |
-
#: wp-table-reloaded-admin.php:
|
|
|
853 |
msgid "Table"
|
854 |
msgstr "Tabelle"
|
855 |
|
856 |
-
#: wp-table-reloaded-admin.php:
|
|
|
857 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
858 |
msgstr "Tschechisch (danke an <a href=\"http://separatista.net/\">Separatista</a>)"
|
859 |
|
860 |
-
#: wp-table-reloaded-admin.php:
|
|
|
861 |
msgid "Polish (thanks to Alex Kortan)"
|
862 |
msgstr "Polnisch (danke an Alex Kortan)"
|
863 |
|
864 |
-
#: wp-table-reloaded-admin.php:
|
865 |
#, php-format
|
|
|
866 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
867 |
msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
|
868 |
|
869 |
-
#: wp-table-reloaded-admin.php:
|
870 |
#, php-format
|
|
|
871 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
872 |
msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
|
873 |
|
874 |
-
#: wp-table-reloaded-admin.php:
|
|
|
875 |
msgid "Row added successfully."
|
876 |
msgid_plural "Rows added successfully."
|
877 |
msgstr[0] "Zeile erfolgreich angefügt."
|
878 |
msgstr[1] "Zeilen erfolgreich angefügt."
|
879 |
|
880 |
-
#: wp-table-reloaded-admin.php:
|
|
|
881 |
msgid "Column added successfully."
|
882 |
msgid_plural "Columns added successfully."
|
883 |
msgstr[0] "Spalte erfolgreich angefügt."
|
884 |
msgstr[1] "Spalten erfolgreich angefügt."
|
885 |
|
886 |
-
#: wp-table-reloaded-admin.php:
|
887 |
-
#: wp-table-reloaded-admin.php:
|
888 |
#, php-format
|
|
|
889 |
msgid "from %s"
|
890 |
msgstr "von %s"
|
891 |
|
892 |
-
#: wp-table-reloaded-admin.php:
|
893 |
#, php-format
|
|
|
894 |
msgid "Table %s (%s) replaced successfully."
|
895 |
msgstr "Tabelle %s (%s) erfolgreich ersetzt."
|
896 |
|
897 |
-
#: wp-table-reloaded-admin.php:
|
|
|
898 |
msgid "Table ID"
|
899 |
msgstr "Tabellen-ID"
|
900 |
|
901 |
-
#: wp-table-reloaded-admin.php:
|
902 |
#, php-format
|
|
|
903 |
msgid "Add %s row(s)"
|
904 |
msgstr "%s Zeile(n)"
|
905 |
|
906 |
-
#: wp-table-reloaded-admin.php:
|
907 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
908 |
msgid "Add"
|
909 |
msgstr "hinzufügen"
|
910 |
|
911 |
-
#: wp-table-reloaded-admin.php:
|
912 |
#, php-format
|
|
|
913 |
msgid "Add %s column(s)"
|
914 |
msgstr "%s Spalte(n)"
|
915 |
|
916 |
-
#: wp-table-reloaded-admin.php:
|
|
|
917 |
msgid "Add or Replace Table?"
|
918 |
msgstr "Tabelle hinzufügen oder ersetzen?"
|
919 |
|
920 |
-
#: wp-table-reloaded-admin.php:
|
|
|
921 |
msgid "Add as new Table"
|
922 |
msgstr "als neue Tabelle hinzufügen"
|
923 |
|
924 |
-
#: wp-table-reloaded-admin.php:
|
|
|
925 |
msgid "Replace existing Table"
|
926 |
msgstr "bereits existierende Tabelle ersetzen"
|
927 |
|
928 |
-
#: wp-table-reloaded-admin.php:
|
|
|
929 |
msgid "Select existing Table to Replace"
|
930 |
msgstr "zu ersetzende Tabelle auswählen"
|
931 |
|
932 |
-
#: wp-table-reloaded-admin.php:
|
|
|
933 |
msgid "Select source for import"
|
934 |
msgstr "Import-Art auswählen"
|
935 |
|
936 |
-
#: wp-table-reloaded-admin.php:
|
|
|
937 |
msgid "File upload"
|
938 |
msgstr "Datei hochladen"
|
939 |
|
940 |
-
#: wp-table-reloaded-admin.php:
|
|
|
941 |
msgid "URL"
|
942 |
msgstr "Download von URL"
|
943 |
|
944 |
-
#: wp-table-reloaded-admin.php:
|
|
|
945 |
msgid "Manual input"
|
946 |
msgstr "Manuelle Eingabe"
|
947 |
|
948 |
-
#: wp-table-reloaded-admin.php:
|
|
|
949 |
msgid "File on server"
|
950 |
msgstr "Datei auf Server"
|
951 |
|
952 |
-
#: wp-table-reloaded-admin.php:
|
|
|
953 |
msgid "URL to import table from"
|
954 |
msgstr "URL der zu importierenden Tabelle"
|
955 |
|
956 |
-
#: wp-table-reloaded-admin.php:
|
|
|
957 |
msgid "Path to file on server"
|
958 |
msgstr "Pfad zu Datei auf Webserver"
|
959 |
|
960 |
-
#: wp-table-reloaded-admin.php:
|
|
|
961 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
962 |
msgstr "Brasilianisch/Portugiesisch (danke an <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
963 |
|
964 |
-
#: wp-table-reloaded-admin.php:
|
|
|
965 |
msgid "Do you really want to change the ID of the table?"
|
966 |
msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
|
967 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: \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-Poedit-Language: \n"
|
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;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: wp-table-reloaded-admin.php:208
|
23 |
#, php-format
|
24 |
+
#@ wp-table-reloaded
|
25 |
msgid "Table \"%s\" added successfully."
|
26 |
msgstr "Tabelle \"%s\" erfolgreich angelegt."
|
27 |
|
28 |
+
#: wp-table-reloaded-admin.php:241
|
29 |
+
#@ wp-table-reloaded
|
30 |
msgid "Table edited successfully."
|
31 |
msgstr "Tabelle erfolgreich bearbeitet."
|
32 |
|
33 |
+
#: wp-table-reloaded-admin.php:279
|
34 |
+
#@ wp-table-reloaded
|
35 |
msgid "Rows swapped successfully."
|
36 |
msgstr "Zeilen erfolgreich getauscht."
|
37 |
|
38 |
+
#: wp-table-reloaded-admin.php:300
|
39 |
+
#@ wp-table-reloaded
|
40 |
msgid "Columns swapped successfully."
|
41 |
msgstr "Spalten erfolgreich getauscht."
|
42 |
|
43 |
+
#: wp-table-reloaded-admin.php:530
|
44 |
#, php-format
|
45 |
+
#@ wp-table-reloaded
|
46 |
msgid "Table \"%s\" copied successfully."
|
47 |
msgstr "Tabelle \"%s\" erfolgreich kopiert."
|
48 |
|
49 |
+
#: wp-table-reloaded-admin.php:546
|
50 |
#, php-format
|
51 |
+
#@ wp-table-reloaded
|
52 |
msgid "Table \"%s\" deleted successfully."
|
53 |
msgstr "Tabelle \"%s\" erfolgreich gelöscht."
|
54 |
|
55 |
+
#: wp-table-reloaded-admin.php:557
|
56 |
+
#@ wp-table-reloaded
|
57 |
msgid "Row deleted successfully."
|
58 |
msgstr "Zeile erfolgreich gelöscht."
|
59 |
|
60 |
+
#: wp-table-reloaded-admin.php:571
|
61 |
+
#@ wp-table-reloaded
|
62 |
msgid "Column deleted successfully."
|
63 |
msgstr "Spalte erfolgreich gelöscht."
|
64 |
|
65 |
+
#: wp-table-reloaded-admin.php:588
|
66 |
+
#@ wp-table-reloaded
|
67 |
msgid "Delete failed."
|
68 |
msgstr "Löschen fehlgeschlagen."
|
69 |
|
70 |
+
#: wp-table-reloaded-admin.php:614
|
71 |
+
#@ wp-table-reloaded
|
72 |
msgid "Row inserted successfully."
|
73 |
msgstr "Zeile erfolgreich eingefügt."
|
74 |
|
75 |
+
#: wp-table-reloaded-admin.php:624
|
76 |
+
#@ wp-table-reloaded
|
77 |
msgid "Column inserted successfully."
|
78 |
msgstr "Spalte erfolgreich eingefügt."
|
79 |
|
80 |
+
#: wp-table-reloaded-admin.php:627
|
81 |
+
#@ wp-table-reloaded
|
82 |
msgid "Insert failed."
|
83 |
msgstr "Einfügen fehlgeschlagen."
|
84 |
|
85 |
+
#: wp-table-reloaded-admin.php:701
|
86 |
+
#: wp-table-reloaded-admin.php:739
|
87 |
+
#@ wp-table-reloaded
|
88 |
msgid "Table imported successfully."
|
89 |
msgstr "Tabelle erfolgreich importiert."
|
90 |
|
91 |
+
#: wp-table-reloaded-admin.php:766
|
92 |
#, php-format
|
93 |
+
#@ wp-table-reloaded
|
94 |
msgid "Table \"%s\" exported successfully."
|
95 |
msgstr "Tabelle \"%s\" erfolgreich exportiert."
|
96 |
|
97 |
+
#: wp-table-reloaded-admin.php:797
|
98 |
+
#@ wp-table-reloaded
|
99 |
msgid "Options saved successfully."
|
100 |
msgstr "Einstellungen erfolgreich gespeichert."
|
101 |
|
102 |
+
#: wp-table-reloaded-admin.php:833
|
103 |
+
#: wp-table-reloaded-admin.php:958
|
104 |
+
#@ wp-table-reloaded
|
105 |
msgid "List of Tables"
|
106 |
msgstr "Liste der Tabellen"
|
107 |
|
108 |
+
#: wp-table-reloaded-admin.php:846
|
109 |
+
#: wp-table-reloaded-admin.php:854
|
110 |
+
#: wp-table-reloaded-admin.php:973
|
111 |
+
#: wp-table-reloaded-admin.php:982
|
112 |
+
#: wp-table-reloaded-admin.php:1567
|
113 |
+
#: wp-table-reloaded-admin.php:1576
|
114 |
+
#@ wp-table-reloaded
|
115 |
msgid "ID"
|
116 |
msgstr "ID"
|
117 |
|
118 |
+
#: wp-table-reloaded-admin.php:847
|
119 |
+
#: wp-table-reloaded-admin.php:855
|
120 |
+
#: wp-table-reloaded-admin.php:974
|
121 |
+
#: wp-table-reloaded-admin.php:983
|
122 |
+
#: wp-table-reloaded-admin.php:1067
|
123 |
+
#: wp-table-reloaded-admin.php:1121
|
124 |
+
#: wp-table-reloaded-admin.php:1568
|
125 |
+
#: wp-table-reloaded-admin.php:1577
|
126 |
+
#@ wp-table-reloaded
|
127 |
msgid "Table Name"
|
128 |
msgstr "Name der Tabelle"
|
129 |
|
130 |
+
#: wp-table-reloaded-admin.php:848
|
131 |
+
#: wp-table-reloaded-admin.php:856
|
132 |
+
#: wp-table-reloaded-admin.php:975
|
133 |
+
#: wp-table-reloaded-admin.php:984
|
134 |
+
#: wp-table-reloaded-admin.php:1071
|
135 |
+
#: wp-table-reloaded-admin.php:1125
|
136 |
+
#: wp-table-reloaded-admin.php:1569
|
137 |
+
#: wp-table-reloaded-admin.php:1578
|
138 |
+
#@ wp-table-reloaded
|
139 |
msgid "Description"
|
140 |
msgstr "Beschreibung"
|
141 |
|
142 |
+
#: wp-table-reloaded-admin.php:849
|
143 |
+
#: wp-table-reloaded-admin.php:857
|
144 |
+
#: wp-table-reloaded-admin.php:1414
|
145 |
+
#: wp-table-reloaded-admin.php:1570
|
146 |
+
#: wp-table-reloaded-admin.php:1579
|
147 |
+
#@ wp-table-reloaded
|
148 |
msgid "Action"
|
149 |
msgstr "Aktion"
|
150 |
|
151 |
+
#: wp-table-reloaded-admin.php:1017
|
152 |
+
#@ wp-table-reloaded
|
153 |
msgid "Edit"
|
154 |
msgstr "Bearbeiten"
|
155 |
|
156 |
+
#: wp-table-reloaded-admin.php:2267
|
157 |
+
#@ wp-table-reloaded
|
158 |
msgid "Do you want to copy this table?"
|
159 |
msgstr "Möchtest du diese Tabelle kopieren?"
|
160 |
|
161 |
+
#: wp-table-reloaded-admin.php:1020
|
162 |
+
#@ wp-table-reloaded
|
163 |
msgid "Copy"
|
164 |
msgstr "Kopieren"
|
165 |
|
166 |
+
#: wp-table-reloaded-admin.php:1021
|
167 |
+
#@ wp-table-reloaded
|
168 |
msgid "Export"
|
169 |
msgstr "Exportieren"
|
170 |
|
171 |
+
#: wp-table-reloaded-admin.php:2268
|
172 |
+
#@ wp-table-reloaded
|
173 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
174 |
msgstr "Die gesamte Tabelle und alle Inhalte werden gelöscht. Möchtest du dies wirklich?"
|
175 |
|
176 |
+
#: wp-table-reloaded-admin.php:1022
|
177 |
+
#@ wp-table-reloaded
|
178 |
msgid "Delete"
|
179 |
msgstr "Löschen"
|
180 |
|
181 |
+
#: wp-table-reloaded-admin.php:886
|
182 |
+
#: wp-table-reloaded-admin.php:1045
|
183 |
+
#: wp-table-reloaded-admin.php:1699
|
184 |
+
#@ wp-table-reloaded
|
185 |
msgid "No tables found."
|
186 |
msgstr "Keine Tabellen gefunden."
|
187 |
|
188 |
+
#: wp-table-reloaded-admin.php:1045
|
189 |
+
#: wp-table-reloaded-admin.php:1699
|
190 |
#, php-format
|
191 |
+
#@ wp-table-reloaded
|
192 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
193 |
msgstr "Du kannst eine <a href=\"%s\">anlegen</a> oder <a href=\"%s\">importieren</a>!"
|
194 |
|
195 |
+
#: wp-table-reloaded-admin.php:1055
|
196 |
+
#: wp-table-reloaded-admin.php:1902
|
197 |
+
#@ wp-table-reloaded
|
198 |
msgid "Add new Table"
|
199 |
msgstr "Neue Tabelle anlegen"
|
200 |
|
201 |
+
#: wp-table-reloaded-admin.php:1075
|
202 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
203 |
msgid "Number of Rows"
|
204 |
msgstr "Anzahl Zeilen"
|
205 |
|
206 |
+
#: wp-table-reloaded-admin.php:1079
|
207 |
+
#@ wp-table-reloaded
|
208 |
msgid "Number of Columns"
|
209 |
msgstr "Anzahl Spalten"
|
210 |
|
211 |
+
#: wp-table-reloaded-admin.php:1086
|
212 |
+
#@ wp-table-reloaded
|
213 |
msgid "Add Table"
|
214 |
msgstr "Tabelle anlegen"
|
215 |
|
216 |
+
#: wp-table-reloaded-admin.php:1105
|
217 |
+
#@ wp-table-reloaded
|
218 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
219 |
msgstr "Hier kannst du die Inhalte der Tabelle bearbeiten. Außerdem können Zeilen oder Spalten hinzugefügt, gelöscht oder getauscht werden."
|
220 |
|
221 |
+
#: wp-table-reloaded-admin.php:1113
|
222 |
+
#@ wp-table-reloaded
|
223 |
msgid "Table Information"
|
224 |
msgstr "Informationen über die Tabelle"
|
225 |
|
226 |
+
#: wp-table-reloaded-admin.php:1149
|
227 |
+
#@ wp-table-reloaded
|
228 |
msgid "Table Contents"
|
229 |
msgstr "Inhalte der Tabelle"
|
230 |
|
231 |
+
#: wp-table-reloaded-admin.php:1190
|
232 |
+
#@ wp-table-reloaded
|
233 |
msgid "Insert Row"
|
234 |
msgstr "Zeile einfügen"
|
235 |
|
236 |
+
#: wp-table-reloaded-admin.php:2269
|
237 |
+
#@ wp-table-reloaded
|
238 |
msgid "Do you really want to delete this row?"
|
239 |
msgstr "Möchtest du diese Zeile wirklich löschen?"
|
240 |
|
241 |
+
#: wp-table-reloaded-admin.php:1192
|
242 |
+
#@ wp-table-reloaded
|
243 |
msgid "Delete Row"
|
244 |
msgstr "Zeile löschen"
|
245 |
|
246 |
+
#: wp-table-reloaded-admin.php:1206
|
247 |
+
#@ wp-table-reloaded
|
248 |
msgid "Insert Column"
|
249 |
msgstr "Spalte einfügen"
|
250 |
|
251 |
+
#: wp-table-reloaded-admin.php:2270
|
252 |
+
#@ wp-table-reloaded
|
253 |
msgid "Do you really want to delete this column?"
|
254 |
msgstr "Möchtest du diese Spalte wirklich löschen?"
|
255 |
|
256 |
+
#: wp-table-reloaded-admin.php:1208
|
257 |
+
#@ wp-table-reloaded
|
258 |
msgid "Delete Column"
|
259 |
msgstr "Spalte löschen"
|
260 |
|
261 |
+
#: wp-table-reloaded-admin.php:1262
|
262 |
+
#: wp-table-reloaded-admin.php:1280
|
263 |
+
#@ wp-table-reloaded
|
264 |
msgid "Swap"
|
265 |
msgstr "Tauschen"
|
266 |
|
267 |
+
#: wp-table-reloaded-admin.php:1362
|
268 |
+
#@ wp-table-reloaded
|
269 |
msgid "Table Settings"
|
270 |
msgstr "Einstellungen zur Tabelle"
|
271 |
|
272 |
+
#: wp-table-reloaded-admin.php:1364
|
273 |
+
#@ wp-table-reloaded
|
274 |
msgid "These settings will only be used for this table."
|
275 |
msgstr "Diese Einstellungen gelten nur für diese Tabelle."
|
276 |
|
277 |
+
#: wp-table-reloaded-admin.php:1367
|
278 |
+
#@ wp-table-reloaded
|
279 |
msgid "Alternating row colors"
|
280 |
msgstr "alternierende Zeilenfarben"
|
281 |
|
282 |
+
#: wp-table-reloaded-admin.php:1368
|
283 |
+
#@ wp-table-reloaded
|
284 |
msgid "Every second row will have an alternating background color."
|
285 |
msgstr "Jede zweite Zeile bekommt eine alternierende Hintergrundfarbe."
|
286 |
|
287 |
+
#: wp-table-reloaded-admin.php:1371
|
288 |
+
#@ wp-table-reloaded
|
289 |
msgid "Use Table Headline"
|
290 |
msgstr "Tabellenüberschrift"
|
291 |
|
292 |
+
#: wp-table-reloaded-admin.php:1375
|
293 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
294 |
msgid "Print Table Name"
|
295 |
msgstr "Tabellennamen ausgeben"
|
296 |
|
297 |
+
#: wp-table-reloaded-admin.php:1379
|
298 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
299 |
msgid "Print Table Description"
|
300 |
msgstr "Tabellenbeschreibung ausgeben"
|
301 |
|
302 |
+
#: wp-table-reloaded-admin.php:1380
|
303 |
+
#@ wp-table-reloaded
|
304 |
msgid "The Table Description will be written under the table."
|
305 |
msgstr "Die Tabellenbeschreibung wird unter die Tabelle geschrieben."
|
306 |
|
307 |
+
#: wp-table-reloaded-admin.php:1383
|
308 |
+
#@ wp-table-reloaded
|
309 |
msgid "Use Tablesorter"
|
310 |
msgstr "Tablesorter benutzen"
|
311 |
|
312 |
+
#: wp-table-reloaded-admin.php:1139
|
313 |
+
#: wp-table-reloaded-admin.php:1353
|
314 |
+
#: wp-table-reloaded-admin.php:1393
|
315 |
+
#: wp-table-reloaded-admin.php:1444
|
316 |
+
#@ wp-table-reloaded
|
|
|
317 |
msgid "Update Changes"
|
318 |
msgstr "Änderungen speichern"
|
319 |
|
320 |
+
#: wp-table-reloaded-admin.php:1140
|
321 |
+
#: wp-table-reloaded-admin.php:1354
|
322 |
+
#: wp-table-reloaded-admin.php:1394
|
323 |
+
#: wp-table-reloaded-admin.php:1445
|
324 |
+
#@ wp-table-reloaded
|
325 |
msgid "Save and go back"
|
326 |
msgstr "Speichern und zurück"
|
327 |
|
328 |
+
#: wp-table-reloaded-admin.php:1143
|
329 |
+
#: wp-table-reloaded-admin.php:1357
|
330 |
+
#: wp-table-reloaded-admin.php:1397
|
331 |
+
#: wp-table-reloaded-admin.php:1448
|
332 |
+
#@ wp-table-reloaded
|
333 |
msgid "Cancel"
|
334 |
msgstr "Abbrechen"
|
335 |
|
336 |
+
#: wp-table-reloaded-admin.php:1453
|
337 |
+
#@ wp-table-reloaded
|
338 |
msgid "Other actions"
|
339 |
msgstr "Andere Aktionen"
|
340 |
|
341 |
+
#: wp-table-reloaded-admin.php:1456
|
342 |
+
#@ wp-table-reloaded
|
343 |
msgid "Delete Table"
|
344 |
msgstr "Tabelle löschen"
|
345 |
|
346 |
+
#: wp-table-reloaded-admin.php:1457
|
347 |
+
#: wp-table-reloaded-admin.php:1688
|
348 |
+
#@ wp-table-reloaded
|
349 |
msgid "Export Table"
|
350 |
msgstr "Tabelle exportieren"
|
351 |
|
352 |
+
#: wp-table-reloaded-admin.php:1469
|
353 |
+
#: wp-table-reloaded-admin.php:1903
|
354 |
+
#@ wp-table-reloaded
|
355 |
msgid "Import a Table"
|
356 |
msgstr "Eine Tabelle importieren"
|
357 |
|
358 |
+
#: wp-table-reloaded-admin.php:1523
|
359 |
+
#@ wp-table-reloaded
|
360 |
msgid "Select File with Table to Import"
|
361 |
msgstr "Datei mit den zu importierenden Inhalten auswählen"
|
362 |
|
363 |
+
#: wp-table-reloaded-admin.php:1541
|
364 |
+
#@ wp-table-reloaded
|
365 |
msgid "Import Table"
|
366 |
msgstr "Tabelle importieren"
|
367 |
|
368 |
+
#: wp-table-reloaded-admin.php:1633
|
369 |
+
#: wp-table-reloaded-admin.php:1904
|
370 |
+
#@ wp-table-reloaded
|
371 |
msgid "Export a Table"
|
372 |
msgstr "Eine Tabelle exportieren"
|
373 |
|
374 |
+
#: wp-table-reloaded-admin.php:1647
|
375 |
+
#@ wp-table-reloaded
|
376 |
msgid "Select Table to Export"
|
377 |
msgstr "zu exportierende Tabelle auswählen"
|
378 |
|
379 |
+
#: wp-table-reloaded-admin.php:1662
|
380 |
+
#@ wp-table-reloaded
|
381 |
msgid "Select Export Format"
|
382 |
msgstr "gewünschtes Export-Format"
|
383 |
|
384 |
+
#: wp-table-reloaded-admin.php:1672
|
385 |
+
#@ wp-table-reloaded
|
386 |
msgid "Select Delimiter to use"
|
387 |
msgstr "zu verwendendes Trennzeichen"
|
388 |
|
389 |
+
#: wp-table-reloaded-admin.php:1708
|
390 |
+
#@ wp-table-reloaded
|
391 |
msgid "General Plugin Options"
|
392 |
msgstr "Plugin-Einstellungen"
|
393 |
|
394 |
+
#: wp-table-reloaded-admin.php:1758
|
395 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
396 |
msgid "Uninstall Plugin upon Deactivation?"
|
397 |
msgstr "Plugin beim Deaktivieren deinstallieren?"
|
398 |
|
399 |
+
#: wp-table-reloaded-admin.php:1724
|
400 |
+
#@ wp-table-reloaded
|
401 |
msgid "Enable Tablesorter-JavaScript?"
|
402 |
msgstr "Tablesorter-JavaScript aktivieren?"
|
403 |
|
404 |
+
#: wp-table-reloaded-admin.php:1772
|
405 |
+
#@ wp-table-reloaded
|
406 |
msgid "Save Options"
|
407 |
msgstr "Einstellungen speichern"
|
408 |
|
409 |
+
#: wp-table-reloaded-admin.php:2272
|
410 |
+
#@ wp-table-reloaded
|
411 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
412 |
msgstr "Möchtest du das Plugin wirklich deinstallieren und ALLE Daten löschen?"
|
413 |
|
414 |
+
#: wp-table-reloaded-admin.php:2273
|
415 |
+
#@ wp-table-reloaded
|
416 |
msgid "Are you really sure?"
|
417 |
msgstr "Bist du wirklich sicher?"
|
418 |
|
419 |
+
#: wp-table-reloaded-admin.php:1901
|
420 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
msgid "List Tables"
|
422 |
msgstr "Liste der Tabellen"
|
423 |
|
424 |
+
#: wp-table-reloaded-admin.php:1906
|
425 |
+
#@ wp-table-reloaded
|
426 |
msgid "Plugin Options"
|
427 |
msgstr "Plugin-Einstellungen"
|
428 |
|
429 |
+
#: wp-table-reloaded-admin.php:1907
|
430 |
+
#@ wp-table-reloaded
|
431 |
msgid "About the Plugin"
|
432 |
msgstr "Über das Plugin"
|
433 |
|
434 |
#: php/wp-table-reloaded-export.class.php:30
|
435 |
#: php/wp-table-reloaded-import.class.php:38
|
436 |
+
#@ wp-table-reloaded
|
437 |
msgid "CSV - Character-Separated Values"
|
438 |
msgstr "CSV - Character-Separated Values"
|
439 |
|
440 |
#: php/wp-table-reloaded-export.class.php:32
|
441 |
#: php/wp-table-reloaded-import.class.php:40
|
442 |
+
#@ wp-table-reloaded
|
443 |
msgid "XML - eXtended Markup Language"
|
444 |
msgstr "XML - eXtended Markup Language"
|
445 |
|
446 |
#: php/wp-table-reloaded-export.class.php:35
|
447 |
+
#@ wp-table-reloaded
|
448 |
msgid "; (semicolon)"
|
449 |
msgstr "; (Semikolon)"
|
450 |
|
451 |
#: php/wp-table-reloaded-export.class.php:36
|
452 |
+
#@ wp-table-reloaded
|
453 |
msgid ", (comma)"
|
454 |
msgstr ", (Komma)"
|
455 |
|
456 |
#: php/wp-table-reloaded-export.class.php:37
|
457 |
+
#@ wp-table-reloaded
|
458 |
msgid ": (colon)"
|
459 |
msgstr ": (Doppelpunkt)"
|
460 |
|
461 |
+
#: wp-table-reloaded-admin.php:1783
|
462 |
+
#@ wp-table-reloaded
|
463 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
464 |
msgstr "Plugin WP-Table Reloaded deinstallieren"
|
465 |
|
466 |
#: php/wp-table-reloaded-export.class.php:31
|
467 |
#: php/wp-table-reloaded-import.class.php:39
|
468 |
+
#@ wp-table-reloaded
|
469 |
msgid "HTML - Hypertext Markup Language"
|
470 |
msgstr "HTML - Hypertext Markup Language"
|
471 |
|
472 |
+
#: wp-table-reloaded-admin.php:470
|
473 |
+
#: wp-table-reloaded-admin.php:525
|
474 |
+
#@ wp-table-reloaded
|
475 |
msgid "Copy of"
|
476 |
msgstr "Kopie von"
|
477 |
|
478 |
+
#: wp-table-reloaded-admin.php:655
|
479 |
+
#: wp-table-reloaded-admin.php:664
|
480 |
+
#: wp-table-reloaded-admin.php:674
|
481 |
+
#@ wp-table-reloaded
|
482 |
msgid "Imported Table"
|
483 |
msgstr "Importierte Tabelle"
|
484 |
|
485 |
+
#: wp-table-reloaded-admin.php:665
|
486 |
+
#@ wp-table-reloaded
|
487 |
msgid "via form"
|
488 |
msgstr "via Eingabefeld"
|
489 |
|
490 |
+
#: wp-table-reloaded-admin.php:685
|
491 |
+
#: wp-table-reloaded-admin.php:716
|
492 |
+
#@ wp-table-reloaded
|
493 |
msgid "Table could not be imported."
|
494 |
msgstr "Tabelle konnte nicht importiert werden."
|
495 |
|
496 |
+
#: wp-table-reloaded-admin.php:815
|
497 |
+
#: wp-table-reloaded-admin.php:958
|
498 |
+
#@ wp-table-reloaded
|
499 |
msgid "WP-Table Reloaded"
|
500 |
msgstr "WP-Table Reloaded"
|
501 |
|
502 |
+
#: wp-table-reloaded-admin.php:816
|
503 |
+
#: wp-table-reloaded-admin.php:1967
|
504 |
+
#@ wp-table-reloaded
|
505 |
msgid "Plugin deactivated successfully."
|
506 |
msgstr "Plugin erfolgreich deaktiviert."
|
507 |
|
508 |
+
#: wp-table-reloaded-admin.php:817
|
509 |
+
#: wp-table-reloaded-admin.php:1967
|
510 |
+
#@ wp-table-reloaded
|
511 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
512 |
msgstr "Alle Tabellen, Daten und Einstellungen wurden gelöscht. Du kannst jetzt den Ordner des Plugins aus deinem WordPress Plugin-Ordner löschen."
|
513 |
|
514 |
+
#: wp-table-reloaded-admin.php:1068
|
515 |
+
#@ wp-table-reloaded
|
516 |
msgid "Enter Table Name"
|
517 |
msgstr "Tabellennamen eingeben"
|
518 |
|
519 |
+
#: wp-table-reloaded-admin.php:1072
|
520 |
+
#@ wp-table-reloaded
|
521 |
msgid "Enter Description"
|
522 |
msgstr "Beschreibung eingeben"
|
523 |
|
524 |
+
#: wp-table-reloaded-admin.php:1480
|
525 |
+
#@ wp-table-reloaded
|
526 |
msgid "Select Import Format"
|
527 |
msgstr "Import-Format wählen"
|
528 |
|
529 |
+
#: wp-table-reloaded-admin.php:1679
|
530 |
+
#@ wp-table-reloaded
|
531 |
msgid "<small>(Only needed for CSV export.)</small>"
|
532 |
msgstr "<small>(Nur für CSV-Export benötigt.)</small>"
|
533 |
|
534 |
+
#: wp-table-reloaded-admin.php:1535
|
535 |
+
#@ wp-table-reloaded
|
536 |
msgid "Paste data with Table to Import"
|
537 |
msgstr "zu importierende Tabelle einfügen"
|
538 |
|
539 |
+
#: wp-table-reloaded-admin.php:1600
|
540 |
+
#@ wp-table-reloaded
|
541 |
msgid "Import"
|
542 |
msgstr "Import"
|
543 |
|
544 |
+
#: wp-table-reloaded-admin.php:1682
|
545 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
546 |
msgid "Download file"
|
547 |
msgstr "Datei downloaden"
|
548 |
|
549 |
+
#: wp-table-reloaded-admin.php:1683
|
550 |
+
#@ wp-table-reloaded
|
551 |
msgid "Yes, I want to download the export file."
|
552 |
msgstr "Ja, ich möchte die Export-Datei downloaden."
|
553 |
|
554 |
+
#: wp-table-reloaded-admin.php:1720
|
555 |
+
#@ wp-table-reloaded
|
556 |
msgid "Frontend Options"
|
557 |
msgstr "Darstellungsoptionen"
|
558 |
|
559 |
+
#: wp-table-reloaded-admin.php:1778
|
560 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
561 |
msgid "Manually Uninstall Plugin"
|
562 |
msgstr "Manuelle Plugin-Deinstallation"
|
563 |
|
564 |
+
#: wp-table-reloaded-admin.php:1800
|
565 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
566 |
msgid "Plugin Purpose"
|
567 |
msgstr "Zweck des Plugins"
|
568 |
|
569 |
+
#: wp-table-reloaded-admin.php:1807
|
570 |
+
#@ wp-table-reloaded
|
571 |
msgid "Usage"
|
572 |
msgstr "Benutzung"
|
573 |
|
574 |
+
#: wp-table-reloaded-admin.php:1814
|
575 |
+
#@ wp-table-reloaded
|
576 |
msgid "More Information and Documentation"
|
577 |
msgstr "Weitere Informationen und Dokumentation"
|
578 |
|
579 |
+
#: wp-table-reloaded-admin.php:1821
|
580 |
+
#@ wp-table-reloaded
|
581 |
msgid "Author and Licence"
|
582 |
msgstr "Autor und Lizenz"
|
583 |
|
584 |
+
#: wp-table-reloaded-admin.php:1828
|
585 |
+
#@ wp-table-reloaded
|
586 |
msgid "Credits and Thanks"
|
587 |
msgstr "Danksagungen"
|
588 |
|
589 |
+
#: wp-table-reloaded-admin.php:1260
|
590 |
#, php-format
|
591 |
+
#@ wp-table-reloaded
|
592 |
msgid "Swap rows %s and %s"
|
593 |
msgstr "Tausche die Zeilen %s und %s"
|
594 |
|
595 |
+
#: wp-table-reloaded-admin.php:1278
|
596 |
#, php-format
|
597 |
+
#@ wp-table-reloaded
|
598 |
msgid "Swap columns %s and %s"
|
599 |
msgstr "Tausche die Spalten %s und %s"
|
600 |
|
601 |
+
#: wp-table-reloaded-admin.php:1554
|
602 |
+
#@ wp-table-reloaded
|
603 |
msgid "Import from original wp-Table plugin"
|
604 |
msgstr "Import von Tabellen aus dem Plugin wp-Table"
|
605 |
|
606 |
+
#: wp-table-reloaded-admin.php:2271
|
607 |
+
#@ wp-table-reloaded
|
608 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
609 |
msgstr "Möchtest du diese Tabelle wirklich aus dem Plugin wp-Table importieren?"
|
610 |
|
611 |
+
#: wp-table-reloaded-admin.php:1614
|
612 |
+
#@ wp-table-reloaded
|
613 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
614 |
msgstr "Das Plugin wp-Table von Alex Rabe scheint installiert zu sein, es wurden jedoch keine Tabellen gefunden."
|
615 |
|
616 |
+
#: wp-table-reloaded-admin.php:2259
|
617 |
+
#@ wp-table-reloaded
|
618 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
619 |
msgstr "Möchtest du diese Option wirklich aktivieren? Du solltest dies erst unmittelbar vor der Deaktivierung zum Zwecke der Deinstallation tun!"
|
620 |
|
621 |
+
#: wp-table-reloaded-admin.php:1831
|
622 |
+
#@ wp-table-reloaded
|
623 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
624 |
msgstr "Danke an <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> für das Plugin wp-Table,"
|
625 |
|
626 |
+
#: wp-table-reloaded-admin.php:1833
|
627 |
+
#@ wp-table-reloaded
|
628 |
msgid "the submitters of translations:"
|
629 |
msgstr "die Übersetzer:"
|
630 |
|
631 |
+
#: wp-table-reloaded-admin.php:1834
|
632 |
+
#@ wp-table-reloaded
|
633 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
634 |
msgstr "Albanisch (danke an <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
635 |
|
636 |
+
#: wp-table-reloaded-admin.php:1838
|
637 |
+
#@ wp-table-reloaded
|
638 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
639 |
msgstr "Französisch (danke an <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
640 |
|
641 |
+
#: wp-table-reloaded-admin.php:1842
|
642 |
+
#@ wp-table-reloaded
|
643 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
644 |
msgstr "Russisch (danke an <a href=\"http://wp-skins.info/\">Truper</a>)"
|
645 |
|
646 |
+
#: wp-table-reloaded-admin.php:1844
|
647 |
+
#@ wp-table-reloaded
|
648 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
649 |
msgstr "Schwedisch (danke an <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
650 |
|
651 |
+
#: wp-table-reloaded-admin.php:1845
|
652 |
+
#@ wp-table-reloaded
|
653 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
654 |
msgstr "Türkisch (danke an <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
655 |
|
656 |
+
#: wp-table-reloaded-admin.php:1728
|
657 |
+
#@ wp-table-reloaded
|
658 |
msgid "Add custom CSS?"
|
659 |
msgstr "Eigenes CSS hinzufügen?"
|
660 |
|
661 |
+
#: wp-table-reloaded-admin.php:1735
|
662 |
+
#@ wp-table-reloaded
|
663 |
msgid "Enter custom CSS"
|
664 |
msgstr "Eigenes CSS eingeben"
|
665 |
|
666 |
+
#: wp-table-reloaded-admin.php:1246
|
667 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
msgid "Data Manipulation"
|
669 |
msgstr "Bearbeitungsfunktionen"
|
670 |
|
671 |
+
#: wp-table-reloaded-admin.php:1327
|
672 |
+
#@ wp-table-reloaded
|
673 |
msgid "Insert Link"
|
674 |
msgstr "Link einfügen"
|
675 |
|
676 |
+
#: wp-table-reloaded-admin.php:1328
|
677 |
+
#@ wp-table-reloaded
|
678 |
msgid "Insert Image"
|
679 |
msgstr "Bild einfügen"
|
680 |
|
681 |
+
#: wp-table-reloaded-admin.php:2260
|
682 |
+
#@ wp-table-reloaded
|
683 |
msgid "URL of link to insert"
|
684 |
msgstr "URL des einzufügenden Links"
|
685 |
|
686 |
+
#: wp-table-reloaded-admin.php:2261
|
687 |
+
#@ wp-table-reloaded
|
688 |
msgid "Text of link"
|
689 |
msgstr "Text des Links"
|
690 |
|
691 |
+
#: wp-table-reloaded-admin.php:2262
|
692 |
+
#@ wp-table-reloaded
|
693 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
694 |
msgstr "Um den folgenden Link in eine Tabellenzelle einzufügen, klicke einfach auf diese."
|
695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
#: php/wp-table-reloaded-export.class.php:38
|
697 |
+
#@ wp-table-reloaded
|
698 |
msgid ". (dot)"
|
699 |
msgstr ". (Punkt)"
|
700 |
|
701 |
#: php/wp-table-reloaded-export.class.php:39
|
702 |
+
#@ wp-table-reloaded
|
703 |
msgid "| (pipe)"
|
704 |
msgstr "| (Strich)"
|
705 |
|
706 |
+
#: wp-table-reloaded-admin.php:331
|
707 |
+
#@ wp-table-reloaded
|
708 |
msgid "Table sorted successfully."
|
709 |
msgstr "Tabelle erfolgreich sortiert."
|
710 |
|
711 |
+
#: wp-table-reloaded-admin.php:474
|
712 |
+
#@ wp-table-reloaded
|
713 |
msgid "Table copied successfully."
|
714 |
msgid_plural "Tables copied successfully."
|
715 |
msgstr[0] "Tabelle erfolgreich kopiert."
|
716 |
msgstr[1] "Tabellen erfolgreich kopiert."
|
717 |
|
718 |
+
#: wp-table-reloaded-admin.php:480
|
719 |
+
#@ wp-table-reloaded
|
720 |
msgid "Table deleted successfully."
|
721 |
msgid_plural "Tables deleted successfully."
|
722 |
msgstr[0] "Tabelle erfolgreich gelöscht."
|
723 |
msgstr[1] "Tabellen erfolgreich gelöscht."
|
724 |
|
725 |
+
#: wp-table-reloaded-admin.php:501
|
726 |
+
#@ wp-table-reloaded
|
727 |
msgid "Table imported successfully."
|
728 |
msgid_plural "Tables imported successfully."
|
729 |
msgstr[0] "Tabelle erfolgreich importiert."
|
730 |
msgstr[1] "Tabellen erfolgreich importiert."
|
731 |
|
732 |
+
#: wp-table-reloaded-admin.php:508
|
733 |
+
#@ wp-table-reloaded
|
734 |
msgid "You did not select any tables!"
|
735 |
msgstr "Du hast keine Tabellen ausgewählt."
|
736 |
|
737 |
+
#: wp-table-reloaded-admin.php:836
|
738 |
+
#: wp-table-reloaded-admin.php:961
|
739 |
+
#@ wp-table-reloaded
|
740 |
msgid "This is a list of all available tables."
|
741 |
msgstr "Dies ist eine Liste aller verfügbaren Tabellen."
|
742 |
|
743 |
+
#: wp-table-reloaded-admin.php:836
|
744 |
+
#@ wp-table-reloaded
|
745 |
msgid "You may insert a table into a post or page here."
|
746 |
msgstr "Hier kannst du eine Tabelle in einen Beitrag oder eine Seite einfügen."
|
747 |
|
748 |
+
#: wp-table-reloaded-admin.php:837
|
749 |
+
#@ wp-table-reloaded
|
750 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
751 |
msgstr "Klicke bei der einzufügenden Tabelle auf den Link \"Einfügen\", um den jeweiligen Shortcode in den Editor einzufügen (<strong>[table id=<ID_der_Tabelle> /]</strong>)."
|
752 |
|
753 |
+
#: wp-table-reloaded-admin.php:877
|
754 |
+
#@ wp-table-reloaded
|
755 |
msgid "Insert"
|
756 |
msgstr "Einfügen"
|
757 |
|
758 |
+
#: wp-table-reloaded-admin.php:961
|
759 |
+
#@ wp-table-reloaded
|
760 |
msgid "You may add, edit, copy or delete tables here."
|
761 |
msgstr "Hier kannst du Tabellen hinzufügen, bearbeiten, kopieren oder löschen."
|
762 |
|
763 |
+
#: wp-table-reloaded-admin.php:962
|
764 |
+
#@ wp-table-reloaded
|
765 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
766 |
msgstr "Um eine Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, nutze den Shortcode <strong>[table id=<ID_der_Tabelle> /]</strong> oder klicke in der Editer-Toolbar auf die Schaltfläche \"Tabelle\"."
|
767 |
|
768 |
+
#: wp-table-reloaded-admin.php:1036
|
769 |
+
#: wp-table-reloaded-admin.php:1608
|
770 |
+
#@ wp-table-reloaded
|
771 |
msgid "Bulk actions:"
|
772 |
msgstr "Massenbearbeitung:"
|
773 |
|
774 |
+
#: wp-table-reloaded-admin.php:1036
|
775 |
+
#@ wp-table-reloaded
|
776 |
msgid "Copy Tables"
|
777 |
msgstr "Tabellen kopieren"
|
778 |
|
779 |
+
#: wp-table-reloaded-admin.php:1036
|
780 |
+
#@ wp-table-reloaded
|
781 |
msgid "Delete Tables"
|
782 |
msgstr "Tabellen löschen"
|
783 |
|
784 |
+
#: wp-table-reloaded-admin.php:1149
|
785 |
+
#: wp-table-reloaded-admin.php:1246
|
786 |
+
#: wp-table-reloaded-admin.php:1362
|
787 |
+
#: wp-table-reloaded-admin.php:1402
|
788 |
+
#: wp-table-reloaded-admin.php:1750
|
789 |
+
#: wp-table-reloaded-admin.php:1852
|
790 |
+
#@ wp-table-reloaded
|
791 |
msgid "Hide"
|
792 |
msgstr "Ausblenden"
|
793 |
|
794 |
+
#: wp-table-reloaded-admin.php:1149
|
795 |
+
#: wp-table-reloaded-admin.php:1246
|
796 |
+
#: wp-table-reloaded-admin.php:1362
|
797 |
+
#: wp-table-reloaded-admin.php:1402
|
798 |
+
#: wp-table-reloaded-admin.php:1750
|
799 |
+
#: wp-table-reloaded-admin.php:1852
|
800 |
+
#@ wp-table-reloaded
|
801 |
msgid "Expand"
|
802 |
msgstr "Erweitern"
|
803 |
|
804 |
+
#: wp-table-reloaded-admin.php:1338
|
805 |
+
#@ wp-table-reloaded
|
806 |
msgid "ascending"
|
807 |
msgstr "aufsteigender"
|
808 |
|
809 |
+
#: wp-table-reloaded-admin.php:1339
|
810 |
+
#@ wp-table-reloaded
|
811 |
msgid "descending"
|
812 |
msgstr "absteigender"
|
813 |
|
814 |
+
#: wp-table-reloaded-admin.php:1342
|
815 |
#, php-format
|
816 |
+
#@ wp-table-reloaded
|
817 |
msgid "Sort table by column %s in %s order"
|
818 |
msgstr "Sortiere die Tabelle nach Spalte %s in %s Reihenfolge"
|
819 |
|
820 |
+
#: wp-table-reloaded-admin.php:1345
|
821 |
+
#@ wp-table-reloaded
|
822 |
msgid "Sort"
|
823 |
msgstr "Sortieren"
|
824 |
|
825 |
+
#: wp-table-reloaded-admin.php:1608
|
826 |
+
#@ wp-table-reloaded
|
827 |
msgid "Import Tables"
|
828 |
msgstr "Tabellen importieren"
|
829 |
|
830 |
+
#: wp-table-reloaded-admin.php:1725
|
831 |
+
#@ wp-table-reloaded
|
832 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
833 |
msgstr "Ja, lade das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. Dieses macht angezeigte Tabellen durch den Besucher sortierbar (kann für jede Tabelle separat in ihren Optionen aktiviert werden)."
|
834 |
|
835 |
+
#: wp-table-reloaded-admin.php:1741
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
#, php-format
|
837 |
+
#@ wp-table-reloaded
|
838 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
839 |
msgstr "Besuche die <a href=\"%s\">Plugin-Webseite</a> für Style-Beispiele oder verwende eine der folgenden: <a href=\"%s\">Beispiel-Datei 1</a> <a href=\"%s\">Beispiel-Datei 2</a>"
|
840 |
|
841 |
+
#: wp-table-reloaded-admin.php:1741
|
842 |
+
#@ wp-table-reloaded
|
843 |
msgid "Just copy the contents of a file into the textarea."
|
844 |
msgstr "Kopiere einfach den Inhalt einer der Dateien in das Textfeld."
|
845 |
|
846 |
+
#: wp-table-reloaded-admin.php:1759
|
847 |
+
#@ wp-table-reloaded
|
848 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
849 |
msgstr "Ja, alles deinstallieren, wenn das Plugin deaktiviert wird. Achtung: Du solltest dieses Kästchen erst unmittelbar vor dem Deaktivieren des Plugins auf der WordPress-Plugin-Seite ankreuzen!"
|
850 |
|
851 |
+
#: wp-table-reloaded-admin.php:1802
|
852 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
853 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
854 |
msgstr "Dieses Plugin ermöglicht dir das Erstellen und Verwalten von Tabellen im Admin-Bereich von WordPress."
|
855 |
|
856 |
+
#: wp-table-reloaded-admin.php:1802
|
857 |
+
#@ wp-table-reloaded
|
858 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
859 |
msgstr "Diese Tabellen können Zeichenketten, Zahlen und sogar HTML (z.B. für Bilder oder Links) enthalten."
|
860 |
|
861 |
+
#: wp-table-reloaded-admin.php:1802
|
862 |
+
#@ wp-table-reloaded
|
863 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
864 |
msgstr "Du kannst die Tabellen dann mit Hilfe eines Shortcodes in deinen Beiträgen, auf deinen Seiten oder in Text-Widgets anzeigen."
|
865 |
|
866 |
+
#: wp-table-reloaded-admin.php:1802
|
867 |
+
#@ wp-table-reloaded
|
868 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
869 |
msgstr "Wenn du eine Tabelle an einer anderen Stelle in deinem Theme anzeigen möchtest, kannst du eine Template Tag Function nutzen."
|
870 |
|
871 |
+
#: wp-table-reloaded-admin.php:1809
|
872 |
+
#@ wp-table-reloaded
|
873 |
msgid "At first you should add or import a table."
|
874 |
msgstr "Am Anfang solltest du eine neue Tabelle anlegen oder importieren."
|
875 |
|
876 |
+
#: wp-table-reloaded-admin.php:1809
|
877 |
+
#@ wp-table-reloaded
|
878 |
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."
|
879 |
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."
|
880 |
|
881 |
+
#: wp-table-reloaded-admin.php:1809
|
882 |
+
#@ wp-table-reloaded
|
883 |
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."
|
884 |
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."
|
885 |
|
886 |
+
#: wp-table-reloaded-admin.php:1809
|
887 |
+
#@ wp-table-reloaded
|
888 |
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."
|
889 |
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."
|
890 |
|
891 |
+
#: wp-table-reloaded-admin.php:1809
|
892 |
+
#@ wp-table-reloaded
|
893 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
894 |
+
msgstr "Um die Tabelle in einen Beitrag, eine Seite oder ein Text-Widget einzufügen, füge diesen einfach den Shortcode [table id=<ID_der_Tabelle> /] hinzu."
|
895 |
|
896 |
+
#: wp-table-reloaded-admin.php:1809
|
897 |
+
#@ wp-table-reloaded
|
898 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
899 |
msgstr "Du kannst die gewünschte Tabelle auch aus einer Liste auswählen (nach einem Klick auf den Button \"Tabelle\" in der Toolbar des Editors) und der entsprechende Shortcode wird für automatisch eingefügt."
|
900 |
|
901 |
+
#: wp-table-reloaded-admin.php:1809
|
902 |
+
#@ wp-table-reloaded
|
903 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
904 |
msgstr "Du kannst eine Tabelle auch mittels CSS stylen. Beispieldateien findest du auf der Plugin-Webseite. Jede Tabelle hat die CSS-Klasse \"wp-table-reloaded\". Zusätzlich hat jede Tabelle die Klasse \"wp-table-reloaded-id-<ID_der_Tabelle>\"."
|
905 |
|
906 |
+
#: wp-table-reloaded-admin.php:1809
|
907 |
+
#@ wp-table-reloaded
|
908 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
909 |
msgstr "Du kannst die Klassen \"column-<Nummer>\" und \"row-<Nummer>\" verwenden, um Zeilen und Spalten einzeln zu stylen. Verwende diese Klassen z.B. für verschiedene Spaltenbreiten oder die Textausrichtung."
|
910 |
|
911 |
+
#: wp-table-reloaded-admin.php:1816
|
912 |
+
#@ wp-table-reloaded
|
913 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
914 |
msgstr "Mehr Informationen sind auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a> oder auf der Plugin-Seite im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> erhältlich."
|
915 |
|
916 |
+
#: wp-table-reloaded-admin.php:1816
|
917 |
+
#: wp-table-reloaded-admin.php:1980
|
918 |
+
#@ wp-table-reloaded
|
919 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
920 |
msgstr "Lies die <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">Dokumentation</a> oder bitte um <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">Unterstützung</a>."
|
921 |
|
922 |
+
#: wp-table-reloaded-admin.php:1823
|
923 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
924 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
925 |
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!"
|
926 |
|
927 |
+
#: wp-table-reloaded-admin.php:1832
|
928 |
+
#@ wp-table-reloaded
|
929 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
930 |
msgstr "Christian Bach für das <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>,"
|
931 |
|
932 |
+
#: wp-table-reloaded-admin.php:1843
|
933 |
+
#@ wp-table-reloaded
|
934 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
935 |
msgstr "Spanisch (danke an <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> und <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
936 |
|
937 |
+
#: wp-table-reloaded-admin.php:1846
|
938 |
+
#@ wp-table-reloaded
|
939 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
940 |
msgstr "und an alle Spender, Mitarbeiter, Förderer, Kritiker und Nutzer des Plugins!"
|
941 |
|
942 |
+
#: wp-table-reloaded-admin.php:1852
|
943 |
+
#@ wp-table-reloaded
|
944 |
msgid "Debug and Version Information"
|
945 |
msgstr "Debug- und Versions-Informationen"
|
946 |
|
947 |
+
#: wp-table-reloaded-admin.php:1855
|
948 |
+
#@ wp-table-reloaded
|
949 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
950 |
msgstr "Du nutzt folgende Software-Versionen. <strong>Bitte gib diese Informationen in Bug-Reports an.</strong>"
|
951 |
|
952 |
+
#: wp-table-reloaded-admin.php:1979
|
953 |
+
#@ wp-table-reloaded
|
954 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
955 |
msgstr "Weitere Informationen findest du auf der <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/\">Plugin-Webseite</a>."
|
956 |
|
957 |
+
#: wp-table-reloaded-admin.php:2264
|
958 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
959 |
msgid "Do you want to copy the selected tables?"
|
960 |
msgstr "Möchtest du die ausgewählten Tabellen kopieren?"
|
961 |
|
962 |
+
#: wp-table-reloaded-admin.php:2265
|
963 |
+
#@ wp-table-reloaded
|
964 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
965 |
msgstr "Die ausgewählten Tabellen und alle Inhalte werden gelöscht. Willst du diese wirklich löschen?"
|
966 |
|
967 |
+
#: wp-table-reloaded-admin.php:2266
|
968 |
+
#@ wp-table-reloaded
|
969 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
970 |
msgstr "Möchtest du die ausgewählten Tabellen aus dem Plugin wp-Table importieren?"
|
971 |
|
972 |
+
#: wp-table-reloaded-admin.php:2318
|
973 |
+
#@ wp-table-reloaded
|
974 |
msgid "Table"
|
975 |
msgstr "Tabelle"
|
976 |
|
977 |
+
#: wp-table-reloaded-admin.php:1837
|
978 |
+
#@ wp-table-reloaded
|
979 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
980 |
msgstr "Tschechisch (danke an <a href=\"http://separatista.net/\">Separatista</a>)"
|
981 |
|
982 |
+
#: wp-table-reloaded-admin.php:1841
|
983 |
+
#@ wp-table-reloaded
|
984 |
msgid "Polish (thanks to Alex Kortan)"
|
985 |
msgstr "Polnisch (danke an Alex Kortan)"
|
986 |
|
987 |
+
#: wp-table-reloaded-admin.php:236
|
988 |
#, php-format
|
989 |
+
#@ wp-table-reloaded
|
990 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
991 |
msgstr "Tabelle erfolgreich bearbeitet. Die Tabelle hat jetzt die ID %s. Bereits verwendete Shortcodes sollten entsprechend angepasst werden."
|
992 |
|
993 |
+
#: wp-table-reloaded-admin.php:238
|
994 |
#, php-format
|
995 |
+
#@ wp-table-reloaded
|
996 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
997 |
msgstr "Die Tabellen-ID konnte nicht von %s in %s geändert werden, da bereits eine Tabelle mit dieser ID existiert."
|
998 |
|
999 |
+
#: wp-table-reloaded-admin.php:346
|
1000 |
+
#@ wp-table-reloaded
|
1001 |
msgid "Row added successfully."
|
1002 |
msgid_plural "Rows added successfully."
|
1003 |
msgstr[0] "Zeile erfolgreich angefügt."
|
1004 |
msgstr[1] "Zeilen erfolgreich angefügt."
|
1005 |
|
1006 |
+
#: wp-table-reloaded-admin.php:360
|
1007 |
+
#@ wp-table-reloaded
|
1008 |
msgid "Column added successfully."
|
1009 |
msgid_plural "Columns added successfully."
|
1010 |
msgstr[0] "Spalte erfolgreich angefügt."
|
1011 |
msgstr[1] "Spalten erfolgreich angefügt."
|
1012 |
|
1013 |
+
#: wp-table-reloaded-admin.php:656
|
1014 |
+
#: wp-table-reloaded-admin.php:675
|
1015 |
#, php-format
|
1016 |
+
#@ wp-table-reloaded
|
1017 |
msgid "from %s"
|
1018 |
msgstr "von %s"
|
1019 |
|
1020 |
+
#: wp-table-reloaded-admin.php:697
|
1021 |
#, php-format
|
1022 |
+
#@ wp-table-reloaded
|
1023 |
msgid "Table %s (%s) replaced successfully."
|
1024 |
msgstr "Tabelle %s (%s) erfolgreich ersetzt."
|
1025 |
|
1026 |
+
#: wp-table-reloaded-admin.php:1117
|
1027 |
+
#@ wp-table-reloaded
|
1028 |
msgid "Table ID"
|
1029 |
msgstr "Tabellen-ID"
|
1030 |
|
1031 |
+
#: wp-table-reloaded-admin.php:1218
|
1032 |
#, php-format
|
1033 |
+
#@ wp-table-reloaded
|
1034 |
msgid "Add %s row(s)"
|
1035 |
msgstr "%s Zeile(n)"
|
1036 |
|
1037 |
+
#: wp-table-reloaded-admin.php:1219
|
1038 |
+
#: wp-table-reloaded-admin.php:1221
|
1039 |
+
#: wp-table-reloaded-admin.php:1439
|
1040 |
+
#@ wp-table-reloaded
|
1041 |
msgid "Add"
|
1042 |
msgstr "hinzufügen"
|
1043 |
|
1044 |
+
#: wp-table-reloaded-admin.php:1220
|
1045 |
#, php-format
|
1046 |
+
#@ wp-table-reloaded
|
1047 |
msgid "Add %s column(s)"
|
1048 |
msgstr "%s Spalte(n)"
|
1049 |
|
1050 |
+
#: wp-table-reloaded-admin.php:1491
|
1051 |
+
#@ wp-table-reloaded
|
1052 |
msgid "Add or Replace Table?"
|
1053 |
msgstr "Tabelle hinzufügen oder ersetzen?"
|
1054 |
|
1055 |
+
#: wp-table-reloaded-admin.php:1493
|
1056 |
+
#@ wp-table-reloaded
|
1057 |
msgid "Add as new Table"
|
1058 |
msgstr "als neue Tabelle hinzufügen"
|
1059 |
|
1060 |
+
#: wp-table-reloaded-admin.php:1494
|
1061 |
+
#@ wp-table-reloaded
|
1062 |
msgid "Replace existing Table"
|
1063 |
msgstr "bereits existierende Tabelle ersetzen"
|
1064 |
|
1065 |
+
#: wp-table-reloaded-admin.php:1498
|
1066 |
+
#@ wp-table-reloaded
|
1067 |
msgid "Select existing Table to Replace"
|
1068 |
msgstr "zu ersetzende Tabelle auswählen"
|
1069 |
|
1070 |
+
#: wp-table-reloaded-admin.php:1514
|
1071 |
+
#@ wp-table-reloaded
|
1072 |
msgid "Select source for import"
|
1073 |
msgstr "Import-Art auswählen"
|
1074 |
|
1075 |
+
#: wp-table-reloaded-admin.php:1516
|
1076 |
+
#@ wp-table-reloaded
|
1077 |
msgid "File upload"
|
1078 |
msgstr "Datei hochladen"
|
1079 |
|
1080 |
+
#: wp-table-reloaded-admin.php:1517
|
1081 |
+
#@ wp-table-reloaded
|
1082 |
msgid "URL"
|
1083 |
msgstr "Download von URL"
|
1084 |
|
1085 |
+
#: wp-table-reloaded-admin.php:1518
|
1086 |
+
#@ wp-table-reloaded
|
1087 |
msgid "Manual input"
|
1088 |
msgstr "Manuelle Eingabe"
|
1089 |
|
1090 |
+
#: wp-table-reloaded-admin.php:1519
|
1091 |
+
#@ wp-table-reloaded
|
1092 |
msgid "File on server"
|
1093 |
msgstr "Datei auf Server"
|
1094 |
|
1095 |
+
#: wp-table-reloaded-admin.php:1527
|
1096 |
+
#@ wp-table-reloaded
|
1097 |
msgid "URL to import table from"
|
1098 |
msgstr "URL der zu importierenden Tabelle"
|
1099 |
|
1100 |
+
#: wp-table-reloaded-admin.php:1531
|
1101 |
+
#@ wp-table-reloaded
|
1102 |
msgid "Path to file on server"
|
1103 |
msgstr "Pfad zu Datei auf Webserver"
|
1104 |
|
1105 |
+
#: wp-table-reloaded-admin.php:1836
|
1106 |
+
#@ wp-table-reloaded
|
1107 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1108 |
msgstr "Brasilianisch/Portugiesisch (danke an <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1109 |
|
1110 |
+
#: wp-table-reloaded-admin.php:2274
|
1111 |
+
#@ wp-table-reloaded
|
1112 |
msgid "Do you really want to change the ID of the table?"
|
1113 |
msgstr "Möchtest du die ID der Tabelle wirklich ändern?"
|
1114 |
|
1115 |
+
#: wp-table-reloaded-admin.php:179
|
1116 |
+
#, php-format
|
1117 |
+
#@ wp-table-reloaded
|
1118 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
1119 |
+
msgstr "Vielen Dank, dass du dieses Plugin nutzt! Du hast WP-Table Reloaded vor mehr als einem Monat installiert. Wenn alles funktioniert und du mit den Ergebnissen und der Verwaltung deiner %s Tabellen zufrieden bist, ist das nicht mindestens einen Euro oder Dollar wert?"
|
1120 |
+
|
1121 |
+
#: wp-table-reloaded-admin.php:180
|
1122 |
+
#, php-format
|
1123 |
+
#@ wp-table-reloaded
|
1124 |
+
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!"
|
1125 |
+
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!"
|
1126 |
+
|
1127 |
+
#: wp-table-reloaded-admin.php:381
|
1128 |
+
#@ wp-table-reloaded
|
1129 |
+
msgid "Row moved successfully."
|
1130 |
+
msgstr "Zeile erfolgreich verschoben."
|
1131 |
+
|
1132 |
+
#: wp-table-reloaded-admin.php:406
|
1133 |
+
#@ wp-table-reloaded
|
1134 |
+
msgid "Column moved successfully."
|
1135 |
+
msgstr "Spalte erfolgreich verschoben."
|
1136 |
+
|
1137 |
+
#: wp-table-reloaded-admin.php:413
|
1138 |
+
#@ wp-table-reloaded
|
1139 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
1140 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil kein Name eingegeben wurde."
|
1141 |
+
|
1142 |
+
#: wp-table-reloaded-admin.php:418
|
1143 |
+
#@ wp-table-reloaded
|
1144 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
1145 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der eingegebene Name bereits reserviert ist."
|
1146 |
+
|
1147 |
+
#: wp-table-reloaded-admin.php:424
|
1148 |
+
#@ wp-table-reloaded
|
1149 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
1150 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil der Name verbotene Zeichen enthält."
|
1151 |
+
|
1152 |
+
#: wp-table-reloaded-admin.php:428
|
1153 |
+
#@ wp-table-reloaded
|
1154 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
1155 |
+
msgstr "Das Benutzerdefinierte Datenfeld konnte nicht hinzugefügt werden, weil ein Feld mit diesem Namen bereits existiert."
|
1156 |
+
|
1157 |
+
#: wp-table-reloaded-admin.php:434
|
1158 |
+
#@ wp-table-reloaded
|
1159 |
+
msgid "Custom Data Field added successfully."
|
1160 |
+
msgstr "Benutzerdefiniertes Datenfeld erfolgreich hinzugefügt."
|
1161 |
+
|
1162 |
+
#: wp-table-reloaded-admin.php:580
|
1163 |
+
#@ wp-table-reloaded
|
1164 |
+
msgid "Custom Data Field deleted successfully."
|
1165 |
+
msgstr "Benutzerdefiniertes Datenfeld erfolgreich gelöscht."
|
1166 |
+
|
1167 |
+
#: wp-table-reloaded-admin.php:582
|
1168 |
+
#@ wp-table-reloaded
|
1169 |
+
msgid "Custom Data Field could not be deleted."
|
1170 |
+
msgstr "Benutzerdefiniertes Datenfeld konnte nicht gelöscht werden."
|
1171 |
+
|
1172 |
+
#: wp-table-reloaded-admin.php:906
|
1173 |
+
#, php-format
|
1174 |
+
#@ wp-table-reloaded
|
1175 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
1176 |
+
msgstr "Vorschau von Tabelle \"%s\" (ID %s)"
|
1177 |
+
|
1178 |
+
#: wp-table-reloaded-admin.php:909
|
1179 |
+
#@ wp-table-reloaded
|
1180 |
+
msgid "This is a preview of the table data."
|
1181 |
+
msgstr "Dies ist eine Vorschau der Tabelle."
|
1182 |
+
|
1183 |
+
#: wp-table-reloaded-admin.php:910
|
1184 |
+
#@ wp-table-reloaded
|
1185 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
1186 |
+
msgstr "Aufgrund von CSS-Styling-Anweisungen kann das Aussehen der Tabelle abweichen!"
|
1187 |
+
|
1188 |
+
#: wp-table-reloaded-admin.php:911
|
1189 |
+
#: wp-table-reloaded-admin.php:1106
|
1190 |
+
#, php-format
|
1191 |
+
#@ wp-table-reloaded
|
1192 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
1193 |
+
msgstr "Um diese Tabelle auf einer Seite, in einem Artikel oder einem Text-Widget anzuzeigen, nutze den Shortcode <strong>[table id=%s /]</strong>."
|
1194 |
+
|
1195 |
+
#: wp-table-reloaded-admin.php:924
|
1196 |
+
#@ wp-table-reloaded
|
1197 |
+
msgid "There is no table with this ID!"
|
1198 |
+
msgstr "Es ist keine Tabelle mit dieser ID vorhanden!"
|
1199 |
+
|
1200 |
+
#: wp-table-reloaded-admin.php:941
|
1201 |
+
#@ wp-table-reloaded
|
1202 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
1203 |
+
msgstr "Vielen Dank! Deine Spende leistet einen wichtigen Beitrag für die weitere Entwicklung von WP-Table Reloaded!"
|
1204 |
+
|
1205 |
+
#: wp-table-reloaded-admin.php:943
|
1206 |
+
#, php-format
|
1207 |
+
#@ wp-table-reloaded
|
1208 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
1209 |
+
msgstr "Kein Problem! Ich hoffe dennoch, dass du die Vorteile von WP-Table Reloaded genießt. Falls du deine Meinung später ändern solltest, findest du den \"Spenden\"-Button auf der <a href=\"%s\">Website von WP-Table Reloaded</a>."
|
1210 |
+
|
1211 |
+
#: wp-table-reloaded-admin.php:976
|
1212 |
+
#: wp-table-reloaded-admin.php:985
|
1213 |
+
#: wp-table-reloaded-admin.php:1130
|
1214 |
+
#@ wp-table-reloaded
|
1215 |
+
msgid "Last Modified"
|
1216 |
+
msgstr "Letzte Änderung"
|
1217 |
+
|
1218 |
+
#: wp-table-reloaded-admin.php:997
|
1219 |
+
#@ wp-table-reloaded
|
1220 |
+
msgid "(no name)"
|
1221 |
+
msgstr "(kein Name)"
|
1222 |
+
|
1223 |
+
#: wp-table-reloaded-admin.php:998
|
1224 |
+
#@ wp-table-reloaded
|
1225 |
+
msgid "(no description)"
|
1226 |
+
msgstr "(keine Beschreibung)"
|
1227 |
+
|
1228 |
+
#: wp-table-reloaded-admin.php:1002
|
1229 |
+
#: wp-table-reloaded-admin.php:1131
|
1230 |
+
#@ wp-table-reloaded
|
1231 |
+
msgid "by"
|
1232 |
+
msgstr "von"
|
1233 |
+
|
1234 |
+
#: wp-table-reloaded-admin.php:1019
|
1235 |
+
#@ wp-table-reloaded
|
1236 |
+
msgid "Shortcode"
|
1237 |
+
msgstr "Shortcode"
|
1238 |
+
|
1239 |
+
#: wp-table-reloaded-admin.php:1023
|
1240 |
+
#, php-format
|
1241 |
+
#@ wp-table-reloaded
|
1242 |
+
msgid "Preview of Table %s"
|
1243 |
+
msgstr "Vorschau von Tabelle %s"
|
1244 |
+
|
1245 |
+
#: wp-table-reloaded-admin.php:1024
|
1246 |
+
#@ wp-table-reloaded
|
1247 |
+
msgid "Preview"
|
1248 |
+
msgstr "Vorschau"
|
1249 |
+
|
1250 |
+
#: wp-table-reloaded-admin.php:1059
|
1251 |
+
#@ wp-table-reloaded
|
1252 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
1253 |
+
msgstr "Hier kannst du eine neue Tabelle anlegen. Gib einfach einen Namen, eine (optionale) Beschreibung und die Anzahl Zeilen und Spalten ein."
|
1254 |
+
|
1255 |
+
#: wp-table-reloaded-admin.php:1059
|
1256 |
+
#@ wp-table-reloaded
|
1257 |
+
msgid "You may add, insert or delete rows and columns later."
|
1258 |
+
msgstr "Zeilen und Spalten können auch später hinzugefügt, eingefügt oder gelöscht werden."
|
1259 |
+
|
1260 |
+
#: wp-table-reloaded-admin.php:1102
|
1261 |
+
#, php-format
|
1262 |
+
#@ wp-table-reloaded
|
1263 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
1264 |
+
msgstr "Tabelle \"%s\" (ID %s) bearbeiten"
|
1265 |
+
|
1266 |
+
#: wp-table-reloaded-admin.php:1195
|
1267 |
+
#@ wp-table-reloaded
|
1268 |
+
msgid "Row hidden"
|
1269 |
+
msgstr "Zeile versteckt"
|
1270 |
+
|
1271 |
+
#: wp-table-reloaded-admin.php:1232
|
1272 |
+
#@ wp-table-reloaded
|
1273 |
+
msgid "Column hidden"
|
1274 |
+
msgstr "Spalte versteckt"
|
1275 |
+
|
1276 |
+
#: wp-table-reloaded-admin.php:1294
|
1277 |
+
#: wp-table-reloaded-admin.php:1317
|
1278 |
+
#@ wp-table-reloaded
|
1279 |
+
msgid "before"
|
1280 |
+
msgstr "vor"
|
1281 |
+
|
1282 |
+
#: wp-table-reloaded-admin.php:1295
|
1283 |
+
#: wp-table-reloaded-admin.php:1318
|
1284 |
+
#@ wp-table-reloaded
|
1285 |
+
msgid "after"
|
1286 |
+
msgstr "hinter"
|
1287 |
+
|
1288 |
+
#: wp-table-reloaded-admin.php:1298
|
1289 |
+
#, php-format
|
1290 |
+
#@ wp-table-reloaded
|
1291 |
+
msgid "Move row %s %s row %s"
|
1292 |
+
msgstr "Verschiebe Zeile %s %s Zeile %s"
|
1293 |
+
|
1294 |
+
#: wp-table-reloaded-admin.php:1300
|
1295 |
+
#: wp-table-reloaded-admin.php:1323
|
1296 |
+
#@ wp-table-reloaded
|
1297 |
+
msgid "Move"
|
1298 |
+
msgstr "Verschiebe"
|
1299 |
+
|
1300 |
+
#: wp-table-reloaded-admin.php:1321
|
1301 |
+
#, php-format
|
1302 |
+
#@ wp-table-reloaded
|
1303 |
+
msgid "Move column %s %s column %s"
|
1304 |
+
msgstr "Verschiebe Spalte %s %s Spalte %s"
|
1305 |
+
|
1306 |
+
#: wp-table-reloaded-admin.php:1386
|
1307 |
+
#@ wp-table-reloaded
|
1308 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1309 |
+
msgstr "Du kannst eine Tabelle mit dem <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> sortierbar machen."
|
1310 |
+
|
1311 |
+
#: wp-table-reloaded-admin.php:1386
|
1312 |
+
#@ wp-table-reloaded
|
1313 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
1314 |
+
msgstr "<small>Achtung: Hierzu muss Tablesorter in den Plugin-Optionen aktiviert und die Option \"Tabellenüberschrift\" angekreuzt sein!</small>"
|
1315 |
+
|
1316 |
+
#: wp-table-reloaded-admin.php:1402
|
1317 |
+
#@ wp-table-reloaded
|
1318 |
+
msgid "Custom Data Fields"
|
1319 |
+
msgstr "Benutzerdefinierte Datenfelder"
|
1320 |
+
|
1321 |
+
#: wp-table-reloaded-admin.php:1404
|
1322 |
+
#@ wp-table-reloaded
|
1323 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1324 |
+
msgstr "Benutzerdefinierte Datenfelder können genutzt werden, um weitere Metadaten zu einer Tabelle zu speichern."
|
1325 |
+
|
1326 |
+
#: wp-table-reloaded-admin.php:1404
|
1327 |
+
#@ wp-table-reloaded
|
1328 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
1329 |
+
msgstr "Dies können z.B. Informationen über die Quelle oder den Ersteller sein."
|
1330 |
+
|
1331 |
+
#: wp-table-reloaded-admin.php:1406
|
1332 |
+
#, php-format
|
1333 |
+
#@ wp-table-reloaded
|
1334 |
+
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>."
|
1335 |
+
msgstr "Diese Daten können genauso wie Tabellen angezeigt werden. Nutze dazu den Shortcode <strong>[table-info id=%s field=\"<Feldname>\" /]</strong>."
|
1336 |
+
|
1337 |
+
#: wp-table-reloaded-admin.php:1412
|
1338 |
+
#@ wp-table-reloaded
|
1339 |
+
msgid "Field Name"
|
1340 |
+
msgstr "Feldname"
|
1341 |
+
|
1342 |
+
#: wp-table-reloaded-admin.php:1413
|
1343 |
+
#@ wp-table-reloaded
|
1344 |
+
msgid "Value"
|
1345 |
+
msgstr "Wert"
|
1346 |
+
|
1347 |
+
#: wp-table-reloaded-admin.php:1427
|
1348 |
+
#@ wp-table-reloaded
|
1349 |
+
msgid "Delete Field"
|
1350 |
+
msgstr "Feld löschen"
|
1351 |
+
|
1352 |
+
#: wp-table-reloaded-admin.php:1429
|
1353 |
+
#@ wp-table-reloaded
|
1354 |
+
msgid "View shortcode"
|
1355 |
+
msgstr "Shortcode anzeigen"
|
1356 |
+
|
1357 |
+
#: wp-table-reloaded-admin.php:1438
|
1358 |
+
#@ wp-table-reloaded
|
1359 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
1360 |
+
msgstr "Um ein neues Benutzerdefiniertes Datenfeld anzulegen, gib hier den Namen ein (nur Kleinbuchstaben, Zahlen, _ und -)."
|
1361 |
+
|
1362 |
+
#: wp-table-reloaded-admin.php:1439
|
1363 |
+
#@ wp-table-reloaded
|
1364 |
+
msgid "Custom Data Field Name"
|
1365 |
+
msgstr "Name des Benutzerdefinierten Datenfeldes"
|
1366 |
+
|
1367 |
+
#: wp-table-reloaded-admin.php:1473
|
1368 |
+
#@ wp-table-reloaded
|
1369 |
+
msgid "You may import a table from existing data here."
|
1370 |
+
msgstr "Hier kannst du eine Tabelle aus bereits vorhandenen Daten importieren."
|
1371 |
+
|
1372 |
+
#: wp-table-reloaded-admin.php:1473
|
1373 |
+
#@ wp-table-reloaded
|
1374 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
1375 |
+
msgstr "Dies kann eine CSV, XML oder HTML-Datei (mit einer bestimmten Struktur) sein. Bitte lies die Dokumentation."
|
1376 |
+
|
1377 |
+
#: wp-table-reloaded-admin.php:1473
|
1378 |
+
#@ wp-table-reloaded
|
1379 |
+
msgid "You may also select the import source."
|
1380 |
+
msgstr "Du kannst außerdem die Import-Quelle auswählen."
|
1381 |
+
|
1382 |
+
#: wp-table-reloaded-admin.php:1637
|
1383 |
+
#@ wp-table-reloaded
|
1384 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
1385 |
+
msgstr "Hier kannst du eine Tabelle exportieren. Wähle einfach die Tabelle, das gewünschte Exportformat und (nur für CSV) ein Trennzeichen."
|
1386 |
+
|
1387 |
+
#: wp-table-reloaded-admin.php:1638
|
1388 |
+
#@ wp-table-reloaded
|
1389 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
1390 |
+
msgstr "Du kannst die Export-Datei herunterladen. Sonst wird sie auf dieser Seite angezeigt."
|
1391 |
+
|
1392 |
+
#: wp-table-reloaded-admin.php:1639
|
1393 |
+
#@ wp-table-reloaded
|
1394 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
1395 |
+
msgstr "Bitte beachte, dass nur die Daten der Tabelle, jedoch keine Optionen oder Einstellungen exportiert werden."
|
1396 |
+
|
1397 |
+
#: wp-table-reloaded-admin.php:1712
|
1398 |
+
#@ wp-table-reloaded
|
1399 |
+
msgid "You may change these global options."
|
1400 |
+
msgstr "Du kannst einige globale Optionen ändern."
|
1401 |
+
|
1402 |
+
#: wp-table-reloaded-admin.php:1713
|
1403 |
+
#@ wp-table-reloaded
|
1404 |
+
msgid "They will effect all tables or the general plugin behavior."
|
1405 |
+
msgstr "Diese beeinflussen alle Tabellen oder das allgemeine Verhalten des Plugins."
|
1406 |
+
|
1407 |
+
#: wp-table-reloaded-admin.php:1740
|
1408 |
+
#, php-format
|
1409 |
+
#@ wp-table-reloaded
|
1410 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
1411 |
+
msgstr "Du kannst eine kürzere Seitenladezeit erreichen, wenn du die CSS-Anweisungen stattdessen der Datei \"style.css\" deines Themes (unter <a href=\"%s\">%s</a>) hinzufügst."
|
1412 |
+
|
1413 |
+
#: wp-table-reloaded-admin.php:1742
|
1414 |
+
#, php-format
|
1415 |
+
#@ wp-table-reloaded
|
1416 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
1417 |
+
msgstr "Eine weitere Möglichkeit ist das Laden einer CSS-Datei (z.B. aus deinem Theme-Ordner) mittels des CSS-Kommandos \"@import\": %s"
|
1418 |
+
|
1419 |
+
#: wp-table-reloaded-admin.php:1750
|
1420 |
+
#@ wp-table-reloaded
|
1421 |
+
msgid "Advanced Options"
|
1422 |
+
msgstr "Experten-Optionen"
|
1423 |
+
|
1424 |
+
#: wp-table-reloaded-admin.php:1754
|
1425 |
+
#@ wp-table-reloaded
|
1426 |
+
msgid "Use Tablesorter Extended?"
|
1427 |
+
msgstr "Nutze Tablesorter Extended?"
|
1428 |
+
|
1429 |
+
#: wp-table-reloaded-admin.php:1755
|
1430 |
+
#@ wp-table-reloaded
|
1431 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
1432 |
+
msgstr "Ja, nutze das \"Tablesorter Extended\" Script von <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> anstelle des Original-Tablesorter-Scripts (EXPERIMENTELL!)."
|
1433 |
+
|
1434 |
+
#: wp-table-reloaded-admin.php:1759
|
1435 |
+
#@ wp-table-reloaded
|
1436 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
1437 |
+
msgstr "(Diese Einstellung hat keinen Einfluss auf die Schaltfläche \"Manuelle Plugin-Deinstallation\" (siehe unten)!)"
|
1438 |
+
|
1439 |
+
#: wp-table-reloaded-admin.php:1762
|
1440 |
+
#@ wp-table-reloaded
|
1441 |
+
msgid "Allow donation message?"
|
1442 |
+
msgstr "Erlaube Spenden-Nachricht?"
|
1443 |
+
|
1444 |
+
#: wp-table-reloaded-admin.php:1763
|
1445 |
+
#@ wp-table-reloaded
|
1446 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
1447 |
+
msgstr "Ja, erlaube das Anzeigen einer kleinen Nachricht nach 30 Tagen Pluginnutzung."
|
1448 |
+
|
1449 |
+
#: wp-table-reloaded-admin.php:1780
|
1450 |
+
#@ wp-table-reloaded
|
1451 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
1452 |
+
msgstr "Hier kannst du das Plugin deinstallieren. Dabei werden <strong>ALLE</strong> zum Plugin gehörigen Tabellen, Daten und Einstellungen gelöscht!"
|
1453 |
+
|
1454 |
+
#: wp-table-reloaded-admin.php:1780
|
1455 |
+
#@ wp-table-reloaded
|
1456 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
1457 |
+
msgstr "Sei hiermit äußerst vorsichtig und klicke die Schaltfläche nur, wenn du weißt, was du tust!"
|
1458 |
+
|
1459 |
+
#: wp-table-reloaded-admin.php:1794
|
1460 |
+
#@ wp-table-reloaded
|
1461 |
+
msgid "About WP-Table Reloaded"
|
1462 |
+
msgstr "Über WP-Table Reloaded"
|
1463 |
+
|
1464 |
+
#: wp-table-reloaded-admin.php:1823
|
1465 |
+
#@ wp-table-reloaded
|
1466 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1467 |
+
msgstr "Dieses WordPress-Plugin wurde von <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> programmiert. Es ist \"Freie Software\" unter der Lizenz GPL 2."
|
1468 |
+
|
1469 |
+
#: wp-table-reloaded-admin.php:1823
|
1470 |
+
#: wp-table-reloaded-admin.php:1981
|
1471 |
+
#@ wp-table-reloaded
|
1472 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1473 |
+
msgstr "Wenn dir das Plugin gefällt, tätige doch eine <a href=\"http://tobias.baethge.com/donate/\"><strong>Spende</strong></a> und bewerte das Plugin im <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin-Verzeichnis</a>."
|
1474 |
+
|
1475 |
+
#: wp-table-reloaded-admin.php:1835
|
1476 |
+
#@ wp-table-reloaded
|
1477 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1478 |
+
msgstr "Weißrussisch (danke an <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1479 |
+
|
1480 |
+
#: wp-table-reloaded-admin.php:1839
|
1481 |
+
#@ wp-table-reloaded
|
1482 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1483 |
+
msgstr "Italienisch (danke an <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1484 |
+
|
1485 |
+
#: wp-table-reloaded-admin.php:1840
|
1486 |
+
#@ wp-table-reloaded
|
1487 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1488 |
+
msgstr "Japanisch (danke an <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1489 |
+
|
1490 |
+
#: wp-table-reloaded-admin.php:1858
|
1491 |
+
#@ wp-table-reloaded
|
1492 |
+
msgid "Plugin installed"
|
1493 |
+
msgstr "Plugin installiert"
|
1494 |
+
|
1495 |
+
#: wp-table-reloaded-admin.php:1948
|
1496 |
+
#@ wp-table-reloaded
|
1497 |
+
msgid "This is the \"List Tables\" screen."
|
1498 |
+
msgstr "Dies ist die \"Liste der Tabellen\"."
|
1499 |
+
|
1500 |
+
#: wp-table-reloaded-admin.php:1952
|
1501 |
+
#@ wp-table-reloaded
|
1502 |
+
msgid "This is the \"Edit Table\" screen."
|
1503 |
+
msgstr "Dies ist die \"Tabelle bearbeiten\"-Seite."
|
1504 |
+
|
1505 |
+
#: wp-table-reloaded-admin.php:1955
|
1506 |
+
#@ wp-table-reloaded
|
1507 |
+
msgid "This is the \"Add new Table\" screen."
|
1508 |
+
msgstr "Dies ist die \"Neue Tabelle anlegen\"-Seite."
|
1509 |
+
|
1510 |
+
#: wp-table-reloaded-admin.php:1958
|
1511 |
+
#@ wp-table-reloaded
|
1512 |
+
msgid "This is the \"Import a Table\" screen."
|
1513 |
+
msgstr "Dies ist die \"Tabelle importieren\"-Seite."
|
1514 |
+
|
1515 |
+
#: wp-table-reloaded-admin.php:1961
|
1516 |
+
#@ wp-table-reloaded
|
1517 |
+
msgid "This is the \"Export a Table\" screen."
|
1518 |
+
msgstr "Dies ist die \"Tabelle exportieren\"-Seite."
|
1519 |
+
|
1520 |
+
#: wp-table-reloaded-admin.php:1964
|
1521 |
+
#@ wp-table-reloaded
|
1522 |
+
msgid "This is the \"Plugin Options\" screen."
|
1523 |
+
msgstr "Dies ist die \"Plugin-Einstellungen\"-Seite."
|
1524 |
+
|
1525 |
+
#: wp-table-reloaded-admin.php:1970
|
1526 |
+
#@ wp-table-reloaded
|
1527 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1528 |
+
msgstr "Dies ist die \"Über das Plugin\"-Seite."
|
1529 |
+
|
1530 |
+
#: wp-table-reloaded-admin.php:2275
|
1531 |
+
#@ wp-table-reloaded
|
1532 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1533 |
+
msgstr "Um dieses Benutzerdefinierte Datenfeld anzuzeigen, nutze diesen Shortcode:"
|
1534 |
+
|
1535 |
+
#: wp-table-reloaded-admin.php:2276
|
1536 |
+
#@ wp-table-reloaded
|
1537 |
+
msgid "To show this table, use this shortcode:"
|
1538 |
+
msgstr "Um diese Tabelle anzuzeigen, nutze diesen Shortcode:"
|
1539 |
+
|
1540 |
+
#: wp-table-reloaded-admin.php:2350
|
1541 |
+
#@ wp-table-reloaded
|
1542 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1543 |
+
msgstr "Vielen Dank, dass du <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a> nutzt."
|
1544 |
+
|
1545 |
+
#: wp-table-reloaded-admin.php:181
|
1546 |
+
#@ wp-table-reloaded
|
1547 |
+
msgid "Sure, no problem!"
|
1548 |
+
msgstr "Na klar, kein Problem!"
|
1549 |
+
|
1550 |
+
#: wp-table-reloaded-admin.php:182
|
1551 |
+
#@ wp-table-reloaded
|
1552 |
+
msgid "I already donated."
|
1553 |
+
msgstr "Ich habe schon gespendet."
|
1554 |
+
|
1555 |
+
#: wp-table-reloaded-admin.php:183
|
1556 |
+
#@ wp-table-reloaded
|
1557 |
+
msgid "No, thanks. Don't ask again."
|
1558 |
+
msgstr "Nein, Danke. Frag nicht nochmal."
|
1559 |
+
|
1560 |
+
#: wp-table-reloaded-admin.php:1015
|
1561 |
+
#, php-format
|
1562 |
+
#@ wp-table-reloaded
|
1563 |
+
msgid "Edit %s"
|
1564 |
+
msgstr "Bearbeite %s"
|
1565 |
+
|
1566 |
+
#: wp-table-reloaded-admin.php:1372
|
1567 |
+
#@ wp-table-reloaded
|
1568 |
+
msgid "The first row of your table will use the <th> tag."
|
1569 |
+
msgstr "Die erste Zeile der Tabelle wird mit dem HTML-Tag <th> markiert."
|
1570 |
+
|
1571 |
+
#: wp-table-reloaded-admin.php:1376
|
1572 |
+
#@ wp-table-reloaded
|
1573 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
1574 |
+
msgstr "Der Name der Tabelle wird in einem <h2>-HTML-Tag über die Tabelle geschrieben."
|
1575 |
+
|
1576 |
+
#: wp-table-reloaded-admin.php:1730
|
1577 |
+
#@ wp-table-reloaded
|
1578 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
1579 |
+
msgstr "Ja, lade folgenden CSS-Code auf meiner Website in einem <style>-HTML-Tag."
|
1580 |
+
|
1581 |
+
#: wp-table-reloaded-admin.php:2263
|
1582 |
+
#@ wp-table-reloaded
|
1583 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1584 |
+
msgstr "Klicke zunächst in die Tabellenzelle, in die du ein Bild einfügen möchtest."
|
1585 |
+
|
1586 |
+
#: wp-table-reloaded-admin.php:2263
|
1587 |
+
#@ wp-table-reloaded
|
1588 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1589 |
+
msgstr "Wähle dann das Bild in der sich öffnenden Medien-Bibliothek, lade dort ein neues Bidl hoch oder gib die URL des Bildes ein."
|
1590 |
+
|
1591 |
+
#: wp-table-reloaded-admin.php:2263
|
1592 |
+
#, php-format
|
1593 |
+
#@ wp-table-reloaded
|
1594 |
+
msgid "Click the \"%s\" button to insert the image."
|
1595 |
+
msgstr "Klicke dann die Schaltfläche \"%s\" um das Bild einzufügen."
|
1596 |
+
|
1597 |
+
#: wp-table-reloaded-admin.php:2263
|
1598 |
+
msgid "Insert into Post"
|
1599 |
+
msgstr ""
|
1600 |
+
|
languages/wp-table-reloaded-es_ES.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-es_ES.po
CHANGED
@@ -1,726 +1,1600 @@
|
|
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: 2009-04-27 16:30+0000\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Alejandro Urrutia <alejandro@theindependentproject.com>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
#: php/wp-table-reloaded-
|
36 |
-
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
-
|
40 |
-
#: php/wp-table-reloaded-export.class.php:
|
41 |
-
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
-
|
45 |
-
#: wp-table-reloaded-
|
46 |
-
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
-
|
50 |
-
#: wp-table-reloaded-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
-
|
66 |
-
#: wp-table-reloaded-admin.php:
|
67 |
-
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
-
|
71 |
-
#: wp-table-reloaded-admin.php:
|
72 |
-
|
73 |
-
msgid "
|
74 |
-
msgstr "
|
75 |
-
|
76 |
-
#: wp-table-reloaded-admin.php:
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
-
|
88 |
-
#: wp-table-reloaded-admin.php:
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
-
|
104 |
-
#: wp-table-reloaded-admin.php:
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
#: wp-table-reloaded-admin.php:
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
-
|
136 |
-
#: wp-table-reloaded-admin.php:
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
-
|
148 |
-
#: wp-table-reloaded-admin.php:
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
#: wp-table-reloaded-admin.php:
|
160 |
-
#: wp-table-reloaded-admin.php:
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#: wp-table-reloaded-admin.php:
|
166 |
-
#: wp-table-reloaded-admin.php:
|
167 |
-
|
168 |
-
msgid "
|
169 |
-
msgstr "
|
170 |
-
|
171 |
-
#: wp-table-reloaded-admin.php:
|
172 |
-
#: wp-table-reloaded-admin.php:
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
#: wp-table-reloaded-admin.php:
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
#: wp-table-reloaded-admin.php:
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
#: wp-table-reloaded-admin.php:
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
#: wp-table-reloaded-admin.php:
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
#: wp-table-reloaded-admin.php:
|
207 |
-
#: wp-table-reloaded-admin.php:
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
#: wp-table-reloaded-admin.php:
|
213 |
-
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
-
|
217 |
-
#: wp-table-reloaded-admin.php:
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
#: wp-table-reloaded-admin.php:
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
-
|
241 |
-
#: wp-table-reloaded-admin.php:
|
242 |
-
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
-
|
246 |
-
#: wp-table-reloaded-admin.php:
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
#: wp-table-reloaded-admin.php:
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
#: wp-table-reloaded-admin.php:
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
msgid "
|
284 |
-
msgstr "
|
285 |
-
|
286 |
-
#: wp-table-reloaded-admin.php:
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
msgid "
|
304 |
-
msgstr "
|
305 |
-
|
306 |
-
#: wp-table-reloaded-admin.php:
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
#: wp-table-reloaded-admin.php:
|
315 |
-
|
316 |
-
msgid "
|
317 |
-
msgstr "
|
318 |
-
|
319 |
-
#: wp-table-reloaded-admin.php:
|
320 |
-
#: wp-table-reloaded-admin.php:
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
#: wp-table-reloaded-admin.php:
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
msgid "
|
343 |
-
msgstr "
|
344 |
-
|
345 |
-
#: wp-table-reloaded-admin.php:
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
msgid "
|
363 |
-
msgstr "
|
364 |
-
|
365 |
-
#: wp-table-reloaded-admin.php:
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
msgid "
|
379 |
-
msgstr "
|
380 |
-
|
381 |
-
#: wp-table-reloaded-admin.php:
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
msgid "
|
391 |
-
msgstr "
|
392 |
-
|
393 |
-
#: wp-table-reloaded-admin.php:
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
msgid "
|
411 |
-
msgstr "
|
412 |
-
|
413 |
-
#: wp-table-reloaded-admin.php:
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
#: wp-table-reloaded-admin.php:
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
#: wp-table-reloaded-admin.php:
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
msgid "
|
446 |
-
msgstr "
|
447 |
-
|
448 |
-
#: wp-table-reloaded-admin.php:
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
msgid "
|
466 |
-
msgstr "
|
467 |
-
|
468 |
-
#: wp-table-reloaded-admin.php:
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
#: wp-table-reloaded-admin.php:
|
481 |
-
|
482 |
-
msgid "
|
483 |
-
msgstr "
|
484 |
-
|
485 |
-
#: wp-table-reloaded-admin.php:
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
-
|
505 |
-
#: wp-table-reloaded-admin.php:
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
msgid "
|
523 |
-
msgstr "
|
524 |
-
|
525 |
-
#: wp-table-reloaded-admin.php:
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
-
|
546 |
-
#: wp-table-reloaded-admin.php:
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
msgid "
|
564 |
-
msgstr "
|
565 |
-
|
566 |
-
#: wp-table-reloaded-admin.php:
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
msgid "
|
584 |
-
msgstr "
|
585 |
-
|
586 |
-
#: wp-table-reloaded-admin.php:
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
msgid "
|
604 |
-
msgstr "
|
605 |
-
|
606 |
-
#: wp-table-reloaded-admin.php:
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
msgid "
|
624 |
-
msgstr "
|
625 |
-
|
626 |
-
#: wp-table-reloaded-admin.php:
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
msgid "
|
644 |
-
msgstr "
|
645 |
-
|
646 |
-
#: wp-table-reloaded-admin.php:
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
-
|
666 |
-
#: wp-table-reloaded-admin.php:
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: 2009-04-27 16:30+0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Alejandro Urrutia <alejandro@theindependentproject.com>\n"
|
8 |
+
"Language-Team: <alejandro@theindependentproject.com>\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-Poedit-Language: Spanish\n"
|
14 |
+
"X-Poedit-Country: SPAIN\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;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: php/wp-table-reloaded-export.class.php:30
|
23 |
+
#: php/wp-table-reloaded-import.class.php:38
|
24 |
+
#@ wp-table-reloaded
|
25 |
+
msgid "CSV - Character-Separated Values"
|
26 |
+
msgstr "CSV - Character-Separated Values"
|
27 |
+
|
28 |
+
#: php/wp-table-reloaded-export.class.php:31
|
29 |
+
#: php/wp-table-reloaded-import.class.php:39
|
30 |
+
#@ wp-table-reloaded
|
31 |
+
msgid "HTML - Hypertext Markup Language"
|
32 |
+
msgstr "HTML - Hypertext Markup Language"
|
33 |
+
|
34 |
+
#: php/wp-table-reloaded-export.class.php:32
|
35 |
+
#: php/wp-table-reloaded-import.class.php:40
|
36 |
+
#@ wp-table-reloaded
|
37 |
+
msgid "XML - eXtended Markup Language"
|
38 |
+
msgstr "XML - eXtended Markup Language"
|
39 |
+
|
40 |
+
#: php/wp-table-reloaded-export.class.php:35
|
41 |
+
#@ wp-table-reloaded
|
42 |
+
msgid "; (semicolon)"
|
43 |
+
msgstr "; (punto y coma)"
|
44 |
+
|
45 |
+
#: php/wp-table-reloaded-export.class.php:36
|
46 |
+
#@ wp-table-reloaded
|
47 |
+
msgid ", (comma)"
|
48 |
+
msgstr ", (coma)"
|
49 |
+
|
50 |
+
#: php/wp-table-reloaded-export.class.php:37
|
51 |
+
#@ wp-table-reloaded
|
52 |
+
msgid ": (colon)"
|
53 |
+
msgstr ": (dos puntos)"
|
54 |
+
|
55 |
+
#: wp-table-reloaded-admin.php:208
|
56 |
+
#, php-format
|
57 |
+
#@ wp-table-reloaded
|
58 |
+
msgid "Table \"%s\" added successfully."
|
59 |
+
msgstr "Tabla \"%s\" añadida exitósamente."
|
60 |
+
|
61 |
+
#: wp-table-reloaded-admin.php:241
|
62 |
+
#@ wp-table-reloaded
|
63 |
+
msgid "Table edited successfully."
|
64 |
+
msgstr "Tabla editada exitósamente."
|
65 |
+
|
66 |
+
#: wp-table-reloaded-admin.php:279
|
67 |
+
#@ wp-table-reloaded
|
68 |
+
msgid "Rows swapped successfully."
|
69 |
+
msgstr "Filas intercambiadas exitósamente."
|
70 |
+
|
71 |
+
#: wp-table-reloaded-admin.php:300
|
72 |
+
#@ wp-table-reloaded
|
73 |
+
msgid "Columns swapped successfully."
|
74 |
+
msgstr "Columnas intercambiadas exitósamente."
|
75 |
+
|
76 |
+
#: wp-table-reloaded-admin.php:470
|
77 |
+
#: wp-table-reloaded-admin.php:525
|
78 |
+
#@ wp-table-reloaded
|
79 |
+
msgid "Copy of"
|
80 |
+
msgstr "Copia de"
|
81 |
+
|
82 |
+
#: wp-table-reloaded-admin.php:530
|
83 |
+
#, php-format
|
84 |
+
#@ wp-table-reloaded
|
85 |
+
msgid "Table \"%s\" copied successfully."
|
86 |
+
msgstr "Tabla \"%s\" copiada exitósamente."
|
87 |
+
|
88 |
+
#: wp-table-reloaded-admin.php:546
|
89 |
+
#, php-format
|
90 |
+
#@ wp-table-reloaded
|
91 |
+
msgid "Table \"%s\" deleted successfully."
|
92 |
+
msgstr "Tabla \"%s\" eliminada exitósamente."
|
93 |
+
|
94 |
+
#: wp-table-reloaded-admin.php:557
|
95 |
+
#@ wp-table-reloaded
|
96 |
+
msgid "Row deleted successfully."
|
97 |
+
msgstr "Fila eliminada exitósamente."
|
98 |
+
|
99 |
+
#: wp-table-reloaded-admin.php:571
|
100 |
+
#@ wp-table-reloaded
|
101 |
+
msgid "Column deleted successfully."
|
102 |
+
msgstr "Columna eliminada exitósamente."
|
103 |
+
|
104 |
+
#: wp-table-reloaded-admin.php:588
|
105 |
+
#@ wp-table-reloaded
|
106 |
+
msgid "Delete failed."
|
107 |
+
msgstr "Eliminación fallida."
|
108 |
+
|
109 |
+
#: wp-table-reloaded-admin.php:614
|
110 |
+
#@ wp-table-reloaded
|
111 |
+
msgid "Row inserted successfully."
|
112 |
+
msgstr "Filas insertadas exitósamente."
|
113 |
+
|
114 |
+
#: wp-table-reloaded-admin.php:624
|
115 |
+
#@ wp-table-reloaded
|
116 |
+
msgid "Column inserted successfully."
|
117 |
+
msgstr "Columna insertada exitósamente."
|
118 |
+
|
119 |
+
#: wp-table-reloaded-admin.php:627
|
120 |
+
#@ wp-table-reloaded
|
121 |
+
msgid "Insert failed."
|
122 |
+
msgstr "Inserción fallida."
|
123 |
+
|
124 |
+
#: wp-table-reloaded-admin.php:655
|
125 |
+
#: wp-table-reloaded-admin.php:664
|
126 |
+
#: wp-table-reloaded-admin.php:674
|
127 |
+
#@ wp-table-reloaded
|
128 |
+
msgid "Imported Table"
|
129 |
+
msgstr "Tabla Importada"
|
130 |
+
|
131 |
+
#: wp-table-reloaded-admin.php:665
|
132 |
+
#@ wp-table-reloaded
|
133 |
+
msgid "via form"
|
134 |
+
msgstr "vía formulario"
|
135 |
+
|
136 |
+
#: wp-table-reloaded-admin.php:701
|
137 |
+
#: wp-table-reloaded-admin.php:739
|
138 |
+
#@ wp-table-reloaded
|
139 |
+
msgid "Table imported successfully."
|
140 |
+
msgstr "Tabla importada exitósamente"
|
141 |
+
|
142 |
+
#: wp-table-reloaded-admin.php:685
|
143 |
+
#: wp-table-reloaded-admin.php:716
|
144 |
+
#@ wp-table-reloaded
|
145 |
+
msgid "Table could not be imported."
|
146 |
+
msgstr "La Tabla no pudo ser importada."
|
147 |
+
|
148 |
+
#: wp-table-reloaded-admin.php:766
|
149 |
+
#, php-format
|
150 |
+
#@ wp-table-reloaded
|
151 |
+
msgid "Table \"%s\" exported successfully."
|
152 |
+
msgstr "Tabla \"%s\" exportada exitósamente."
|
153 |
+
|
154 |
+
#: wp-table-reloaded-admin.php:797
|
155 |
+
#@ wp-table-reloaded
|
156 |
+
msgid "Options saved successfully."
|
157 |
+
msgstr "Opciones guardadas exitósamente."
|
158 |
+
|
159 |
+
#: wp-table-reloaded-admin.php:815
|
160 |
+
#: wp-table-reloaded-admin.php:958
|
161 |
+
#@ wp-table-reloaded
|
162 |
+
msgid "WP-Table Reloaded"
|
163 |
+
msgstr "WP-Table Reloaded"
|
164 |
+
|
165 |
+
#: wp-table-reloaded-admin.php:816
|
166 |
+
#: wp-table-reloaded-admin.php:1967
|
167 |
+
#@ wp-table-reloaded
|
168 |
+
msgid "Plugin deactivated successfully."
|
169 |
+
msgstr "Plugin desactivado exitósamente."
|
170 |
+
|
171 |
+
#: wp-table-reloaded-admin.php:817
|
172 |
+
#: wp-table-reloaded-admin.php:1967
|
173 |
+
#@ wp-table-reloaded
|
174 |
+
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
175 |
+
msgstr "Todas las tablas, los datos y las opciones fueron eliminados. Ahora puede eliminar la subcarpeta del plugin desde la carpeta de plugins de WordPress."
|
176 |
+
|
177 |
+
#: wp-table-reloaded-admin.php:833
|
178 |
+
#: wp-table-reloaded-admin.php:958
|
179 |
+
#@ wp-table-reloaded
|
180 |
+
msgid "List of Tables"
|
181 |
+
msgstr "Lista de Tablas"
|
182 |
+
|
183 |
+
#: wp-table-reloaded-admin.php:846
|
184 |
+
#: wp-table-reloaded-admin.php:854
|
185 |
+
#: wp-table-reloaded-admin.php:973
|
186 |
+
#: wp-table-reloaded-admin.php:982
|
187 |
+
#: wp-table-reloaded-admin.php:1567
|
188 |
+
#: wp-table-reloaded-admin.php:1576
|
189 |
+
#@ wp-table-reloaded
|
190 |
+
msgid "ID"
|
191 |
+
msgstr "ID"
|
192 |
+
|
193 |
+
#: wp-table-reloaded-admin.php:847
|
194 |
+
#: wp-table-reloaded-admin.php:855
|
195 |
+
#: wp-table-reloaded-admin.php:974
|
196 |
+
#: wp-table-reloaded-admin.php:983
|
197 |
+
#: wp-table-reloaded-admin.php:1067
|
198 |
+
#: wp-table-reloaded-admin.php:1121
|
199 |
+
#: wp-table-reloaded-admin.php:1568
|
200 |
+
#: wp-table-reloaded-admin.php:1577
|
201 |
+
#@ wp-table-reloaded
|
202 |
+
msgid "Table Name"
|
203 |
+
msgstr "Nombre de Tabla"
|
204 |
+
|
205 |
+
#: wp-table-reloaded-admin.php:848
|
206 |
+
#: wp-table-reloaded-admin.php:856
|
207 |
+
#: wp-table-reloaded-admin.php:975
|
208 |
+
#: wp-table-reloaded-admin.php:984
|
209 |
+
#: wp-table-reloaded-admin.php:1071
|
210 |
+
#: wp-table-reloaded-admin.php:1125
|
211 |
+
#: wp-table-reloaded-admin.php:1569
|
212 |
+
#: wp-table-reloaded-admin.php:1578
|
213 |
+
#@ wp-table-reloaded
|
214 |
+
msgid "Description"
|
215 |
+
msgstr "Descripción"
|
216 |
+
|
217 |
+
#: wp-table-reloaded-admin.php:849
|
218 |
+
#: wp-table-reloaded-admin.php:857
|
219 |
+
#: wp-table-reloaded-admin.php:1414
|
220 |
+
#: wp-table-reloaded-admin.php:1570
|
221 |
+
#: wp-table-reloaded-admin.php:1579
|
222 |
+
#@ wp-table-reloaded
|
223 |
+
msgid "Action"
|
224 |
+
msgstr "Acción"
|
225 |
+
|
226 |
+
#: wp-table-reloaded-admin.php:1017
|
227 |
+
#@ wp-table-reloaded
|
228 |
+
msgid "Edit"
|
229 |
+
msgstr "Editar"
|
230 |
+
|
231 |
+
#: wp-table-reloaded-admin.php:2268
|
232 |
+
#@ wp-table-reloaded
|
233 |
+
msgid "Do you want to copy this table?"
|
234 |
+
msgstr "¿Quieres copiar esta Tabla?"
|
235 |
+
|
236 |
+
#: wp-table-reloaded-admin.php:1020
|
237 |
+
#@ wp-table-reloaded
|
238 |
+
msgid "Copy"
|
239 |
+
msgstr "Copiar"
|
240 |
+
|
241 |
+
#: wp-table-reloaded-admin.php:1021
|
242 |
+
#@ wp-table-reloaded
|
243 |
+
msgid "Export"
|
244 |
+
msgstr "Exportar"
|
245 |
+
|
246 |
+
#: wp-table-reloaded-admin.php:2269
|
247 |
+
#@ wp-table-reloaded
|
248 |
+
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
249 |
+
msgstr "La tabla y todo su contenido serán eliminados. ¿Realmente quieres eliminarla?"
|
250 |
+
|
251 |
+
#: wp-table-reloaded-admin.php:1022
|
252 |
+
#@ wp-table-reloaded
|
253 |
+
msgid "Delete"
|
254 |
+
msgstr "Eliminar"
|
255 |
+
|
256 |
+
#: wp-table-reloaded-admin.php:886
|
257 |
+
#: wp-table-reloaded-admin.php:1045
|
258 |
+
#: wp-table-reloaded-admin.php:1699
|
259 |
+
#@ wp-table-reloaded
|
260 |
+
msgid "No tables found."
|
261 |
+
msgstr "No se han encontrado Tablas."
|
262 |
+
|
263 |
+
#: wp-table-reloaded-admin.php:1045
|
264 |
+
#: wp-table-reloaded-admin.php:1699
|
265 |
+
#, php-format
|
266 |
+
#@ wp-table-reloaded
|
267 |
+
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
268 |
+
msgstr "¡Podrías <a href=\"%s\">añadir</a> o <a href=\"%s\">importar</a> una!"
|
269 |
+
|
270 |
+
#: wp-table-reloaded-admin.php:1055
|
271 |
+
#: wp-table-reloaded-admin.php:1902
|
272 |
+
#@ wp-table-reloaded
|
273 |
+
msgid "Add new Table"
|
274 |
+
msgstr "Añadir nueva Tabla"
|
275 |
+
|
276 |
+
#: wp-table-reloaded-admin.php:1068
|
277 |
+
#@ wp-table-reloaded
|
278 |
+
msgid "Enter Table Name"
|
279 |
+
msgstr "Ingresar nombre de la Tabla"
|
280 |
+
|
281 |
+
#: wp-table-reloaded-admin.php:1072
|
282 |
+
#@ wp-table-reloaded
|
283 |
+
msgid "Enter Description"
|
284 |
+
msgstr "Ingresar Descripción"
|
285 |
+
|
286 |
+
#: wp-table-reloaded-admin.php:1075
|
287 |
+
#@ wp-table-reloaded
|
288 |
+
msgid "Number of Rows"
|
289 |
+
msgstr "Número de Filas"
|
290 |
+
|
291 |
+
#: wp-table-reloaded-admin.php:1079
|
292 |
+
#@ wp-table-reloaded
|
293 |
+
msgid "Number of Columns"
|
294 |
+
msgstr "Número de Columnas"
|
295 |
+
|
296 |
+
#: wp-table-reloaded-admin.php:1086
|
297 |
+
#@ wp-table-reloaded
|
298 |
+
msgid "Add Table"
|
299 |
+
msgstr "Añadir Tabla"
|
300 |
+
|
301 |
+
#: wp-table-reloaded-admin.php:1105
|
302 |
+
#@ wp-table-reloaded
|
303 |
+
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
304 |
+
msgstr "Aquí puedes editar el contenido de la tabla. También es posible añadir o eliminar columnas y filas."
|
305 |
+
|
306 |
+
#: wp-table-reloaded-admin.php:1113
|
307 |
+
#@ wp-table-reloaded
|
308 |
+
msgid "Table Information"
|
309 |
+
msgstr "Información de la Tabla"
|
310 |
+
|
311 |
+
#: wp-table-reloaded-admin.php:1139
|
312 |
+
#: wp-table-reloaded-admin.php:1353
|
313 |
+
#: wp-table-reloaded-admin.php:1393
|
314 |
+
#: wp-table-reloaded-admin.php:1444
|
315 |
+
#@ wp-table-reloaded
|
316 |
+
msgid "Update Changes"
|
317 |
+
msgstr "Actualizar Cambios"
|
318 |
+
|
319 |
+
#: wp-table-reloaded-admin.php:1140
|
320 |
+
#: wp-table-reloaded-admin.php:1354
|
321 |
+
#: wp-table-reloaded-admin.php:1394
|
322 |
+
#: wp-table-reloaded-admin.php:1445
|
323 |
+
#@ wp-table-reloaded
|
324 |
+
msgid "Save and go back"
|
325 |
+
msgstr "Guardar y volver"
|
326 |
+
|
327 |
+
#: wp-table-reloaded-admin.php:1143
|
328 |
+
#: wp-table-reloaded-admin.php:1357
|
329 |
+
#: wp-table-reloaded-admin.php:1397
|
330 |
+
#: wp-table-reloaded-admin.php:1448
|
331 |
+
#@ wp-table-reloaded
|
332 |
+
msgid "Cancel"
|
333 |
+
msgstr "Cancelar"
|
334 |
+
|
335 |
+
#: wp-table-reloaded-admin.php:1149
|
336 |
+
#@ wp-table-reloaded
|
337 |
+
msgid "Table Contents"
|
338 |
+
msgstr "Contenido de la Tabla"
|
339 |
+
|
340 |
+
#: wp-table-reloaded-admin.php:1190
|
341 |
+
#@ wp-table-reloaded
|
342 |
+
msgid "Insert Row"
|
343 |
+
msgstr "Insertar Fila"
|
344 |
+
|
345 |
+
#: wp-table-reloaded-admin.php:2270
|
346 |
+
#@ wp-table-reloaded
|
347 |
+
msgid "Do you really want to delete this row?"
|
348 |
+
msgstr "¿Realmente deseas eliminar esta fila?"
|
349 |
+
|
350 |
+
#: wp-table-reloaded-admin.php:1192
|
351 |
+
#@ wp-table-reloaded
|
352 |
+
msgid "Delete Row"
|
353 |
+
msgstr "Eliminar Fila"
|
354 |
+
|
355 |
+
#: wp-table-reloaded-admin.php:1206
|
356 |
+
#@ wp-table-reloaded
|
357 |
+
msgid "Insert Column"
|
358 |
+
msgstr "Insertar Columna"
|
359 |
+
|
360 |
+
#: wp-table-reloaded-admin.php:2271
|
361 |
+
#@ wp-table-reloaded
|
362 |
+
msgid "Do you really want to delete this column?"
|
363 |
+
msgstr "¿Realmente desea eliminar esta columna?"
|
364 |
+
|
365 |
+
#: wp-table-reloaded-admin.php:1208
|
366 |
+
#@ wp-table-reloaded
|
367 |
+
msgid "Delete Column"
|
368 |
+
msgstr "Eliminar Columna"
|
369 |
+
|
370 |
+
#: wp-table-reloaded-admin.php:1246
|
371 |
+
#@ wp-table-reloaded
|
372 |
+
msgid "Data Manipulation"
|
373 |
+
msgstr "Manipulación de datos"
|
374 |
+
|
375 |
+
#: wp-table-reloaded-admin.php:1260
|
376 |
+
#, php-format
|
377 |
+
#@ wp-table-reloaded
|
378 |
+
msgid "Swap rows %s and %s"
|
379 |
+
msgstr "Intercambiar filas %s y %s"
|
380 |
+
|
381 |
+
#: wp-table-reloaded-admin.php:1262
|
382 |
+
#: wp-table-reloaded-admin.php:1280
|
383 |
+
#@ wp-table-reloaded
|
384 |
+
msgid "Swap"
|
385 |
+
msgstr "Intercambiar"
|
386 |
+
|
387 |
+
#: wp-table-reloaded-admin.php:1278
|
388 |
+
#, php-format
|
389 |
+
#@ wp-table-reloaded
|
390 |
+
msgid "Swap columns %s and %s"
|
391 |
+
msgstr "Intercambiar columnas %s y %s"
|
392 |
+
|
393 |
+
#: wp-table-reloaded-admin.php:1327
|
394 |
+
#@ wp-table-reloaded
|
395 |
+
msgid "Insert Link"
|
396 |
+
msgstr "Insertar Enlace"
|
397 |
+
|
398 |
+
#: wp-table-reloaded-admin.php:1328
|
399 |
+
#@ wp-table-reloaded
|
400 |
+
msgid "Insert Image"
|
401 |
+
msgstr "Insertar Imagen"
|
402 |
+
|
403 |
+
#: wp-table-reloaded-admin.php:2261
|
404 |
+
#@ wp-table-reloaded
|
405 |
+
msgid "URL of link to insert"
|
406 |
+
msgstr "URL del enlace a insertar"
|
407 |
+
|
408 |
+
#: wp-table-reloaded-admin.php:2262
|
409 |
+
#@ wp-table-reloaded
|
410 |
+
msgid "Text of link"
|
411 |
+
msgstr "Texto del enlace"
|
412 |
+
|
413 |
+
#: wp-table-reloaded-admin.php:2263
|
414 |
+
#@ wp-table-reloaded
|
415 |
+
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
416 |
+
msgstr "Para insertar el siguiente enlace en una celda, sólo debes hacer clic en la celda después de cerrar este cuadro de diálogo."
|
417 |
+
|
418 |
+
#: wp-table-reloaded-admin.php:1362
|
419 |
+
#@ wp-table-reloaded
|
420 |
+
msgid "Table Settings"
|
421 |
+
msgstr "Configuración de la Tabla"
|
422 |
+
|
423 |
+
#: wp-table-reloaded-admin.php:1364
|
424 |
+
#@ wp-table-reloaded
|
425 |
+
msgid "These settings will only be used for this table."
|
426 |
+
msgstr "Estos ajustes sólo se utilizarán para esta tabla."
|
427 |
+
|
428 |
+
#: wp-table-reloaded-admin.php:1367
|
429 |
+
#@ wp-table-reloaded
|
430 |
+
msgid "Alternating row colors"
|
431 |
+
msgstr "Colores de fila alternantes."
|
432 |
+
|
433 |
+
#: wp-table-reloaded-admin.php:1368
|
434 |
+
#@ wp-table-reloaded
|
435 |
+
msgid "Every second row will have an alternating background color."
|
436 |
+
msgstr "Las filas consecutivas alternarán su color de fondo."
|
437 |
+
|
438 |
+
#: wp-table-reloaded-admin.php:1371
|
439 |
+
#@ wp-table-reloaded
|
440 |
+
msgid "Use Table Headline"
|
441 |
+
msgstr "Utilizar encabezado de Tabla"
|
442 |
+
|
443 |
+
#: wp-table-reloaded-admin.php:1375
|
444 |
+
#@ wp-table-reloaded
|
445 |
+
msgid "Print Table Name"
|
446 |
+
msgstr "Mostrar Nombre de la Tabla"
|
447 |
+
|
448 |
+
#: wp-table-reloaded-admin.php:1379
|
449 |
+
#@ wp-table-reloaded
|
450 |
+
msgid "Print Table Description"
|
451 |
+
msgstr "Mostrar Descripción de la Tabla"
|
452 |
+
|
453 |
+
#: wp-table-reloaded-admin.php:1380
|
454 |
+
#@ wp-table-reloaded
|
455 |
+
msgid "The Table Description will be written under the table."
|
456 |
+
msgstr "La Descripción de la Tabla será escrita debajo de la Tabla."
|
457 |
+
|
458 |
+
#: wp-table-reloaded-admin.php:1383
|
459 |
+
#@ wp-table-reloaded
|
460 |
+
msgid "Use Tablesorter"
|
461 |
+
msgstr "Usar Tablesorter"
|
462 |
+
|
463 |
+
#: wp-table-reloaded-admin.php:1453
|
464 |
+
#@ wp-table-reloaded
|
465 |
+
msgid "Other actions"
|
466 |
+
msgstr "Otras acciones"
|
467 |
+
|
468 |
+
#: wp-table-reloaded-admin.php:1456
|
469 |
+
#@ wp-table-reloaded
|
470 |
+
msgid "Delete Table"
|
471 |
+
msgstr "Eliminar Tabla"
|
472 |
+
|
473 |
+
#: wp-table-reloaded-admin.php:1457
|
474 |
+
#: wp-table-reloaded-admin.php:1688
|
475 |
+
#@ wp-table-reloaded
|
476 |
+
msgid "Export Table"
|
477 |
+
msgstr "Exportar Tabla"
|
478 |
+
|
479 |
+
#: wp-table-reloaded-admin.php:1469
|
480 |
+
#: wp-table-reloaded-admin.php:1903
|
481 |
+
#@ wp-table-reloaded
|
482 |
+
msgid "Import a Table"
|
483 |
+
msgstr "Importar una Tabla"
|
484 |
+
|
485 |
+
#: wp-table-reloaded-admin.php:1480
|
486 |
+
#@ wp-table-reloaded
|
487 |
+
msgid "Select Import Format"
|
488 |
+
msgstr "Seleccionar Formato de Importación"
|
489 |
+
|
490 |
+
#: wp-table-reloaded-admin.php:1679
|
491 |
+
#@ wp-table-reloaded
|
492 |
+
msgid "<small>(Only needed for CSV export.)</small>"
|
493 |
+
msgstr "<small>(Solamente necesario para exportación CSV.)</small>"
|
494 |
+
|
495 |
+
#: wp-table-reloaded-admin.php:1523
|
496 |
+
#@ wp-table-reloaded
|
497 |
+
msgid "Select File with Table to Import"
|
498 |
+
msgstr "Seleccionar archivo con Tabla para Importar"
|
499 |
+
|
500 |
+
#: wp-table-reloaded-admin.php:1535
|
501 |
+
#@ wp-table-reloaded
|
502 |
+
msgid "Paste data with Table to Import"
|
503 |
+
msgstr "Pegar datos con la Tabla para Importar"
|
504 |
+
|
505 |
+
#: wp-table-reloaded-admin.php:1541
|
506 |
+
#@ wp-table-reloaded
|
507 |
+
msgid "Import Table"
|
508 |
+
msgstr "Importar Tabla"
|
509 |
+
|
510 |
+
#: wp-table-reloaded-admin.php:1554
|
511 |
+
#@ wp-table-reloaded
|
512 |
+
msgid "Import from original wp-Table plugin"
|
513 |
+
msgstr "Importar desde el plugin WP-Table original"
|
514 |
+
|
515 |
+
#: wp-table-reloaded-admin.php:2272
|
516 |
+
#@ wp-table-reloaded
|
517 |
+
msgid "Do you really want to import this table from the wp-Table plugin?"
|
518 |
+
msgstr "¿Estás seguro de que quieres importar esta tabla desde el plugin WP-Table?"
|
519 |
+
|
520 |
+
#: wp-table-reloaded-admin.php:1600
|
521 |
+
#@ wp-table-reloaded
|
522 |
+
msgid "Import"
|
523 |
+
msgstr "Importar"
|
524 |
+
|
525 |
+
#: wp-table-reloaded-admin.php:1614
|
526 |
+
#@ wp-table-reloaded
|
527 |
+
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
528 |
+
msgstr "WP-Table de Alex Rabe parece estar instalado, pero no se han encontrado tablas."
|
529 |
+
|
530 |
+
#: wp-table-reloaded-admin.php:1633
|
531 |
+
#: wp-table-reloaded-admin.php:1904
|
532 |
+
#@ wp-table-reloaded
|
533 |
+
msgid "Export a Table"
|
534 |
+
msgstr "Exportar Tabla"
|
535 |
+
|
536 |
+
#: wp-table-reloaded-admin.php:1647
|
537 |
+
#@ wp-table-reloaded
|
538 |
+
msgid "Select Table to Export"
|
539 |
+
msgstr "Seleccionar Tabla a Exportar"
|
540 |
+
|
541 |
+
#: wp-table-reloaded-admin.php:1662
|
542 |
+
#@ wp-table-reloaded
|
543 |
+
msgid "Select Export Format"
|
544 |
+
msgstr "Seleccionar Formato de Exportación"
|
545 |
+
|
546 |
+
#: wp-table-reloaded-admin.php:1672
|
547 |
+
#@ wp-table-reloaded
|
548 |
+
msgid "Select Delimiter to use"
|
549 |
+
msgstr "Seleccionar Delimitador a utilizar"
|
550 |
+
|
551 |
+
#: wp-table-reloaded-admin.php:1682
|
552 |
+
#@ wp-table-reloaded
|
553 |
+
msgid "Download file"
|
554 |
+
msgstr "Descargar archivo"
|
555 |
+
|
556 |
+
#: wp-table-reloaded-admin.php:1683
|
557 |
+
#@ wp-table-reloaded
|
558 |
+
msgid "Yes, I want to download the export file."
|
559 |
+
msgstr "Si, quiero descargar el archivo exportado."
|
560 |
+
|
561 |
+
#: wp-table-reloaded-admin.php:1708
|
562 |
+
#@ wp-table-reloaded
|
563 |
+
msgid "General Plugin Options"
|
564 |
+
msgstr "Opciones Generales del Plugin"
|
565 |
+
|
566 |
+
#: wp-table-reloaded-admin.php:1720
|
567 |
+
#@ wp-table-reloaded
|
568 |
+
msgid "Frontend Options"
|
569 |
+
msgstr "Opciones de Despliegue"
|
570 |
+
|
571 |
+
#: wp-table-reloaded-admin.php:1724
|
572 |
+
#@ wp-table-reloaded
|
573 |
+
msgid "Enable Tablesorter-JavaScript?"
|
574 |
+
msgstr "¿Habilitar el javascript Tablesorter?"
|
575 |
+
|
576 |
+
#: wp-table-reloaded-admin.php:1728
|
577 |
+
#@ wp-table-reloaded
|
578 |
+
msgid "Add custom CSS?"
|
579 |
+
msgstr "¿Añadir CSS personalizado?"
|
580 |
+
|
581 |
+
#: wp-table-reloaded-admin.php:1735
|
582 |
+
#@ wp-table-reloaded
|
583 |
+
msgid "Enter custom CSS"
|
584 |
+
msgstr "Introduzca CSS personalizado"
|
585 |
+
|
586 |
+
#: wp-table-reloaded-admin.php:1758
|
587 |
+
#@ wp-table-reloaded
|
588 |
+
msgid "Uninstall Plugin upon Deactivation?"
|
589 |
+
msgstr "¿Desinstalar Plugin después de su Desactivación?"
|
590 |
+
|
591 |
+
#: wp-table-reloaded-admin.php:1772
|
592 |
+
#@ wp-table-reloaded
|
593 |
+
msgid "Save Options"
|
594 |
+
msgstr "Guardar Opciones"
|
595 |
+
|
596 |
+
#: wp-table-reloaded-admin.php:2260
|
597 |
+
#@ wp-table-reloaded
|
598 |
+
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
599 |
+
msgstr "¿Realmente quieres activar esto? ¡Debes hacer esto sólo en el momento previo a la desintalación!"
|
600 |
+
|
601 |
+
#: wp-table-reloaded-admin.php:1778
|
602 |
+
#@ wp-table-reloaded
|
603 |
+
msgid "Manually Uninstall Plugin"
|
604 |
+
msgstr "Desinstalar Plugin Manualmente"
|
605 |
+
|
606 |
+
#: wp-table-reloaded-admin.php:2273
|
607 |
+
#@ wp-table-reloaded
|
608 |
+
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
609 |
+
msgstr "¿Realmente quieres desinstalar el plugin y eliminar TODOS los datos?"
|
610 |
+
|
611 |
+
#: wp-table-reloaded-admin.php:2274
|
612 |
+
#@ wp-table-reloaded
|
613 |
+
msgid "Are you really sure?"
|
614 |
+
msgstr "¿Estás completamente seguro?"
|
615 |
+
|
616 |
+
#: wp-table-reloaded-admin.php:1783
|
617 |
+
#@ wp-table-reloaded
|
618 |
+
msgid "Uninstall Plugin WP-Table Reloaded"
|
619 |
+
msgstr "Desinstalar Plugin WP-Table Reloaded"
|
620 |
+
|
621 |
+
#: wp-table-reloaded-admin.php:1800
|
622 |
+
#@ wp-table-reloaded
|
623 |
+
msgid "Plugin Purpose"
|
624 |
+
msgstr "Propósito del Plugin"
|
625 |
+
|
626 |
+
#: wp-table-reloaded-admin.php:1807
|
627 |
+
#@ wp-table-reloaded
|
628 |
+
msgid "Usage"
|
629 |
+
msgstr "Uso"
|
630 |
+
|
631 |
+
#: wp-table-reloaded-admin.php:1814
|
632 |
+
#@ wp-table-reloaded
|
633 |
+
msgid "More Information and Documentation"
|
634 |
+
msgstr "Más Información y Documentación"
|
635 |
+
|
636 |
+
#: wp-table-reloaded-admin.php:1821
|
637 |
+
#@ wp-table-reloaded
|
638 |
+
msgid "Author and Licence"
|
639 |
+
msgstr "Autor y Licencia"
|
640 |
+
|
641 |
+
#: wp-table-reloaded-admin.php:1828
|
642 |
+
#@ wp-table-reloaded
|
643 |
+
msgid "Credits and Thanks"
|
644 |
+
msgstr "Créditos y Agradecimientos"
|
645 |
+
|
646 |
+
#: wp-table-reloaded-admin.php:1831
|
647 |
+
#@ wp-table-reloaded
|
648 |
+
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
649 |
+
msgstr "Los agradecimientos son para <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> por la versión original del plugin WP-Table,"
|
650 |
+
|
651 |
+
#: wp-table-reloaded-admin.php:1833
|
652 |
+
#@ wp-table-reloaded
|
653 |
+
msgid "the submitters of translations:"
|
654 |
+
msgstr "los traductores:"
|
655 |
+
|
656 |
+
#: wp-table-reloaded-admin.php:1834
|
657 |
+
#@ wp-table-reloaded
|
658 |
+
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
659 |
+
msgstr "Albanés (gracias a <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
660 |
+
|
661 |
+
#: wp-table-reloaded-admin.php:1838
|
662 |
+
#@ wp-table-reloaded
|
663 |
+
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
664 |
+
msgstr "Francés (gracias a <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
665 |
+
|
666 |
+
#: wp-table-reloaded-admin.php:1842
|
667 |
+
#@ wp-table-reloaded
|
668 |
+
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
669 |
+
msgstr "Ruso (gracias a <a href=\"http://wp-skins.info/\">Truper</a>)"
|
670 |
+
|
671 |
+
#: wp-table-reloaded-admin.php:1844
|
672 |
+
#@ wp-table-reloaded
|
673 |
+
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
674 |
+
msgstr "Sueco (gracias a <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
675 |
+
|
676 |
+
#: wp-table-reloaded-admin.php:1845
|
677 |
+
#@ wp-table-reloaded
|
678 |
+
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
679 |
+
msgstr "Turco (gracias a <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
680 |
+
|
681 |
+
#: wp-table-reloaded-admin.php:1901
|
682 |
+
#@ wp-table-reloaded
|
683 |
+
msgid "List Tables"
|
684 |
+
msgstr "Listar Tablas"
|
685 |
+
|
686 |
+
#: wp-table-reloaded-admin.php:1906
|
687 |
+
#@ wp-table-reloaded
|
688 |
+
msgid "Plugin Options"
|
689 |
+
msgstr "Opciones del Plugin"
|
690 |
+
|
691 |
+
#: wp-table-reloaded-admin.php:1907
|
692 |
+
#@ wp-table-reloaded
|
693 |
+
msgid "About the Plugin"
|
694 |
+
msgstr "Sobre el Plugin"
|
695 |
+
|
696 |
+
#: php/wp-table-reloaded-export.class.php:38
|
697 |
+
#@ wp-table-reloaded
|
698 |
+
msgid ". (dot)"
|
699 |
+
msgstr ". (punto)"
|
700 |
+
|
701 |
+
#: php/wp-table-reloaded-export.class.php:39
|
702 |
+
#@ wp-table-reloaded
|
703 |
+
msgid "| (pipe)"
|
704 |
+
msgstr "| (barra)"
|
705 |
+
|
706 |
+
#: wp-table-reloaded-admin.php:331
|
707 |
+
#@ wp-table-reloaded
|
708 |
+
msgid "Table sorted successfully."
|
709 |
+
msgstr "Tabla reordenada exitósamente."
|
710 |
+
|
711 |
+
#: wp-table-reloaded-admin.php:474
|
712 |
+
#@ wp-table-reloaded
|
713 |
+
msgid "Table copied successfully."
|
714 |
+
msgid_plural "Tables copied successfully."
|
715 |
+
msgstr[0] "Tabla copiada exitósamente."
|
716 |
+
msgstr[1] "Tablas copiadas exitósamente."
|
717 |
+
|
718 |
+
#: wp-table-reloaded-admin.php:480
|
719 |
+
#@ wp-table-reloaded
|
720 |
+
msgid "Table deleted successfully."
|
721 |
+
msgid_plural "Tables deleted successfully."
|
722 |
+
msgstr[0] "Tabla eliminada exitósamente."
|
723 |
+
msgstr[1] "Tablas eliminadas exitósamente."
|
724 |
+
|
725 |
+
#: wp-table-reloaded-admin.php:501
|
726 |
+
#@ wp-table-reloaded
|
727 |
+
msgid "Table imported successfully."
|
728 |
+
msgid_plural "Tables imported successfully."
|
729 |
+
msgstr[0] "Tabla importada exitósamente."
|
730 |
+
msgstr[1] "Tablas importadas exitósamente."
|
731 |
+
|
732 |
+
#: wp-table-reloaded-admin.php:508
|
733 |
+
#@ wp-table-reloaded
|
734 |
+
msgid "You did not select any tables!"
|
735 |
+
msgstr "¡No haz seleccionado tablas!"
|
736 |
+
|
737 |
+
#: wp-table-reloaded-admin.php:836
|
738 |
+
#: wp-table-reloaded-admin.php:961
|
739 |
+
#@ wp-table-reloaded
|
740 |
+
msgid "This is a list of all available tables."
|
741 |
+
msgstr "Esta es una lista de todas las tablas disponibles."
|
742 |
+
|
743 |
+
#: wp-table-reloaded-admin.php:836
|
744 |
+
#@ wp-table-reloaded
|
745 |
+
msgid "You may insert a table into a post or page here."
|
746 |
+
msgstr "Aquí podrás insertar una tabla en una entrada o página."
|
747 |
+
|
748 |
+
#: wp-table-reloaded-admin.php:837
|
749 |
+
#@ wp-table-reloaded
|
750 |
+
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
751 |
+
msgstr "Haga clic en \"Insertar\" al costado de la tabla deseada, y el shortcode será insertado en el editor (<strong>[table id=<ID_de_la_tabla> /]</strong>)."
|
752 |
+
|
753 |
+
#: wp-table-reloaded-admin.php:877
|
754 |
+
#@ wp-table-reloaded
|
755 |
+
msgid "Insert"
|
756 |
+
msgstr "Insertar"
|
757 |
+
|
758 |
+
#: wp-table-reloaded-admin.php:961
|
759 |
+
#@ wp-table-reloaded
|
760 |
+
msgid "You may add, edit, copy or delete tables here."
|
761 |
+
msgstr "Aquí puedes añadir, editar, copiar o eliminar tablas."
|
762 |
+
|
763 |
+
#: wp-table-reloaded-admin.php:962
|
764 |
+
#@ wp-table-reloaded
|
765 |
+
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
766 |
+
msgstr "Si quieres mostrar una tabla en tus páginas, entradas o widgets de texto, utiliza el shortcode<strong>[table id=<ID_de_la_tabla> /]</strong> o haz click en el botón \"Tabla\" en la barra de herramientas del editor."
|
767 |
+
|
768 |
+
#: wp-table-reloaded-admin.php:1036
|
769 |
+
#: wp-table-reloaded-admin.php:1608
|
770 |
+
#@ wp-table-reloaded
|
771 |
+
msgid "Bulk actions:"
|
772 |
+
msgstr "Acciones Grupales:"
|
773 |
+
|
774 |
+
#: wp-table-reloaded-admin.php:1036
|
775 |
+
#@ wp-table-reloaded
|
776 |
+
msgid "Copy Tables"
|
777 |
+
msgstr "Copiar Tablas"
|
778 |
+
|
779 |
+
#: wp-table-reloaded-admin.php:1036
|
780 |
+
#@ wp-table-reloaded
|
781 |
+
msgid "Delete Tables"
|
782 |
+
msgstr "Eliminar Tablas"
|
783 |
+
|
784 |
+
#: wp-table-reloaded-admin.php:1149
|
785 |
+
#: wp-table-reloaded-admin.php:1246
|
786 |
+
#: wp-table-reloaded-admin.php:1362
|
787 |
+
#: wp-table-reloaded-admin.php:1402
|
788 |
+
#: wp-table-reloaded-admin.php:1750
|
789 |
+
#: wp-table-reloaded-admin.php:1852
|
790 |
+
#@ wp-table-reloaded
|
791 |
+
msgid "Hide"
|
792 |
+
msgstr "Ocultar"
|
793 |
+
|
794 |
+
#: wp-table-reloaded-admin.php:1149
|
795 |
+
#: wp-table-reloaded-admin.php:1246
|
796 |
+
#: wp-table-reloaded-admin.php:1362
|
797 |
+
#: wp-table-reloaded-admin.php:1402
|
798 |
+
#: wp-table-reloaded-admin.php:1750
|
799 |
+
#: wp-table-reloaded-admin.php:1852
|
800 |
+
#@ wp-table-reloaded
|
801 |
+
msgid "Expand"
|
802 |
+
msgstr "Expandir"
|
803 |
+
|
804 |
+
#: wp-table-reloaded-admin.php:1338
|
805 |
+
#@ wp-table-reloaded
|
806 |
+
msgid "ascending"
|
807 |
+
msgstr "ascendente"
|
808 |
+
|
809 |
+
#: wp-table-reloaded-admin.php:1339
|
810 |
+
#@ wp-table-reloaded
|
811 |
+
msgid "descending"
|
812 |
+
msgstr "descendente"
|
813 |
+
|
814 |
+
#: wp-table-reloaded-admin.php:1342
|
815 |
+
#, php-format
|
816 |
+
#@ wp-table-reloaded
|
817 |
+
msgid "Sort table by column %s in %s order"
|
818 |
+
msgstr "Ordenar tabla por columna %s en orden %s"
|
819 |
+
|
820 |
+
#: wp-table-reloaded-admin.php:1345
|
821 |
+
#@ wp-table-reloaded
|
822 |
+
msgid "Sort"
|
823 |
+
msgstr "Ordenar"
|
824 |
+
|
825 |
+
#: wp-table-reloaded-admin.php:1608
|
826 |
+
#@ wp-table-reloaded
|
827 |
+
msgid "Import Tables"
|
828 |
+
msgstr "Importar Tablas"
|
829 |
+
|
830 |
+
#: wp-table-reloaded-admin.php:1725
|
831 |
+
#@ wp-table-reloaded
|
832 |
+
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
833 |
+
msgstr "Sí, activar <a href=\"http://www.tablesorter.com/\">Plugin Tablesorter para jQuery</a>. Esto puede ser utilizado para reordenar dinámicante las tablas (puede ser activado individualmente en las opciones de cada tabla)"
|
834 |
+
|
835 |
+
#: wp-table-reloaded-admin.php:1741
|
836 |
+
#, php-format
|
837 |
+
#@ wp-table-reloaded
|
838 |
+
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
839 |
+
msgstr "Visita el <a href=\"%s\">sitio del plugin</a> para ver ejemplos de estilos o utiliza uno de estos enlaces: <a href=\"%s\">Ejemplo de Estilo 1</a> <a href=\"%s\">Ejemplo de Estilo 2</a>"
|
840 |
+
|
841 |
+
#: wp-table-reloaded-admin.php:1741
|
842 |
+
#@ wp-table-reloaded
|
843 |
+
msgid "Just copy the contents of a file into the textarea."
|
844 |
+
msgstr "Sólo debes copiar los contenidos del archivo en el área de texto."
|
845 |
+
|
846 |
+
#: wp-table-reloaded-admin.php:1759
|
847 |
+
#@ wp-table-reloaded
|
848 |
+
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
849 |
+
msgstr "Sí, desinstalar todo al desactivar el plugin. Atención: Debes activar esta casilla sólo en el instante previo a desactivar el plugin desde la Página de Plugins de Wordpress."
|
850 |
+
|
851 |
+
#: wp-table-reloaded-admin.php:1802
|
852 |
+
#@ wp-table-reloaded
|
853 |
+
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
854 |
+
msgstr "Este plugin te permite crear y administrar tablas en el área de administración de WordPres."
|
855 |
+
|
856 |
+
#: wp-table-reloaded-admin.php:1802
|
857 |
+
#@ wp-table-reloaded
|
858 |
+
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
859 |
+
msgstr "Estas tablas pueden contener texto, números o incluso HTML (por ejemplo para incluir imágenes o enlaces)"
|
860 |
+
|
861 |
+
#: wp-table-reloaded-admin.php:1802
|
862 |
+
#@ wp-table-reloaded
|
863 |
+
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
864 |
+
msgstr "Puedes mostrar las tablas en tus entradas, páginas o widgets de texto utilizando shortcode."
|
865 |
+
|
866 |
+
#: wp-table-reloaded-admin.php:1802
|
867 |
+
#@ wp-table-reloaded
|
868 |
+
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
869 |
+
msgstr "Si quieres mostrar tus tablas en otro lugar dentro del template, puedes utilizar una función para templates."
|
870 |
+
|
871 |
+
#: wp-table-reloaded-admin.php:1809
|
872 |
+
#@ wp-table-reloaded
|
873 |
+
msgid "At first you should add or import a table."
|
874 |
+
msgstr "En primera instancia deberías añadir o importar una tabla."
|
875 |
+
|
876 |
+
#: wp-table-reloaded-admin.php:1809
|
877 |
+
#@ wp-table-reloaded
|
878 |
+
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."
|
879 |
+
msgstr "Esto significa que puedes crear una tabla vacía o puedes cargar una tabla existente desde archivos CSV, XML o HTML."
|
880 |
+
|
881 |
+
#: wp-table-reloaded-admin.php:1809
|
882 |
+
#@ wp-table-reloaded
|
883 |
+
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."
|
884 |
+
msgstr "Luego puedes editar los datos o cambiar la estructura de la tabla (ej. al insertar o eliminar filas o columnas, intercambiar filas o columnas, o reordenarlas) y seleccionar opciones específicas para la tabla, tales como colores de fila alternantes o, si mostrar o no, el nombre o descripción de la misma."
|
885 |
+
|
886 |
+
#: wp-table-reloaded-admin.php:1809
|
887 |
+
#@ wp-table-reloaded
|
888 |
+
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."
|
889 |
+
msgstr "Para insertar fácilmente un enlace o una imagen a una celda, utiliza los botones correspondientes. Estos te preguntarán por la URL y el título. Luego, puedes seleccionar la celda deseada y el HTML correspondiente será insertado por ti."
|
890 |
+
|
891 |
+
#: wp-table-reloaded-admin.php:1809
|
892 |
+
#@ wp-table-reloaded
|
893 |
+
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
894 |
+
msgstr "Para insertar una tabla en tus entradas, páginas o widgets de texto, inserta el shortcode [table id=<ID_de_la_Tabla>] dentro del editor."
|
895 |
+
|
896 |
+
#: wp-table-reloaded-admin.php:1809
|
897 |
+
#@ wp-table-reloaded
|
898 |
+
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
899 |
+
msgstr "También puedes seleccionar la tabla deseada desde una lista (al hacer click en el botón \"Table\" en la barra de herramientas del editor) y el shortcode correspondiente será insertado por ti."
|
900 |
+
|
901 |
+
#: wp-table-reloaded-admin.php:1809
|
902 |
+
#@ wp-table-reloaded
|
903 |
+
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
904 |
+
msgstr "También puedes definir los estilos de la tabla a través de CSS. Los archivos de ejemplo están disponibles en el sitio web del plugin. Cada tabla tiene la clase CSS \"wp-table-reloaded\". Así mismo, cada tabla tiene la clase CSS \"wp-table-reloaded-<ID-de-la-Table>\"."
|
905 |
+
|
906 |
+
#: wp-table-reloaded-admin.php:1809
|
907 |
+
#@ wp-table-reloaded
|
908 |
+
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
909 |
+
msgstr "También puedes usar las clases \"column-<numero>\" y \"row-<numero>\" para definir los estilos de filas y columnas individualmente. Por ejemplo, puedes utilizar estas clases para definir anchos de columna y alineación del texto."
|
910 |
+
|
911 |
+
#: wp-table-reloaded-admin.php:1816
|
912 |
+
#@ wp-table-reloaded
|
913 |
+
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
914 |
+
msgstr "Puedes encontrar más información en el <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">sitio del plugin</a> o en su página del <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Directorio de Plugins de Wordpress</a>."
|
915 |
+
|
916 |
+
#: wp-table-reloaded-admin.php:1816
|
917 |
+
#: wp-table-reloaded-admin.php:1980
|
918 |
+
#@ wp-table-reloaded
|
919 |
+
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
920 |
+
msgstr "Ve la <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentación</a> o infórmate en cómo recibir <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">soporte</a>."
|
921 |
+
|
922 |
+
#: wp-table-reloaded-admin.php:1823
|
923 |
+
#@ wp-table-reloaded
|
924 |
+
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
925 |
+
msgstr "Donaciones y buenas calificaciones estimulan a continuar con el desarrollo del plugin y a proporcionar incontables horas de soporte. ¡Cualquier cantidad será bien apreciada! ¡Gracias!"
|
926 |
+
|
927 |
+
#: wp-table-reloaded-admin.php:1832
|
928 |
+
#@ wp-table-reloaded
|
929 |
+
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
930 |
+
msgstr "Christian Bach por el <a href=\"http://www.tablesorter.com/\">Plugin Tablesorter para jQuery</a>,"
|
931 |
+
|
932 |
+
#: wp-table-reloaded-admin.php:1843
|
933 |
+
#@ wp-table-reloaded
|
934 |
+
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
935 |
+
msgstr "Español (gracias a <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> y <a href=\"http://halles.cl/\">Matías Halles</a>)"
|
936 |
+
|
937 |
+
#: wp-table-reloaded-admin.php:1846
|
938 |
+
#@ wp-table-reloaded
|
939 |
+
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
940 |
+
msgstr "y para todos los donadores, contribuyentes, personas que han dado su apoyo, revisores y usuarios de este plugin!"
|
941 |
+
|
942 |
+
#: wp-table-reloaded-admin.php:1852
|
943 |
+
#@ wp-table-reloaded
|
944 |
+
msgid "Debug and Version Information"
|
945 |
+
msgstr "Información de la Versión y Debug"
|
946 |
+
|
947 |
+
#: wp-table-reloaded-admin.php:1855
|
948 |
+
#@ wp-table-reloaded
|
949 |
+
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
950 |
+
msgstr "Estás utilizando las siguientes versiones del software. <strong>Por favor, entrega esta información en los reportes de bugs</strong>"
|
951 |
+
|
952 |
+
#: wp-table-reloaded-admin.php:1979
|
953 |
+
#@ wp-table-reloaded
|
954 |
+
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
955 |
+
msgstr "Puedes encontrar más información en el <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">sitio web del plugin</a>."
|
956 |
+
|
957 |
+
#: wp-table-reloaded-admin.php:2265
|
958 |
+
#@ wp-table-reloaded
|
959 |
+
msgid "Do you want to copy the selected tables?"
|
960 |
+
msgstr "¿Quieres copiar las tablas seleccionadas?"
|
961 |
+
|
962 |
+
#: wp-table-reloaded-admin.php:2266
|
963 |
+
#@ wp-table-reloaded
|
964 |
+
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
965 |
+
msgstr "Las tablas seleccionadas y todo su contenido serán eliminados. ¿Estás seguro de querer eliminarlas?"
|
966 |
+
|
967 |
+
#: wp-table-reloaded-admin.php:2267
|
968 |
+
#@ wp-table-reloaded
|
969 |
+
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
970 |
+
msgstr "¿Estás seguro que quieres importar las tablas seleccionadas desde el plugin wp-Table?"
|
971 |
+
|
972 |
+
#: wp-table-reloaded-admin.php:2318
|
973 |
+
#@ wp-table-reloaded
|
974 |
+
msgid "Table"
|
975 |
+
msgstr "Tabla"
|
976 |
+
|
977 |
+
#: wp-table-reloaded-admin.php:1837
|
978 |
+
#@ wp-table-reloaded
|
979 |
+
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
980 |
+
msgstr "Checo (gracias a <a href=\"http://separatista.net/\">Separatista</a>)"
|
981 |
+
|
982 |
+
#: wp-table-reloaded-admin.php:1841
|
983 |
+
#@ wp-table-reloaded
|
984 |
+
msgid "Polish (thanks to Alex Kortan)"
|
985 |
+
msgstr "Polaco (gracias a Alex Kortan)"
|
986 |
+
|
987 |
+
#: wp-table-reloaded-admin.php:179
|
988 |
+
#, php-format
|
989 |
+
#@ wp-table-reloaded
|
990 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
991 |
+
msgstr "¡Gracias por utilizar este plugin! Instalaste WP-Table Reloaded hace más de un mes. Si es que funciona para ti y estás satisfecho con los resultados en la administración de tus tablas, ¿no vale un al menos un dollar o euro?"
|
992 |
+
|
993 |
+
#: wp-table-reloaded-admin.php:180
|
994 |
+
#, php-format
|
995 |
+
#@ wp-table-reloaded
|
996 |
+
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!"
|
997 |
+
msgstr "Las <a href=\"%s\">Donaciones</a> ayudan a continuar con el soporte y desarrollo de este software <i>libre</i> - ¡En las que ocupado innumerables horas de mi tiempo libre! ¡Gracias!"
|
998 |
+
|
999 |
+
#: wp-table-reloaded-admin.php:181
|
1000 |
+
#@ wp-table-reloaded
|
1001 |
+
msgid "Sure, no problem!"
|
1002 |
+
msgstr "Claro, ¡no hay problema!"
|
1003 |
+
|
1004 |
+
#: wp-table-reloaded-admin.php:182
|
1005 |
+
#@ wp-table-reloaded
|
1006 |
+
msgid "I already donated."
|
1007 |
+
msgstr "Ya he donado."
|
1008 |
+
|
1009 |
+
#: wp-table-reloaded-admin.php:183
|
1010 |
+
#@ wp-table-reloaded
|
1011 |
+
msgid "No, thanks. Don't ask again."
|
1012 |
+
msgstr "No gracias. No me preguntes denuevo."
|
1013 |
+
|
1014 |
+
#: wp-table-reloaded-admin.php:236
|
1015 |
+
#, php-format
|
1016 |
+
#@ wp-table-reloaded
|
1017 |
+
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
1018 |
+
msgstr "Tabla editada exitósamente. Esta tabla ahora tiene el ID %s. Necesitarás ajustar los shortcodes existentes de acuerdo esto."
|
1019 |
+
|
1020 |
+
#: wp-table-reloaded-admin.php:238
|
1021 |
+
#, php-format
|
1022 |
+
#@ wp-table-reloaded
|
1023 |
+
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
1024 |
+
msgstr "El ID no ha podido ser cambiado de %s a %s, debido a que ya existe una tabla con ese ID."
|
1025 |
+
|
1026 |
+
#: wp-table-reloaded-admin.php:346
|
1027 |
+
#@ wp-table-reloaded
|
1028 |
+
msgid "Row added successfully."
|
1029 |
+
msgid_plural "Rows added successfully."
|
1030 |
+
msgstr[0] "Fila añadida exitósamente."
|
1031 |
+
msgstr[1] "Filas añadidas exitósamente."
|
1032 |
+
|
1033 |
+
#: wp-table-reloaded-admin.php:360
|
1034 |
+
#@ wp-table-reloaded
|
1035 |
+
msgid "Column added successfully."
|
1036 |
+
msgid_plural "Columns added successfully."
|
1037 |
+
msgstr[0] "Columna añadida exitósamente."
|
1038 |
+
msgstr[1] "Columnas añadidas exitósamente."
|
1039 |
+
|
1040 |
+
#: wp-table-reloaded-admin.php:381
|
1041 |
+
#@ wp-table-reloaded
|
1042 |
+
msgid "Row moved successfully."
|
1043 |
+
msgstr "Fila desplazada exitósamente."
|
1044 |
+
|
1045 |
+
#: wp-table-reloaded-admin.php:406
|
1046 |
+
#@ wp-table-reloaded
|
1047 |
+
msgid "Column moved successfully."
|
1048 |
+
msgstr "Columna desplazada exitósamente."
|
1049 |
+
|
1050 |
+
#: wp-table-reloaded-admin.php:413
|
1051 |
+
#@ wp-table-reloaded
|
1052 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
1053 |
+
msgstr "No se ha podido añadir la Campo de Datos Personalizados, ya que no has ingresado un nombre."
|
1054 |
+
|
1055 |
+
#: wp-table-reloaded-admin.php:418
|
1056 |
+
#@ wp-table-reloaded
|
1057 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
1058 |
+
msgstr "No se ha podido añadir la Campo de Datos Personalizados, ya que el nombre ingresado está reservado para otra tabla de datos."
|
1059 |
+
|
1060 |
+
#: wp-table-reloaded-admin.php:424
|
1061 |
+
#@ wp-table-reloaded
|
1062 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
1063 |
+
msgstr "No se ha podido añadir la Campo de Datos Personalizados, ya que el nombre contiene caracteres ilegales."
|
1064 |
+
|
1065 |
+
#: wp-table-reloaded-admin.php:428
|
1066 |
+
#@ wp-table-reloaded
|
1067 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
1068 |
+
msgstr "No se ha podido añadir la Campo de Datos Personalizados, ya que una Celda con ese nombre ya existe."
|
1069 |
+
|
1070 |
+
#: wp-table-reloaded-admin.php:434
|
1071 |
+
#@ wp-table-reloaded
|
1072 |
+
msgid "Custom Data Field added successfully."
|
1073 |
+
msgstr "Campo de Datos Personalizados añadido exitósamente."
|
1074 |
+
|
1075 |
+
#: wp-table-reloaded-admin.php:580
|
1076 |
+
#@ wp-table-reloaded
|
1077 |
+
msgid "Custom Data Field deleted successfully."
|
1078 |
+
msgstr "Campo de Datos Personalizados eliminado exitósamente."
|
1079 |
+
|
1080 |
+
#: wp-table-reloaded-admin.php:582
|
1081 |
+
#@ wp-table-reloaded
|
1082 |
+
msgid "Custom Data Field could not be deleted."
|
1083 |
+
msgstr "Campo de Datos Personalizados no ha podido ser eliminado."
|
1084 |
+
|
1085 |
+
#: wp-table-reloaded-admin.php:656
|
1086 |
+
#: wp-table-reloaded-admin.php:675
|
1087 |
+
#, php-format
|
1088 |
+
#@ wp-table-reloaded
|
1089 |
+
msgid "from %s"
|
1090 |
+
msgstr "desde %s"
|
1091 |
+
|
1092 |
+
#: wp-table-reloaded-admin.php:697
|
1093 |
+
#, php-format
|
1094 |
+
#@ wp-table-reloaded
|
1095 |
+
msgid "Table %s (%s) replaced successfully."
|
1096 |
+
msgstr "Tabla %s (%s) reemplazada exitósamente."
|
1097 |
+
|
1098 |
+
#: wp-table-reloaded-admin.php:906
|
1099 |
+
#, php-format
|
1100 |
+
#@ wp-table-reloaded
|
1101 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
1102 |
+
msgstr "Previsualización de Tabla \"%s\" (ID %s)"
|
1103 |
+
|
1104 |
+
#: wp-table-reloaded-admin.php:909
|
1105 |
+
#@ wp-table-reloaded
|
1106 |
+
msgid "This is a preview of the table data."
|
1107 |
+
msgstr "Esta es una previsualización de la tabla de datos."
|
1108 |
+
|
1109 |
+
#: wp-table-reloaded-admin.php:910
|
1110 |
+
#@ wp-table-reloaded
|
1111 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
1112 |
+
msgstr "¡Debido a los estilos CSS, la tabla podría verse diferente en tu página!"
|
1113 |
+
|
1114 |
+
#: wp-table-reloaded-admin.php:911
|
1115 |
+
#: wp-table-reloaded-admin.php:1106
|
1116 |
+
#, php-format
|
1117 |
+
#@ wp-table-reloaded
|
1118 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
1119 |
+
msgstr "Para mostrar esta tabla en tus páginas, posts, o widgets de texto, usa el shortcode <strong>[table id=%s /]</strong>."
|
1120 |
+
|
1121 |
+
#: wp-table-reloaded-admin.php:924
|
1122 |
+
#@ wp-table-reloaded
|
1123 |
+
msgid "There is no table with this ID!"
|
1124 |
+
msgstr "¡No existe ninguna tabla con este ID!"
|
1125 |
+
|
1126 |
+
#: wp-table-reloaded-admin.php:941
|
1127 |
+
#@ wp-table-reloaded
|
1128 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
1129 |
+
msgstr "¡Muchas gracias! Tu donación será apreciada. ¡Has contribuido al futuro desarrollo de WP-Table Reloaded!"
|
1130 |
+
|
1131 |
+
#: wp-table-reloaded-admin.php:943
|
1132 |
+
#, php-format
|
1133 |
+
#@ wp-table-reloaded
|
1134 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
1135 |
+
msgstr "¡Ningún problema! Aún así espero que disfrutes de los beneficios que WP-Table Reloaded te da. Si cambias de parecer, siempre podrás utilizar el boton para \"Donar\" en el sitio web de <a href=\"%s\">WP-Table Reloaded website</a>."
|
1136 |
+
|
1137 |
+
#: wp-table-reloaded-admin.php:976
|
1138 |
+
#: wp-table-reloaded-admin.php:985
|
1139 |
+
#: wp-table-reloaded-admin.php:1130
|
1140 |
+
#@ wp-table-reloaded
|
1141 |
+
msgid "Last Modified"
|
1142 |
+
msgstr "Última Modificación"
|
1143 |
+
|
1144 |
+
#: wp-table-reloaded-admin.php:997
|
1145 |
+
#@ wp-table-reloaded
|
1146 |
+
msgid "(no name)"
|
1147 |
+
msgstr "(sin nombre)"
|
1148 |
+
|
1149 |
+
#: wp-table-reloaded-admin.php:998
|
1150 |
+
#@ wp-table-reloaded
|
1151 |
+
msgid "(no description)"
|
1152 |
+
msgstr "(sin descripción)"
|
1153 |
+
|
1154 |
+
#: wp-table-reloaded-admin.php:1002
|
1155 |
+
#: wp-table-reloaded-admin.php:1131
|
1156 |
+
#@ wp-table-reloaded
|
1157 |
+
msgid "by"
|
1158 |
+
msgstr "por"
|
1159 |
+
|
1160 |
+
#: wp-table-reloaded-admin.php:1015
|
1161 |
+
#, php-format
|
1162 |
+
#@ wp-table-reloaded
|
1163 |
+
msgid "Edit %s"
|
1164 |
+
msgstr "Editar %s"
|
1165 |
+
|
1166 |
+
#: wp-table-reloaded-admin.php:1019
|
1167 |
+
#@ wp-table-reloaded
|
1168 |
+
msgid "Shortcode"
|
1169 |
+
msgstr "Shortcode"
|
1170 |
+
|
1171 |
+
#: wp-table-reloaded-admin.php:1023
|
1172 |
+
#, php-format
|
1173 |
+
#@ wp-table-reloaded
|
1174 |
+
msgid "Preview of Table %s"
|
1175 |
+
msgstr "Previsualización de la Tabla %s"
|
1176 |
+
|
1177 |
+
#: wp-table-reloaded-admin.php:1024
|
1178 |
+
#@ wp-table-reloaded
|
1179 |
+
msgid "Preview"
|
1180 |
+
msgstr "Previsualizar"
|
1181 |
+
|
1182 |
+
#: wp-table-reloaded-admin.php:1059
|
1183 |
+
#@ wp-table-reloaded
|
1184 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
1185 |
+
msgstr "Aquí puedes añadir una nueva tabla. Sólo tienes que ingresar su nombre, una descripción (opcional) y el número de filas y columnas."
|
1186 |
+
|
1187 |
+
#: wp-table-reloaded-admin.php:1059
|
1188 |
+
#@ wp-table-reloaded
|
1189 |
+
msgid "You may add, insert or delete rows and columns later."
|
1190 |
+
msgstr "Podrás añadir, insertar o eliminar filas y columnas posteriormente."
|
1191 |
+
|
1192 |
+
#: wp-table-reloaded-admin.php:1102
|
1193 |
+
#, php-format
|
1194 |
+
#@ wp-table-reloaded
|
1195 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
1196 |
+
msgstr "Editar Tabla \"%s\" (ID %s)"
|
1197 |
+
|
1198 |
+
#: wp-table-reloaded-admin.php:1117
|
1199 |
+
#@ wp-table-reloaded
|
1200 |
+
msgid "Table ID"
|
1201 |
+
msgstr "ID de la Tabla"
|
1202 |
+
|
1203 |
+
#: wp-table-reloaded-admin.php:1195
|
1204 |
+
#@ wp-table-reloaded
|
1205 |
+
msgid "Row hidden"
|
1206 |
+
msgstr "Fila escondida"
|
1207 |
+
|
1208 |
+
#: wp-table-reloaded-admin.php:1218
|
1209 |
+
#, php-format
|
1210 |
+
#@ wp-table-reloaded
|
1211 |
+
msgid "Add %s row(s)"
|
1212 |
+
msgstr "Añadir %s fila(s)"
|
1213 |
+
|
1214 |
+
#: wp-table-reloaded-admin.php:1219
|
1215 |
+
#: wp-table-reloaded-admin.php:1221
|
1216 |
+
#: wp-table-reloaded-admin.php:1439
|
1217 |
+
#@ wp-table-reloaded
|
1218 |
+
msgid "Add"
|
1219 |
+
msgstr "Añadir"
|
1220 |
+
|
1221 |
+
#: wp-table-reloaded-admin.php:1220
|
1222 |
+
#, php-format
|
1223 |
+
#@ wp-table-reloaded
|
1224 |
+
msgid "Add %s column(s)"
|
1225 |
+
msgstr "Añadir %s columna(s)"
|
1226 |
+
|
1227 |
+
#: wp-table-reloaded-admin.php:1232
|
1228 |
+
#@ wp-table-reloaded
|
1229 |
+
msgid "Column hidden"
|
1230 |
+
msgstr "Columna escondida"
|
1231 |
+
|
1232 |
+
#: wp-table-reloaded-admin.php:1294
|
1233 |
+
#: wp-table-reloaded-admin.php:1317
|
1234 |
+
#@ wp-table-reloaded
|
1235 |
+
msgid "before"
|
1236 |
+
msgstr "antes"
|
1237 |
+
|
1238 |
+
#: wp-table-reloaded-admin.php:1295
|
1239 |
+
#: wp-table-reloaded-admin.php:1318
|
1240 |
+
#@ wp-table-reloaded
|
1241 |
+
msgid "after"
|
1242 |
+
msgstr "después"
|
1243 |
+
|
1244 |
+
#: wp-table-reloaded-admin.php:1298
|
1245 |
+
#, php-format
|
1246 |
+
#@ wp-table-reloaded
|
1247 |
+
msgid "Move row %s %s row %s"
|
1248 |
+
msgstr "Desplazar fila %s %s fila %s"
|
1249 |
+
|
1250 |
+
#: wp-table-reloaded-admin.php:1300
|
1251 |
+
#: wp-table-reloaded-admin.php:1323
|
1252 |
+
#@ wp-table-reloaded
|
1253 |
+
msgid "Move"
|
1254 |
+
msgstr "Desplazar"
|
1255 |
+
|
1256 |
+
#: wp-table-reloaded-admin.php:1321
|
1257 |
+
#, php-format
|
1258 |
+
#@ wp-table-reloaded
|
1259 |
+
msgid "Move column %s %s column %s"
|
1260 |
+
msgstr "Desplazar columna %s %s columna %s"
|
1261 |
+
|
1262 |
+
#: wp-table-reloaded-admin.php:1372
|
1263 |
+
#@ wp-table-reloaded
|
1264 |
+
msgid "The first row of your table will use the <th> tag."
|
1265 |
+
msgstr "La primera fila de tu tabla utilizará la etiqueta <th>."
|
1266 |
+
|
1267 |
+
#: wp-table-reloaded-admin.php:1376
|
1268 |
+
#@ wp-table-reloaded
|
1269 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
1270 |
+
msgstr "El Nombre de la Tabla será desplegado arriba de la tabla dentro de una etiqueta <h2>."
|
1271 |
+
|
1272 |
+
#: wp-table-reloaded-admin.php:1386
|
1273 |
+
#@ wp-table-reloaded
|
1274 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1275 |
+
msgstr "Puedes reordenar una tabla usando el plugin <a href=\"http://www.tablesorter.com/\">Tablesorter para jQuery</a>."
|
1276 |
+
|
1277 |
+
#: wp-table-reloaded-admin.php:1386
|
1278 |
+
#@ wp-table-reloaded
|
1279 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
1280 |
+
msgstr "<small>Atención: ¡Debes activar Tablesorter en \"Opciones del Plugin\" y la opción \"Usar Cabecera de tabla\" más arriba para que esto funcione!</small>"
|
1281 |
+
|
1282 |
+
#: wp-table-reloaded-admin.php:1402
|
1283 |
+
#@ wp-table-reloaded
|
1284 |
+
msgid "Custom Data Fields"
|
1285 |
+
msgstr "Campos de Datos Personalizados"
|
1286 |
+
|
1287 |
+
#: wp-table-reloaded-admin.php:1404
|
1288 |
+
#@ wp-table-reloaded
|
1289 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1290 |
+
msgstr "Los Campos de Datos Personalizados pueden ser usados para añadir datos extra a tu tabla."
|
1291 |
+
|
1292 |
+
#: wp-table-reloaded-admin.php:1404
|
1293 |
+
#@ wp-table-reloaded
|
1294 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
1295 |
+
msgstr "Por ejemplo, estos podrían contener información sobre la fuente de información o el creader de los datos."
|
1296 |
+
|
1297 |
+
#: wp-table-reloaded-admin.php:1406
|
1298 |
+
#, php-format
|
1299 |
+
#@ wp-table-reloaded
|
1300 |
+
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>."
|
1301 |
+
msgstr "Puedes desplegar esta información de la misma forma que las tablas, al usar el shortcode <strong>[table-info id=%s field=\"<nombre-del-campo>\" /]</strong>."
|
1302 |
+
|
1303 |
+
#: wp-table-reloaded-admin.php:1412
|
1304 |
+
#@ wp-table-reloaded
|
1305 |
+
msgid "Field Name"
|
1306 |
+
msgstr "Nombre del Campo"
|
1307 |
+
|
1308 |
+
#: wp-table-reloaded-admin.php:1413
|
1309 |
+
#@ wp-table-reloaded
|
1310 |
+
msgid "Value"
|
1311 |
+
msgstr "Valor"
|
1312 |
+
|
1313 |
+
#: wp-table-reloaded-admin.php:1427
|
1314 |
+
#@ wp-table-reloaded
|
1315 |
+
msgid "Delete Field"
|
1316 |
+
msgstr "Eliminar Campo"
|
1317 |
+
|
1318 |
+
#: wp-table-reloaded-admin.php:1429
|
1319 |
+
#@ wp-table-reloaded
|
1320 |
+
msgid "View shortcode"
|
1321 |
+
msgstr "Ver shortcode"
|
1322 |
+
|
1323 |
+
#: wp-table-reloaded-admin.php:1438
|
1324 |
+
#@ wp-table-reloaded
|
1325 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
1326 |
+
msgstr "Para añadir un nuevo Campo de Datos Personalizados, ingresa su nombre (sólo minúsculas, números, _ y -)."
|
1327 |
+
|
1328 |
+
#: wp-table-reloaded-admin.php:1439
|
1329 |
+
#@ wp-table-reloaded
|
1330 |
+
msgid "Custom Data Field Name"
|
1331 |
+
msgstr "Nombre del Campo de Datos Personalizados"
|
1332 |
+
|
1333 |
+
#: wp-table-reloaded-admin.php:1473
|
1334 |
+
#@ wp-table-reloaded
|
1335 |
+
msgid "You may import a table from existing data here."
|
1336 |
+
msgstr "Aquí puedes importar una tabla desde datos existentes."
|
1337 |
+
|
1338 |
+
#: wp-table-reloaded-admin.php:1473
|
1339 |
+
#@ wp-table-reloaded
|
1340 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
1341 |
+
msgstr "Estos pueden estar en un archivo CSV, XML o HTML, los cuales necesitan tener cierta estructura. Por favor consulta la documentación."
|
1342 |
+
|
1343 |
+
#: wp-table-reloaded-admin.php:1473
|
1344 |
+
#@ wp-table-reloaded
|
1345 |
+
msgid "You may also select the import source."
|
1346 |
+
msgstr "Puedes seleccionar la fuente para importar"
|
1347 |
+
|
1348 |
+
#: wp-table-reloaded-admin.php:1491
|
1349 |
+
#@ wp-table-reloaded
|
1350 |
+
msgid "Add or Replace Table?"
|
1351 |
+
msgstr "¿Añadir o Reemplazar Tabla?"
|
1352 |
+
|
1353 |
+
#: wp-table-reloaded-admin.php:1493
|
1354 |
+
#@ wp-table-reloaded
|
1355 |
+
msgid "Add as new Table"
|
1356 |
+
msgstr "Añadir como una nueva Tabla"
|
1357 |
+
|
1358 |
+
#: wp-table-reloaded-admin.php:1494
|
1359 |
+
#@ wp-table-reloaded
|
1360 |
+
msgid "Replace existing Table"
|
1361 |
+
msgstr "Reemplazar una Tabla existente."
|
1362 |
+
|
1363 |
+
#: wp-table-reloaded-admin.php:1498
|
1364 |
+
#@ wp-table-reloaded
|
1365 |
+
msgid "Select existing Table to Replace"
|
1366 |
+
msgstr "Seleccionar una Tabla existente para Reemplazar"
|
1367 |
+
|
1368 |
+
#: wp-table-reloaded-admin.php:1514
|
1369 |
+
#@ wp-table-reloaded
|
1370 |
+
msgid "Select source for import"
|
1371 |
+
msgstr "Seleccionar una fuente para importar"
|
1372 |
+
|
1373 |
+
#: wp-table-reloaded-admin.php:1516
|
1374 |
+
#@ wp-table-reloaded
|
1375 |
+
msgid "File upload"
|
1376 |
+
msgstr "Subir Archivo"
|
1377 |
+
|
1378 |
+
#: wp-table-reloaded-admin.php:1517
|
1379 |
+
#@ wp-table-reloaded
|
1380 |
+
msgid "URL"
|
1381 |
+
msgstr "URL"
|
1382 |
+
|
1383 |
+
#: wp-table-reloaded-admin.php:1518
|
1384 |
+
#@ wp-table-reloaded
|
1385 |
+
msgid "Manual input"
|
1386 |
+
msgstr "Ingreso Manual"
|
1387 |
+
|
1388 |
+
#: wp-table-reloaded-admin.php:1519
|
1389 |
+
#@ wp-table-reloaded
|
1390 |
+
msgid "File on server"
|
1391 |
+
msgstr "Archivo en el Servidor"
|
1392 |
+
|
1393 |
+
#: wp-table-reloaded-admin.php:1527
|
1394 |
+
#@ wp-table-reloaded
|
1395 |
+
msgid "URL to import table from"
|
1396 |
+
msgstr "URL desde la cual importar la tabla"
|
1397 |
+
|
1398 |
+
#: wp-table-reloaded-admin.php:1531
|
1399 |
+
#@ wp-table-reloaded
|
1400 |
+
msgid "Path to file on server"
|
1401 |
+
msgstr "Ruta del archivo en el servidor"
|
1402 |
+
|
1403 |
+
#: wp-table-reloaded-admin.php:1637
|
1404 |
+
#@ wp-table-reloaded
|
1405 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
1406 |
+
msgstr "Aquí puedes exportar una tabla. Sólo selecciona la tabla, el formato de exportación deseado y (sólo para CSV) el delimitador."
|
1407 |
+
|
1408 |
+
#: wp-table-reloaded-admin.php:1638
|
1409 |
+
#@ wp-table-reloaded
|
1410 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
1411 |
+
msgstr "Puedes optar por descargar el archivo exportado. En caso contrario, éste será desplegado en esta página."
|
1412 |
+
|
1413 |
+
#: wp-table-reloaded-admin.php:1639
|
1414 |
+
#@ wp-table-reloaded
|
1415 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
1416 |
+
msgstr "Ten en cuenta que sólo los datos de la tabla serán exportados, no así las opciones ni configuraciones."
|
1417 |
+
|
1418 |
+
#: wp-table-reloaded-admin.php:1712
|
1419 |
+
#@ wp-table-reloaded
|
1420 |
+
msgid "You may change these global options."
|
1421 |
+
msgstr "Puedes cambiar estas opciones globales."
|
1422 |
+
|
1423 |
+
#: wp-table-reloaded-admin.php:1713
|
1424 |
+
#@ wp-table-reloaded
|
1425 |
+
msgid "They will effect all tables or the general plugin behavior."
|
1426 |
+
msgstr "Tendrán efecto en todas las tablas y el comportamiento general del plugin."
|
1427 |
+
|
1428 |
+
#: wp-table-reloaded-admin.php:1730
|
1429 |
+
#@ wp-table-reloaded
|
1430 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
1431 |
+
msgstr "Sí, incluir y cargar los siguientes estilos CSS en mi sitio dentro de una etiqueta <style>."
|
1432 |
+
|
1433 |
+
#: wp-table-reloaded-admin.php:1740
|
1434 |
+
#, php-format
|
1435 |
+
#@ wp-table-reloaded
|
1436 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
1437 |
+
msgstr "La rendimiento del sitio podría ser mejor si es añades los estilos CSS dentro del archivo style.css del Tema que estes utilizando (localizado en <a href=\"%s\">%s</a>)."
|
1438 |
+
|
1439 |
+
#: wp-table-reloaded-admin.php:1742
|
1440 |
+
#, php-format
|
1441 |
+
#@ wp-table-reloaded
|
1442 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
1443 |
+
msgstr "Otra posibilidad es que, al incluir un archivo CSS (ej. desde el directorio de tu Tema) lo hagas con el comando CSS @import: %s"
|
1444 |
+
|
1445 |
+
#: wp-table-reloaded-admin.php:1750
|
1446 |
+
#@ wp-table-reloaded
|
1447 |
+
msgid "Advanced Options"
|
1448 |
+
msgstr "Opciones Avanzadas"
|
1449 |
+
|
1450 |
+
#: wp-table-reloaded-admin.php:1754
|
1451 |
+
#@ wp-table-reloaded
|
1452 |
+
msgid "Use Tablesorter Extended?"
|
1453 |
+
msgstr "¿Utilizar Tablesorter Extendido?"
|
1454 |
+
|
1455 |
+
#: wp-table-reloaded-admin.php:1755
|
1456 |
+
#@ wp-table-reloaded
|
1457 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
1458 |
+
msgstr "Sí, utilizar Tablesorter Extendido de <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> en lugar del script original Tablesorter (CARACTERÍSTICA EXPERIMENTAL)."
|
1459 |
+
|
1460 |
+
#: wp-table-reloaded-admin.php:1759
|
1461 |
+
#@ wp-table-reloaded
|
1462 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
1463 |
+
msgstr "(¡Esta opción no modifica el comportamiento del botón \"Desinstalar el Plugin Manualmente\" que se encuentra más abajo!)"
|
1464 |
+
|
1465 |
+
#: wp-table-reloaded-admin.php:1762
|
1466 |
+
#@ wp-table-reloaded
|
1467 |
+
msgid "Allow donation message?"
|
1468 |
+
msgstr "¿Permitir el mensaje para donaciones?"
|
1469 |
+
|
1470 |
+
#: wp-table-reloaded-admin.php:1763
|
1471 |
+
#@ wp-table-reloaded
|
1472 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
1473 |
+
msgstr "Sí, un mensaje de donaciones será desplegado después de 30 días de uso del plugin."
|
1474 |
+
|
1475 |
+
#: wp-table-reloaded-admin.php:1780
|
1476 |
+
#@ wp-table-reloaded
|
1477 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
1478 |
+
msgstr "Aquí puedes desinstalar el plugin. Esto <strong>eliminará</strong> todas las tablas, datos, opciones, etc., que pertenecen al plugin, incluyendo todas las tablas que hallas añadido e importado."
|
1479 |
+
|
1480 |
+
#: wp-table-reloaded-admin.php:1780
|
1481 |
+
#@ wp-table-reloaded
|
1482 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
1483 |
+
msgstr "¡Ten mucho cuidado con esto y presiona el boton sólo si sabes lo que estás haciendo!"
|
1484 |
+
|
1485 |
+
#: wp-table-reloaded-admin.php:1794
|
1486 |
+
#@ wp-table-reloaded
|
1487 |
+
msgid "About WP-Table Reloaded"
|
1488 |
+
msgstr "Sobre WP-Table Reloaded"
|
1489 |
+
|
1490 |
+
#: wp-table-reloaded-admin.php:1823
|
1491 |
+
#@ wp-table-reloaded
|
1492 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1493 |
+
msgstr "Este plugin ha sigo escrito por <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. Está licenciado como Software Libre bajo GPL 2."
|
1494 |
+
|
1495 |
+
#: wp-table-reloaded-admin.php:1823
|
1496 |
+
#: wp-table-reloaded-admin.php:1981
|
1497 |
+
#@ wp-table-reloaded
|
1498 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1499 |
+
msgstr "Si este plugin es de utilidad para ti, considera <a href=\"http://tobias.baethge.com/donate/\"><strong>a donar</strong></a> y calificarlo en el <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Directorio de Plugins de WordPress</a>."
|
1500 |
+
|
1501 |
+
#: wp-table-reloaded-admin.php:1835
|
1502 |
+
#@ wp-table-reloaded
|
1503 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1504 |
+
msgstr "Bielorruso (gracias a <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1505 |
+
|
1506 |
+
#: wp-table-reloaded-admin.php:1836
|
1507 |
+
#@ wp-table-reloaded
|
1508 |
+
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1509 |
+
msgstr "Portugués Brazileño (gracias a <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1510 |
+
|
1511 |
+
#: wp-table-reloaded-admin.php:1839
|
1512 |
+
#@ wp-table-reloaded
|
1513 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1514 |
+
msgstr "Italiano (gracias a <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1515 |
+
|
1516 |
+
#: wp-table-reloaded-admin.php:1840
|
1517 |
+
#@ wp-table-reloaded
|
1518 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1519 |
+
msgstr "Japonés (gracias a <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1520 |
+
|
1521 |
+
#: wp-table-reloaded-admin.php:1858
|
1522 |
+
#@ wp-table-reloaded
|
1523 |
+
msgid "Plugin installed"
|
1524 |
+
msgstr "Plugin Instalado"
|
1525 |
+
|
1526 |
+
#: wp-table-reloaded-admin.php:1948
|
1527 |
+
#@ wp-table-reloaded
|
1528 |
+
msgid "This is the \"List Tables\" screen."
|
1529 |
+
msgstr "Esta es la pantalla \"Listado de Tablas\""
|
1530 |
+
|
1531 |
+
#: wp-table-reloaded-admin.php:1952
|
1532 |
+
#@ wp-table-reloaded
|
1533 |
+
msgid "This is the \"Edit Table\" screen."
|
1534 |
+
msgstr "Esta es la pantalla \"Editar Tabla\"."
|
1535 |
+
|
1536 |
+
#: wp-table-reloaded-admin.php:1955
|
1537 |
+
#@ wp-table-reloaded
|
1538 |
+
msgid "This is the \"Add new Table\" screen."
|
1539 |
+
msgstr "Esta es la pantalla \"Añadir nueva Tabla\"."
|
1540 |
+
|
1541 |
+
#: wp-table-reloaded-admin.php:1958
|
1542 |
+
#@ wp-table-reloaded
|
1543 |
+
msgid "This is the \"Import a Table\" screen."
|
1544 |
+
msgstr "Esta es la pantalla \"Importar una Tabla\"."
|
1545 |
+
|
1546 |
+
#: wp-table-reloaded-admin.php:1961
|
1547 |
+
#@ wp-table-reloaded
|
1548 |
+
msgid "This is the \"Export a Table\" screen."
|
1549 |
+
msgstr "Esta es la pantalla \"Exportar una Tabla\"."
|
1550 |
+
|
1551 |
+
#: wp-table-reloaded-admin.php:1964
|
1552 |
+
#@ wp-table-reloaded
|
1553 |
+
msgid "This is the \"Plugin Options\" screen."
|
1554 |
+
msgstr "Esta es la pantalla \"Opciones del Plugin\"."
|
1555 |
+
|
1556 |
+
#: wp-table-reloaded-admin.php:1970
|
1557 |
+
#@ wp-table-reloaded
|
1558 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1559 |
+
msgstr "Esta es la pantalla \"Sobre WP-Table Reloaded\"."
|
1560 |
+
|
1561 |
+
#: wp-table-reloaded-admin.php:2264
|
1562 |
+
#@ wp-table-reloaded
|
1563 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1564 |
+
msgstr "Para insertar una imagen, haz click en la celda en la cual quieres insertar la imagen."
|
1565 |
+
|
1566 |
+
#: wp-table-reloaded-admin.php:2264
|
1567 |
+
#@ wp-table-reloaded
|
1568 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1569 |
+
msgstr "La Biblioteca de Medios se abrirá, desde la cual puedes seleccionar la imagen deseada o insertar la URL de la imagen."
|
1570 |
+
|
1571 |
+
#: wp-table-reloaded-admin.php:2264
|
1572 |
+
#, php-format
|
1573 |
+
#@ wp-table-reloaded
|
1574 |
+
msgid "Click the \"%s\" button to insert the image."
|
1575 |
+
msgstr "Haz click en el botón \"%s\" para insertar la imagen."
|
1576 |
+
|
1577 |
+
#: wp-table-reloaded-admin.php:2264
|
1578 |
+
msgid "Insert into Post"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: wp-table-reloaded-admin.php:2275
|
1582 |
+
#@ wp-table-reloaded
|
1583 |
+
msgid "Do you really want to change the ID of the table?"
|
1584 |
+
msgstr "¿Realmente quieres cambiar el ID de la Tabla?"
|
1585 |
+
|
1586 |
+
#: wp-table-reloaded-admin.php:2276
|
1587 |
+
#@ wp-table-reloaded
|
1588 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1589 |
+
msgstr "Para desplegar este Campo de Datos Personalizados, utiliza el shortcode:"
|
1590 |
+
|
1591 |
+
#: wp-table-reloaded-admin.php:2277
|
1592 |
+
#@ wp-table-reloaded
|
1593 |
+
msgid "To show this table, use this shortcode:"
|
1594 |
+
msgstr "Para desplegar esta Tabla, utiliza el shortcode:"
|
1595 |
+
|
1596 |
+
#: wp-table-reloaded-admin.php:2349
|
1597 |
+
#@ wp-table-reloaded
|
1598 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1599 |
+
msgstr "Muchas gracias por usar <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1600 |
+
|
languages/wp-table-reloaded-it_IT.mo
ADDED
Binary file
|
languages/wp-table-reloaded-it_IT.po
ADDED
@@ -0,0 +1,1306 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP-Table Reloaded v1.2.1\n"
|
4 |
+
"PO-Revision-Date: 2009-06-18 11:29+0200\n"
|
5 |
+
"Last-Translator: gabriella <scri@scrical.it>\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Poedit-Language: Italian\n"
|
11 |
+
"X-Poedit-Country: ITALY\n"
|
12 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Poedit-SearchPath-0: ."
|
16 |
+
|
17 |
+
#: php/wp-table-reloaded-export.class.php:30
|
18 |
+
#: php/wp-table-reloaded-import.class.php:38
|
19 |
+
msgid "CSV - Character-Separated Values"
|
20 |
+
msgstr "CSV - Delimitato da separatore di elenco"
|
21 |
+
|
22 |
+
#: php/wp-table-reloaded-export.class.php:31
|
23 |
+
#: php/wp-table-reloaded-import.class.php:39
|
24 |
+
msgid "HTML - Hypertext Markup Language"
|
25 |
+
msgstr "HTML - Hypertext Markup Language"
|
26 |
+
|
27 |
+
#: php/wp-table-reloaded-export.class.php:32
|
28 |
+
#: php/wp-table-reloaded-import.class.php:40
|
29 |
+
msgid "XML - eXtended Markup Language"
|
30 |
+
msgstr "XML - eXtended Markup Language"
|
31 |
+
|
32 |
+
#: php/wp-table-reloaded-export.class.php:35
|
33 |
+
msgid "; (semicolon)"
|
34 |
+
msgstr "; (punto e virgola)"
|
35 |
+
|
36 |
+
#: php/wp-table-reloaded-export.class.php:36
|
37 |
+
msgid ", (comma)"
|
38 |
+
msgstr ", (virgola)"
|
39 |
+
|
40 |
+
#: php/wp-table-reloaded-export.class.php:37
|
41 |
+
msgid ": (colon)"
|
42 |
+
msgstr ": (due punti)"
|
43 |
+
|
44 |
+
#: php/wp-table-reloaded-export.class.php:38
|
45 |
+
msgid ". (dot)"
|
46 |
+
msgstr ". (punto)"
|
47 |
+
|
48 |
+
#: php/wp-table-reloaded-export.class.php:39
|
49 |
+
msgid "| (pipe)"
|
50 |
+
msgstr "| (pipe)"
|
51 |
+
|
52 |
+
#: wp-table-reloaded-admin.php:208
|
53 |
+
#, php-format
|
54 |
+
msgid "Table \"%s\" added successfully."
|
55 |
+
msgstr "Tabella \"%s\" aggiunta con successo."
|
56 |
+
|
57 |
+
#: wp-table-reloaded-admin.php:241
|
58 |
+
msgid "Table edited successfully."
|
59 |
+
msgstr "Tabella modificata con successo."
|
60 |
+
|
61 |
+
#: wp-table-reloaded-admin.php:279
|
62 |
+
msgid "Rows swapped successfully."
|
63 |
+
msgstr "Righe scambiate con successo."
|
64 |
+
|
65 |
+
#: wp-table-reloaded-admin.php:300
|
66 |
+
msgid "Columns swapped successfully."
|
67 |
+
msgstr "Colonne scambiate con successo."
|
68 |
+
|
69 |
+
#: wp-table-reloaded-admin.php:331
|
70 |
+
msgid "Table sorted successfully."
|
71 |
+
msgstr "Tabella ordinata successo."
|
72 |
+
|
73 |
+
#: wp-table-reloaded-admin.php:470
|
74 |
+
#: wp-table-reloaded-admin.php:525
|
75 |
+
msgid "Copy of"
|
76 |
+
msgstr "Copia del"
|
77 |
+
|
78 |
+
#: wp-table-reloaded-admin.php:474
|
79 |
+
msgid "Table copied successfully."
|
80 |
+
msgid_plural "Tables copied successfully."
|
81 |
+
msgstr[0] "Tabella copiata con successo."
|
82 |
+
msgstr[1] "Tabelle copiate con successo."
|
83 |
+
|
84 |
+
#: wp-table-reloaded-admin.php:480
|
85 |
+
msgid "Table deleted successfully."
|
86 |
+
msgid_plural "Tables deleted successfully."
|
87 |
+
msgstr[0] "Tabella eliminata con successo."
|
88 |
+
msgstr[1] "Tabelle eliminate con successo."
|
89 |
+
|
90 |
+
#: wp-table-reloaded-admin.php:501
|
91 |
+
msgid "Table imported successfully."
|
92 |
+
msgid_plural "Tables imported successfully."
|
93 |
+
msgstr[0] "Tabella importata con successo."
|
94 |
+
msgstr[1] "Tabelle importate con successo."
|
95 |
+
|
96 |
+
#: wp-table-reloaded-admin.php:508
|
97 |
+
msgid "You did not select any tables!"
|
98 |
+
msgstr "Non hai selezionato alcuna tabella!"
|
99 |
+
|
100 |
+
#: wp-table-reloaded-admin.php:530
|
101 |
+
#, php-format
|
102 |
+
msgid "Table \"%s\" copied successfully."
|
103 |
+
msgstr "Tabella \"%s\" copiata con successo."
|
104 |
+
|
105 |
+
#: wp-table-reloaded-admin.php:546
|
106 |
+
#, php-format
|
107 |
+
msgid "Table \"%s\" deleted successfully."
|
108 |
+
msgstr "Tabella \"%s\" eliminata."
|
109 |
+
|
110 |
+
#: wp-table-reloaded-admin.php:557
|
111 |
+
msgid "Row deleted successfully."
|
112 |
+
msgstr "Riga eliminata con successo."
|
113 |
+
|
114 |
+
#: wp-table-reloaded-admin.php:571
|
115 |
+
msgid "Column deleted successfully."
|
116 |
+
msgstr "Colonna eliminata con successo."
|
117 |
+
|
118 |
+
#: wp-table-reloaded-admin.php:588
|
119 |
+
msgid "Delete failed."
|
120 |
+
msgstr "Cancellazione fallita."
|
121 |
+
|
122 |
+
#: wp-table-reloaded-admin.php:614
|
123 |
+
msgid "Row inserted successfully."
|
124 |
+
msgstr "Riga inserita con successo."
|
125 |
+
|
126 |
+
#: wp-table-reloaded-admin.php:624
|
127 |
+
msgid "Column inserted successfully."
|
128 |
+
msgstr "Colonna inserita con successo."
|
129 |
+
|
130 |
+
#: wp-table-reloaded-admin.php:627
|
131 |
+
msgid "Insert failed."
|
132 |
+
msgstr "Inserimento fallito."
|
133 |
+
|
134 |
+
#: wp-table-reloaded-admin.php:655
|
135 |
+
#: wp-table-reloaded-admin.php:664
|
136 |
+
#: wp-table-reloaded-admin.php:674
|
137 |
+
msgid "Imported Table"
|
138 |
+
msgstr "Tabella importata"
|
139 |
+
|
140 |
+
#: wp-table-reloaded-admin.php:665
|
141 |
+
msgid "via form"
|
142 |
+
msgstr "tramite modulo"
|
143 |
+
|
144 |
+
#: wp-table-reloaded-admin.php:701
|
145 |
+
#: wp-table-reloaded-admin.php:739
|
146 |
+
msgid "Table imported successfully."
|
147 |
+
msgstr "Tabella importata con successo."
|
148 |
+
|
149 |
+
#: wp-table-reloaded-admin.php:685
|
150 |
+
#: wp-table-reloaded-admin.php:716
|
151 |
+
msgid "Table could not be imported."
|
152 |
+
msgstr "La tabella non può essere importata."
|
153 |
+
|
154 |
+
#: wp-table-reloaded-admin.php:766
|
155 |
+
#, php-format
|
156 |
+
msgid "Table \"%s\" exported successfully."
|
157 |
+
msgstr "Tabella \"%s\" esportata con successo."
|
158 |
+
|
159 |
+
#: wp-table-reloaded-admin.php:797
|
160 |
+
msgid "Options saved successfully."
|
161 |
+
msgstr "Opzioni salvate con successo."
|
162 |
+
|
163 |
+
#: wp-table-reloaded-admin.php:815
|
164 |
+
#: wp-table-reloaded-admin.php:958
|
165 |
+
msgid "WP-Table Reloaded"
|
166 |
+
msgstr "WP-Table Reloaded"
|
167 |
+
|
168 |
+
#: wp-table-reloaded-admin.php:816
|
169 |
+
#: wp-table-reloaded-admin.php:1967
|
170 |
+
msgid "Plugin deactivated successfully."
|
171 |
+
msgstr "Plugin disattivato con successo."
|
172 |
+
|
173 |
+
#: wp-table-reloaded-admin.php:817
|
174 |
+
#: wp-table-reloaded-admin.php:1967
|
175 |
+
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
176 |
+
msgstr "Tutte le tabelle, i dati e le opzioni sono state cancellate. È ora possibile rimuovere la cartella di questo plugin che si trova all'interno della cartella plugin di Wordpress."
|
177 |
+
|
178 |
+
#: wp-table-reloaded-admin.php:833
|
179 |
+
#: wp-table-reloaded-admin.php:958
|
180 |
+
msgid "List of Tables"
|
181 |
+
msgstr "Lista delle tabelle"
|
182 |
+
|
183 |
+
#: wp-table-reloaded-admin.php:836
|
184 |
+
#: wp-table-reloaded-admin.php:961
|
185 |
+
msgid "This is a list of all available tables."
|
186 |
+
msgstr "Questo è l'elenco di tutte le tabelle disponibili."
|
187 |
+
|
188 |
+
#: wp-table-reloaded-admin.php:836
|
189 |
+
msgid "You may insert a table into a post or page here."
|
190 |
+
msgstr "È possibile inserire una tabella in un post o una pagina qui."
|
191 |
+
|
192 |
+
#: wp-table-reloaded-admin.php:837
|
193 |
+
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
194 |
+
msgstr "Clicca su \"Inserisci\" della tabella desiderata e il corrispondente codice sarà inserito nell'editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
195 |
+
|
196 |
+
#: wp-table-reloaded-admin.php:846
|
197 |
+
#: wp-table-reloaded-admin.php:854
|
198 |
+
#: wp-table-reloaded-admin.php:973
|
199 |
+
#: wp-table-reloaded-admin.php:982
|
200 |
+
#: wp-table-reloaded-admin.php:1567
|
201 |
+
#: wp-table-reloaded-admin.php:1576
|
202 |
+
msgid "ID"
|
203 |
+
msgstr "ID"
|
204 |
+
|
205 |
+
#: wp-table-reloaded-admin.php:847
|
206 |
+
#: wp-table-reloaded-admin.php:855
|
207 |
+
#: wp-table-reloaded-admin.php:974
|
208 |
+
#: wp-table-reloaded-admin.php:983
|
209 |
+
#: wp-table-reloaded-admin.php:1067
|
210 |
+
#: wp-table-reloaded-admin.php:1121
|
211 |
+
#: wp-table-reloaded-admin.php:1568
|
212 |
+
#: wp-table-reloaded-admin.php:1577
|
213 |
+
msgid "Table Name"
|
214 |
+
msgstr "Nome tabella"
|
215 |
+
|
216 |
+
#: wp-table-reloaded-admin.php:848
|
217 |
+
#: wp-table-reloaded-admin.php:856
|
218 |
+
#: wp-table-reloaded-admin.php:975
|
219 |
+
#: wp-table-reloaded-admin.php:984
|
220 |
+
#: wp-table-reloaded-admin.php:1071
|
221 |
+
#: wp-table-reloaded-admin.php:1125
|
222 |
+
#: wp-table-reloaded-admin.php:1569
|
223 |
+
#: wp-table-reloaded-admin.php:1578
|
224 |
+
msgid "Description"
|
225 |
+
msgstr "Descrizione"
|
226 |
+
|
227 |
+
#: wp-table-reloaded-admin.php:849
|
228 |
+
#: wp-table-reloaded-admin.php:857
|
229 |
+
#: wp-table-reloaded-admin.php:1414
|
230 |
+
#: wp-table-reloaded-admin.php:1570
|
231 |
+
#: wp-table-reloaded-admin.php:1579
|
232 |
+
msgid "Action"
|
233 |
+
msgstr "Azione"
|
234 |
+
|
235 |
+
#: wp-table-reloaded-admin.php:877
|
236 |
+
msgid "Insert"
|
237 |
+
msgstr "Inserisci"
|
238 |
+
|
239 |
+
#: wp-table-reloaded-admin.php:886
|
240 |
+
#: wp-table-reloaded-admin.php:1045
|
241 |
+
#: wp-table-reloaded-admin.php:1699
|
242 |
+
msgid "No tables found."
|
243 |
+
msgstr "Non ho trovato tabelle."
|
244 |
+
|
245 |
+
#: wp-table-reloaded-admin.php:961
|
246 |
+
msgid "You may add, edit, copy or delete tables here."
|
247 |
+
msgstr "Qui è possibile aggiungere, modificare, copiare o eliminare tabelle."
|
248 |
+
|
249 |
+
#: wp-table-reloaded-admin.php:962
|
250 |
+
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
251 |
+
msgstr "Se desideri visualizzare una tabella nelle pagine, o nei post o nel widget di testo, utilizza il codice breve <strong>[table id=<the_table_ID> /]</strong> o clicca sul pulsante \"Table\" nella barra degli strumenti dell'editor."
|
252 |
+
|
253 |
+
#: wp-table-reloaded-admin.php:1017
|
254 |
+
msgid "Edit"
|
255 |
+
msgstr "Modifica"
|
256 |
+
|
257 |
+
#: wp-table-reloaded-admin.php:1020
|
258 |
+
msgid "Copy"
|
259 |
+
msgstr "Copia"
|
260 |
+
|
261 |
+
#: wp-table-reloaded-admin.php:1021
|
262 |
+
msgid "Export"
|
263 |
+
msgstr "Esporta"
|
264 |
+
|
265 |
+
#: wp-table-reloaded-admin.php:1022
|
266 |
+
msgid "Delete"
|
267 |
+
msgstr "Elimina"
|
268 |
+
|
269 |
+
#: wp-table-reloaded-admin.php:1036
|
270 |
+
#: wp-table-reloaded-admin.php:1608
|
271 |
+
msgid "Bulk actions:"
|
272 |
+
msgstr "Azioni di gruppo:"
|
273 |
+
|
274 |
+
#: wp-table-reloaded-admin.php:1036
|
275 |
+
msgid "Copy Tables"
|
276 |
+
msgstr "Copia le tabelle"
|
277 |
+
|
278 |
+
#: wp-table-reloaded-admin.php:1036
|
279 |
+
msgid "Delete Tables"
|
280 |
+
msgstr "Elimina le tabelle"
|
281 |
+
|
282 |
+
#: wp-table-reloaded-admin.php:1045
|
283 |
+
#: wp-table-reloaded-admin.php:1699
|
284 |
+
#, php-format
|
285 |
+
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
286 |
+
msgstr "Potresti <a href=\"%s\">aggiungere</a> o <a href=\"%s\">importarne</a> una!"
|
287 |
+
|
288 |
+
#: wp-table-reloaded-admin.php:1055
|
289 |
+
#: wp-table-reloaded-admin.php:1902
|
290 |
+
msgid "Add new Table"
|
291 |
+
msgstr "Aggiungi una nuova tabella"
|
292 |
+
|
293 |
+
#: wp-table-reloaded-admin.php:1068
|
294 |
+
#: wp-table-reloaded-admin.php:1068
|
295 |
+
msgid "Enter Table Name"
|
296 |
+
msgstr "Inserisci il nome della tabella"
|
297 |
+
|
298 |
+
#: wp-table-reloaded-admin.php:1072
|
299 |
+
#: wp-table-reloaded-admin.php:1072
|
300 |
+
msgid "Enter Description"
|
301 |
+
msgstr "Inserisci la descrizione"
|
302 |
+
|
303 |
+
#: wp-table-reloaded-admin.php:1075
|
304 |
+
msgid "Number of Rows"
|
305 |
+
msgstr "Numero di righe"
|
306 |
+
|
307 |
+
#: wp-table-reloaded-admin.php:1079
|
308 |
+
msgid "Number of Columns"
|
309 |
+
msgstr "Numero di colonne"
|
310 |
+
|
311 |
+
#: wp-table-reloaded-admin.php:1086
|
312 |
+
msgid "Add Table"
|
313 |
+
msgstr "Aggiungi la tabella"
|
314 |
+
|
315 |
+
#: wp-table-reloaded-admin.php:1105
|
316 |
+
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
317 |
+
msgstr "Qui puoi modificare il contenuto della tabella. Puoi anche aggiungere o eliminare colonne e righe."
|
318 |
+
|
319 |
+
#: wp-table-reloaded-admin.php:1113
|
320 |
+
msgid "Table Information"
|
321 |
+
msgstr "Tabella informativa"
|
322 |
+
|
323 |
+
#: wp-table-reloaded-admin.php:1139
|
324 |
+
#: wp-table-reloaded-admin.php:1353
|
325 |
+
#: wp-table-reloaded-admin.php:1393
|
326 |
+
#: wp-table-reloaded-admin.php:1444
|
327 |
+
msgid "Update Changes"
|
328 |
+
msgstr "Aggiornamento modifiche"
|
329 |
+
|
330 |
+
#: wp-table-reloaded-admin.php:1140
|
331 |
+
#: wp-table-reloaded-admin.php:1354
|
332 |
+
#: wp-table-reloaded-admin.php:1394
|
333 |
+
#: wp-table-reloaded-admin.php:1445
|
334 |
+
msgid "Save and go back"
|
335 |
+
msgstr "Salva e torna"
|
336 |
+
|
337 |
+
#: wp-table-reloaded-admin.php:1143
|
338 |
+
#: wp-table-reloaded-admin.php:1357
|
339 |
+
#: wp-table-reloaded-admin.php:1397
|
340 |
+
#: wp-table-reloaded-admin.php:1448
|
341 |
+
msgid "Cancel"
|
342 |
+
msgstr "Annulla"
|
343 |
+
|
344 |
+
#: wp-table-reloaded-admin.php:1149
|
345 |
+
msgid "Table Contents"
|
346 |
+
msgstr "Tabella dei contenuti"
|
347 |
+
|
348 |
+
#: wp-table-reloaded-admin.php:1149
|
349 |
+
#: wp-table-reloaded-admin.php:1246
|
350 |
+
#: wp-table-reloaded-admin.php:1362
|
351 |
+
#: wp-table-reloaded-admin.php:1402
|
352 |
+
#: wp-table-reloaded-admin.php:1750
|
353 |
+
#: wp-table-reloaded-admin.php:1852
|
354 |
+
msgid "Hide"
|
355 |
+
msgstr "Nascondi"
|
356 |
+
|
357 |
+
#: wp-table-reloaded-admin.php:1149
|
358 |
+
#: wp-table-reloaded-admin.php:1246
|
359 |
+
#: wp-table-reloaded-admin.php:1362
|
360 |
+
#: wp-table-reloaded-admin.php:1402
|
361 |
+
#: wp-table-reloaded-admin.php:1750
|
362 |
+
#: wp-table-reloaded-admin.php:1852
|
363 |
+
msgid "Expand"
|
364 |
+
msgstr "Espandi"
|
365 |
+
|
366 |
+
#: wp-table-reloaded-admin.php:1190
|
367 |
+
msgid "Insert Row"
|
368 |
+
msgstr "Inserisci riga"
|
369 |
+
|
370 |
+
#: wp-table-reloaded-admin.php:1192
|
371 |
+
msgid "Delete Row"
|
372 |
+
msgstr "Elimina riga"
|
373 |
+
|
374 |
+
#: wp-table-reloaded-admin.php:1206
|
375 |
+
msgid "Insert Column"
|
376 |
+
msgstr "Inserisci colonna"
|
377 |
+
|
378 |
+
#: wp-table-reloaded-admin.php:1208
|
379 |
+
msgid "Delete Column"
|
380 |
+
msgstr "Elimina colonna"
|
381 |
+
|
382 |
+
#: wp-table-reloaded-admin.php:1246
|
383 |
+
msgid "Data Manipulation"
|
384 |
+
msgstr "Manipola i dati"
|
385 |
+
|
386 |
+
#: wp-table-reloaded-admin.php:1260
|
387 |
+
#, php-format
|
388 |
+
msgid "Swap rows %s and %s"
|
389 |
+
msgstr "Scambia righe %s e %s"
|
390 |
+
|
391 |
+
#: wp-table-reloaded-admin.php:1262
|
392 |
+
#: wp-table-reloaded-admin.php:1280
|
393 |
+
msgid "Swap"
|
394 |
+
msgstr "Scambia"
|
395 |
+
|
396 |
+
#: wp-table-reloaded-admin.php:1278
|
397 |
+
#, php-format
|
398 |
+
msgid "Swap columns %s and %s"
|
399 |
+
msgstr "Scambia colonne %s e %s"
|
400 |
+
|
401 |
+
#: wp-table-reloaded-admin.php:1327
|
402 |
+
msgid "Insert Link"
|
403 |
+
msgstr "Inserisci un link"
|
404 |
+
|
405 |
+
#: wp-table-reloaded-admin.php:1328
|
406 |
+
#: wp-table-reloaded-admin.php:1328
|
407 |
+
msgid "Insert Image"
|
408 |
+
msgstr "Inserisci immagine"
|
409 |
+
|
410 |
+
#: wp-table-reloaded-admin.php:1338
|
411 |
+
msgid "ascending"
|
412 |
+
msgstr "ascendente"
|
413 |
+
|
414 |
+
#: wp-table-reloaded-admin.php:1339
|
415 |
+
msgid "descending"
|
416 |
+
msgstr "discendente"
|
417 |
+
|
418 |
+
#: wp-table-reloaded-admin.php:1342
|
419 |
+
#, php-format
|
420 |
+
msgid "Sort table by column %s in %s order"
|
421 |
+
msgstr "Ordina per colonna %s in %s "
|
422 |
+
|
423 |
+
#: wp-table-reloaded-admin.php:1345
|
424 |
+
msgid "Sort"
|
425 |
+
msgstr "Ordina"
|
426 |
+
|
427 |
+
#: wp-table-reloaded-admin.php:1362
|
428 |
+
msgid "Table Settings"
|
429 |
+
msgstr "Impostazioni tabella"
|
430 |
+
|
431 |
+
#: wp-table-reloaded-admin.php:1364
|
432 |
+
msgid "These settings will only be used for this table."
|
433 |
+
msgstr "Queste impostazioni verranno utilizzate solo per questa tabella."
|
434 |
+
|
435 |
+
#: wp-table-reloaded-admin.php:1367
|
436 |
+
msgid "Alternating row colors"
|
437 |
+
msgstr "Alterna i colori delle righe"
|
438 |
+
|
439 |
+
#: wp-table-reloaded-admin.php:1368
|
440 |
+
msgid "Every second row will have an alternating background color."
|
441 |
+
msgstr "Le righe avranno un colore di sfondo alternato."
|
442 |
+
|
443 |
+
#: wp-table-reloaded-admin.php:1371
|
444 |
+
msgid "Use Table Headline"
|
445 |
+
msgstr "Utilizza il titolo della tabella"
|
446 |
+
|
447 |
+
#: wp-table-reloaded-admin.php:1375
|
448 |
+
msgid "Print Table Name"
|
449 |
+
msgstr "Stampa il nome della tabella"
|
450 |
+
|
451 |
+
#: wp-table-reloaded-admin.php:1379
|
452 |
+
msgid "Print Table Description"
|
453 |
+
msgstr "Stampa la descrizione della tabella "
|
454 |
+
|
455 |
+
#: wp-table-reloaded-admin.php:1380
|
456 |
+
msgid "The Table Description will be written under the table."
|
457 |
+
msgstr "La descrizione apparirà sotto la tabella."
|
458 |
+
|
459 |
+
#: wp-table-reloaded-admin.php:1383
|
460 |
+
msgid "Use Tablesorter"
|
461 |
+
msgstr "Usa Tablesorter"
|
462 |
+
|
463 |
+
#: wp-table-reloaded-admin.php:1453
|
464 |
+
msgid "Other actions"
|
465 |
+
msgstr "Altre azioni"
|
466 |
+
|
467 |
+
#: wp-table-reloaded-admin.php:1456
|
468 |
+
msgid "Delete Table"
|
469 |
+
msgstr "Elimina la tabella"
|
470 |
+
|
471 |
+
#: wp-table-reloaded-admin.php:1457
|
472 |
+
#: wp-table-reloaded-admin.php:1688
|
473 |
+
msgid "Export Table"
|
474 |
+
msgstr "Esporta la tabella"
|
475 |
+
|
476 |
+
#: wp-table-reloaded-admin.php:1469
|
477 |
+
#: wp-table-reloaded-admin.php:1903
|
478 |
+
msgid "Import a Table"
|
479 |
+
msgstr "Importa una tabella"
|
480 |
+
|
481 |
+
#: wp-table-reloaded-admin.php:1480
|
482 |
+
msgid "Select Import Format"
|
483 |
+
msgstr "Seleziona il formato dell'importazione"
|
484 |
+
|
485 |
+
#: wp-table-reloaded-admin.php:1523
|
486 |
+
msgid "Select File with Table to Import"
|
487 |
+
msgstr "Seleziona il file con la tabella da importare"
|
488 |
+
|
489 |
+
#: wp-table-reloaded-admin.php:1535
|
490 |
+
msgid "Paste data with Table to Import"
|
491 |
+
msgstr "Incolla i dati della tabella da importare"
|
492 |
+
|
493 |
+
#: wp-table-reloaded-admin.php:1541
|
494 |
+
msgid "Import Table"
|
495 |
+
msgstr "Importa la tabella"
|
496 |
+
|
497 |
+
#: wp-table-reloaded-admin.php:1554
|
498 |
+
msgid "Import from original wp-Table plugin"
|
499 |
+
msgstr "Importa dal plugin originale wp-Table "
|
500 |
+
|
501 |
+
#: wp-table-reloaded-admin.php:1600
|
502 |
+
msgid "Import"
|
503 |
+
msgstr "Importa"
|
504 |
+
|
505 |
+
#: wp-table-reloaded-admin.php:1608
|
506 |
+
msgid "Import Tables"
|
507 |
+
msgstr "Importa le tabelle"
|
508 |
+
|
509 |
+
#: wp-table-reloaded-admin.php:1614
|
510 |
+
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
511 |
+
msgstr "wp-Table di Alex Rabe sembra essere installato, ma non sono state trovate le tabelle"
|
512 |
+
|
513 |
+
#: wp-table-reloaded-admin.php:1633
|
514 |
+
#: wp-table-reloaded-admin.php:1904
|
515 |
+
msgid "Export a Table"
|
516 |
+
msgstr "Esporta una tabella"
|
517 |
+
|
518 |
+
#: wp-table-reloaded-admin.php:1647
|
519 |
+
msgid "Select Table to Export"
|
520 |
+
msgstr "Seleziona la tabella da esportare"
|
521 |
+
|
522 |
+
#: wp-table-reloaded-admin.php:1662
|
523 |
+
msgid "Select Export Format"
|
524 |
+
msgstr "Seleziona il formato di esportazione"
|
525 |
+
|
526 |
+
#: wp-table-reloaded-admin.php:1672
|
527 |
+
msgid "Select Delimiter to use"
|
528 |
+
msgstr "Seleziona il delimitatore da usare "
|
529 |
+
|
530 |
+
#: wp-table-reloaded-admin.php:1679
|
531 |
+
msgid "<small>(Only needed for CSV export.)</small>"
|
532 |
+
msgstr "<small>(Necessario solo per esportare in CSV).</small>"
|
533 |
+
|
534 |
+
#: wp-table-reloaded-admin.php:1682
|
535 |
+
msgid "Download file"
|
536 |
+
msgstr "Scarica il file"
|
537 |
+
|
538 |
+
#: wp-table-reloaded-admin.php:1683
|
539 |
+
msgid "Yes, I want to download the export file."
|
540 |
+
msgstr "Sì, voglio scaricare il file di esportazione."
|
541 |
+
|
542 |
+
#: wp-table-reloaded-admin.php:1708
|
543 |
+
msgid "General Plugin Options"
|
544 |
+
msgstr "Opzioni generali del plugin"
|
545 |
+
|
546 |
+
#: wp-table-reloaded-admin.php:1720
|
547 |
+
msgid "Frontend Options"
|
548 |
+
msgstr "Opzioni di front-end (lato utente)"
|
549 |
+
|
550 |
+
#: wp-table-reloaded-admin.php:1724
|
551 |
+
msgid "Enable Tablesorter-JavaScript?"
|
552 |
+
msgstr "Abilito JavaScript Tablesorter-?"
|
553 |
+
|
554 |
+
#: wp-table-reloaded-admin.php:1725
|
555 |
+
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
556 |
+
msgstr "Sì, abilita <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Questo può essere usato per fare tabelle ordinabili (può essere attivata per ciascuna tabella separatamente nelle sue opzioni)."
|
557 |
+
|
558 |
+
#: wp-table-reloaded-admin.php:1728
|
559 |
+
msgid "Add custom CSS?"
|
560 |
+
msgstr "Aggiungi CSS personalizzato?"
|
561 |
+
|
562 |
+
#: wp-table-reloaded-admin.php:1735
|
563 |
+
msgid "Enter custom CSS"
|
564 |
+
msgstr "Inserisci il codice CSS personalizzato"
|
565 |
+
|
566 |
+
#: wp-table-reloaded-admin.php:1741
|
567 |
+
#, php-format
|
568 |
+
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
569 |
+
msgstr "Vedi la <a href=\"%s\">pagina del plugin</a> per esempi di styling oppure utilizza uno dei seguenti: <a href=\"%s\">Esempio di stile 1</a> <a href=\"%s\">Esempio di stile 2</a>"
|
570 |
+
|
571 |
+
#: wp-table-reloaded-admin.php:1741
|
572 |
+
msgid "Just copy the contents of a file into the textarea."
|
573 |
+
msgstr "Copia il contenuto di un file nell'area del testo."
|
574 |
+
|
575 |
+
#: wp-table-reloaded-admin.php:1758
|
576 |
+
msgid "Uninstall Plugin upon Deactivation?"
|
577 |
+
msgstr "Disinstallare il Plugin con la disattivazione?"
|
578 |
+
|
579 |
+
#: wp-table-reloaded-admin.php:1759
|
580 |
+
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
581 |
+
msgstr "Sì, disinstalla tutto, quando il plugin è disattivato. Attenzione: è necessario attivare questa opzione solo immediatamente prima di disattivare il plugin dalla pagina dei plugin di Wordpress!"
|
582 |
+
|
583 |
+
#: wp-table-reloaded-admin.php:1772
|
584 |
+
msgid "Save Options"
|
585 |
+
msgstr "Salva le opzioni"
|
586 |
+
|
587 |
+
#: wp-table-reloaded-admin.php:1778
|
588 |
+
msgid "Manually Uninstall Plugin"
|
589 |
+
msgstr "Disinstallazione manuale del Plugin"
|
590 |
+
|
591 |
+
#: wp-table-reloaded-admin.php:1783
|
592 |
+
msgid "Uninstall Plugin WP-Table Reloaded"
|
593 |
+
msgstr "Disinstalla il plugin WP-Table Reloaded"
|
594 |
+
|
595 |
+
#: wp-table-reloaded-admin.php:1800
|
596 |
+
msgid "Plugin Purpose"
|
597 |
+
msgstr "Scopo del plugin "
|
598 |
+
|
599 |
+
#: wp-table-reloaded-admin.php:1802
|
600 |
+
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
601 |
+
msgstr "Il plugin permette di creare e gestire tabelle nell'area amministrazione di Wordpress."
|
602 |
+
|
603 |
+
#: wp-table-reloaded-admin.php:1802
|
604 |
+
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
605 |
+
msgstr "Le tabelle possono contenere stringhe, numeri e anche codice HTML (ad esempio, per includere immagini o link)."
|
606 |
+
|
607 |
+
#: wp-table-reloaded-admin.php:1802
|
608 |
+
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
609 |
+
msgstr "Puoi quindi visualizzare le tabelle nei posts, nelle pagine o nei widget di testo, utilizzando il codice per inserire la tabella nella pagina."
|
610 |
+
|
611 |
+
#: wp-table-reloaded-admin.php:1802
|
612 |
+
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
613 |
+
msgstr "Se desideri visualizzare le tabelle in qualsiasi altra parte del tuo tema, utilizza un tag di modello."
|
614 |
+
|
615 |
+
#: wp-table-reloaded-admin.php:1807
|
616 |
+
msgid "Usage"
|
617 |
+
msgstr "Utilizzo"
|
618 |
+
|
619 |
+
#: wp-table-reloaded-admin.php:1809
|
620 |
+
msgid "At first you should add or import a table."
|
621 |
+
msgstr "Come prima cosa dovresti aggiungere o importare una tabella."
|
622 |
+
|
623 |
+
#: wp-table-reloaded-admin.php:1809
|
624 |
+
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."
|
625 |
+
msgstr "Ciò significa che consenti al plugin di creare una tabella vuota o che carichi una tabella da un file CSV, XML o HTML."
|
626 |
+
|
627 |
+
#: wp-table-reloaded-admin.php:1809
|
628 |
+
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."
|
629 |
+
msgstr "Puoi poi modificare i tuoi dati o la struttura della tabella (ad esempio mediante l'inserimento o l'eliminazione di righe o colonne, cambiare l'ordinamento o scambiare le righe o colonne) e selezionare le opzioni specifiche della tabella come i colori alternati delle righe, oppure se stampare il nome o la descrizione della tabella stessa."
|
630 |
+
|
631 |
+
#: wp-table-reloaded-admin.php:1809
|
632 |
+
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."
|
633 |
+
msgstr "Per aggiungere facilmente un link o un'immagine a una cella, utilizzando gli appositi pulsanti. Ti verrà richiesto l'URL e un titolo. Poi clicca nella cella e verrà aggiunto il corrispondente codice HTML."
|
634 |
+
|
635 |
+
#: wp-table-reloaded-admin.php:1809
|
636 |
+
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
637 |
+
msgstr "Per inserire la tabella nei post, pagine o widget di testo, inserisci nell'area di testo corrispondente il seguente codice [table id=<table-id>]."
|
638 |
+
|
639 |
+
#: wp-table-reloaded-admin.php:1809
|
640 |
+
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
641 |
+
msgstr "Puoi anche selezionare la tabella desiderata da un elenco (dopo aver fatto clic sul pulsante \"Table\" nella barra degli strumenti dell'editor) e il codice corrispondente sarà aggiunto per voi."
|
642 |
+
|
643 |
+
#: wp-table-reloaded-admin.php:1809
|
644 |
+
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
645 |
+
msgstr "Puoi anche impostare lo stile della tua tabella utilizzando un file CSS. File di esempio sono forniti nel sito web del plugin. Ogni tabella ha una classe CSS \"wp-table-reloaded\". Ciascuna tabella ha anche la classe \"wp-table-reloaded-<table-id>\"."
|
646 |
+
|
647 |
+
#: wp-table-reloaded-admin.php:1809
|
648 |
+
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
649 |
+
msgstr "Puoi anche utilizzare le classi \"column-<number>\" e \"row-<number>\" per formattare individualmente le righe e le colonne. Utilizza questo per formattare, ad esempio, la larghezza delle colonne o l'allineamento del testo."
|
650 |
+
|
651 |
+
#: wp-table-reloaded-admin.php:1814
|
652 |
+
msgid "More Information and Documentation"
|
653 |
+
msgstr "Ulteriori informazioni e documentazione"
|
654 |
+
|
655 |
+
#: wp-table-reloaded-admin.php:1816
|
656 |
+
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
657 |
+
msgstr "Ulteriori informazioni si trovano <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">nella sito del plugin</a> o <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">nella cartella Wordpress del plugin</a>."
|
658 |
+
|
659 |
+
#: wp-table-reloaded-admin.php:1816
|
660 |
+
#: wp-table-reloaded-admin.php:1980
|
661 |
+
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
662 |
+
msgstr "Vedi la <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentazione</a>o scopri come ottenere <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">supporto</a>."
|
663 |
+
|
664 |
+
#: wp-table-reloaded-admin.php:1821
|
665 |
+
msgid "Author and Licence"
|
666 |
+
msgstr "Autore e licenza di utilizzo"
|
667 |
+
|
668 |
+
#: wp-table-reloaded-admin.php:1823
|
669 |
+
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
670 |
+
msgstr "Donazioni e buone giudizi mi incoraggiano a sviluppare ulteriormente il plugin e a fornire numerose ore di supporto. Qualsiasi importo è apprezzato! Grazie!"
|
671 |
+
|
672 |
+
#: wp-table-reloaded-admin.php:1828
|
673 |
+
msgid "Credits and Thanks"
|
674 |
+
msgstr "Credits e ringraziamenti"
|
675 |
+
|
676 |
+
#: wp-table-reloaded-admin.php:1831
|
677 |
+
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
678 |
+
msgstr "I ringraziamenti vanno a <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> per il plugin originale wp-Table,"
|
679 |
+
|
680 |
+
#: wp-table-reloaded-admin.php:1832
|
681 |
+
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
682 |
+
msgstr "a Christian Bach per <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
683 |
+
|
684 |
+
#: wp-table-reloaded-admin.php:1833
|
685 |
+
msgid "the submitters of translations:"
|
686 |
+
msgstr "ai traduttori:"
|
687 |
+
|
688 |
+
#: wp-table-reloaded-admin.php:1834
|
689 |
+
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
690 |
+
msgstr "Albanese (grazie a <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
691 |
+
|
692 |
+
#: wp-table-reloaded-admin.php:1837
|
693 |
+
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
694 |
+
msgstr "Ceco (grazie a <a href=\"http://separatista.net/\">Separatista</a>)"
|
695 |
+
|
696 |
+
#: wp-table-reloaded-admin.php:1838
|
697 |
+
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
698 |
+
msgstr "Francese (grazie a <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
699 |
+
|
700 |
+
#: wp-table-reloaded-admin.php:1841
|
701 |
+
msgid "Polish (thanks to Alex Kortan)"
|
702 |
+
msgstr "Polacco (grazie ad Alex Kortan)"
|
703 |
+
|
704 |
+
#: wp-table-reloaded-admin.php:1842
|
705 |
+
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
706 |
+
msgstr "Russo (grazie a <a href=\"http://wp-skins.info/\">Truper</a>)"
|
707 |
+
|
708 |
+
#: wp-table-reloaded-admin.php:1843
|
709 |
+
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
710 |
+
msgstr "Spagnolo (grazie ad <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> e <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
711 |
+
|
712 |
+
#: wp-table-reloaded-admin.php:1844
|
713 |
+
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
714 |
+
msgstr "Svedese (grazie a <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
715 |
+
|
716 |
+
#: wp-table-reloaded-admin.php:1845
|
717 |
+
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
718 |
+
msgstr "Turco (grazie a <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
719 |
+
|
720 |
+
#: wp-table-reloaded-admin.php:1846
|
721 |
+
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
722 |
+
msgstr "e a tutti i donatori, coloro che hanno contribuito, i sostenitori, i recensori e gli utenti del plugin!"
|
723 |
+
|
724 |
+
#: wp-table-reloaded-admin.php:1852
|
725 |
+
msgid "Debug and Version Information"
|
726 |
+
msgstr "Debug e Informazioni sulla versione"
|
727 |
+
|
728 |
+
#: wp-table-reloaded-admin.php:1855
|
729 |
+
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
730 |
+
msgstr "Stai usando le seguenti versioni del software. <strong>Per cortesia fornisci le informazioni in questo bug report.</strong>"
|
731 |
+
|
732 |
+
#: wp-table-reloaded-admin.php:1901
|
733 |
+
msgid "List Tables"
|
734 |
+
msgstr "Elenco delle tabelle"
|
735 |
+
|
736 |
+
#: wp-table-reloaded-admin.php:1906
|
737 |
+
msgid "Plugin Options"
|
738 |
+
msgstr "Opzioni del plugin"
|
739 |
+
|
740 |
+
#: wp-table-reloaded-admin.php:1907
|
741 |
+
msgid "About the Plugin"
|
742 |
+
msgstr "A proposito del plugin"
|
743 |
+
|
744 |
+
#: wp-table-reloaded-admin.php:1979
|
745 |
+
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
746 |
+
msgstr "Ulteriori informazioni possono essere trovate nel <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">sito del plugin</a>."
|
747 |
+
|
748 |
+
#: wp-table-reloaded-admin.php:2260
|
749 |
+
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
750 |
+
msgstr "Davvero desideri attivare questa opzione? Dovrebbe essere fatto solo prima di disinstallare il plugin!"
|
751 |
+
|
752 |
+
#: wp-table-reloaded-admin.php:2261
|
753 |
+
msgid "URL of link to insert"
|
754 |
+
msgstr "URL del link da inserire"
|
755 |
+
|
756 |
+
#: wp-table-reloaded-admin.php:2262
|
757 |
+
msgid "Text of link"
|
758 |
+
msgstr "Testo del link"
|
759 |
+
|
760 |
+
#: wp-table-reloaded-admin.php:2263
|
761 |
+
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
762 |
+
msgstr "Per inserire il link seguente in una cella, fai clic nella cella dopo la chiusura di questa finestra di dialogo."
|
763 |
+
|
764 |
+
#: wp-table-reloaded-admin.php:2265
|
765 |
+
msgid "Do you want to copy the selected tables?"
|
766 |
+
msgstr "Vuoi copiare le tabelle selezionate?"
|
767 |
+
|
768 |
+
#: wp-table-reloaded-admin.php:2266
|
769 |
+
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
770 |
+
msgstr "Le tabelle selezionate e tutti i contenuti verranno cancellati. Vuoi davvero cancellarli?"
|
771 |
+
|
772 |
+
#: wp-table-reloaded-admin.php:2267
|
773 |
+
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
774 |
+
msgstr "Vuoi davvero di importare le tabelle selezionate dal plugin wp-Table?"
|
775 |
+
|
776 |
+
#: wp-table-reloaded-admin.php:2268
|
777 |
+
msgid "Do you want to copy this table?"
|
778 |
+
msgstr "Vuoi copiare questa tabella?"
|
779 |
+
|
780 |
+
#: wp-table-reloaded-admin.php:2269
|
781 |
+
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
782 |
+
msgstr "L'intera tabella e tutti i suoi contenuti verranno cancellati. Vuoi veramente eliminarla?"
|
783 |
+
|
784 |
+
#: wp-table-reloaded-admin.php:2270
|
785 |
+
msgid "Do you really want to delete this row?"
|
786 |
+
msgstr "Vuoi veramente eliminare questa riga?"
|
787 |
+
|
788 |
+
#: wp-table-reloaded-admin.php:2271
|
789 |
+
msgid "Do you really want to delete this column?"
|
790 |
+
msgstr "Vuoi veramente eliminare questa colonna?"
|
791 |
+
|
792 |
+
#: wp-table-reloaded-admin.php:2272
|
793 |
+
msgid "Do you really want to import this table from the wp-Table plugin?"
|
794 |
+
msgstr "Vuoi davvero ad importare questa tabella da wp-Table plugin?"
|
795 |
+
|
796 |
+
#: wp-table-reloaded-admin.php:2273
|
797 |
+
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
798 |
+
msgstr "Vuoi davvero a disinstallare il plugin e cancellare tutti i dati?"
|
799 |
+
|
800 |
+
#: wp-table-reloaded-admin.php:2274
|
801 |
+
msgid "Are you really sure?"
|
802 |
+
msgstr "Sei davvero sicuro?"
|
803 |
+
|
804 |
+
#: wp-table-reloaded-admin.php:2318
|
805 |
+
msgid "Table"
|
806 |
+
msgstr "Tabella"
|
807 |
+
|
808 |
+
#: wp-table-reloaded-admin.php:179
|
809 |
+
#, php-format
|
810 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
811 |
+
msgstr "Grazie per l'utilizzo di questo plugin! Hai installato WP-Tabella Reloaded più di un mese fa. Se funziona e sei soddisfatto con i risultati della gestione delle tue %s tabelle, non pensi che possa valere almeno un dollaro o un euro?"
|
812 |
+
|
813 |
+
#: wp-table-reloaded-admin.php:180
|
814 |
+
#, php-format
|
815 |
+
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!"
|
816 |
+
msgstr "<a href=\"%s\">Donazioni</a> aiutami a continuare nel supporto e sviluppo di questo software <i>gratuito</i> - attività che impegnano ore e ore del mio tempo libero! Grazie!"
|
817 |
+
|
818 |
+
#: wp-table-reloaded-admin.php:181
|
819 |
+
msgid "Sure, no problem!"
|
820 |
+
msgstr "Certo, nessun problema!"
|
821 |
+
|
822 |
+
#: wp-table-reloaded-admin.php:182
|
823 |
+
msgid "I already donated."
|
824 |
+
msgstr "Ho già donato."
|
825 |
+
|
826 |
+
#: wp-table-reloaded-admin.php:183
|
827 |
+
msgid "No, thanks. Don't ask again."
|
828 |
+
msgstr "No, grazie. Non chiederlo di nuovo."
|
829 |
+
|
830 |
+
#: wp-table-reloaded-admin.php:236
|
831 |
+
#, php-format
|
832 |
+
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
833 |
+
msgstr "Tabella editata con successo. Questa tabella ha ora ID %s. Ora devi adeguare di conseguenza il codice di inserimento della tabella."
|
834 |
+
|
835 |
+
#: wp-table-reloaded-admin.php:238
|
836 |
+
#, php-format
|
837 |
+
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
838 |
+
msgstr "L'ID non può essere cambiato da %s a %s, perché esiste già una tabella con questo ID."
|
839 |
+
|
840 |
+
#: wp-table-reloaded-admin.php:346
|
841 |
+
msgid "Row added successfully."
|
842 |
+
msgid_plural "Rows added successfully."
|
843 |
+
msgstr[0] "Riga aggiunta con successo."
|
844 |
+
msgstr[1] "Righe aggiunte con successo."
|
845 |
+
|
846 |
+
#: wp-table-reloaded-admin.php:360
|
847 |
+
msgid "Column added successfully."
|
848 |
+
msgid_plural "Columns added successfully."
|
849 |
+
msgstr[0] "Colonna aggiunta con successo."
|
850 |
+
msgstr[1] "Colonne aggiunte con successo."
|
851 |
+
|
852 |
+
#: wp-table-reloaded-admin.php:381
|
853 |
+
msgid "Row moved successfully."
|
854 |
+
msgstr "Riga spostata con successo."
|
855 |
+
|
856 |
+
#: wp-table-reloaded-admin.php:406
|
857 |
+
msgid "Column moved successfully."
|
858 |
+
msgstr "Colonna spostata con successo."
|
859 |
+
|
860 |
+
#: wp-table-reloaded-admin.php:413
|
861 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
862 |
+
msgstr "Impossibile aggiungere dati personalizzati nel campo, perché non hai inserito un nome."
|
863 |
+
|
864 |
+
#: wp-table-reloaded-admin.php:418
|
865 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
866 |
+
msgstr "Impossibile aggiungere dati personalizzati nel campo, perché il nome che hai inserito è riservato per i dati di un'altra tabella. "
|
867 |
+
|
868 |
+
#: wp-table-reloaded-admin.php:424
|
869 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
870 |
+
msgstr "Impossibile aggiungere dati personalizzati nel campo, perché il nome contiene caratteri non validi."
|
871 |
+
|
872 |
+
#: wp-table-reloaded-admin.php:428
|
873 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
874 |
+
msgstr "Impossibile aggiungere dati personalizzati nel campo, perché un campo con quel nome esiste già."
|
875 |
+
|
876 |
+
#: wp-table-reloaded-admin.php:434
|
877 |
+
msgid "Custom Data Field added successfully."
|
878 |
+
msgstr "Dati personalizzati aggiunto con successo nel campo."
|
879 |
+
|
880 |
+
#: wp-table-reloaded-admin.php:580
|
881 |
+
msgid "Custom Data Field deleted successfully."
|
882 |
+
msgstr "Dati cancellati con successo."
|
883 |
+
|
884 |
+
#: wp-table-reloaded-admin.php:582
|
885 |
+
msgid "Custom Data Field could not be deleted."
|
886 |
+
msgstr "I dati non possono essere cancellati"
|
887 |
+
|
888 |
+
#: wp-table-reloaded-admin.php:656
|
889 |
+
#: wp-table-reloaded-admin.php:675
|
890 |
+
#, php-format
|
891 |
+
msgid "from %s"
|
892 |
+
msgstr "da %s"
|
893 |
+
|
894 |
+
#: wp-table-reloaded-admin.php:697
|
895 |
+
#, php-format
|
896 |
+
msgid "Table %s (%s) replaced successfully."
|
897 |
+
msgstr "La tabella %s (%s), sostituita con successo."
|
898 |
+
|
899 |
+
#: wp-table-reloaded-admin.php:906
|
900 |
+
#, php-format
|
901 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
902 |
+
msgstr "Anteprima della tabella \"%s\" (ID %s)"
|
903 |
+
|
904 |
+
#: wp-table-reloaded-admin.php:909
|
905 |
+
msgid "This is a preview of the table data."
|
906 |
+
msgstr "Questa è una anteprima della tabella dati."
|
907 |
+
|
908 |
+
#: wp-table-reloaded-admin.php:910
|
909 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
910 |
+
msgstr "A causa di stile CSS, la tabella potrebbe apparire diversa sulla tua pagina!"
|
911 |
+
|
912 |
+
#: wp-table-reloaded-admin.php:911
|
913 |
+
#: wp-table-reloaded-admin.php:1106
|
914 |
+
#, php-format
|
915 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
916 |
+
msgstr "Per mostrare questa tabella nelle tue pagine, o post-widget di testo, inserisci il seguente codice <strong>[table id=%s /]</strong>."
|
917 |
+
|
918 |
+
#: wp-table-reloaded-admin.php:924
|
919 |
+
msgid "There is no table with this ID!"
|
920 |
+
msgstr "Non vi è alcuna tabella con questo ID!"
|
921 |
+
|
922 |
+
#: wp-table-reloaded-admin.php:941
|
923 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
924 |
+
msgstr "Grazie mille! La tua donazione è molto apprezzata. Hai appena contribuito a ulteriori sviluppi di WP-Table Reloaded!"
|
925 |
+
|
926 |
+
#: wp-table-reloaded-admin.php:943
|
927 |
+
#, php-format
|
928 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
929 |
+
msgstr "Nessun problema! Spero che continui ad apprezzare i benefici che hai nell'uso di WP-Table Reloaded. Quando cambierai idea, troverai sempre il pulsante \"Donazione\" nel sito<a href=\"%s\">WP-Table Reloaded website</a>."
|
930 |
+
|
931 |
+
#: wp-table-reloaded-admin.php:976
|
932 |
+
#: wp-table-reloaded-admin.php:985
|
933 |
+
#: wp-table-reloaded-admin.php:1130
|
934 |
+
msgid "Last Modified"
|
935 |
+
msgstr "Ultima modifica"
|
936 |
+
|
937 |
+
#: wp-table-reloaded-admin.php:997
|
938 |
+
msgid "(no name)"
|
939 |
+
msgstr "(nessun nome)"
|
940 |
+
|
941 |
+
#: wp-table-reloaded-admin.php:998
|
942 |
+
msgid "(no description)"
|
943 |
+
msgstr "(nessuna descrizione)"
|
944 |
+
|
945 |
+
#: wp-table-reloaded-admin.php:1002
|
946 |
+
#: wp-table-reloaded-admin.php:1131
|
947 |
+
msgid "by"
|
948 |
+
msgstr "di"
|
949 |
+
|
950 |
+
#: wp-table-reloaded-admin.php:1015
|
951 |
+
#, php-format
|
952 |
+
msgid "Edit %s"
|
953 |
+
msgstr "Modifica %s"
|
954 |
+
|
955 |
+
#: wp-table-reloaded-admin.php:1019
|
956 |
+
msgid "Shortcode"
|
957 |
+
msgstr "Codice per inserire la tabella"
|
958 |
+
|
959 |
+
#: wp-table-reloaded-admin.php:1023
|
960 |
+
#, php-format
|
961 |
+
msgid "Preview of Table %s"
|
962 |
+
msgstr "Anteprima della tabella %s"
|
963 |
+
|
964 |
+
#: wp-table-reloaded-admin.php:1024
|
965 |
+
msgid "Preview"
|
966 |
+
msgstr "Anteprima"
|
967 |
+
|
968 |
+
#: wp-table-reloaded-admin.php:1059
|
969 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
970 |
+
msgstr "Per aggiungere una nuova tabella, inserisci il nome, una descrizione (opzionale) e il numero di righe e colonne."
|
971 |
+
|
972 |
+
#: wp-table-reloaded-admin.php:1059
|
973 |
+
msgid "You may add, insert or delete rows and columns later."
|
974 |
+
msgstr "Puoi aggiungere, inserire o eliminare righe e colonne anche in seguito."
|
975 |
+
|
976 |
+
#: wp-table-reloaded-admin.php:1102
|
977 |
+
#, php-format
|
978 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
979 |
+
msgstr "Modifica tabella \"%s\" (ID %s)"
|
980 |
+
|
981 |
+
#: wp-table-reloaded-admin.php:1117
|
982 |
+
msgid "Table ID"
|
983 |
+
msgstr "ID della tabella"
|
984 |
+
|
985 |
+
#: wp-table-reloaded-admin.php:1195
|
986 |
+
msgid "Row hidden"
|
987 |
+
msgstr "Riga nascosta"
|
988 |
+
|
989 |
+
#: wp-table-reloaded-admin.php:1218
|
990 |
+
#, php-format
|
991 |
+
msgid "Add %s row(s)"
|
992 |
+
msgstr "Aggiungi %s riga(righe)"
|
993 |
+
|
994 |
+
#: wp-table-reloaded-admin.php:1219
|
995 |
+
#: wp-table-reloaded-admin.php:1221
|
996 |
+
#: wp-table-reloaded-admin.php:1439
|
997 |
+
msgid "Add"
|
998 |
+
msgstr "Aggiungi"
|
999 |
+
|
1000 |
+
#: wp-table-reloaded-admin.php:1220
|
1001 |
+
#, php-format
|
1002 |
+
msgid "Add %s column(s)"
|
1003 |
+
msgstr "Aggiungi %s colonna(e)"
|
1004 |
+
|
1005 |
+
#: wp-table-reloaded-admin.php:1232
|
1006 |
+
msgid "Column hidden"
|
1007 |
+
msgstr "Colonna nascosta"
|
1008 |
+
|
1009 |
+
#: wp-table-reloaded-admin.php:1294
|
1010 |
+
#: wp-table-reloaded-admin.php:1317
|
1011 |
+
msgid "before"
|
1012 |
+
msgstr "prima"
|
1013 |
+
|
1014 |
+
#: wp-table-reloaded-admin.php:1295
|
1015 |
+
#: wp-table-reloaded-admin.php:1318
|
1016 |
+
msgid "after"
|
1017 |
+
msgstr "dopo"
|
1018 |
+
|
1019 |
+
#: wp-table-reloaded-admin.php:1298
|
1020 |
+
#, php-format
|
1021 |
+
msgid "Move row %s %s row %s"
|
1022 |
+
msgstr "Sposta la riga %s %s %s riga %s"
|
1023 |
+
|
1024 |
+
#: wp-table-reloaded-admin.php:1300
|
1025 |
+
#: wp-table-reloaded-admin.php:1323
|
1026 |
+
msgid "Move"
|
1027 |
+
msgstr "Sposta"
|
1028 |
+
|
1029 |
+
#: wp-table-reloaded-admin.php:1321
|
1030 |
+
#, php-format
|
1031 |
+
msgid "Move column %s %s column %s"
|
1032 |
+
msgstr "Sposta colonna %s %s colonna %s "
|
1033 |
+
|
1034 |
+
#: wp-table-reloaded-admin.php:1372
|
1035 |
+
msgid "The first row of your table will use the <th> tag."
|
1036 |
+
msgstr "La prima riga della tabella userà il tag <th>."
|
1037 |
+
|
1038 |
+
#: wp-table-reloaded-admin.php:1376
|
1039 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
1040 |
+
msgstr "Il nome della tabella sarà scritto sopra la tabella in un tag <h2>."
|
1041 |
+
|
1042 |
+
#: wp-table-reloaded-admin.php:1386
|
1043 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1044 |
+
msgstr "È possibile ordinare una tabella utilizzando il plugin <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1045 |
+
|
1046 |
+
#: wp-table-reloaded-admin.php:1386
|
1047 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
1048 |
+
msgstr "<small>Attenzione: devi avere Tablesorter attivato nella videata \"Opzioni del plugin\" e deve essere attivata l'opzione \"Utilizza il titolo della tabella\" perchè possa funzionare.</small>"
|
1049 |
+
|
1050 |
+
#: wp-table-reloaded-admin.php:1402
|
1051 |
+
msgid "Custom Data Fields"
|
1052 |
+
msgstr "Campi dati personalizzati"
|
1053 |
+
|
1054 |
+
#: wp-table-reloaded-admin.php:1404
|
1055 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1056 |
+
msgstr "Campi dati personalizzati possono essere utilizzati per aggiungere metadati a una tabella."
|
1057 |
+
|
1058 |
+
#: wp-table-reloaded-admin.php:1404
|
1059 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
1060 |
+
msgstr "Ad esempio, potrebbero essere informazioni relative all'origine o a chi ha creato i dati."
|
1061 |
+
|
1062 |
+
#: wp-table-reloaded-admin.php:1406
|
1063 |
+
#, php-format
|
1064 |
+
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>."
|
1065 |
+
msgstr "Puoi visualizzare i dati nello stesso modo delle tabelle utilizzando il codice <strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
1066 |
+
|
1067 |
+
#: wp-table-reloaded-admin.php:1412
|
1068 |
+
msgid "Field Name"
|
1069 |
+
msgstr "Nome del campo"
|
1070 |
+
|
1071 |
+
#: wp-table-reloaded-admin.php:1413
|
1072 |
+
msgid "Value"
|
1073 |
+
msgstr "Valore"
|
1074 |
+
|
1075 |
+
#: wp-table-reloaded-admin.php:1427
|
1076 |
+
msgid "Delete Field"
|
1077 |
+
msgstr "Elimina campo"
|
1078 |
+
|
1079 |
+
#: wp-table-reloaded-admin.php:1429
|
1080 |
+
msgid "View shortcode"
|
1081 |
+
msgstr "Visualizza il codice"
|
1082 |
+
|
1083 |
+
#: wp-table-reloaded-admin.php:1438
|
1084 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
1085 |
+
msgstr "Per aggiungere un nuovo campo di dati personalizzati, inserisci il suo nome (solo lettere minuscole, numeri, _ e -)."
|
1086 |
+
|
1087 |
+
#: wp-table-reloaded-admin.php:1439
|
1088 |
+
msgid "Custom Data Field Name"
|
1089 |
+
msgstr "Nome del campo dei dati personalizzati"
|
1090 |
+
|
1091 |
+
#: wp-table-reloaded-admin.php:1473
|
1092 |
+
msgid "You may import a table from existing data here."
|
1093 |
+
msgstr "Puoi importare una tabella da un file già esistente."
|
1094 |
+
|
1095 |
+
#: wp-table-reloaded-admin.php:1473
|
1096 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
1097 |
+
msgstr "Il file deve essere CSV, XML o HTML, e in ogni caso hanno bisogno di una certa struttura per poter essere importati. Per cortesia consulta la documentazione."
|
1098 |
+
|
1099 |
+
#: wp-table-reloaded-admin.php:1473
|
1100 |
+
msgid "You may also select the import source."
|
1101 |
+
msgstr "Puoi anche selezionare da dove vuoi importare il file."
|
1102 |
+
|
1103 |
+
#: wp-table-reloaded-admin.php:1491
|
1104 |
+
msgid "Add or Replace Table?"
|
1105 |
+
msgstr "Aggiungere o sostituire la tabella?"
|
1106 |
+
|
1107 |
+
#: wp-table-reloaded-admin.php:1493
|
1108 |
+
msgid "Add as new Table"
|
1109 |
+
msgstr "Aggiungi come nuova tabella"
|
1110 |
+
|
1111 |
+
#: wp-table-reloaded-admin.php:1494
|
1112 |
+
msgid "Replace existing Table"
|
1113 |
+
msgstr "Sostituisci la tabella esistente"
|
1114 |
+
|
1115 |
+
#: wp-table-reloaded-admin.php:1498
|
1116 |
+
msgid "Select existing Table to Replace"
|
1117 |
+
msgstr "Seleziona la tabella esistente da sostituire"
|
1118 |
+
|
1119 |
+
#: wp-table-reloaded-admin.php:1514
|
1120 |
+
msgid "Select source for import"
|
1121 |
+
msgstr "Seleziona da dove importare"
|
1122 |
+
|
1123 |
+
#: wp-table-reloaded-admin.php:1516
|
1124 |
+
msgid "File upload"
|
1125 |
+
msgstr "Carica il file"
|
1126 |
+
|
1127 |
+
#: wp-table-reloaded-admin.php:1517
|
1128 |
+
msgid "URL"
|
1129 |
+
msgstr "URL"
|
1130 |
+
|
1131 |
+
#: wp-table-reloaded-admin.php:1518
|
1132 |
+
msgid "Manual input"
|
1133 |
+
msgstr "Inserimento manuale"
|
1134 |
+
|
1135 |
+
#: wp-table-reloaded-admin.php:1519
|
1136 |
+
msgid "File on server"
|
1137 |
+
msgstr "File sul server"
|
1138 |
+
|
1139 |
+
#: wp-table-reloaded-admin.php:1527
|
1140 |
+
msgid "URL to import table from"
|
1141 |
+
msgstr "URL per l'importazione della tabella da"
|
1142 |
+
|
1143 |
+
#: wp-table-reloaded-admin.php:1531
|
1144 |
+
msgid "Path to file on server"
|
1145 |
+
msgstr "Percorso del file sul server"
|
1146 |
+
|
1147 |
+
#: wp-table-reloaded-admin.php:1637
|
1148 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
1149 |
+
msgstr "Qui puoi esportare una tabella. Seleziona la tabella, il formato di esportazione desiderato e (solo per CSV) un delimitatore."
|
1150 |
+
|
1151 |
+
#: wp-table-reloaded-admin.php:1638
|
1152 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
1153 |
+
msgstr "Puoi scegliere di scaricare il file di esportazione. Altrimenti sarà mostrato in questa pagina."
|
1154 |
+
|
1155 |
+
#: wp-table-reloaded-admin.php:1639
|
1156 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
1157 |
+
msgstr "Fai attenzione che solo i dati della tabella vengono esportati e non le opzioni o le impostazioni."
|
1158 |
+
|
1159 |
+
#: wp-table-reloaded-admin.php:1712
|
1160 |
+
msgid "You may change these global options."
|
1161 |
+
msgstr "Puoi modificare queste opzioni globali."
|
1162 |
+
|
1163 |
+
#: wp-table-reloaded-admin.php:1713
|
1164 |
+
msgid "They will effect all tables or the general plugin behavior."
|
1165 |
+
msgstr "Hanno effetto su tutte le tabelle o il comportamento del plug in generale."
|
1166 |
+
|
1167 |
+
#: wp-table-reloaded-admin.php:1730
|
1168 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
1169 |
+
msgstr "Sì, includi e carica i seguenti frammenti di CSS sul mio sito all'interno di un <style>-HTML-tag."
|
1170 |
+
|
1171 |
+
#: wp-table-reloaded-admin.php:1740
|
1172 |
+
#, php-format
|
1173 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
1174 |
+
msgstr "Puoi ottenere delle prestazioni migliori dal tuo sito, se aggiungi il codice CSS al tuo tema \"style.css\" (che trovi in<a href=\"%s\">%s</a>)."
|
1175 |
+
|
1176 |
+
#: wp-table-reloaded-admin.php:1742
|
1177 |
+
#, php-format
|
1178 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
1179 |
+
msgstr "Un'altra possibilità è di includere un file CSS (ad esempio, dalla vostra cartella dei temi) con il comando CSS @import: %s"
|
1180 |
+
|
1181 |
+
#: wp-table-reloaded-admin.php:1750
|
1182 |
+
msgid "Advanced Options"
|
1183 |
+
msgstr "Opzioni avanzate"
|
1184 |
+
|
1185 |
+
#: wp-table-reloaded-admin.php:1754
|
1186 |
+
msgid "Use Tablesorter Extended?"
|
1187 |
+
msgstr "Vuoi usare Tablesorter Extended?"
|
1188 |
+
|
1189 |
+
#: wp-table-reloaded-admin.php:1755
|
1190 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
1191 |
+
msgstr "Sì, utilizza Extended Tablesorter da <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> al posto di Tablesorter originale (ANCORA IN FASE DI SVILUPPO!)."
|
1192 |
+
|
1193 |
+
#: wp-table-reloaded-admin.php:1759
|
1194 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
1195 |
+
msgstr "(Questa impostazione non influenza la \"Disinstallazione manuale del Plugin\" bottone qui sotto!)"
|
1196 |
+
|
1197 |
+
#: wp-table-reloaded-admin.php:1762
|
1198 |
+
msgid "Allow donation message?"
|
1199 |
+
msgstr "Consenti il messaggio per la donazione?"
|
1200 |
+
|
1201 |
+
#: wp-table-reloaded-admin.php:1763
|
1202 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
1203 |
+
msgstr "Sì, mostra il messaggio per la donazione dopo 30 giorni di utilizzo del plugin."
|
1204 |
+
|
1205 |
+
#: wp-table-reloaded-admin.php:1780
|
1206 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
1207 |
+
msgstr "Puoi disinstallare qui il plugin. In questo modo <strong>verranno eliminati</strong> tutte le tabelle, i dati, le opzioni, ecc, che appartengono al plug-in, oltre a tutte le tabelle aggiunte o importate."
|
1208 |
+
|
1209 |
+
#: wp-table-reloaded-admin.php:1780
|
1210 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
1211 |
+
msgstr "Presta molta attenzione e fai clic sul bottone solo se sai cosa stai facendo!"
|
1212 |
+
|
1213 |
+
#: wp-table-reloaded-admin.php:1794
|
1214 |
+
msgid "About WP-Table Reloaded"
|
1215 |
+
msgstr "About WP-Table Reloaded"
|
1216 |
+
|
1217 |
+
#: wp-table-reloaded-admin.php:1823
|
1218 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1219 |
+
msgstr "Questo plugin è stato scritto da a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. È concesso in licenza come software libero sotto licenza GPL 2."
|
1220 |
+
|
1221 |
+
#: wp-table-reloaded-admin.php:1823
|
1222 |
+
#: wp-table-reloaded-admin.php:1981
|
1223 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1224 |
+
msgstr "Se ti piace il plug-in, prendi in considerazione <a href=\"http://tobias.baethge.com/donate/\"><strong>una donazione</strong></a> e vota il plugin nel sito<a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1225 |
+
|
1226 |
+
#: wp-table-reloaded-admin.php:1835
|
1227 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1228 |
+
msgstr "Bielorussia (grazie a <a href=\"http://www.fatcow.com/\">Marcis Gasuns)</a>"
|
1229 |
+
|
1230 |
+
#: wp-table-reloaded-admin.php:1836
|
1231 |
+
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1232 |
+
msgstr "Portoghese brasiliano (grazie a <a href=\"http://www.pensarics.com/\">Rics)</a>"
|
1233 |
+
|
1234 |
+
#: wp-table-reloaded-admin.php:1839
|
1235 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1236 |
+
msgstr "Italiano (grazie a <a href=\"http://www.scrical.it/\">Gabriella Mazzon)</a>"
|
1237 |
+
|
1238 |
+
#: wp-table-reloaded-admin.php:1840
|
1239 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1240 |
+
msgstr "Giapponese (grazie a <a href=\"http://www.u-1.net/\">Yuuichi)</a>"
|
1241 |
+
|
1242 |
+
#: wp-table-reloaded-admin.php:1858
|
1243 |
+
msgid "Plugin installed"
|
1244 |
+
msgstr "Plugin installato"
|
1245 |
+
|
1246 |
+
#: wp-table-reloaded-admin.php:1948
|
1247 |
+
msgid "This is the \"List Tables\" screen."
|
1248 |
+
msgstr "Questa è la finestra \"Elenco tabelle\"."
|
1249 |
+
|
1250 |
+
#: wp-table-reloaded-admin.php:1952
|
1251 |
+
msgid "This is the \"Edit Table\" screen."
|
1252 |
+
msgstr "Questa è la finestra \"Modifica tabella\"."
|
1253 |
+
|
1254 |
+
#: wp-table-reloaded-admin.php:1955
|
1255 |
+
msgid "This is the \"Add new Table\" screen."
|
1256 |
+
msgstr "Questa è la finestra \"Aggiungi una nuova tabella\"."
|
1257 |
+
|
1258 |
+
#: wp-table-reloaded-admin.php:1958
|
1259 |
+
msgid "This is the \"Import a Table\" screen."
|
1260 |
+
msgstr "Questa è la finestra \"Importa tabella\"."
|
1261 |
+
|
1262 |
+
#: wp-table-reloaded-admin.php:1961
|
1263 |
+
msgid "This is the \"Export a Table\" screen."
|
1264 |
+
msgstr "Questa è la finestra \"Esporta tabella\"."
|
1265 |
+
|
1266 |
+
#: wp-table-reloaded-admin.php:1964
|
1267 |
+
msgid "This is the \"Plugin Options\" screen."
|
1268 |
+
msgstr "Questa è la finestra \"Opzioni del plugin\"."
|
1269 |
+
|
1270 |
+
#: wp-table-reloaded-admin.php:1970
|
1271 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1272 |
+
msgstr "Questa è la finestra \"About WP-Table Reloaded\"."
|
1273 |
+
|
1274 |
+
#: wp-table-reloaded-admin.php:2264
|
1275 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1276 |
+
msgstr "Per inserire un'immagine, clicca sulla cella in cui desideri inserirla."
|
1277 |
+
|
1278 |
+
#: wp-table-reloaded-admin.php:2264
|
1279 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1280 |
+
msgstr "Si aprirà la Mediateca dalla quale puoi selezionare l'immagine oppure inserirne l'URL."
|
1281 |
+
|
1282 |
+
#: wp-table-reloaded-admin.php:2264
|
1283 |
+
#, php-format
|
1284 |
+
msgid "Click the \"%s\" button to insert the image."
|
1285 |
+
msgstr "Clicca sul bottone \"%s\" per inserire l'immagine."
|
1286 |
+
|
1287 |
+
#: wp-table-reloaded-admin.php:2264
|
1288 |
+
msgid "Insert into Post"
|
1289 |
+
msgstr "Inserisci nel Post"
|
1290 |
+
|
1291 |
+
#: wp-table-reloaded-admin.php:2275
|
1292 |
+
msgid "Do you really want to change the ID of the table?"
|
1293 |
+
msgstr "Vuoi veramente cambiare l'ID della tabella?"
|
1294 |
+
|
1295 |
+
#: wp-table-reloaded-admin.php:2276
|
1296 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1297 |
+
msgstr "Per mostrare questa campo dati personalizzato, utilizza il codice:"
|
1298 |
+
|
1299 |
+
#: wp-table-reloaded-admin.php:2277
|
1300 |
+
msgid "To show this table, use this shortcode:"
|
1301 |
+
msgstr "Per mostrare questa tabella, utilizza il codice:"
|
1302 |
+
|
1303 |
+
#: wp-table-reloaded-admin.php:2349
|
1304 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1305 |
+
msgstr "Grazie per utilizzare <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1306 |
+
|
languages/wp-table-reloaded-ja.mo
ADDED
Binary file
|
languages/wp-table-reloaded-ja.po
ADDED
@@ -0,0 +1,1313 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Wp-Table Reloaded 1.4\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
5 |
+
"POT-Creation-Date: 2009-07-19 20:19+0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Yuuichi <u1@u-1.net>\n"
|
8 |
+
"Language-Team: <u1@u-1.net>\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=1; plural=0;\n"
|
13 |
+
"X-Poedit-Language: Japanese\n"
|
14 |
+
"X-Poedit-Country: JAPAN\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
|
17 |
+
#: php/wp-table-reloaded-export.class.php:30
|
18 |
+
#: php/wp-table-reloaded-import.class.php:38
|
19 |
+
msgid "CSV - Character-Separated Values"
|
20 |
+
msgstr "CSV - カンマ区切り"
|
21 |
+
|
22 |
+
#: php/wp-table-reloaded-export.class.php:31
|
23 |
+
#: php/wp-table-reloaded-import.class.php:39
|
24 |
+
msgid "HTML - Hypertext Markup Language"
|
25 |
+
msgstr "HTML - ハイパーテキストマークアップ言語"
|
26 |
+
|
27 |
+
#: php/wp-table-reloaded-export.class.php:32
|
28 |
+
#: php/wp-table-reloaded-import.class.php:40
|
29 |
+
msgid "XML - eXtended Markup Language"
|
30 |
+
msgstr "XML - 拡張マークアップ言語"
|
31 |
+
|
32 |
+
#: php/wp-table-reloaded-export.class.php:35
|
33 |
+
msgid "; (semicolon)"
|
34 |
+
msgstr "; (セミコロン)"
|
35 |
+
|
36 |
+
#: php/wp-table-reloaded-export.class.php:36
|
37 |
+
msgid ", (comma)"
|
38 |
+
msgstr ", (コンマ)"
|
39 |
+
|
40 |
+
#: php/wp-table-reloaded-export.class.php:37
|
41 |
+
msgid ": (colon)"
|
42 |
+
msgstr ": (コロン)"
|
43 |
+
|
44 |
+
#: php/wp-table-reloaded-export.class.php:38
|
45 |
+
msgid ". (dot)"
|
46 |
+
msgstr ". (ドット)"
|
47 |
+
|
48 |
+
#: php/wp-table-reloaded-export.class.php:39
|
49 |
+
msgid "| (pipe)"
|
50 |
+
msgstr "| (パイプ)"
|
51 |
+
|
52 |
+
#: wp-table-reloaded-admin.php:179
|
53 |
+
#, php-format
|
54 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
55 |
+
msgstr "このプラグインを使っていただきありがとうございます! あなたは WP-Table Reloaded をインストールして1ヶ月以上が経過しました. もしこのプラグインによるデータの管理に満足していただけたようでしたら,幾ばくかの寄付をお願いいたします."
|
56 |
+
|
57 |
+
#: wp-table-reloaded-admin.php:180
|
58 |
+
#, php-format
|
59 |
+
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!"
|
60 |
+
msgstr "<a href=\"%s\">寄付</a> をいただくことはこの<i>フリー</i>ソフトウェアのサポートと開発継続の一助となります."
|
61 |
+
|
62 |
+
#: wp-table-reloaded-admin.php:181
|
63 |
+
msgid "Sure, no problem!"
|
64 |
+
msgstr "もちろん問題ありません!"
|
65 |
+
|
66 |
+
#: wp-table-reloaded-admin.php:182
|
67 |
+
msgid "I already donated."
|
68 |
+
msgstr "私はすでに寄付を行いました."
|
69 |
+
|
70 |
+
#: wp-table-reloaded-admin.php:183
|
71 |
+
msgid "No, thanks. Don't ask again."
|
72 |
+
msgstr "結構です.この質問をもう表示しません."
|
73 |
+
|
74 |
+
#: wp-table-reloaded-admin.php:208
|
75 |
+
#, php-format
|
76 |
+
msgid "Table \"%s\" added successfully."
|
77 |
+
msgstr "テーブル \"%s\" の追加に成功しました."
|
78 |
+
|
79 |
+
#: wp-table-reloaded-admin.php:236
|
80 |
+
#, php-format
|
81 |
+
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
82 |
+
msgstr "テーブルの編集に成功しました. このテーブルの ID は %s です. 必要に応じてショートコードの修正を行ってください."
|
83 |
+
|
84 |
+
#: wp-table-reloaded-admin.php:238
|
85 |
+
#, php-format
|
86 |
+
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
87 |
+
msgstr "すでに同じ ID が存在するため %s から %s への ID の変更はできませんでした."
|
88 |
+
|
89 |
+
#: wp-table-reloaded-admin.php:241
|
90 |
+
msgid "Table edited successfully."
|
91 |
+
msgstr "テーブルの編集に成功しました."
|
92 |
+
|
93 |
+
#: wp-table-reloaded-admin.php:279
|
94 |
+
msgid "Rows swapped successfully."
|
95 |
+
msgstr "行の入れ替えに成功しました."
|
96 |
+
|
97 |
+
#: wp-table-reloaded-admin.php:300
|
98 |
+
msgid "Columns swapped successfully."
|
99 |
+
msgstr "列の入れ替えに成功しました."
|
100 |
+
|
101 |
+
#: wp-table-reloaded-admin.php:331
|
102 |
+
msgid "Table sorted successfully."
|
103 |
+
msgstr "テーブルの並び替えに成功しました."
|
104 |
+
|
105 |
+
#: wp-table-reloaded-admin.php:346
|
106 |
+
msgid "Row added successfully."
|
107 |
+
msgid_plural "Rows added successfully."
|
108 |
+
msgstr[0] "行を追加しました."
|
109 |
+
|
110 |
+
#: wp-table-reloaded-admin.php:360
|
111 |
+
msgid "Column added successfully."
|
112 |
+
msgid_plural "Columns added successfully."
|
113 |
+
msgstr[0] "列を追加しました."
|
114 |
+
|
115 |
+
#: wp-table-reloaded-admin.php:381
|
116 |
+
msgid "Row moved successfully."
|
117 |
+
msgstr "行の移動に成功しました."
|
118 |
+
|
119 |
+
#: wp-table-reloaded-admin.php:406
|
120 |
+
msgid "Column moved successfully."
|
121 |
+
msgstr "列の移動に成功しました."
|
122 |
+
|
123 |
+
#: wp-table-reloaded-admin.php:413
|
124 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
125 |
+
msgstr "名前が入力されていないためカスタムデータ領域を追加できません."
|
126 |
+
|
127 |
+
#: wp-table-reloaded-admin.php:418
|
128 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
129 |
+
msgstr "入力された名前がすでに他のデータ領域の名称として予約されているためカスタムデータ領域を追加できません."
|
130 |
+
|
131 |
+
#: wp-table-reloaded-admin.php:424
|
132 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
133 |
+
msgstr "入力された名前が不正な文字を使用しているためカスタムデータ領域を追加できません."
|
134 |
+
|
135 |
+
#: wp-table-reloaded-admin.php:428
|
136 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
137 |
+
msgstr "入力された名前がすでに使用されているためカスタムデータ領域を追加できません."
|
138 |
+
|
139 |
+
#: wp-table-reloaded-admin.php:434
|
140 |
+
msgid "Custom Data Field added successfully."
|
141 |
+
msgstr "カスタムデータ領域を追加しました."
|
142 |
+
|
143 |
+
#: wp-table-reloaded-admin.php:470
|
144 |
+
#: wp-table-reloaded-admin.php:525
|
145 |
+
msgid "Copy of"
|
146 |
+
msgstr "コピー"
|
147 |
+
|
148 |
+
#: wp-table-reloaded-admin.php:474
|
149 |
+
msgid "Table copied successfully."
|
150 |
+
msgid_plural "Tables copied successfully."
|
151 |
+
msgstr[0] "テーブルを複製しました."
|
152 |
+
|
153 |
+
#: wp-table-reloaded-admin.php:480
|
154 |
+
msgid "Table deleted successfully."
|
155 |
+
msgid_plural "Tables deleted successfully."
|
156 |
+
msgstr[0] "テーブルを削除しました."
|
157 |
+
|
158 |
+
#: wp-table-reloaded-admin.php:501
|
159 |
+
#: wp-table-reloaded-admin.php:701
|
160 |
+
#: wp-table-reloaded-admin.php:739
|
161 |
+
msgid "Table imported successfully."
|
162 |
+
msgid_plural "Tables imported successfully."
|
163 |
+
msgstr[0] "テーブルを読み込みました."
|
164 |
+
|
165 |
+
#: wp-table-reloaded-admin.php:508
|
166 |
+
msgid "You did not select any tables!"
|
167 |
+
msgstr "テーブルが選択されていません!"
|
168 |
+
|
169 |
+
#: wp-table-reloaded-admin.php:530
|
170 |
+
#, php-format
|
171 |
+
msgid "Table \"%s\" copied successfully."
|
172 |
+
msgstr "テーブル \"%s\" の複製に成功しました."
|
173 |
+
|
174 |
+
#: wp-table-reloaded-admin.php:546
|
175 |
+
#, php-format
|
176 |
+
msgid "Table \"%s\" deleted successfully."
|
177 |
+
msgstr "テーブル \"%s\" の削除に成功しました."
|
178 |
+
|
179 |
+
#: wp-table-reloaded-admin.php:557
|
180 |
+
msgid "Row deleted successfully."
|
181 |
+
msgstr "行の削除に成功しました."
|
182 |
+
|
183 |
+
#: wp-table-reloaded-admin.php:571
|
184 |
+
msgid "Column deleted successfully."
|
185 |
+
msgstr "列の削除に成功しました."
|
186 |
+
|
187 |
+
#: wp-table-reloaded-admin.php:580
|
188 |
+
msgid "Custom Data Field deleted successfully."
|
189 |
+
msgstr "カスタムデータ領域の削除に成功しました."
|
190 |
+
|
191 |
+
#: wp-table-reloaded-admin.php:582
|
192 |
+
msgid "Custom Data Field could not be deleted."
|
193 |
+
msgstr "カスタムデータ領域を削除できません."
|
194 |
+
|
195 |
+
#: wp-table-reloaded-admin.php:588
|
196 |
+
msgid "Delete failed."
|
197 |
+
msgstr "削除に失敗しました."
|
198 |
+
|
199 |
+
#: wp-table-reloaded-admin.php:614
|
200 |
+
msgid "Row inserted successfully."
|
201 |
+
msgstr "行の挿入に成功しました."
|
202 |
+
|
203 |
+
#: wp-table-reloaded-admin.php:624
|
204 |
+
msgid "Column inserted successfully."
|
205 |
+
msgstr "列の挿入に成功しました."
|
206 |
+
|
207 |
+
#: wp-table-reloaded-admin.php:627
|
208 |
+
msgid "Insert failed."
|
209 |
+
msgstr "挿入に失敗しました."
|
210 |
+
|
211 |
+
#: wp-table-reloaded-admin.php:655
|
212 |
+
#: wp-table-reloaded-admin.php:664
|
213 |
+
#: wp-table-reloaded-admin.php:674
|
214 |
+
msgid "Imported Table"
|
215 |
+
msgstr "テーブルの読み込み."
|
216 |
+
|
217 |
+
#: wp-table-reloaded-admin.php:656
|
218 |
+
#: wp-table-reloaded-admin.php:675
|
219 |
+
#, php-format
|
220 |
+
msgid "from %s"
|
221 |
+
msgstr "%s から"
|
222 |
+
|
223 |
+
#: wp-table-reloaded-admin.php:665
|
224 |
+
msgid "via form"
|
225 |
+
msgstr "経由"
|
226 |
+
|
227 |
+
#: wp-table-reloaded-admin.php:685
|
228 |
+
#: wp-table-reloaded-admin.php:716
|
229 |
+
msgid "Table could not be imported."
|
230 |
+
msgstr "テーブルが読み込めませんでした."
|
231 |
+
|
232 |
+
#: wp-table-reloaded-admin.php:697
|
233 |
+
#, php-format
|
234 |
+
msgid "Table %s (%s) replaced successfully."
|
235 |
+
msgstr "テーブル %s (%s) の置換に成功しました."
|
236 |
+
|
237 |
+
#: wp-table-reloaded-admin.php:766
|
238 |
+
#, php-format
|
239 |
+
msgid "Table \"%s\" exported successfully."
|
240 |
+
msgstr "テーブル \"%s\" の出力に成功しました."
|
241 |
+
|
242 |
+
#: wp-table-reloaded-admin.php:797
|
243 |
+
msgid "Options saved successfully."
|
244 |
+
msgstr "設定の保存が完了しました."
|
245 |
+
|
246 |
+
#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
|
247 |
+
#. Plugin Name of an extension
|
248 |
+
#: wp-table-reloaded-admin.php:815
|
249 |
+
#: wp-table-reloaded-admin.php:958
|
250 |
+
msgid "WP-Table Reloaded"
|
251 |
+
msgstr "WP-Table Reloaded"
|
252 |
+
|
253 |
+
#: wp-table-reloaded-admin.php:816
|
254 |
+
#: wp-table-reloaded-admin.php:1967
|
255 |
+
msgid "Plugin deactivated successfully."
|
256 |
+
msgstr "プラグインの無効化に成功しました."
|
257 |
+
|
258 |
+
#: wp-table-reloaded-admin.php:817
|
259 |
+
#: wp-table-reloaded-admin.php:1967
|
260 |
+
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
261 |
+
msgstr "WordPress のプラグインフォルダからこのプラグインを削除しようとしています.全てのテーブルデータや設定が削除されます."
|
262 |
+
|
263 |
+
#: wp-table-reloaded-admin.php:833
|
264 |
+
#: wp-table-reloaded-admin.php:958
|
265 |
+
msgid "List of Tables"
|
266 |
+
msgstr "テーブル一覧 "
|
267 |
+
|
268 |
+
#: wp-table-reloaded-admin.php:836
|
269 |
+
#: wp-table-reloaded-admin.php:961
|
270 |
+
msgid "This is a list of all available tables."
|
271 |
+
msgstr "利用可能なテーブルの一覧です."
|
272 |
+
|
273 |
+
#: wp-table-reloaded-admin.php:836
|
274 |
+
msgid "You may insert a table into a post or page here."
|
275 |
+
msgstr "投稿やページにテーブルを挿入します."
|
276 |
+
|
277 |
+
#: wp-table-reloaded-admin.php:837
|
278 |
+
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
279 |
+
msgstr "使いたいテーブルを選択した後に \"挿入\" をクリックすると対応するショートコードが編集領域に挿入されます(形式 : <strong>[table id=<the_table_ID> /]</strong>)."
|
280 |
+
|
281 |
+
#: wp-table-reloaded-admin.php:846
|
282 |
+
#: wp-table-reloaded-admin.php:854
|
283 |
+
#: wp-table-reloaded-admin.php:973
|
284 |
+
#: wp-table-reloaded-admin.php:982
|
285 |
+
#: wp-table-reloaded-admin.php:1567
|
286 |
+
#: wp-table-reloaded-admin.php:1576
|
287 |
+
msgid "ID"
|
288 |
+
msgstr "ID"
|
289 |
+
|
290 |
+
#: wp-table-reloaded-admin.php:847
|
291 |
+
#: wp-table-reloaded-admin.php:855
|
292 |
+
#: wp-table-reloaded-admin.php:974
|
293 |
+
#: wp-table-reloaded-admin.php:983
|
294 |
+
#: wp-table-reloaded-admin.php:1067
|
295 |
+
#: wp-table-reloaded-admin.php:1121
|
296 |
+
#: wp-table-reloaded-admin.php:1568
|
297 |
+
#: wp-table-reloaded-admin.php:1577
|
298 |
+
msgid "Table Name"
|
299 |
+
msgstr "テーブル名"
|
300 |
+
|
301 |
+
#: wp-table-reloaded-admin.php:848
|
302 |
+
#: wp-table-reloaded-admin.php:856
|
303 |
+
#: wp-table-reloaded-admin.php:975
|
304 |
+
#: wp-table-reloaded-admin.php:984
|
305 |
+
#: wp-table-reloaded-admin.php:1071
|
306 |
+
#: wp-table-reloaded-admin.php:1125
|
307 |
+
#: wp-table-reloaded-admin.php:1569
|
308 |
+
#: wp-table-reloaded-admin.php:1578
|
309 |
+
msgid "Description"
|
310 |
+
msgstr "説明"
|
311 |
+
|
312 |
+
#: wp-table-reloaded-admin.php:849
|
313 |
+
#: wp-table-reloaded-admin.php:857
|
314 |
+
#: wp-table-reloaded-admin.php:1414
|
315 |
+
#: wp-table-reloaded-admin.php:1570
|
316 |
+
#: wp-table-reloaded-admin.php:1579
|
317 |
+
msgid "Action"
|
318 |
+
msgstr "動作"
|
319 |
+
|
320 |
+
#: wp-table-reloaded-admin.php:877
|
321 |
+
msgid "Insert"
|
322 |
+
msgstr "挿入"
|
323 |
+
|
324 |
+
#: wp-table-reloaded-admin.php:886
|
325 |
+
#: wp-table-reloaded-admin.php:1045
|
326 |
+
#: wp-table-reloaded-admin.php:1699
|
327 |
+
msgid "No tables found."
|
328 |
+
msgstr "テーブルが見つかりません."
|
329 |
+
|
330 |
+
#: wp-table-reloaded-admin.php:906
|
331 |
+
#, php-format
|
332 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
333 |
+
msgstr "テーブル \"%s\" (ID %s) のプレビュー"
|
334 |
+
|
335 |
+
#: wp-table-reloaded-admin.php:909
|
336 |
+
msgid "This is a preview of the table data."
|
337 |
+
msgstr "これはテーブルデータのプレビューです."
|
338 |
+
|
339 |
+
#: wp-table-reloaded-admin.php:910
|
340 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
341 |
+
msgstr "スタイルシートによってあなたのページではテーブルのデザインは違って見えるかも知れません."
|
342 |
+
|
343 |
+
#: wp-table-reloaded-admin.php:911
|
344 |
+
#: wp-table-reloaded-admin.php:1106
|
345 |
+
#, php-format
|
346 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
347 |
+
msgstr "このテーブルをあなたの投稿やページ,テキストウィジェットで使用するには,ショートコード <strong>[table id=%s /]</strong> を使用してください."
|
348 |
+
|
349 |
+
#: wp-table-reloaded-admin.php:924
|
350 |
+
msgid "There is no table with this ID!"
|
351 |
+
msgstr "この ID のテーブルは存在しません!"
|
352 |
+
|
353 |
+
#: wp-table-reloaded-admin.php:941
|
354 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
355 |
+
msgstr "ありがとうございます! あなたの寄付に本当に感謝いたします. あなたは WP-Table Reloaded のさらなる発展に貢献されました!"
|
356 |
+
|
357 |
+
#: wp-table-reloaded-admin.php:943
|
358 |
+
#, php-format
|
359 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
360 |
+
msgstr "問題ありません! WP-Table Reloaded があなたにとって有益でありますように. もし,あなたの気持ちが変化したときは <a href=\"%s\">WP-Table Reloaded の Web サイト</a>で\"寄付\"ボタンをいつでも見つけることができます."
|
361 |
+
|
362 |
+
#: wp-table-reloaded-admin.php:961
|
363 |
+
msgid "You may add, edit, copy or delete tables here."
|
364 |
+
msgstr "テーブルの追加,編集,複製や削除が行えます."
|
365 |
+
|
366 |
+
#: wp-table-reloaded-admin.php:962
|
367 |
+
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
368 |
+
msgstr "テーブルを投稿やページ、テキストウィジェットなどで利用する場合は,ショートコード<strong>[table id=<the_table_ID> /]</strong> を使用するか,編集画面のツールバーから \"テーブル\" をクリックしてください."
|
369 |
+
|
370 |
+
#: wp-table-reloaded-admin.php:976
|
371 |
+
#: wp-table-reloaded-admin.php:985
|
372 |
+
#: wp-table-reloaded-admin.php:1130
|
373 |
+
msgid "Last Modified"
|
374 |
+
msgstr "最終更新日時"
|
375 |
+
|
376 |
+
#: wp-table-reloaded-admin.php:997
|
377 |
+
msgid "(no name)"
|
378 |
+
msgstr "(no name)"
|
379 |
+
|
380 |
+
#: wp-table-reloaded-admin.php:998
|
381 |
+
msgid "(no description)"
|
382 |
+
msgstr "(no description)"
|
383 |
+
|
384 |
+
#: wp-table-reloaded-admin.php:1002
|
385 |
+
#: wp-table-reloaded-admin.php:1131
|
386 |
+
msgid "by"
|
387 |
+
msgstr "by"
|
388 |
+
|
389 |
+
#: wp-table-reloaded-admin.php:1015
|
390 |
+
#, php-format
|
391 |
+
msgid "Edit %s"
|
392 |
+
msgstr "%s を編集"
|
393 |
+
|
394 |
+
#: wp-table-reloaded-admin.php:1017
|
395 |
+
msgid "Edit"
|
396 |
+
msgstr "編集"
|
397 |
+
|
398 |
+
#: wp-table-reloaded-admin.php:1019
|
399 |
+
msgid "Shortcode"
|
400 |
+
msgstr "ショートコード"
|
401 |
+
|
402 |
+
#: wp-table-reloaded-admin.php:1020
|
403 |
+
msgid "Copy"
|
404 |
+
msgstr "複製"
|
405 |
+
|
406 |
+
#: wp-table-reloaded-admin.php:1021
|
407 |
+
msgid "Export"
|
408 |
+
msgstr "出力"
|
409 |
+
|
410 |
+
#: wp-table-reloaded-admin.php:1022
|
411 |
+
msgid "Delete"
|
412 |
+
msgstr "削除"
|
413 |
+
|
414 |
+
#: wp-table-reloaded-admin.php:1023
|
415 |
+
#, php-format
|
416 |
+
msgid "Preview of Table %s"
|
417 |
+
msgstr "テーブル %s をプレビュー."
|
418 |
+
|
419 |
+
#: wp-table-reloaded-admin.php:1024
|
420 |
+
msgid "Preview"
|
421 |
+
msgstr "プレビュー"
|
422 |
+
|
423 |
+
#: wp-table-reloaded-admin.php:1036
|
424 |
+
#: wp-table-reloaded-admin.php:1608
|
425 |
+
msgid "Bulk actions:"
|
426 |
+
msgstr "一括操作 : "
|
427 |
+
|
428 |
+
#: wp-table-reloaded-admin.php:1036
|
429 |
+
msgid "Copy Tables"
|
430 |
+
msgstr "テーブルの複製"
|
431 |
+
|
432 |
+
#: wp-table-reloaded-admin.php:1036
|
433 |
+
msgid "Delete Tables"
|
434 |
+
msgstr "テーブルの削除"
|
435 |
+
|
436 |
+
#: wp-table-reloaded-admin.php:1045
|
437 |
+
#: wp-table-reloaded-admin.php:1699
|
438 |
+
#, php-format
|
439 |
+
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
440 |
+
msgstr "<a href=\"%s\">追加</a> や <a href=\"%s\">読み込み</a>を行います!"
|
441 |
+
|
442 |
+
#: wp-table-reloaded-admin.php:1055
|
443 |
+
#: wp-table-reloaded-admin.php:1902
|
444 |
+
msgid "Add new Table"
|
445 |
+
msgstr "新しいテーブルの追加"
|
446 |
+
|
447 |
+
#: wp-table-reloaded-admin.php:1059
|
448 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
449 |
+
msgstr "新しいテーブルを追加します. 追加するテーブルの名前をまずは入力し,説明(任意)および行または列の数を入力してください."
|
450 |
+
|
451 |
+
#: wp-table-reloaded-admin.php:1059
|
452 |
+
msgid "You may add, insert or delete rows and columns later."
|
453 |
+
msgstr "行や列はあとで追加や削除が出来ます."
|
454 |
+
|
455 |
+
#: wp-table-reloaded-admin.php:1068
|
456 |
+
msgid "Enter Table Name"
|
457 |
+
msgstr "テーブル名を入力してください"
|
458 |
+
|
459 |
+
#: wp-table-reloaded-admin.php:1072
|
460 |
+
msgid "Enter Description"
|
461 |
+
msgstr "説明を入力してください"
|
462 |
+
|
463 |
+
#: wp-table-reloaded-admin.php:1075
|
464 |
+
msgid "Number of Rows"
|
465 |
+
msgstr "行の数"
|
466 |
+
|
467 |
+
#: wp-table-reloaded-admin.php:1079
|
468 |
+
msgid "Number of Columns"
|
469 |
+
msgstr "列の数"
|
470 |
+
|
471 |
+
#: wp-table-reloaded-admin.php:1086
|
472 |
+
msgid "Add Table"
|
473 |
+
msgstr "テーブル追加"
|
474 |
+
|
475 |
+
#: wp-table-reloaded-admin.php:1102
|
476 |
+
#, php-format
|
477 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
478 |
+
msgstr "テーブル \"%s\" (ID %s) の編集"
|
479 |
+
|
480 |
+
#: wp-table-reloaded-admin.php:1105
|
481 |
+
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
482 |
+
msgstr "テーブルの内容を編集します.またテーブルの行と列の追加削除も行えます."
|
483 |
+
|
484 |
+
#: wp-table-reloaded-admin.php:1113
|
485 |
+
msgid "Table Information"
|
486 |
+
msgstr "テーブル情報"
|
487 |
+
|
488 |
+
#: wp-table-reloaded-admin.php:1117
|
489 |
+
msgid "Table ID"
|
490 |
+
msgstr "テーブル ID"
|
491 |
+
|
492 |
+
#: wp-table-reloaded-admin.php:1139
|
493 |
+
#: wp-table-reloaded-admin.php:1353
|
494 |
+
#: wp-table-reloaded-admin.php:1393
|
495 |
+
#: wp-table-reloaded-admin.php:1444
|
496 |
+
msgid "Update Changes"
|
497 |
+
msgstr "変更を反映"
|
498 |
+
|
499 |
+
#: wp-table-reloaded-admin.php:1140
|
500 |
+
#: wp-table-reloaded-admin.php:1354
|
501 |
+
#: wp-table-reloaded-admin.php:1394
|
502 |
+
#: wp-table-reloaded-admin.php:1445
|
503 |
+
msgid "Save and go back"
|
504 |
+
msgstr "保存して戻る"
|
505 |
+
|
506 |
+
#: wp-table-reloaded-admin.php:1143
|
507 |
+
#: wp-table-reloaded-admin.php:1357
|
508 |
+
#: wp-table-reloaded-admin.php:1397
|
509 |
+
#: wp-table-reloaded-admin.php:1448
|
510 |
+
msgid "Cancel"
|
511 |
+
msgstr "取り消し"
|
512 |
+
|
513 |
+
#: wp-table-reloaded-admin.php:1149
|
514 |
+
msgid "Table Contents"
|
515 |
+
msgstr "テーブル内容"
|
516 |
+
|
517 |
+
#: wp-table-reloaded-admin.php:1149
|
518 |
+
#: wp-table-reloaded-admin.php:1246
|
519 |
+
#: wp-table-reloaded-admin.php:1362
|
520 |
+
#: wp-table-reloaded-admin.php:1402
|
521 |
+
#: wp-table-reloaded-admin.php:1750
|
522 |
+
#: wp-table-reloaded-admin.php:1852
|
523 |
+
msgid "Hide"
|
524 |
+
msgstr "隠す"
|
525 |
+
|
526 |
+
#: wp-table-reloaded-admin.php:1149
|
527 |
+
#: wp-table-reloaded-admin.php:1246
|
528 |
+
#: wp-table-reloaded-admin.php:1362
|
529 |
+
#: wp-table-reloaded-admin.php:1402
|
530 |
+
#: wp-table-reloaded-admin.php:1750
|
531 |
+
#: wp-table-reloaded-admin.php:1852
|
532 |
+
msgid "Expand"
|
533 |
+
msgstr "広げる"
|
534 |
+
|
535 |
+
#: wp-table-reloaded-admin.php:1190
|
536 |
+
msgid "Insert Row"
|
537 |
+
msgstr "行挿入"
|
538 |
+
|
539 |
+
#: wp-table-reloaded-admin.php:1192
|
540 |
+
msgid "Delete Row"
|
541 |
+
msgstr "行削除"
|
542 |
+
|
543 |
+
#: wp-table-reloaded-admin.php:1195
|
544 |
+
msgid "Row hidden"
|
545 |
+
msgstr "行非表示"
|
546 |
+
|
547 |
+
#: wp-table-reloaded-admin.php:1206
|
548 |
+
msgid "Insert Column"
|
549 |
+
msgstr "列挿入"
|
550 |
+
|
551 |
+
#: wp-table-reloaded-admin.php:1208
|
552 |
+
msgid "Delete Column"
|
553 |
+
msgstr "列削除"
|
554 |
+
|
555 |
+
#: wp-table-reloaded-admin.php:1218
|
556 |
+
#, php-format
|
557 |
+
msgid "Add %s row(s)"
|
558 |
+
msgstr "%s 行追加"
|
559 |
+
|
560 |
+
#: wp-table-reloaded-admin.php:1219
|
561 |
+
#: wp-table-reloaded-admin.php:1221
|
562 |
+
#: wp-table-reloaded-admin.php:1439
|
563 |
+
msgid "Add"
|
564 |
+
msgstr "追加"
|
565 |
+
|
566 |
+
#: wp-table-reloaded-admin.php:1220
|
567 |
+
#, php-format
|
568 |
+
msgid "Add %s column(s)"
|
569 |
+
msgstr "%s 列追加"
|
570 |
+
|
571 |
+
#: wp-table-reloaded-admin.php:1232
|
572 |
+
msgid "Column hidden"
|
573 |
+
msgstr "列非表示"
|
574 |
+
|
575 |
+
#: wp-table-reloaded-admin.php:1246
|
576 |
+
msgid "Data Manipulation"
|
577 |
+
msgstr "データ操作"
|
578 |
+
|
579 |
+
#: wp-table-reloaded-admin.php:1260
|
580 |
+
#, php-format
|
581 |
+
msgid "Swap rows %s and %s"
|
582 |
+
msgstr "行 %s と %s を入れ替え"
|
583 |
+
|
584 |
+
#: wp-table-reloaded-admin.php:1262
|
585 |
+
#: wp-table-reloaded-admin.php:1280
|
586 |
+
msgid "Swap"
|
587 |
+
msgstr "入れ替え"
|
588 |
+
|
589 |
+
#: wp-table-reloaded-admin.php:1278
|
590 |
+
#, php-format
|
591 |
+
msgid "Swap columns %s and %s"
|
592 |
+
msgstr "列 %s と %s を入れ替え"
|
593 |
+
|
594 |
+
#: wp-table-reloaded-admin.php:1294
|
595 |
+
#: wp-table-reloaded-admin.php:1317
|
596 |
+
msgid "before"
|
597 |
+
msgstr "前に"
|
598 |
+
|
599 |
+
#: wp-table-reloaded-admin.php:1295
|
600 |
+
#: wp-table-reloaded-admin.php:1318
|
601 |
+
msgid "after"
|
602 |
+
msgstr "後に"
|
603 |
+
|
604 |
+
#: wp-table-reloaded-admin.php:1298
|
605 |
+
#, php-format
|
606 |
+
msgid "Move row %s %s row %s"
|
607 |
+
msgstr "行 %s を 次の行の %s(%s)へ移動"
|
608 |
+
|
609 |
+
#: wp-table-reloaded-admin.php:1300
|
610 |
+
#: wp-table-reloaded-admin.php:1323
|
611 |
+
msgid "Move"
|
612 |
+
msgstr "移動"
|
613 |
+
|
614 |
+
#: wp-table-reloaded-admin.php:1321
|
615 |
+
#, php-format
|
616 |
+
msgid "Move column %s %s column %s"
|
617 |
+
msgstr "列 %s を 次の列の %s(%s)へ移動"
|
618 |
+
|
619 |
+
#: wp-table-reloaded-admin.php:1327
|
620 |
+
msgid "Insert Link"
|
621 |
+
msgstr "リンク挿入"
|
622 |
+
|
623 |
+
#: wp-table-reloaded-admin.php:1328
|
624 |
+
msgid "Insert Image"
|
625 |
+
msgstr "画像挿入"
|
626 |
+
|
627 |
+
#: wp-table-reloaded-admin.php:1338
|
628 |
+
msgid "ascending"
|
629 |
+
msgstr "降順"
|
630 |
+
|
631 |
+
#: wp-table-reloaded-admin.php:1339
|
632 |
+
msgid "descending"
|
633 |
+
msgstr "昇順"
|
634 |
+
|
635 |
+
#: wp-table-reloaded-admin.php:1342
|
636 |
+
#, php-format
|
637 |
+
msgid "Sort table by column %s in %s order"
|
638 |
+
msgstr "%s 列を%sで並び替えます."
|
639 |
+
|
640 |
+
#: wp-table-reloaded-admin.php:1345
|
641 |
+
msgid "Sort"
|
642 |
+
msgstr "並び替え"
|
643 |
+
|
644 |
+
#: wp-table-reloaded-admin.php:1362
|
645 |
+
msgid "Table Settings"
|
646 |
+
msgstr "テーブル設定"
|
647 |
+
|
648 |
+
#: wp-table-reloaded-admin.php:1364
|
649 |
+
msgid "These settings will only be used for this table."
|
650 |
+
msgstr "この設定は現在のテーブルにのみ適用されます."
|
651 |
+
|
652 |
+
#: wp-table-reloaded-admin.php:1367
|
653 |
+
msgid "Alternating row colors"
|
654 |
+
msgstr "行の色を交互に設定する"
|
655 |
+
|
656 |
+
#: wp-table-reloaded-admin.php:1368
|
657 |
+
msgid "Every second row will have an alternating background color."
|
658 |
+
msgstr "行の背景色が交互に変わって表示されます."
|
659 |
+
|
660 |
+
#: wp-table-reloaded-admin.php:1371
|
661 |
+
msgid "Use Table Headline"
|
662 |
+
msgstr "テーブルヘッダを表示する : "
|
663 |
+
|
664 |
+
#: wp-table-reloaded-admin.php:1372
|
665 |
+
msgid "The first row of your table will use the <th> tag."
|
666 |
+
msgstr "テーブルの最初の行は <th> タグが使用されます."
|
667 |
+
|
668 |
+
#: wp-table-reloaded-admin.php:1375
|
669 |
+
msgid "Print Table Name"
|
670 |
+
msgstr "テーブル名を表示する."
|
671 |
+
|
672 |
+
#: wp-table-reloaded-admin.php:1376
|
673 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
674 |
+
msgstr "テーブル名はテーブルの <h2> タグの上に表示されます."
|
675 |
+
|
676 |
+
#: wp-table-reloaded-admin.php:1379
|
677 |
+
msgid "Print Table Description"
|
678 |
+
msgstr "テーブルの説明を表示する."
|
679 |
+
|
680 |
+
#: wp-table-reloaded-admin.php:1380
|
681 |
+
msgid "The Table Description will be written under the table."
|
682 |
+
msgstr "テーブルの説明はテーブルの下部に表示されます."
|
683 |
+
|
684 |
+
#: wp-table-reloaded-admin.php:1383
|
685 |
+
msgid "Use Tablesorter"
|
686 |
+
msgstr "テーブルソートを使用する"
|
687 |
+
|
688 |
+
#: wp-table-reloaded-admin.php:1386
|
689 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
690 |
+
msgstr "<a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a> を使用することでテーブルの並び替えができます."
|
691 |
+
|
692 |
+
#: wp-table-reloaded-admin.php:1386
|
693 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
694 |
+
msgstr "<small>注意 : テーブルソートを有効にするには\"プラグイン設定\"画面で並び替えを有効にすること,またテーブル固有の設定で\"テーブルヘッダを表示する\"を有効にする必要があります.</small>"
|
695 |
+
|
696 |
+
#: wp-table-reloaded-admin.php:1402
|
697 |
+
msgid "Custom Data Fields"
|
698 |
+
msgstr "カスタムデータ領域"
|
699 |
+
|
700 |
+
#: wp-table-reloaded-admin.php:1404
|
701 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
702 |
+
msgstr "カスタムデータ領域には様々なメタデータをテーブルに追加することができます."
|
703 |
+
|
704 |
+
#: wp-table-reloaded-admin.php:1404
|
705 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
706 |
+
msgstr "例えば,出典情報やデータ作者の情報などです."
|
707 |
+
|
708 |
+
#: wp-table-reloaded-admin.php:1406
|
709 |
+
#, php-format
|
710 |
+
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>."
|
711 |
+
msgstr "あなたはこのデータを <strong>[table-info id=%s field=\"<field-name>\" /]</strong> というショートコードを使用することでテーブルと同じように表示できます."
|
712 |
+
|
713 |
+
#: wp-table-reloaded-admin.php:1412
|
714 |
+
msgid "Field Name"
|
715 |
+
msgstr "領域名"
|
716 |
+
|
717 |
+
#: wp-table-reloaded-admin.php:1413
|
718 |
+
msgid "Value"
|
719 |
+
msgstr "値"
|
720 |
+
|
721 |
+
#: wp-table-reloaded-admin.php:1427
|
722 |
+
msgid "Delete Field"
|
723 |
+
msgstr "削除に失敗しました."
|
724 |
+
|
725 |
+
#: wp-table-reloaded-admin.php:1429
|
726 |
+
msgid "View shortcode"
|
727 |
+
msgstr "ショートコードを表示"
|
728 |
+
|
729 |
+
#: wp-table-reloaded-admin.php:1438
|
730 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
731 |
+
msgstr "新しいカスタムデータ領域を追加するには,名前を入力してください(半角小文字のアルファベット,数字,アンダーバー,ハイフンが使用できます)."
|
732 |
+
|
733 |
+
#: wp-table-reloaded-admin.php:1439
|
734 |
+
msgid "Custom Data Field Name"
|
735 |
+
msgstr "カスタムデータ領域名"
|
736 |
+
|
737 |
+
#: wp-table-reloaded-admin.php:1453
|
738 |
+
msgid "Other actions"
|
739 |
+
msgstr "その他の動作"
|
740 |
+
|
741 |
+
#: wp-table-reloaded-admin.php:1456
|
742 |
+
msgid "Delete Table"
|
743 |
+
msgstr "テーブル削除"
|
744 |
+
|
745 |
+
#: wp-table-reloaded-admin.php:1457
|
746 |
+
#: wp-table-reloaded-admin.php:1688
|
747 |
+
msgid "Export Table"
|
748 |
+
msgstr "テーブル出力"
|
749 |
+
|
750 |
+
#: wp-table-reloaded-admin.php:1469
|
751 |
+
#: wp-table-reloaded-admin.php:1903
|
752 |
+
msgid "Import a Table"
|
753 |
+
msgstr "テーブル読み込み"
|
754 |
+
|
755 |
+
#: wp-table-reloaded-admin.php:1473
|
756 |
+
msgid "You may import a table from existing data here."
|
757 |
+
msgstr "既存のデータを読み込むことができます."
|
758 |
+
|
759 |
+
#: wp-table-reloaded-admin.php:1473
|
760 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
761 |
+
msgstr "CSV,XML,HTML形式のファイルなどが使用できます.詳細はドキュメントをご覧ください."
|
762 |
+
|
763 |
+
#: wp-table-reloaded-admin.php:1473
|
764 |
+
msgid "You may also select the import source."
|
765 |
+
msgstr "また読み込むデータを選択できます."
|
766 |
+
|
767 |
+
#: wp-table-reloaded-admin.php:1480
|
768 |
+
msgid "Select Import Format"
|
769 |
+
msgstr "読み込むファイルの形式"
|
770 |
+
|
771 |
+
#: wp-table-reloaded-admin.php:1491
|
772 |
+
msgid "Add or Replace Table?"
|
773 |
+
msgstr "テーブル読み込みの方法(追加または置換)"
|
774 |
+
|
775 |
+
#: wp-table-reloaded-admin.php:1493
|
776 |
+
msgid "Add as new Table"
|
777 |
+
msgstr "新しいテーブルとして追加"
|
778 |
+
|
779 |
+
#: wp-table-reloaded-admin.php:1494
|
780 |
+
msgid "Replace existing Table"
|
781 |
+
msgstr "既存のテーブルを置換"
|
782 |
+
|
783 |
+
#: wp-table-reloaded-admin.php:1498
|
784 |
+
msgid "Select existing Table to Replace"
|
785 |
+
msgstr "置換するテーブルを選択"
|
786 |
+
|
787 |
+
#: wp-table-reloaded-admin.php:1514
|
788 |
+
msgid "Select source for import"
|
789 |
+
msgstr "データの読み込み方法"
|
790 |
+
|
791 |
+
#: wp-table-reloaded-admin.php:1516
|
792 |
+
msgid "File upload"
|
793 |
+
msgstr "ファイルアップロード"
|
794 |
+
|
795 |
+
#: wp-table-reloaded-admin.php:1517
|
796 |
+
msgid "URL"
|
797 |
+
msgstr "URL"
|
798 |
+
|
799 |
+
#: wp-table-reloaded-admin.php:1518
|
800 |
+
msgid "Manual input"
|
801 |
+
msgstr "手動入力"
|
802 |
+
|
803 |
+
#: wp-table-reloaded-admin.php:1519
|
804 |
+
msgid "File on server"
|
805 |
+
msgstr "サーバ上のファイル"
|
806 |
+
|
807 |
+
#: wp-table-reloaded-admin.php:1523
|
808 |
+
msgid "Select File with Table to Import"
|
809 |
+
msgstr "テーブルとして読み込むファイルを選択してください."
|
810 |
+
|
811 |
+
#: wp-table-reloaded-admin.php:1527
|
812 |
+
msgid "URL to import table from"
|
813 |
+
msgstr "テーブルとして読み込むURL"
|
814 |
+
|
815 |
+
#: wp-table-reloaded-admin.php:1531
|
816 |
+
msgid "Path to file on server"
|
817 |
+
msgstr "サーバ上のファイルへのパス"
|
818 |
+
|
819 |
+
#: wp-table-reloaded-admin.php:1535
|
820 |
+
msgid "Paste data with Table to Import"
|
821 |
+
msgstr "読み込むデータをテキストエリアに貼り付けてください"
|
822 |
+
|
823 |
+
#: wp-table-reloaded-admin.php:1541
|
824 |
+
msgid "Import Table"
|
825 |
+
msgstr "テーブルの読み込み"
|
826 |
+
|
827 |
+
#: wp-table-reloaded-admin.php:1554
|
828 |
+
msgid "Import from original wp-Table plugin"
|
829 |
+
msgstr "オリジナルの wp-Table プラグインから読み込む"
|
830 |
+
|
831 |
+
#: wp-table-reloaded-admin.php:1600
|
832 |
+
msgid "Import"
|
833 |
+
msgstr "読み込み"
|
834 |
+
|
835 |
+
#: wp-table-reloaded-admin.php:1608
|
836 |
+
msgid "Import Tables"
|
837 |
+
msgstr "テーブルの読み込み"
|
838 |
+
|
839 |
+
#: wp-table-reloaded-admin.php:1614
|
840 |
+
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
841 |
+
msgstr "Alex Rabe 氏作の wp-Table がインストールされているようですがテーブルのデータが見つかりません."
|
842 |
+
|
843 |
+
#: wp-table-reloaded-admin.php:1633
|
844 |
+
#: wp-table-reloaded-admin.php:1904
|
845 |
+
msgid "Export a Table"
|
846 |
+
msgstr "テーブルの出力"
|
847 |
+
|
848 |
+
#: wp-table-reloaded-admin.php:1637
|
849 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
850 |
+
msgstr "テーブルを出力できます. 出力するテーブルと,希望するフォーマットと(CSV形式のみ)区切り文字を選択してください."
|
851 |
+
|
852 |
+
#: wp-table-reloaded-admin.php:1638
|
853 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
854 |
+
msgstr "出力したファイルはダウンロードするか,このページに表示することができます."
|
855 |
+
|
856 |
+
#: wp-table-reloaded-admin.php:1639
|
857 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
858 |
+
msgstr "出力されるのはテーブルのデータのみでプラグインの設定は出力されないことをご了承ください."
|
859 |
+
|
860 |
+
#: wp-table-reloaded-admin.php:1647
|
861 |
+
msgid "Select Table to Export"
|
862 |
+
msgstr "出力するテーブルを選択"
|
863 |
+
|
864 |
+
#: wp-table-reloaded-admin.php:1662
|
865 |
+
msgid "Select Export Format"
|
866 |
+
msgstr "出力形式を選択"
|
867 |
+
|
868 |
+
#: wp-table-reloaded-admin.php:1672
|
869 |
+
msgid "Select Delimiter to use"
|
870 |
+
msgstr "使用する区切り文字を選択"
|
871 |
+
|
872 |
+
#: wp-table-reloaded-admin.php:1679
|
873 |
+
msgid "<small>(Only needed for CSV export.)</small>"
|
874 |
+
msgstr "<small>(CSV形式で出力する場合のみ)</small>"
|
875 |
+
|
876 |
+
#: wp-table-reloaded-admin.php:1682
|
877 |
+
msgid "Download file"
|
878 |
+
msgstr "ファイルをダウンロード"
|
879 |
+
|
880 |
+
#: wp-table-reloaded-admin.php:1683
|
881 |
+
msgid "Yes, I want to download the export file."
|
882 |
+
msgstr "はい. 出力したファイルをダウンロードします."
|
883 |
+
|
884 |
+
#: wp-table-reloaded-admin.php:1708
|
885 |
+
msgid "General Plugin Options"
|
886 |
+
msgstr "プラグイン全般設定"
|
887 |
+
|
888 |
+
#: wp-table-reloaded-admin.php:1712
|
889 |
+
msgid "You may change these global options."
|
890 |
+
msgstr "プラグイン全般の設定を変更します."
|
891 |
+
|
892 |
+
#: wp-table-reloaded-admin.php:1713
|
893 |
+
msgid "They will effect all tables or the general plugin behavior."
|
894 |
+
msgstr "この設定はすべてのテーブルおよびプラグイン全般の動作に影響します."
|
895 |
+
|
896 |
+
#: wp-table-reloaded-admin.php:1720
|
897 |
+
msgid "Frontend Options"
|
898 |
+
msgstr "表示されるテーブルに関する設定"
|
899 |
+
|
900 |
+
#: wp-table-reloaded-admin.php:1724
|
901 |
+
msgid "Enable Tablesorter-JavaScript?"
|
902 |
+
msgstr "JavaScript によるタブの並び替えを有効にしますか?"
|
903 |
+
|
904 |
+
#: wp-table-reloaded-admin.php:1725
|
905 |
+
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
906 |
+
msgstr "はい. <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a> を有効にします. このスクリプトはテーブル内のセルの並び替えを実現します.それぞれのテーブルに対して有効無効を指定できます."
|
907 |
+
|
908 |
+
#: wp-table-reloaded-admin.php:1728
|
909 |
+
msgid "Add custom CSS?"
|
910 |
+
msgstr "独自の CSS を追加しますか?"
|
911 |
+
|
912 |
+
#: wp-table-reloaded-admin.php:1730
|
913 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
|
914 |
+
msgstr "はい. 次の CSS を[style]タグを使用してサイト内に読み込みます."
|
915 |
+
|
916 |
+
#: wp-table-reloaded-admin.php:1735
|
917 |
+
msgid "Enter custom CSS"
|
918 |
+
msgstr "独自 CSS を入力してください."
|
919 |
+
|
920 |
+
#: wp-table-reloaded-admin.php:1740
|
921 |
+
#, php-format
|
922 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
923 |
+
msgstr "(Web サイトのパフォーマンスを向上させるにはここに記述する代わりに,使用しているテーマの \"style.css\" に追記してください<small>(そのファイルは %s に存在します)</small>)."
|
924 |
+
|
925 |
+
#: wp-table-reloaded-admin.php:1741
|
926 |
+
#, php-format
|
927 |
+
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
928 |
+
msgstr "テーブルの装飾例は<a href=\"%s\">プラグインのWebサイト</a> をご覧ください. CSS のサンプルとして <a href=\"%s\">装飾例 1</a> <a href=\"%s\">装飾例 2</a> をご覧ください."
|
929 |
+
|
930 |
+
#: wp-table-reloaded-admin.php:1741
|
931 |
+
msgid "Just copy the contents of a file into the textarea."
|
932 |
+
msgstr "テキストエリアにファイルの内容を貼り付けてください."
|
933 |
+
|
934 |
+
#: wp-table-reloaded-admin.php:1742
|
935 |
+
#, php-format
|
936 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
937 |
+
msgstr "別の方法としては CSS の @import 命令を使用してファイルとして読み込む(例えばあなたがお使いのテーマフォルダなどから)方法があります. %s"
|
938 |
+
|
939 |
+
#: wp-table-reloaded-admin.php:1750
|
940 |
+
msgid "Advanced Options"
|
941 |
+
msgstr "上級者向け設定"
|
942 |
+
|
943 |
+
#: wp-table-reloaded-admin.php:1754
|
944 |
+
msgid "Use Tablesorter Extended?"
|
945 |
+
msgstr "Tablesorter Extended を使用しますか?"
|
946 |
+
|
947 |
+
#: wp-table-reloaded-admin.php:1755
|
948 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
949 |
+
msgstr "はい. オリジナルのテーブル並び替えスクリプトの代わりに <a href=\"http://tablesorter.openwerk.de\">Sören Krings氏</a>の Extended Tablesorter を使用します(実験的な機能です)"
|
950 |
+
|
951 |
+
#: wp-table-reloaded-admin.php:1758
|
952 |
+
msgid "Uninstall Plugin upon Deactivation?"
|
953 |
+
msgstr "プラグインを無効化してアンインストールしますか?"
|
954 |
+
|
955 |
+
#: wp-table-reloaded-admin.php:1759
|
956 |
+
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
957 |
+
msgstr "はい. プラグインを無効化し全ての情報をアンインストールします. 注意 : WordPress のプラグインページからプラグインを無効化する直前に使用してください."
|
958 |
+
|
959 |
+
#: wp-table-reloaded-admin.php:1759
|
960 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
961 |
+
msgstr "( この操作は下の\"手動削除\"ボタンには影響を与えません!)"
|
962 |
+
|
963 |
+
#: wp-table-reloaded-admin.php:1762
|
964 |
+
msgid "Allow donation message?"
|
965 |
+
msgstr "寄付メッセージを表示しますか?"
|
966 |
+
|
967 |
+
#: wp-table-reloaded-admin.php:1763
|
968 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
969 |
+
msgstr "はい. このプラグインを使用してから30日後に寄付メッセージを表示します."
|
970 |
+
|
971 |
+
#: wp-table-reloaded-admin.php:1772
|
972 |
+
msgid "Save Options"
|
973 |
+
msgstr "設定保存"
|
974 |
+
|
975 |
+
#: wp-table-reloaded-admin.php:1778
|
976 |
+
msgid "Manually Uninstall Plugin"
|
977 |
+
msgstr "プラグインを手動削除"
|
978 |
+
|
979 |
+
#: wp-table-reloaded-admin.php:1780
|
980 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
981 |
+
msgstr "プラグインをアンインストールできます. これはすべてのテーブル,データ,設定など,あなたがこのプラグインを使用して読み込んだり追加したすべてを<strong>削除します</strong>."
|
982 |
+
|
983 |
+
#: wp-table-reloaded-admin.php:1780
|
984 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
985 |
+
msgstr "この動作が何を意味するのかを十分に理解した上でボタンをクリックしてください!"
|
986 |
+
|
987 |
+
#: wp-table-reloaded-admin.php:1783
|
988 |
+
msgid "Uninstall Plugin WP-Table Reloaded"
|
989 |
+
msgstr "WP-Table Reloaded をアンインストール"
|
990 |
+
|
991 |
+
#: wp-table-reloaded-admin.php:1794
|
992 |
+
msgid "About WP-Table Reloaded"
|
993 |
+
msgstr "WP-Table Reloaded について"
|
994 |
+
|
995 |
+
#: wp-table-reloaded-admin.php:1800
|
996 |
+
msgid "Plugin Purpose"
|
997 |
+
msgstr "このプラグインの目的"
|
998 |
+
|
999 |
+
#: wp-table-reloaded-admin.php:1802
|
1000 |
+
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
1001 |
+
msgstr "WordPress の管理画面でテーブルを作成したり管理したりできます."
|
1002 |
+
|
1003 |
+
#: wp-table-reloaded-admin.php:1802
|
1004 |
+
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
1005 |
+
msgstr "作成するテーブルは文字列や数列,そしてHTML(たとえば画像やリンク)も含むことができます."
|
1006 |
+
|
1007 |
+
#: wp-table-reloaded-admin.php:1802
|
1008 |
+
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
1009 |
+
msgstr "作成したテーブルはショートコードを使用することで投稿やページ,テキストウィジェットに表示することができます."
|
1010 |
+
|
1011 |
+
#: wp-table-reloaded-admin.php:1802
|
1012 |
+
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
1013 |
+
msgstr "もしテーブルを WordPress テーマ内の好きな場所に表示したい場合はテンプレートタグを使用します."
|
1014 |
+
|
1015 |
+
#: wp-table-reloaded-admin.php:1807
|
1016 |
+
msgid "Usage"
|
1017 |
+
msgstr "使用方法"
|
1018 |
+
|
1019 |
+
#: wp-table-reloaded-admin.php:1809
|
1020 |
+
msgid "At first you should add or import a table."
|
1021 |
+
msgstr "まずはテーブルを作成するか読み込みます."
|
1022 |
+
|
1023 |
+
#: wp-table-reloaded-admin.php:1809
|
1024 |
+
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."
|
1025 |
+
msgstr "これはプラグインを使って空のテーブルを作成するか既存テーブルをCSVやXML,HTML形式から読み込むということです."
|
1026 |
+
|
1027 |
+
#: wp-table-reloaded-admin.php:1809
|
1028 |
+
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."
|
1029 |
+
msgstr "その後,セル内のデータを編集したりテーブルの構造を変更(行や列の挿入や削除,入れ替え,並び替え)したりします.またテーブル単位で行の色を交互に変えることやテーブル名・説明の表示などをしていできます."
|
1030 |
+
|
1031 |
+
#: wp-table-reloaded-admin.php:1809
|
1032 |
+
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."
|
1033 |
+
msgstr "画像やリンクを提供されるボタンから簡単に追加できます. クリックするとURL や タイトルを聞いてきます.その後,セルをクリックすると適切なHTMLコードが挿入されます."
|
1034 |
+
|
1035 |
+
#: wp-table-reloaded-admin.php:1809
|
1036 |
+
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
1037 |
+
msgstr "テーブルを投稿やページ,テキストウィジェットに読み込むにはショートコード [table id=<table-id>] を記入してください."
|
1038 |
+
|
1039 |
+
#: wp-table-reloaded-admin.php:1809
|
1040 |
+
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
1041 |
+
msgstr "編集ツールバーの\"テーブル\"をクリックした後に表示されるテーブルの一覧で希望のものを選択してください.対応するショートコードが本文に挿入されます."
|
1042 |
+
|
1043 |
+
#: wp-table-reloaded-admin.php:1809
|
1044 |
+
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
1045 |
+
msgstr "CSS を用いてテーブルを装飾できます. サンプルファイルがプラグインの Web サイトで提供されています.このプラグインで出力されるテーブルは全て\"wp-table-reloaded\"という CSS クラスを持ちます. またそれぞれのテーブルは\"wp-table-reloaded-<table-id>\"という個別の ID が振られたクラスを持ちます."
|
1046 |
+
|
1047 |
+
#: wp-table-reloaded-admin.php:1809
|
1048 |
+
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
1049 |
+
msgstr "テーブルの行と列を装飾するために\"column-<number>\" や \"row-<number>\" といった CSS クラスが使用できます.列幅の調整や文字寄せなどに使用してください."
|
1050 |
+
|
1051 |
+
#: wp-table-reloaded-admin.php:1814
|
1052 |
+
msgid "More Information and Documentation"
|
1053 |
+
msgstr "追加情報と資料"
|
1054 |
+
|
1055 |
+
#: wp-table-reloaded-admin.php:1816
|
1056 |
+
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1057 |
+
msgstr "プラグインに関する追加情報は<a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">プラグインのWebサイト</a>や<a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>にある本プラグインのページをご覧ください."
|
1058 |
+
|
1059 |
+
#: wp-table-reloaded-admin.php:1816
|
1060 |
+
#: wp-table-reloaded-admin.php:1980
|
1061 |
+
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
1062 |
+
msgstr "<a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">ドキュメント</a> や <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">サポート</a> についてご覧ください."
|
1063 |
+
|
1064 |
+
#: wp-table-reloaded-admin.php:1821
|
1065 |
+
msgid "Author and Licence"
|
1066 |
+
msgstr "作成者・ライセンス"
|
1067 |
+
|
1068 |
+
#: wp-table-reloaded-admin.php:1823
|
1069 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1070 |
+
msgstr "このプラグインは<a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a> によって作成されました. 本プラグインは GPL2 に基づいてライセンスされるフリーソフトウェアです."
|
1071 |
+
|
1072 |
+
#: wp-table-reloaded-admin.php:1823
|
1073 |
+
#: wp-table-reloaded-admin.php:1981
|
1074 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1075 |
+
msgstr "このプラグインを気に入っていただけたら, <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>寄付</strong></a> や <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a> での評価をお願いいたします."
|
1076 |
+
|
1077 |
+
#: wp-table-reloaded-admin.php:1823
|
1078 |
+
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
1079 |
+
msgstr "寄付や良い評価はプラグインの開発やサポートに時間を費やす私の励みになります.どれだけの量でも嬉しいです! ご利用ありがとうございます!"
|
1080 |
+
|
1081 |
+
#: wp-table-reloaded-admin.php:1828
|
1082 |
+
msgid "Credits and Thanks"
|
1083 |
+
msgstr "クレジット・謝辞"
|
1084 |
+
|
1085 |
+
#: wp-table-reloaded-admin.php:1831
|
1086 |
+
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
1087 |
+
msgstr "まず,オリジナルの wp-Table プラグイン作成の<a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a>氏"
|
1088 |
+
|
1089 |
+
#: wp-table-reloaded-admin.php:1832
|
1090 |
+
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
1091 |
+
msgstr "そして<a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a> 作成の Christian Bach氏,"
|
1092 |
+
|
1093 |
+
#: wp-table-reloaded-admin.php:1833
|
1094 |
+
msgid "the submitters of translations:"
|
1095 |
+
msgstr "各国語版の翻訳ファイルを提供していただいた下記の皆様"
|
1096 |
+
|
1097 |
+
#: wp-table-reloaded-admin.php:1834
|
1098 |
+
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
1099 |
+
msgstr "アラビア語 (<a href=\"http://www.romeolab.com/\">Romeo</a>氏)"
|
1100 |
+
|
1101 |
+
#: wp-table-reloaded-admin.php:1835
|
1102 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1103 |
+
msgstr "ベラルーシ語 (<a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>氏)"
|
1104 |
+
|
1105 |
+
#: wp-table-reloaded-admin.php:1836
|
1106 |
+
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1107 |
+
msgstr "ブラジル・ポルトガル語 (<a href=\"http://www.pensarics.com/\">Rics</a>氏)"
|
1108 |
+
|
1109 |
+
#: wp-table-reloaded-admin.php:1837
|
1110 |
+
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
1111 |
+
msgstr "チェコ語 (<a href=\"http://separatista.net/\">Separatista</a>氏)"
|
1112 |
+
|
1113 |
+
#: wp-table-reloaded-admin.php:1838
|
1114 |
+
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
1115 |
+
msgstr "フランス語 (<a href=\"http://ultratrailer.net/\">Yin-Yin</a>氏)"
|
1116 |
+
|
1117 |
+
#: wp-table-reloaded-admin.php:1839
|
1118 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1119 |
+
msgstr "イタリア語 (<a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>氏)"
|
1120 |
+
|
1121 |
+
#: wp-table-reloaded-admin.php:1840
|
1122 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1123 |
+
msgstr "日本語 (<a href=\"http://www.u-1.net/\">Yuuichi</a>氏)"
|
1124 |
+
|
1125 |
+
#: wp-table-reloaded-admin.php:1841
|
1126 |
+
msgid "Polish (thanks to Alex Kortan)"
|
1127 |
+
msgstr "ポーランド語 (Alex Kortan氏)"
|
1128 |
+
|
1129 |
+
#: wp-table-reloaded-admin.php:1842
|
1130 |
+
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
1131 |
+
msgstr "ロシア語 (<a href=\"http://wp-skins.info/\">Truper</a>氏)"
|
1132 |
+
|
1133 |
+
#: wp-table-reloaded-admin.php:1843
|
1134 |
+
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1135 |
+
msgstr "スペイン語 (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a>氏 と <a href=\"http://halles.cl/\">Matias Halles</a>氏)"
|
1136 |
+
|
1137 |
+
#: wp-table-reloaded-admin.php:1844
|
1138 |
+
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
1139 |
+
msgstr "スウェーデン語 (<a href=\"http://www.zuperzed.se/\">ZuperZed</a>氏)"
|
1140 |
+
|
1141 |
+
#: wp-table-reloaded-admin.php:1845
|
1142 |
+
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
1143 |
+
msgstr "トルコ語 (<a href=\"http://www.wpuzmani.com/\">Semih</a>氏)"
|
1144 |
+
|
1145 |
+
#: wp-table-reloaded-admin.php:1846
|
1146 |
+
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
1147 |
+
msgstr "そして,寄付された方,プラグイン作成に関わってくださった方,支持してくださった方,評価してくださった方,このプラグインを使用する全ての方にありがとう!"
|
1148 |
+
|
1149 |
+
#: wp-table-reloaded-admin.php:1852
|
1150 |
+
msgid "Debug and Version Information"
|
1151 |
+
msgstr "デバッグ・バージョン情報"
|
1152 |
+
|
1153 |
+
#: wp-table-reloaded-admin.php:1855
|
1154 |
+
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
1155 |
+
msgstr "現在使用中のソフトウェアのバージョンです. <strong>バグ報告の際はこれらの情報も提供してください.</strong>"
|
1156 |
+
|
1157 |
+
#: wp-table-reloaded-admin.php:1858
|
1158 |
+
msgid "Plugin installed"
|
1159 |
+
msgstr "プラグインはインストールされています"
|
1160 |
+
|
1161 |
+
#: wp-table-reloaded-admin.php:1901
|
1162 |
+
msgid "List Tables"
|
1163 |
+
msgstr "テーブル一覧"
|
1164 |
+
|
1165 |
+
#: wp-table-reloaded-admin.php:1906
|
1166 |
+
msgid "Plugin Options"
|
1167 |
+
msgstr "プラグイン設定"
|
1168 |
+
|
1169 |
+
#: wp-table-reloaded-admin.php:1907
|
1170 |
+
msgid "About the Plugin"
|
1171 |
+
msgstr "プラグインについて"
|
1172 |
+
|
1173 |
+
#: wp-table-reloaded-admin.php:1948
|
1174 |
+
msgid "This is the \"List Tables\" screen."
|
1175 |
+
msgstr "この画面は \"テーブル一覧\" です."
|
1176 |
+
|
1177 |
+
#: wp-table-reloaded-admin.php:1952
|
1178 |
+
msgid "This is the \"Edit Table\" screen."
|
1179 |
+
msgstr "この画面は \"テーブル編集\" です."
|
1180 |
+
|
1181 |
+
#: wp-table-reloaded-admin.php:1955
|
1182 |
+
msgid "This is the \"Add new Table\" screen."
|
1183 |
+
msgstr "この画面は \"新しいテーブルの追加\" です."
|
1184 |
+
|
1185 |
+
#: wp-table-reloaded-admin.php:1958
|
1186 |
+
msgid "This is the \"Import a Table\" screen."
|
1187 |
+
msgstr "この画面は \"テーブルの読み込み\" です."
|
1188 |
+
|
1189 |
+
#: wp-table-reloaded-admin.php:1961
|
1190 |
+
msgid "This is the \"Export a Table\" screen."
|
1191 |
+
msgstr "この画面は \"テーブルの出力\" です."
|
1192 |
+
|
1193 |
+
#: wp-table-reloaded-admin.php:1964
|
1194 |
+
msgid "This is the \"Plugin Options\" screen."
|
1195 |
+
msgstr "この画面は \"プラグイン設定\" です."
|
1196 |
+
|
1197 |
+
#: wp-table-reloaded-admin.php:1970
|
1198 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1199 |
+
msgstr "この画面は \"プラグインについて\" です."
|
1200 |
+
|
1201 |
+
#: wp-table-reloaded-admin.php:1979
|
1202 |
+
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
1203 |
+
msgstr "より多くの情報を得るには,<a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">プラグインの Web サイト</a>をご覧ください."
|
1204 |
+
|
1205 |
+
#: wp-table-reloaded-admin.php:2259
|
1206 |
+
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
1207 |
+
msgstr "本当に実行しますか? これはアンインストールの直前にのみ行ってください!"
|
1208 |
+
|
1209 |
+
#: wp-table-reloaded-admin.php:2260
|
1210 |
+
msgid "URL of link to insert"
|
1211 |
+
msgstr "挿入してリンクするURL"
|
1212 |
+
|
1213 |
+
#: wp-table-reloaded-admin.php:2261
|
1214 |
+
msgid "Text of link"
|
1215 |
+
msgstr "リンクする文字列"
|
1216 |
+
|
1217 |
+
#: wp-table-reloaded-admin.php:2262
|
1218 |
+
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
1219 |
+
msgstr "セルに次のリンクを挿入するにはダイアログが閉じた後に挿入したいセルをクリックしてください."
|
1220 |
+
|
1221 |
+
#: wp-table-reloaded-admin.php:2263
|
1222 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1223 |
+
msgstr "画像を挿入するには挿入したい場所のセルをクリックしてください."
|
1224 |
+
|
1225 |
+
#: wp-table-reloaded-admin.php:2263
|
1226 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1227 |
+
msgstr "画像や画像の URL を挿入するためにメディアライブラリを開きます."
|
1228 |
+
|
1229 |
+
#: wp-table-reloaded-admin.php:2263
|
1230 |
+
#, php-format
|
1231 |
+
msgid "Click the \"%s\" button to insert the image."
|
1232 |
+
msgstr "画像を挿入するには \"%s\" ボタンをクリックしてください."
|
1233 |
+
|
1234 |
+
#: wp-table-reloaded-admin.php:2263
|
1235 |
+
msgid "Insert into Post"
|
1236 |
+
msgstr "投稿にテーブルを挿入"
|
1237 |
+
|
1238 |
+
#: wp-table-reloaded-admin.php:2264
|
1239 |
+
msgid "Do you want to copy the selected tables?"
|
1240 |
+
msgstr "選択したテーブルを複製しますか?"
|
1241 |
+
|
1242 |
+
#: wp-table-reloaded-admin.php:2265
|
1243 |
+
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
1244 |
+
msgstr "選択したテーブルとその内容が完全に削除されます. 本当に削除しますか?"
|
1245 |
+
|
1246 |
+
#: wp-table-reloaded-admin.php:2266
|
1247 |
+
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
1248 |
+
msgstr "wp-Table プラグインから選択したテーブルを読み込みますか?"
|
1249 |
+
|
1250 |
+
#: wp-table-reloaded-admin.php:2267
|
1251 |
+
msgid "Do you want to copy this table?"
|
1252 |
+
msgstr "このテーブルを複製しますか?"
|
1253 |
+
|
1254 |
+
#: wp-table-reloaded-admin.php:2268
|
1255 |
+
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
1256 |
+
msgstr "テーブルとその内容が完全に削除されます. 本当に削除しますか?"
|
1257 |
+
|
1258 |
+
#: wp-table-reloaded-admin.php:2269
|
1259 |
+
msgid "Do you really want to delete this row?"
|
1260 |
+
msgstr "本当にこの行を削除しますか?"
|
1261 |
+
|
1262 |
+
#: wp-table-reloaded-admin.php:2270
|
1263 |
+
msgid "Do you really want to delete this column?"
|
1264 |
+
msgstr "本当にこの列を削除しますか?"
|
1265 |
+
|
1266 |
+
#: wp-table-reloaded-admin.php:2271
|
1267 |
+
msgid "Do you really want to import this table from the wp-Table plugin?"
|
1268 |
+
msgstr "wp-Table プラグインからこのテーブルのデータを読み込みますか?"
|
1269 |
+
|
1270 |
+
#: wp-table-reloaded-admin.php:2272
|
1271 |
+
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
1272 |
+
msgstr "プラグインをアンインストールし,全てのデータを削除しますか?"
|
1273 |
+
|
1274 |
+
#: wp-table-reloaded-admin.php:2273
|
1275 |
+
msgid "Are you really sure?"
|
1276 |
+
msgstr "本当によろしいですか?"
|
1277 |
+
|
1278 |
+
#: wp-table-reloaded-admin.php:2274
|
1279 |
+
msgid "Do you really want to change the ID of the table?"
|
1280 |
+
msgstr "このテーブルの ID を本当に変更しますか?"
|
1281 |
+
|
1282 |
+
#: wp-table-reloaded-admin.php:2275
|
1283 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1284 |
+
msgstr "このカスタムデータ領域を表示するには次のショートコードを使用してください : "
|
1285 |
+
|
1286 |
+
#: wp-table-reloaded-admin.php:2276
|
1287 |
+
msgid "To show this table, use this shortcode:"
|
1288 |
+
msgstr "このテーブルを表示するには次のショートコードを使用してください : "
|
1289 |
+
|
1290 |
+
#: wp-table-reloaded-admin.php:2318
|
1291 |
+
msgid "Table"
|
1292 |
+
msgstr "テーブル"
|
1293 |
+
|
1294 |
+
#: wp-table-reloaded-admin.php:2350
|
1295 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1296 |
+
msgstr "<a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>を使っていただきありがとうございます."
|
1297 |
+
|
1298 |
+
#. Plugin URI of an extension
|
1299 |
+
msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
1300 |
+
msgstr "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
1301 |
+
|
1302 |
+
#. Description of an extension
|
1303 |
+
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."
|
1304 |
+
msgstr "このプラグインは WordPress の管理画面においてテーブルの作成と管理を簡単に行う機能を提供します. 充実した機能でテーブルデータの簡単な操作を提供します.投稿やページ,テキストウィジェットに作成したテーブルを表示するにはショートコードやテンプレートタグを使用します. テーブルデータはCSV,XML,HTML形式などで入出力が可能です."
|
1305 |
+
|
1306 |
+
#. Author of an extension
|
1307 |
+
msgid "Tobias Bäthge"
|
1308 |
+
msgstr "Tobias Bäthge"
|
1309 |
+
|
1310 |
+
#. Author URI of an extension
|
1311 |
+
msgid "http://tobias.baethge.com/"
|
1312 |
+
msgstr "http://tobias.baethge.com/"
|
1313 |
+
|
languages/wp-table-reloaded-pt_BR.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-pt_BR.po
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP-Table Reloaded v1.2.1\n"
|
|
|
|
|
4 |
"PO-Revision-Date: 2009-06-07 19:23-0300\n"
|
5 |
"Last-Translator: Rics - www.pensarics.com\n"
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,958 +13,1588 @@ msgstr ""
|
|
10 |
"X-Poedit-Language: Portuguese\n"
|
11 |
"X-Poedit-Country: BRAZIL\n"
|
12 |
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Poedit-
|
|
|
|
|
16 |
|
17 |
#: php/wp-table-reloaded-export.class.php:30
|
18 |
#: php/wp-table-reloaded-import.class.php:38
|
|
|
19 |
msgid "CSV - Character-Separated Values"
|
20 |
msgstr "CSV - Valores Separados por Vírgula"
|
21 |
|
22 |
#: php/wp-table-reloaded-export.class.php:31
|
23 |
#: php/wp-table-reloaded-import.class.php:39
|
|
|
24 |
msgid "HTML - Hypertext Markup Language"
|
25 |
msgstr "HTML - Linguagem de Marcação de Texto"
|
26 |
|
27 |
#: php/wp-table-reloaded-export.class.php:32
|
28 |
#: php/wp-table-reloaded-import.class.php:40
|
|
|
29 |
msgid "XML - eXtended Markup Language"
|
30 |
msgstr "XML - eXtended Markup Language"
|
31 |
|
32 |
#: php/wp-table-reloaded-export.class.php:35
|
|
|
33 |
msgid "; (semicolon)"
|
34 |
msgstr "; (ponto e vírgula)"
|
35 |
|
36 |
#: php/wp-table-reloaded-export.class.php:36
|
|
|
37 |
msgid ", (comma)"
|
38 |
msgstr ", (vírgula)"
|
39 |
|
40 |
#: php/wp-table-reloaded-export.class.php:37
|
|
|
41 |
msgid ": (colon)"
|
42 |
msgstr ": (dois pontos)"
|
43 |
|
44 |
#: php/wp-table-reloaded-export.class.php:38
|
|
|
45 |
msgid ". (dot)"
|
46 |
msgstr ". (ponto)"
|
47 |
|
48 |
#: php/wp-table-reloaded-export.class.php:39
|
|
|
49 |
msgid "| (pipe)"
|
50 |
msgstr "| (pipe)"
|
51 |
|
52 |
-
#: wp-table-reloaded-admin.php:
|
53 |
#, php-format
|
|
|
54 |
msgid "Table \"%s\" added successfully."
|
55 |
msgstr "Tabela \"%s\" adicionada com sucesso."
|
56 |
|
57 |
-
#: wp-table-reloaded-admin.php:
|
|
|
58 |
msgid "Table edited successfully."
|
59 |
msgstr "Tabela editada com sucesso."
|
60 |
|
61 |
-
#: wp-table-reloaded-admin.php:
|
|
|
62 |
msgid "Rows swapped successfully."
|
63 |
msgstr "Linhas trocadas com sucesso."
|
64 |
|
65 |
-
#: wp-table-reloaded-admin.php:
|
|
|
66 |
msgid "Columns swapped successfully."
|
67 |
msgstr "Colunas trocadas com sucesso."
|
68 |
|
69 |
-
#: wp-table-reloaded-admin.php:
|
|
|
70 |
msgid "Table sorted successfully."
|
71 |
msgstr "Tabela ordenada com sucesso."
|
72 |
|
73 |
-
#: wp-table-reloaded-admin.php:
|
74 |
-
#: wp-table-reloaded-admin.php:
|
|
|
75 |
msgid "Copy of"
|
76 |
msgstr "Cópia de"
|
77 |
|
78 |
-
#: wp-table-reloaded-admin.php:
|
|
|
79 |
msgid "Table copied successfully."
|
80 |
msgid_plural "Tables copied successfully."
|
81 |
msgstr[0] "Tabela copiada com sucesso."
|
82 |
msgstr[1] "Tabelas copiadas com sucesso."
|
83 |
|
84 |
-
#: wp-table-reloaded-admin.php:
|
|
|
85 |
msgid "Table deleted successfully."
|
86 |
msgid_plural "Tables deleted successfully."
|
87 |
msgstr[0] "Tabela excluída com sucesso."
|
88 |
msgstr[1] "Tabelas excluídas com sucesso."
|
89 |
|
90 |
-
#: wp-table-reloaded-admin.php:
|
|
|
91 |
msgid "Table imported successfully."
|
92 |
msgid_plural "Tables imported successfully."
|
93 |
msgstr[0] "Tabela importada com sucesso."
|
94 |
msgstr[1] "Tabelas importadas com sucesso."
|
95 |
|
96 |
-
#: wp-table-reloaded-admin.php:
|
|
|
97 |
msgid "You did not select any tables!"
|
98 |
msgstr "Você não selecionou tabela alguma."
|
99 |
|
100 |
-
#: wp-table-reloaded-admin.php:
|
101 |
#, php-format
|
|
|
102 |
msgid "Table \"%s\" copied successfully."
|
103 |
msgstr "Tabela \"%s\" copiada com sucesso."
|
104 |
|
105 |
-
#: wp-table-reloaded-admin.php:
|
106 |
#, php-format
|
|
|
107 |
msgid "Table \"%s\" deleted successfully."
|
108 |
msgstr "Tabela \"%s\" excluída com sucesso."
|
109 |
|
110 |
-
#: wp-table-reloaded-admin.php:
|
|
|
111 |
msgid "Row deleted successfully."
|
112 |
msgstr "Linha excluída com sucesso."
|
113 |
|
114 |
-
#: wp-table-reloaded-admin.php:
|
|
|
115 |
msgid "Column deleted successfully."
|
116 |
msgstr "Coluna excluída com sucesso."
|
117 |
|
118 |
-
#: wp-table-reloaded-admin.php:
|
|
|
119 |
msgid "Delete failed."
|
120 |
msgstr "A exclusão falhou."
|
121 |
|
122 |
-
#: wp-table-reloaded-admin.php:
|
|
|
123 |
msgid "Row inserted successfully."
|
124 |
msgstr "Linha inserida com sucesso."
|
125 |
|
126 |
-
#: wp-table-reloaded-admin.php:
|
|
|
127 |
msgid "Column inserted successfully."
|
128 |
msgstr "Coluna inserida com sucesso."
|
129 |
|
130 |
-
#: wp-table-reloaded-admin.php:
|
|
|
131 |
msgid "Insert failed."
|
132 |
msgstr "A inserção falhou."
|
133 |
|
134 |
-
#: wp-table-reloaded-admin.php:
|
135 |
-
#: wp-table-reloaded-admin.php:
|
136 |
-
#: wp-table-reloaded-admin.php:
|
|
|
137 |
msgid "Imported Table"
|
138 |
msgstr "Tabela Importada"
|
139 |
|
140 |
-
#: wp-table-reloaded-admin.php:
|
|
|
141 |
msgid "via form"
|
142 |
msgstr "via formulário"
|
143 |
|
144 |
-
#: wp-table-reloaded-admin.php:
|
145 |
-
#: wp-table-reloaded-admin.php:
|
|
|
146 |
msgid "Table imported successfully."
|
147 |
msgstr "Tabela importada com sucesso."
|
148 |
|
149 |
-
#: wp-table-reloaded-admin.php:
|
150 |
-
#: wp-table-reloaded-admin.php:
|
|
|
151 |
msgid "Table could not be imported."
|
152 |
msgstr "Não foi possível importar a tabela."
|
153 |
|
154 |
-
#: wp-table-reloaded-admin.php:
|
155 |
#, php-format
|
|
|
156 |
msgid "Table \"%s\" exported successfully."
|
157 |
msgstr "Tabela \"%s\" exportada com sucesso."
|
158 |
|
159 |
-
#: wp-table-reloaded-admin.php:
|
|
|
160 |
msgid "Options saved successfully."
|
161 |
msgstr "Opções salvas com sucesso."
|
162 |
|
163 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
164 |
msgid "WP-Table Reloaded"
|
165 |
msgstr "WP-Table Reloaded"
|
166 |
|
167 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
168 |
msgid "Plugin deactivated successfully."
|
169 |
msgstr "Plugin desativado com sucesso."
|
170 |
|
171 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
172 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
173 |
msgstr "Todas as tabelas, informações e opções foram excluídas. Você já pode excluir a pasta deste plugin da pasta de plugins do WordPress."
|
174 |
|
175 |
-
#: wp-table-reloaded-admin.php:
|
176 |
-
#: wp-table-reloaded-admin.php:
|
|
|
177 |
msgid "List of Tables"
|
178 |
msgstr "Lista de Tabelas"
|
179 |
|
180 |
-
#: wp-table-reloaded-admin.php:
|
181 |
-
#: wp-table-reloaded-admin.php:
|
|
|
182 |
msgid "This is a list of all available tables."
|
183 |
msgstr "Esta é uma lista de todas as tabelas disponíveis."
|
184 |
|
185 |
-
#: wp-table-reloaded-admin.php:
|
|
|
186 |
msgid "You may insert a table into a post or page here."
|
187 |
msgstr "Você pode inserir uma tabela em um artigo (post) ou página aqui."
|
188 |
|
189 |
-
#: wp-table-reloaded-admin.php:
|
|
|
190 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
191 |
msgstr "Clique no link \"Insert\" depois da tabela escolhida e o código correspondente será inserido no seu editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
192 |
|
193 |
-
#: wp-table-reloaded-admin.php:
|
194 |
-
#: wp-table-reloaded-admin.php:
|
195 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
196 |
msgid "ID"
|
197 |
msgstr "ID"
|
198 |
|
199 |
-
#: wp-table-reloaded-admin.php:
|
200 |
-
#: wp-table-reloaded-admin.php:
|
201 |
-
#: wp-table-reloaded-admin.php:
|
202 |
-
#: wp-table-reloaded-admin.php:
|
203 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
204 |
msgid "Table Name"
|
205 |
msgstr "Nome da Tabela"
|
206 |
|
207 |
-
#: wp-table-reloaded-admin.php:
|
208 |
-
#: wp-table-reloaded-admin.php:
|
209 |
-
#: wp-table-reloaded-admin.php:
|
210 |
-
#: wp-table-reloaded-admin.php:
|
211 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
212 |
msgid "Description"
|
213 |
msgstr "Descrição"
|
214 |
|
215 |
-
#: wp-table-reloaded-admin.php:
|
216 |
-
#: wp-table-reloaded-admin.php:
|
217 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
218 |
msgid "Action"
|
219 |
msgstr "Ação"
|
220 |
|
221 |
-
#: wp-table-reloaded-admin.php:
|
|
|
222 |
msgid "Insert"
|
223 |
msgstr "Inserir"
|
224 |
|
225 |
-
#: wp-table-reloaded-admin.php:
|
226 |
-
#: wp-table-reloaded-admin.php:
|
227 |
-
#: wp-table-reloaded-admin.php:
|
|
|
228 |
msgid "No tables found."
|
229 |
msgstr "Nenhuma tabela foi encontrada."
|
230 |
|
231 |
-
#: wp-table-reloaded-admin.php:
|
|
|
232 |
msgid "You may add, edit, copy or delete tables here."
|
233 |
msgstr "Você pode adicionar, editar, copiar ou excluir tabelas aqui."
|
234 |
|
235 |
-
#: wp-table-reloaded-admin.php:
|
|
|
236 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
237 |
msgstr "Se você quiser mostrar uma tabela em suas páginas, artigos (posts) ou widgets de texto, use o código <strong>[table id=<the_table_ID> /]</strong> ou clique no botão \"Table\" na barra de ferramentas do seu editor."
|
238 |
|
239 |
-
#: wp-table-reloaded-admin.php:
|
|
|
240 |
msgid "Edit"
|
241 |
msgstr "Editar"
|
242 |
|
243 |
-
#: wp-table-reloaded-admin.php:
|
|
|
244 |
msgid "Copy"
|
245 |
msgstr "Copiar"
|
246 |
|
247 |
-
#: wp-table-reloaded-admin.php:
|
|
|
248 |
msgid "Export"
|
249 |
msgstr "Exportar"
|
250 |
|
251 |
-
#: wp-table-reloaded-admin.php:
|
|
|
252 |
msgid "Delete"
|
253 |
msgstr "Excluir"
|
254 |
|
255 |
-
#: wp-table-reloaded-admin.php:
|
256 |
-
#: wp-table-reloaded-admin.php:
|
|
|
257 |
msgid "Bulk actions:"
|
258 |
msgstr "Ações em lote:"
|
259 |
|
260 |
-
#: wp-table-reloaded-admin.php:
|
|
|
261 |
msgid "Copy Tables"
|
262 |
msgstr "Copiar Tabelas"
|
263 |
|
264 |
-
#: wp-table-reloaded-admin.php:
|
|
|
265 |
msgid "Delete Tables"
|
266 |
msgstr "Excluir Tabelas"
|
267 |
|
268 |
-
#: wp-table-reloaded-admin.php:
|
269 |
-
#: wp-table-reloaded-admin.php:
|
270 |
#, php-format
|
|
|
271 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
272 |
msgstr "Você deve <a href=\"%s\">adicionar</a> ou <a href=\"%s\">importar</a> uma!"
|
273 |
|
274 |
-
#: wp-table-reloaded-admin.php:
|
275 |
-
#: wp-table-reloaded-admin.php:
|
|
|
276 |
msgid "Add new Table"
|
277 |
msgstr "Adicionar nova Tabela"
|
278 |
|
279 |
-
#: wp-table-reloaded-admin.php:
|
280 |
-
|
281 |
-
msgstr "Você pode adicionar uma tabela aqui. Digite um nome pra ela, uma descrição (opcional) e o número de linhas e colunas.<br />Você pode adicionar, inserir or excluir linhas e colunas depois."
|
282 |
-
|
283 |
-
#: wp-table-reloaded-admin.php:774
|
284 |
msgid "Enter Table Name"
|
285 |
msgstr "Digite o Nome da Tabela"
|
286 |
|
287 |
-
#: wp-table-reloaded-admin.php:
|
|
|
288 |
msgid "Enter Description"
|
289 |
msgstr "Digite a Descrição"
|
290 |
|
291 |
-
#: wp-table-reloaded-admin.php:
|
|
|
292 |
msgid "Number of Rows"
|
293 |
msgstr "Número de Linhas"
|
294 |
|
295 |
-
#: wp-table-reloaded-admin.php:
|
|
|
296 |
msgid "Number of Columns"
|
297 |
msgstr "Número de Colunas"
|
298 |
|
299 |
-
#: wp-table-reloaded-admin.php:
|
|
|
300 |
msgid "Add Table"
|
301 |
msgstr "Adicionar Tabela"
|
302 |
|
303 |
-
#: wp-table-reloaded-admin.php:
|
304 |
-
|
305 |
-
msgid "Edit Table \"%s\""
|
306 |
-
msgstr "Editar Tabela \"%s\""
|
307 |
-
|
308 |
-
#: wp-table-reloaded-admin.php:812
|
309 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
310 |
msgstr "Você pode editar o conteúdo da tabela aqui. Também é possível inserir e excluir colunas e linhas."
|
311 |
|
312 |
-
#: wp-table-reloaded-admin.php:
|
313 |
-
|
314 |
-
msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
|
315 |
-
msgstr "Se você quer mostrar uma tabela em suas páginas, artigos (posts) ou widgets de texto, use esse código: <strong>[table id=%s /]</strong>"
|
316 |
-
|
317 |
-
#: wp-table-reloaded-admin.php:818
|
318 |
msgid "Table Information"
|
319 |
msgstr "Informações da Tabela"
|
320 |
|
321 |
-
#: wp-table-reloaded-admin.php:
|
322 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
323 |
msgid "Update Changes"
|
324 |
msgstr "Atualizar Mudanças"
|
325 |
|
326 |
-
#: wp-table-reloaded-admin.php:
|
327 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
328 |
msgid "Save and go back"
|
329 |
msgstr "Salvar e voltar"
|
330 |
|
331 |
-
#: wp-table-reloaded-admin.php:
|
332 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
333 |
msgid "Cancel"
|
334 |
msgstr "Cancelar"
|
335 |
|
336 |
-
#: wp-table-reloaded-admin.php:
|
|
|
337 |
msgid "Table Contents"
|
338 |
msgstr "Conteúdo da Tabela"
|
339 |
|
340 |
-
#: wp-table-reloaded-admin.php:
|
341 |
-
#: wp-table-reloaded-admin.php:
|
342 |
-
#: wp-table-reloaded-admin.php:
|
343 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
344 |
msgid "Hide"
|
345 |
msgstr "Esconder"
|
346 |
|
347 |
-
#: wp-table-reloaded-admin.php:
|
348 |
-
#: wp-table-reloaded-admin.php:
|
349 |
-
#: wp-table-reloaded-admin.php:
|
350 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
351 |
msgid "Expand"
|
352 |
msgstr "Expandir"
|
353 |
|
354 |
-
#: wp-table-reloaded-admin.php:
|
|
|
355 |
msgid "Insert Row"
|
356 |
msgstr "Adicionar Linha"
|
357 |
|
358 |
-
#: wp-table-reloaded-admin.php:
|
|
|
359 |
msgid "Delete Row"
|
360 |
msgstr "Excluir Linha"
|
361 |
|
362 |
-
#: wp-table-reloaded-admin.php:
|
|
|
363 |
msgid "Insert Column"
|
364 |
msgstr "Inserir Coluna"
|
365 |
|
366 |
-
#: wp-table-reloaded-admin.php:
|
|
|
367 |
msgid "Delete Column"
|
368 |
msgstr "Excluir Coluna"
|
369 |
|
370 |
-
#: wp-table-reloaded-admin.php:
|
|
|
371 |
msgid "Data Manipulation"
|
372 |
msgstr "Manipulação de Conteúdo"
|
373 |
|
374 |
-
#: wp-table-reloaded-admin.php:
|
375 |
#, php-format
|
|
|
376 |
msgid "Swap rows %s and %s"
|
377 |
msgstr "Trocar linhas %s e %s"
|
378 |
|
379 |
-
#: wp-table-reloaded-admin.php:
|
380 |
-
#: wp-table-reloaded-admin.php:
|
|
|
381 |
msgid "Swap"
|
382 |
msgstr "Trocar"
|
383 |
|
384 |
-
#: wp-table-reloaded-admin.php:
|
385 |
#, php-format
|
|
|
386 |
msgid "Swap columns %s and %s"
|
387 |
msgstr "Trocar colunas %s e %s"
|
388 |
|
389 |
-
#: wp-table-reloaded-admin.php:
|
|
|
390 |
msgid "Insert Link"
|
391 |
msgstr "Inserir Link"
|
392 |
|
393 |
-
#: wp-table-reloaded-admin.php:
|
|
|
394 |
msgid "Insert Image"
|
395 |
msgstr "Inserir Imagem"
|
396 |
|
397 |
-
#: wp-table-reloaded-admin.php:
|
|
|
398 |
msgid "ascending"
|
399 |
msgstr "crescente"
|
400 |
|
401 |
-
#: wp-table-reloaded-admin.php:
|
|
|
402 |
msgid "descending"
|
403 |
msgstr "decrescente"
|
404 |
|
405 |
-
#: wp-table-reloaded-admin.php:
|
406 |
#, php-format
|
|
|
407 |
msgid "Sort table by column %s in %s order"
|
408 |
msgstr "Ordenar tabela pela coluna %s em ordem %s"
|
409 |
|
410 |
-
#: wp-table-reloaded-admin.php:
|
|
|
411 |
msgid "Sort"
|
412 |
msgstr "Ordenar"
|
413 |
|
414 |
-
#: wp-table-reloaded-admin.php:
|
|
|
415 |
msgid "Table Settings"
|
416 |
msgstr "Configurações da Tabela"
|
417 |
|
418 |
-
#: wp-table-reloaded-admin.php:
|
|
|
419 |
msgid "These settings will only be used for this table."
|
420 |
msgstr "Estas configurações serão utilizadas somente para esta tabela."
|
421 |
|
422 |
-
#: wp-table-reloaded-admin.php:
|
|
|
423 |
msgid "Alternating row colors"
|
424 |
msgstr "Alternar cores das linhas"
|
425 |
|
426 |
-
#: wp-table-reloaded-admin.php:
|
|
|
427 |
msgid "Every second row will have an alternating background color."
|
428 |
msgstr "A segunda linha de cada duas terá uma cor de fundo diferente."
|
429 |
|
430 |
-
#: wp-table-reloaded-admin.php:
|
|
|
431 |
msgid "Use Table Headline"
|
432 |
msgstr "Usar Cabeçalho da Tabela"
|
433 |
|
434 |
-
#: wp-table-reloaded-admin.php:
|
435 |
-
|
436 |
-
msgstr "A primeira linha da sua tabela irá usar a tag [th]."
|
437 |
-
|
438 |
-
#: wp-table-reloaded-admin.php:996
|
439 |
msgid "Print Table Name"
|
440 |
msgstr "Mostrar o Nome da Tabela"
|
441 |
|
442 |
-
#: wp-table-reloaded-admin.php:
|
443 |
-
|
444 |
-
msgstr "O Nome da tabela será escrito acima da tabela em uma tag [h2]."
|
445 |
-
|
446 |
-
#: wp-table-reloaded-admin.php:1000
|
447 |
msgid "Print Table Description"
|
448 |
msgstr "Mostrar Descrição da Tabela"
|
449 |
|
450 |
-
#: wp-table-reloaded-admin.php:
|
|
|
451 |
msgid "The Table Description will be written under the table."
|
452 |
msgstr "A Descrição será escrita embaixo da tabela."
|
453 |
|
454 |
-
#: wp-table-reloaded-admin.php:
|
|
|
455 |
msgid "Use Tablesorter"
|
456 |
msgstr "Usar o Organizador de Tabela"
|
457 |
|
458 |
-
#: wp-table-reloaded-admin.php:
|
459 |
-
|
460 |
-
msgstr "Você poderá organizar uma tabela usando o <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>. <small>Atenção: Você precisa ter o Tablesorter habilitado na página de \"Opções do Plugin\" e a opção \"Usar Cabeçalho da Tabela\" deve estar habilitada pra isso funcionar!</small>"
|
461 |
-
|
462 |
-
#: wp-table-reloaded-admin.php:1020
|
463 |
msgid "Other actions"
|
464 |
msgstr "Outras ações"
|
465 |
|
466 |
-
#: wp-table-reloaded-admin.php:
|
|
|
467 |
msgid "Delete Table"
|
468 |
msgstr "Excluir Tabela"
|
469 |
|
470 |
-
#: wp-table-reloaded-admin.php:
|
471 |
-
#: wp-table-reloaded-admin.php:
|
|
|
472 |
msgid "Export Table"
|
473 |
msgstr "Exportar Tabela"
|
474 |
|
475 |
-
#: wp-table-reloaded-admin.php:
|
476 |
-
#: wp-table-reloaded-admin.php:
|
|
|
477 |
msgid "Import a Table"
|
478 |
msgstr "Importar uma Tabela"
|
479 |
|
480 |
-
#: wp-table-reloaded-admin.php:
|
481 |
-
|
482 |
-
msgstr "Você pode importar uma tabela de algum conteúdo já existente aqui.<br />Pode ser um arquivo CSV, XML ou HTML. Porém ele precisa seguir uma estrutura pré-definida. Por favor, consulte a documentação."
|
483 |
-
|
484 |
-
#: wp-table-reloaded-admin.php:1046
|
485 |
msgid "Select Import Format"
|
486 |
msgstr "Selecionar o Formato de Importação"
|
487 |
|
488 |
-
#: wp-table-reloaded-admin.php:
|
|
|
489 |
msgid "Select File with Table to Import"
|
490 |
msgstr "Selecionar o Arquivo com a Tabela a ser Importada"
|
491 |
|
492 |
-
#: wp-table-reloaded-admin.php:
|
|
|
493 |
msgid "Paste data with Table to Import"
|
494 |
msgstr "Colar conteúdo com a Tabela para Importar"
|
495 |
|
496 |
-
#: wp-table-reloaded-admin.php:
|
|
|
497 |
msgid "Import Table"
|
498 |
msgstr "Importar Tabela"
|
499 |
|
500 |
-
#: wp-table-reloaded-admin.php:
|
|
|
501 |
msgid "Import from original wp-Table plugin"
|
502 |
msgstr "Importar do plugin wp-Table original"
|
503 |
|
504 |
-
#: wp-table-reloaded-admin.php:
|
|
|
505 |
msgid "Import"
|
506 |
msgstr "Importar"
|
507 |
|
508 |
-
#: wp-table-reloaded-admin.php:
|
|
|
509 |
msgid "Import Tables"
|
510 |
msgstr "Importar Tabelas"
|
511 |
|
512 |
-
#: wp-table-reloaded-admin.php:
|
|
|
513 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
514 |
msgstr "O plugin wp-Table, de Alex Rabe, parece estar instalado, mas nenhuma tabela foi encontrada."
|
515 |
|
516 |
-
#: wp-table-reloaded-admin.php:
|
517 |
-
#: wp-table-reloaded-admin.php:
|
|
|
518 |
msgid "Export a Table"
|
519 |
msgstr "Exportar uma Tabela"
|
520 |
|
521 |
-
#: wp-table-reloaded-admin.php:
|
522 |
-
|
523 |
-
msgstr "Você pode exportar uma tabela aqui. Selecione a tabela, o formato para a exportação e um delimitador (necessário somente para o CSV).<br />Você pode optar por fazer o download do arquivo exportado. Caso contrário, eles serão exibidos nesta página."
|
524 |
-
|
525 |
-
#: wp-table-reloaded-admin.php:1204
|
526 |
msgid "Select Table to Export"
|
527 |
msgstr "Selecionar Tabela para Exportar"
|
528 |
|
529 |
-
#: wp-table-reloaded-admin.php:
|
|
|
530 |
msgid "Select Export Format"
|
531 |
msgstr "Selecionar Formato para Exportação"
|
532 |
|
533 |
-
#: wp-table-reloaded-admin.php:
|
|
|
534 |
msgid "Select Delimiter to use"
|
535 |
msgstr "Selecionar Delimitador para usar"
|
536 |
|
537 |
-
#: wp-table-reloaded-admin.php:
|
|
|
538 |
msgid "<small>(Only needed for CSV export.)</small>"
|
539 |
msgstr "<small>(Necessário somente para exportar pra CSV.)</small>"
|
540 |
|
541 |
-
#: wp-table-reloaded-admin.php:
|
|
|
542 |
msgid "Download file"
|
543 |
msgstr "Fazer Download do arquivo"
|
544 |
|
545 |
-
#: wp-table-reloaded-admin.php:
|
|
|
546 |
msgid "Yes, I want to download the export file."
|
547 |
msgstr "Sim, eu quero fazer o download do arquivo exportado."
|
548 |
|
549 |
-
#: wp-table-reloaded-admin.php:
|
|
|
550 |
msgid "General Plugin Options"
|
551 |
msgstr "Opções Gerais do Plugin"
|
552 |
|
553 |
-
#: wp-table-reloaded-admin.php:
|
554 |
-
|
555 |
-
msgstr "Você pode mudar as opções globais.<br />Elas irão afetar todas as tabelas ou o funcionamento geral do plugin."
|
556 |
-
|
557 |
-
#: wp-table-reloaded-admin.php:1276
|
558 |
msgid "Frontend Options"
|
559 |
msgstr "Opções de Interface"
|
560 |
|
561 |
-
#: wp-table-reloaded-admin.php:
|
|
|
562 |
msgid "Enable Tablesorter-JavaScript?"
|
563 |
msgstr "Habilitar Tablesorter-JavaScript?"
|
564 |
|
565 |
-
#: wp-table-reloaded-admin.php:
|
|
|
566 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
567 |
msgstr "Sim, habilitar o <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Ele pode ser usado para deixar as tabelas \"organizáveis\" (pode ser ativado para cada tabela separadamente nas suas opções)."
|
568 |
|
569 |
-
#: wp-table-reloaded-admin.php:
|
|
|
570 |
msgid "Add custom CSS?"
|
571 |
msgstr "Adicionar CSS personalizado?"
|
572 |
|
573 |
-
#: wp-table-reloaded-admin.php:
|
574 |
-
|
575 |
-
msgstr "Sim, inclua e carregue o seguinte código CS no meu site dentro de uma tag [style]-HTML-tag."
|
576 |
-
|
577 |
-
#: wp-table-reloaded-admin.php:1291
|
578 |
msgid "Enter custom CSS"
|
579 |
msgstr "Digitar CSS personalizado"
|
580 |
|
581 |
-
#: wp-table-reloaded-admin.php:
|
582 |
-
#, php-format
|
583 |
-
msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
|
584 |
-
msgstr "(Você pode conseguir um ganho de performance se você inserir as personalizações do CSS diretamente no arquivo \"style.css\" <small>(localizado em %s)</small>)."
|
585 |
-
|
586 |
-
#: wp-table-reloaded-admin.php:1294
|
587 |
#, php-format
|
|
|
588 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
589 |
msgstr "Veja o <a href=\"%s\">site do plugin</a> para exemplos de estilo ou use um desses: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
590 |
|
591 |
-
#: wp-table-reloaded-admin.php:
|
|
|
592 |
msgid "Just copy the contents of a file into the textarea."
|
593 |
msgstr "Simplesmente copia o conteúdo de um arquivo pra dentro do textarea."
|
594 |
|
595 |
-
#: wp-table-reloaded-admin.php:
|
596 |
-
|
597 |
-
msgstr "Opções de Administrador"
|
598 |
-
|
599 |
-
#: wp-table-reloaded-admin.php:1306
|
600 |
msgid "Uninstall Plugin upon Deactivation?"
|
601 |
msgstr "Desinstalar o Plugin após a Desativação?"
|
602 |
|
603 |
-
#: wp-table-reloaded-admin.php:
|
|
|
604 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
605 |
msgstr "Sim, desinstalar tudo quando o plugin for desativado. Atenção: Você só deve marcar essa opção exatamente antes de desativar o plugin na página de Plugins do WordPress."
|
606 |
|
607 |
-
#: wp-table-reloaded-admin.php:
|
608 |
-
|
609 |
-
msgstr "<small>(Esta opção não influencia a opção \"Desinstalar o Plugin Manualmente\" abaixo!)</small>"
|
610 |
-
|
611 |
-
#: wp-table-reloaded-admin.php:1317
|
612 |
msgid "Save Options"
|
613 |
msgstr "Salvar Opções"
|
614 |
|
615 |
-
#: wp-table-reloaded-admin.php:
|
|
|
616 |
msgid "Manually Uninstall Plugin"
|
617 |
msgstr "Desinstalar Plugin Manualmente"
|
618 |
|
619 |
-
#: wp-table-reloaded-admin.php:
|
620 |
-
|
621 |
-
msgstr "Você pode desinstalar o plugin aqui. Isso <strong>vai excluir</strong> todas as tabelas, conteúdo, opções, etc., relacionadas ao plugin, incluindo todas as tabelas adicionadas ou importadas.<br />Seja muito cuidadoso com esta opção e somente clique no botão se souber o que está fazendo!"
|
622 |
-
|
623 |
-
#: wp-table-reloaded-admin.php:1328
|
624 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
625 |
msgstr "Desinstalar o Plugin WP-Table Reloaded"
|
626 |
|
627 |
-
#: wp-table-reloaded-admin.php:
|
628 |
-
|
629 |
-
msgstr "Informações sobre o plugin"
|
630 |
-
|
631 |
-
#: wp-table-reloaded-admin.php:1345
|
632 |
msgid "Plugin Purpose"
|
633 |
msgstr "Proposta do Plugin"
|
634 |
|
635 |
-
#: wp-table-reloaded-admin.php:
|
|
|
636 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
637 |
msgstr "Este plugin permite à você criar e administrar tabelas na área de administrador do WordPress."
|
638 |
|
639 |
-
#: wp-table-reloaded-admin.php:
|
|
|
640 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
641 |
msgstr "Estas tabelas podem conter texto, números e até HTML (por exemplo, incluir imagens ou links)."
|
642 |
|
643 |
-
#: wp-table-reloaded-admin.php:
|
|
|
644 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
645 |
msgstr "Você pode, então, mostrar as tabelas nos seus artigos (posts), em suas páginas ou nos widgets de texto, usando o código gerado."
|
646 |
|
647 |
-
#: wp-table-reloaded-admin.php:
|
|
|
648 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
649 |
msgstr "Se você quiser mostrar suas tabelas em qualquer outro lugar no seu tema, você pode usar uma \"template tag function\"."
|
650 |
|
651 |
-
#: wp-table-reloaded-admin.php:
|
|
|
652 |
msgid "Usage"
|
653 |
msgstr "Uso"
|
654 |
|
655 |
-
#: wp-table-reloaded-admin.php:
|
|
|
656 |
msgid "At first you should add or import a table."
|
657 |
msgstr "Primeiro você deve adicionar ou importar uma tabela."
|
658 |
|
659 |
-
#: wp-table-reloaded-admin.php:
|
|
|
660 |
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."
|
661 |
msgstr "Isso quer dizer que ou você deixa o plugin criar uma tabela vazia pra você, ou você deve importar uma tabela existente de um arquivo CSV, XML ou HTML."
|
662 |
|
663 |
-
#: wp-table-reloaded-admin.php:
|
|
|
664 |
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."
|
665 |
msgstr "Depois disso você poderá editar o conteúdo ou mudar a estrutura da tabela (por exemplo, inserindo ou excluindo linhas e colunas, trocando elas de lugar ou organizando toda essa informação) e também selecionar opções especificamente para cada tabela, alternando as cores das linhas ou escolhendo se deseja ou não mostrar o nome da tabela e sua descrição."
|
666 |
|
667 |
-
#: wp-table-reloaded-admin.php:
|
|
|
668 |
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."
|
669 |
msgstr "Para adicionar facilmente um link ou imagem em uma célula, uso o botão específico. Ele irá pedir um endereço URL e um título, então você poderá clicar numa célula e o HTML correspondente será incluído pra você."
|
670 |
|
671 |
-
#: wp-table-reloaded-admin.php:
|
|
|
672 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
673 |
msgstr "Para incluir a tabela nos seus artigos (posts), páginas ou widgets de texto, escreva o código [table id=<table-id>] onde quiser que a tabela apareça."
|
674 |
|
675 |
-
#: wp-table-reloaded-admin.php:
|
|
|
676 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
677 |
msgstr "Você também pode selecionar a tabela desejada de uma lista (depois de clicar no botão \"Tabela\" na barra de ferramentas do editor) e o código correspondente será inserido pra você."
|
678 |
|
679 |
-
#: wp-table-reloaded-admin.php:
|
|
|
680 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
681 |
msgstr "Você também pode personalizar a aparência da sua tabela via CSS. Arquivos de exemplo estão disponíveis no site do plugin. Toda tabela possui a classe CSS \"wp-table-reloaded\". Cada tabela também possui a classe \"wp-table-reloaded-<table-id>\"."
|
682 |
|
683 |
-
#: wp-table-reloaded-admin.php:
|
|
|
684 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
685 |
msgstr "Você também pode usar as classes \"column-<number>\" e \"row-<number>\" para personalizar a aparência das linhas e colunas individualmente. Use-as para personalizar a largura das colunas e o alinhamento do texto, por exemplo."
|
686 |
|
687 |
-
#: wp-table-reloaded-admin.php:
|
|
|
688 |
msgid "More Information and Documentation"
|
689 |
msgstr "Mais Informações e Documentação"
|
690 |
|
691 |
-
#: wp-table-reloaded-admin.php:
|
|
|
692 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
693 |
msgstr "Mais informações podem ser encontradas no <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site do plugin</a> ou na sua página no <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Diretório de Plugins do WordPress</a>."
|
694 |
|
695 |
-
#: wp-table-reloaded-admin.php:
|
696 |
-
#: wp-table-reloaded-admin.php:
|
|
|
697 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
698 |
msgstr "Veja a <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentação</a> ou descubra como conseguir <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">suporte</a> (em inglês)."
|
699 |
|
700 |
-
#: wp-table-reloaded-admin.php:
|
|
|
701 |
msgid "Author and Licence"
|
702 |
msgstr "Autor e Licensa"
|
703 |
|
704 |
-
#: wp-table-reloaded-admin.php:
|
705 |
-
|
706 |
-
msgstr "Este plugin foi escrito por <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. Ele está licenciado como Software Livre sob a GPL 2."
|
707 |
-
|
708 |
-
#: wp-table-reloaded-admin.php:1368
|
709 |
-
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
710 |
-
msgstr "Se você gostou desse plugin, por favor, considere <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>fazer uma doação</strong></a> e avalie o plugin no <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Diretório de Plugins do WordPress</a>."
|
711 |
-
|
712 |
-
#: wp-table-reloaded-admin.php:1368
|
713 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
714 |
msgstr "Doações e boas avaliações me dão ânimo para continuar desenvolvendo o plugin e oferecendo incontáveis horas de suporte. Qualquer quantia é muito bem-vinda! Obrigado!"
|
715 |
|
716 |
-
#: wp-table-reloaded-admin.php:
|
|
|
717 |
msgid "Credits and Thanks"
|
718 |
msgstr "Créditos e Agradecimentos"
|
719 |
|
720 |
-
#: wp-table-reloaded-admin.php:
|
|
|
721 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
722 |
msgstr "Meu muito obrigado para o <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> pelo plugin original \"wp-Table plugin\","
|
723 |
|
724 |
-
#: wp-table-reloaded-admin.php:
|
|
|
725 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
726 |
msgstr "Christian Bach pelo <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
727 |
|
728 |
-
#: wp-table-reloaded-admin.php:
|
|
|
729 |
msgid "the submitters of translations:"
|
730 |
msgstr "o pessoal que contriuiu com traduções:"
|
731 |
|
732 |
-
#: wp-table-reloaded-admin.php:
|
|
|
733 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
734 |
msgstr "Albanian (obrigado <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
735 |
|
736 |
-
#: wp-table-reloaded-admin.php:
|
|
|
737 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
738 |
msgstr "Czech (obrigado <a href=\"http://separatista.net/\">Separatista</a>)"
|
739 |
|
740 |
-
#: wp-table-reloaded-admin.php:
|
|
|
741 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
742 |
msgstr "French (obrigado <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
743 |
|
744 |
-
#: wp-table-reloaded-admin.php:
|
|
|
745 |
msgid "Polish (thanks to Alex Kortan)"
|
746 |
msgstr "Polish (obrigado Alex Kortan)"
|
747 |
|
748 |
-
#: wp-table-reloaded-admin.php:
|
|
|
749 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
750 |
msgstr "Russian (obrigado <a href=\"http://wp-skins.info/\">Truper</a>)"
|
751 |
|
752 |
-
#: wp-table-reloaded-admin.php:
|
|
|
753 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
754 |
msgstr "Spanish (obrigado <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> e <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
755 |
|
756 |
-
#: wp-table-reloaded-admin.php:
|
|
|
757 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
758 |
msgstr "Swedish (obrigado <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
759 |
|
760 |
-
#: wp-table-reloaded-admin.php:
|
|
|
761 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
762 |
msgstr "Turkish (obrigado <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
763 |
|
764 |
-
#: wp-table-reloaded-admin.php:
|
|
|
765 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
766 |
msgstr "pra todos que doaram, contribuíram, ajudaram, apoiaram e também pra todos os usuários do plugin!"
|
767 |
|
768 |
-
#: wp-table-reloaded-admin.php:
|
|
|
769 |
msgid "Debug and Version Information"
|
770 |
msgstr "Informações de Versão e Debug"
|
771 |
|
772 |
-
#: wp-table-reloaded-admin.php:
|
|
|
773 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
774 |
msgstr "Você está usando as seguintes versões deste software. <strong>Por favor, forneça esta informação na hora de reportar bugs.</strong>"
|
775 |
|
776 |
-
#: wp-table-reloaded-admin.php:
|
|
|
777 |
msgid "List Tables"
|
778 |
msgstr "Listar Tabelas"
|
779 |
|
780 |
-
#: wp-table-reloaded-admin.php:
|
|
|
781 |
msgid "Plugin Options"
|
782 |
msgstr "Opções do Plugin"
|
783 |
|
784 |
-
#: wp-table-reloaded-admin.php:
|
|
|
785 |
msgid "About the Plugin"
|
786 |
msgstr "Sobre o Plugin"
|
787 |
|
788 |
-
#: wp-table-reloaded-admin.php:
|
|
|
789 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
790 |
msgstr "Mais informações podem ser encontradas no <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site do plugin</a>."
|
791 |
|
792 |
-
#: wp-table-reloaded-admin.php:
|
|
|
793 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
794 |
msgstr "Você deseja mesmo ativar isto? Você só deve fazer isso exatamente antes de desinstalar!"
|
795 |
|
796 |
-
#: wp-table-reloaded-admin.php:
|
|
|
797 |
msgid "URL of link to insert"
|
798 |
msgstr "URL do link para inserir"
|
799 |
|
800 |
-
#: wp-table-reloaded-admin.php:
|
|
|
801 |
msgid "Text of link"
|
802 |
msgstr "Texto do link"
|
803 |
|
804 |
-
#: wp-table-reloaded-admin.php:
|
|
|
805 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
806 |
msgstr "Para inserir este link numa célula basta clicar nela após fechar esta janela."
|
807 |
|
808 |
-
#: wp-table-reloaded-admin.php:
|
809 |
-
|
810 |
-
msgstr "URL da imagem para inserir"
|
811 |
-
|
812 |
-
#: wp-table-reloaded-admin.php:1687
|
813 |
-
msgid "''alt'' text of the image"
|
814 |
-
msgstr "texto alternativo \\"alt\\" da imagem"
|
815 |
-
|
816 |
-
#: wp-table-reloaded-admin.php:1688
|
817 |
-
msgid "To insert the following image into a cell, just click the cell after closing this dialog."
|
818 |
-
msgstr "Para inserir esta imagem numa célula basta clicar nela após fechar esta janela."
|
819 |
-
|
820 |
-
#: wp-table-reloaded-admin.php:1689
|
821 |
msgid "Do you want to copy the selected tables?"
|
822 |
msgstr "Você deseja copiar as tabelas selecionadas?"
|
823 |
|
824 |
-
#: wp-table-reloaded-admin.php:
|
|
|
825 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
826 |
msgstr "As tabelas selecionadas, e todo o seu conteúdo, serão excluídas. Você deseja mesmo excluí-las?"
|
827 |
|
828 |
-
#: wp-table-reloaded-admin.php:
|
|
|
829 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
830 |
msgstr "Você deseja mesmo importar as tabelas selecionadas do plugin wp-Table?"
|
831 |
|
832 |
-
#: wp-table-reloaded-admin.php:
|
|
|
833 |
msgid "Do you want to copy this table?"
|
834 |
msgstr "Você deseja copiar esta tabela?"
|
835 |
|
836 |
-
#: wp-table-reloaded-admin.php:
|
|
|
837 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
838 |
msgstr "Todas as tabelas e seu conteúdo serão excluídos. Você deseja mesmo excluí-las?"
|
839 |
|
840 |
-
#: wp-table-reloaded-admin.php:
|
|
|
841 |
msgid "Do you really want to delete this row?"
|
842 |
msgstr "Você deseja mesmo excluir esta linha?"
|
843 |
|
844 |
-
#: wp-table-reloaded-admin.php:
|
|
|
845 |
msgid "Do you really want to delete this column?"
|
846 |
msgstr "Você deseja mesmo excluir esta coluna?"
|
847 |
|
848 |
-
#: wp-table-reloaded-admin.php:
|
|
|
849 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
850 |
msgstr "Você deseja mesmo importar esta tabela do plugin wp-Table?"
|
851 |
|
852 |
-
#: wp-table-reloaded-admin.php:
|
|
|
853 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
854 |
msgstr "Você deseja mesmo desinstalar o plugin e excluir todo o conteúdo?"
|
855 |
|
856 |
-
#: wp-table-reloaded-admin.php:
|
|
|
857 |
msgid "Are you really sure?"
|
858 |
msgstr "Tem certeza?"
|
859 |
|
860 |
-
#: wp-table-reloaded-admin.php:
|
|
|
861 |
msgid "Table"
|
862 |
msgstr "Tabela"
|
863 |
|
864 |
-
#: wp-table-reloaded-admin.php:
|
865 |
#, php-format
|
|
|
866 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
867 |
msgstr "Tabela editada com sucesso. Essa tabela agora tem o ID %s. Você precisará ajustar manualmente os códigos já existentes."
|
868 |
|
869 |
-
#: wp-table-reloaded-admin.php:
|
870 |
#, php-format
|
|
|
871 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
872 |
msgstr "O ID não pode ser alterado de %s para %s porque já existe uma Tabela com esse ID."
|
873 |
|
874 |
-
#: wp-table-reloaded-admin.php:
|
|
|
875 |
msgid "Row added successfully."
|
876 |
msgid_plural "Rows added successfully."
|
877 |
msgstr[0] "Linha adicionada com sucesso."
|
878 |
msgstr[1] "Linhas adicionadas com sucesso."
|
879 |
|
880 |
-
#: wp-table-reloaded-admin.php:
|
|
|
881 |
msgid "Column added successfully."
|
882 |
msgid_plural "Columns added successfully."
|
883 |
msgstr[0] "Coluna adicionada com sucesso."
|
884 |
msgstr[1] "Colunas adicionadasc om sucesso."
|
885 |
|
886 |
-
#: wp-table-reloaded-admin.php:
|
887 |
-
#: wp-table-reloaded-admin.php:
|
888 |
#, php-format
|
|
|
889 |
msgid "from %s"
|
890 |
msgstr "de %s"
|
891 |
|
892 |
-
#: wp-table-reloaded-admin.php:
|
893 |
#, php-format
|
|
|
894 |
msgid "Table %s (%s) replaced successfully."
|
895 |
msgstr "Tabela %s (%s) substituída com sucesso."
|
896 |
|
897 |
-
#: wp-table-reloaded-admin.php:
|
|
|
898 |
msgid "Table ID"
|
899 |
msgstr "ID da Tabela"
|
900 |
|
901 |
-
#: wp-table-reloaded-admin.php:
|
902 |
#, php-format
|
|
|
903 |
msgid "Add %s row(s)"
|
904 |
msgstr "Adiciona %s linha(s)"
|
905 |
|
906 |
-
#: wp-table-reloaded-admin.php:
|
907 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
908 |
msgid "Add"
|
909 |
msgstr "Adicionar"
|
910 |
|
911 |
-
#: wp-table-reloaded-admin.php:
|
912 |
#, php-format
|
|
|
913 |
msgid "Add %s column(s)"
|
914 |
msgstr "Adicionar %s coluna(s)"
|
915 |
|
916 |
-
#: wp-table-reloaded-admin.php:
|
|
|
917 |
msgid "Add or Replace Table?"
|
918 |
msgstr "Adicionar ou Substituir Tabela?"
|
919 |
|
920 |
-
#: wp-table-reloaded-admin.php:
|
|
|
921 |
msgid "Add as new Table"
|
922 |
msgstr "Adicionar como uma nova Tabela"
|
923 |
|
924 |
-
#: wp-table-reloaded-admin.php:
|
|
|
925 |
msgid "Replace existing Table"
|
926 |
msgstr "Substituir Tabela existente"
|
927 |
|
928 |
-
#: wp-table-reloaded-admin.php:
|
|
|
929 |
msgid "Select existing Table to Replace"
|
930 |
msgstr "Selecionar Tabela para Substituir"
|
931 |
|
932 |
-
#: wp-table-reloaded-admin.php:
|
|
|
933 |
msgid "Select source for import"
|
934 |
msgstr "Selecionar fonte para importação"
|
935 |
|
936 |
-
#: wp-table-reloaded-admin.php:
|
|
|
937 |
msgid "File upload"
|
938 |
msgstr "Upload de arquivo"
|
939 |
|
940 |
-
#: wp-table-reloaded-admin.php:
|
|
|
941 |
msgid "URL"
|
942 |
msgstr "URL"
|
943 |
|
944 |
-
#: wp-table-reloaded-admin.php:
|
|
|
945 |
msgid "Manual input"
|
946 |
msgstr "Inserção manual"
|
947 |
|
948 |
-
#: wp-table-reloaded-admin.php:
|
|
|
949 |
msgid "File on server"
|
950 |
msgstr "Arquivo no servidor"
|
951 |
|
952 |
-
#: wp-table-reloaded-admin.php:
|
|
|
953 |
msgid "URL to import table from"
|
954 |
msgstr "URL para importar Tabela"
|
955 |
|
956 |
-
#: wp-table-reloaded-admin.php:
|
|
|
957 |
msgid "Path to file on server"
|
958 |
msgstr "Caminho para o arquivo no servidor"
|
959 |
|
960 |
-
#: wp-table-reloaded-admin.php:
|
|
|
961 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
962 |
msgstr "Brazilian Portugues (obrigado para <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
963 |
|
964 |
-
#: wp-table-reloaded-admin.php:
|
|
|
965 |
msgid "Do you really want to change the ID of the table?"
|
966 |
msgstr "Você realmente deseja mudar o ID desta tabela?"
|
967 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP-Table Reloaded v1.2.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
"PO-Revision-Date: 2009-06-07 19:23-0300\n"
|
7 |
"Last-Translator: Rics - www.pensarics.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"
|
13 |
"X-Poedit-Language: Portuguese\n"
|
14 |
"X-Poedit-Country: BRAZIL\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;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
#: php/wp-table-reloaded-export.class.php:30
|
23 |
#: php/wp-table-reloaded-import.class.php:38
|
24 |
+
#@ wp-table-reloaded
|
25 |
msgid "CSV - Character-Separated Values"
|
26 |
msgstr "CSV - Valores Separados por Vírgula"
|
27 |
|
28 |
#: php/wp-table-reloaded-export.class.php:31
|
29 |
#: php/wp-table-reloaded-import.class.php:39
|
30 |
+
#@ wp-table-reloaded
|
31 |
msgid "HTML - Hypertext Markup Language"
|
32 |
msgstr "HTML - Linguagem de Marcação de Texto"
|
33 |
|
34 |
#: php/wp-table-reloaded-export.class.php:32
|
35 |
#: php/wp-table-reloaded-import.class.php:40
|
36 |
+
#@ wp-table-reloaded
|
37 |
msgid "XML - eXtended Markup Language"
|
38 |
msgstr "XML - eXtended Markup Language"
|
39 |
|
40 |
#: php/wp-table-reloaded-export.class.php:35
|
41 |
+
#@ wp-table-reloaded
|
42 |
msgid "; (semicolon)"
|
43 |
msgstr "; (ponto e vírgula)"
|
44 |
|
45 |
#: php/wp-table-reloaded-export.class.php:36
|
46 |
+
#@ wp-table-reloaded
|
47 |
msgid ", (comma)"
|
48 |
msgstr ", (vírgula)"
|
49 |
|
50 |
#: php/wp-table-reloaded-export.class.php:37
|
51 |
+
#@ wp-table-reloaded
|
52 |
msgid ": (colon)"
|
53 |
msgstr ": (dois pontos)"
|
54 |
|
55 |
#: php/wp-table-reloaded-export.class.php:38
|
56 |
+
#@ wp-table-reloaded
|
57 |
msgid ". (dot)"
|
58 |
msgstr ". (ponto)"
|
59 |
|
60 |
#: php/wp-table-reloaded-export.class.php:39
|
61 |
+
#@ wp-table-reloaded
|
62 |
msgid "| (pipe)"
|
63 |
msgstr "| (pipe)"
|
64 |
|
65 |
+
#: wp-table-reloaded-admin.php:208
|
66 |
#, php-format
|
67 |
+
#@ wp-table-reloaded
|
68 |
msgid "Table \"%s\" added successfully."
|
69 |
msgstr "Tabela \"%s\" adicionada com sucesso."
|
70 |
|
71 |
+
#: wp-table-reloaded-admin.php:241
|
72 |
+
#@ wp-table-reloaded
|
73 |
msgid "Table edited successfully."
|
74 |
msgstr "Tabela editada com sucesso."
|
75 |
|
76 |
+
#: wp-table-reloaded-admin.php:279
|
77 |
+
#@ wp-table-reloaded
|
78 |
msgid "Rows swapped successfully."
|
79 |
msgstr "Linhas trocadas com sucesso."
|
80 |
|
81 |
+
#: wp-table-reloaded-admin.php:300
|
82 |
+
#@ wp-table-reloaded
|
83 |
msgid "Columns swapped successfully."
|
84 |
msgstr "Colunas trocadas com sucesso."
|
85 |
|
86 |
+
#: wp-table-reloaded-admin.php:331
|
87 |
+
#@ wp-table-reloaded
|
88 |
msgid "Table sorted successfully."
|
89 |
msgstr "Tabela ordenada com sucesso."
|
90 |
|
91 |
+
#: wp-table-reloaded-admin.php:470
|
92 |
+
#: wp-table-reloaded-admin.php:525
|
93 |
+
#@ wp-table-reloaded
|
94 |
msgid "Copy of"
|
95 |
msgstr "Cópia de"
|
96 |
|
97 |
+
#: wp-table-reloaded-admin.php:474
|
98 |
+
#@ wp-table-reloaded
|
99 |
msgid "Table copied successfully."
|
100 |
msgid_plural "Tables copied successfully."
|
101 |
msgstr[0] "Tabela copiada com sucesso."
|
102 |
msgstr[1] "Tabelas copiadas com sucesso."
|
103 |
|
104 |
+
#: wp-table-reloaded-admin.php:480
|
105 |
+
#@ wp-table-reloaded
|
106 |
msgid "Table deleted successfully."
|
107 |
msgid_plural "Tables deleted successfully."
|
108 |
msgstr[0] "Tabela excluída com sucesso."
|
109 |
msgstr[1] "Tabelas excluídas com sucesso."
|
110 |
|
111 |
+
#: wp-table-reloaded-admin.php:501
|
112 |
+
#@ wp-table-reloaded
|
113 |
msgid "Table imported successfully."
|
114 |
msgid_plural "Tables imported successfully."
|
115 |
msgstr[0] "Tabela importada com sucesso."
|
116 |
msgstr[1] "Tabelas importadas com sucesso."
|
117 |
|
118 |
+
#: wp-table-reloaded-admin.php:508
|
119 |
+
#@ wp-table-reloaded
|
120 |
msgid "You did not select any tables!"
|
121 |
msgstr "Você não selecionou tabela alguma."
|
122 |
|
123 |
+
#: wp-table-reloaded-admin.php:530
|
124 |
#, php-format
|
125 |
+
#@ wp-table-reloaded
|
126 |
msgid "Table \"%s\" copied successfully."
|
127 |
msgstr "Tabela \"%s\" copiada com sucesso."
|
128 |
|
129 |
+
#: wp-table-reloaded-admin.php:546
|
130 |
#, php-format
|
131 |
+
#@ wp-table-reloaded
|
132 |
msgid "Table \"%s\" deleted successfully."
|
133 |
msgstr "Tabela \"%s\" excluída com sucesso."
|
134 |
|
135 |
+
#: wp-table-reloaded-admin.php:557
|
136 |
+
#@ wp-table-reloaded
|
137 |
msgid "Row deleted successfully."
|
138 |
msgstr "Linha excluída com sucesso."
|
139 |
|
140 |
+
#: wp-table-reloaded-admin.php:571
|
141 |
+
#@ wp-table-reloaded
|
142 |
msgid "Column deleted successfully."
|
143 |
msgstr "Coluna excluída com sucesso."
|
144 |
|
145 |
+
#: wp-table-reloaded-admin.php:588
|
146 |
+
#@ wp-table-reloaded
|
147 |
msgid "Delete failed."
|
148 |
msgstr "A exclusão falhou."
|
149 |
|
150 |
+
#: wp-table-reloaded-admin.php:614
|
151 |
+
#@ wp-table-reloaded
|
152 |
msgid "Row inserted successfully."
|
153 |
msgstr "Linha inserida com sucesso."
|
154 |
|
155 |
+
#: wp-table-reloaded-admin.php:624
|
156 |
+
#@ wp-table-reloaded
|
157 |
msgid "Column inserted successfully."
|
158 |
msgstr "Coluna inserida com sucesso."
|
159 |
|
160 |
+
#: wp-table-reloaded-admin.php:627
|
161 |
+
#@ wp-table-reloaded
|
162 |
msgid "Insert failed."
|
163 |
msgstr "A inserção falhou."
|
164 |
|
165 |
+
#: wp-table-reloaded-admin.php:655
|
166 |
+
#: wp-table-reloaded-admin.php:664
|
167 |
+
#: wp-table-reloaded-admin.php:674
|
168 |
+
#@ wp-table-reloaded
|
169 |
msgid "Imported Table"
|
170 |
msgstr "Tabela Importada"
|
171 |
|
172 |
+
#: wp-table-reloaded-admin.php:665
|
173 |
+
#@ wp-table-reloaded
|
174 |
msgid "via form"
|
175 |
msgstr "via formulário"
|
176 |
|
177 |
+
#: wp-table-reloaded-admin.php:701
|
178 |
+
#: wp-table-reloaded-admin.php:739
|
179 |
+
#@ wp-table-reloaded
|
180 |
msgid "Table imported successfully."
|
181 |
msgstr "Tabela importada com sucesso."
|
182 |
|
183 |
+
#: wp-table-reloaded-admin.php:685
|
184 |
+
#: wp-table-reloaded-admin.php:716
|
185 |
+
#@ wp-table-reloaded
|
186 |
msgid "Table could not be imported."
|
187 |
msgstr "Não foi possível importar a tabela."
|
188 |
|
189 |
+
#: wp-table-reloaded-admin.php:766
|
190 |
#, php-format
|
191 |
+
#@ wp-table-reloaded
|
192 |
msgid "Table \"%s\" exported successfully."
|
193 |
msgstr "Tabela \"%s\" exportada com sucesso."
|
194 |
|
195 |
+
#: wp-table-reloaded-admin.php:797
|
196 |
+
#@ wp-table-reloaded
|
197 |
msgid "Options saved successfully."
|
198 |
msgstr "Opções salvas com sucesso."
|
199 |
|
200 |
+
#: wp-table-reloaded-admin.php:815
|
201 |
+
#: wp-table-reloaded-admin.php:958
|
202 |
+
#@ wp-table-reloaded
|
203 |
msgid "WP-Table Reloaded"
|
204 |
msgstr "WP-Table Reloaded"
|
205 |
|
206 |
+
#: wp-table-reloaded-admin.php:816
|
207 |
+
#: wp-table-reloaded-admin.php:1967
|
208 |
+
#@ wp-table-reloaded
|
209 |
msgid "Plugin deactivated successfully."
|
210 |
msgstr "Plugin desativado com sucesso."
|
211 |
|
212 |
+
#: wp-table-reloaded-admin.php:817
|
213 |
+
#: wp-table-reloaded-admin.php:1967
|
214 |
+
#@ wp-table-reloaded
|
215 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
216 |
msgstr "Todas as tabelas, informações e opções foram excluídas. Você já pode excluir a pasta deste plugin da pasta de plugins do WordPress."
|
217 |
|
218 |
+
#: wp-table-reloaded-admin.php:833
|
219 |
+
#: wp-table-reloaded-admin.php:958
|
220 |
+
#@ wp-table-reloaded
|
221 |
msgid "List of Tables"
|
222 |
msgstr "Lista de Tabelas"
|
223 |
|
224 |
+
#: wp-table-reloaded-admin.php:836
|
225 |
+
#: wp-table-reloaded-admin.php:961
|
226 |
+
#@ wp-table-reloaded
|
227 |
msgid "This is a list of all available tables."
|
228 |
msgstr "Esta é uma lista de todas as tabelas disponíveis."
|
229 |
|
230 |
+
#: wp-table-reloaded-admin.php:836
|
231 |
+
#@ wp-table-reloaded
|
232 |
msgid "You may insert a table into a post or page here."
|
233 |
msgstr "Você pode inserir uma tabela em um artigo (post) ou página aqui."
|
234 |
|
235 |
+
#: wp-table-reloaded-admin.php:837
|
236 |
+
#@ wp-table-reloaded
|
237 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
238 |
msgstr "Clique no link \"Insert\" depois da tabela escolhida e o código correspondente será inserido no seu editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
239 |
|
240 |
+
#: wp-table-reloaded-admin.php:846
|
241 |
+
#: wp-table-reloaded-admin.php:854
|
242 |
+
#: wp-table-reloaded-admin.php:973
|
243 |
+
#: wp-table-reloaded-admin.php:982
|
244 |
+
#: wp-table-reloaded-admin.php:1567
|
245 |
+
#: wp-table-reloaded-admin.php:1576
|
246 |
+
#@ wp-table-reloaded
|
247 |
msgid "ID"
|
248 |
msgstr "ID"
|
249 |
|
250 |
+
#: wp-table-reloaded-admin.php:847
|
251 |
+
#: wp-table-reloaded-admin.php:855
|
252 |
+
#: wp-table-reloaded-admin.php:974
|
253 |
+
#: wp-table-reloaded-admin.php:983
|
254 |
+
#: wp-table-reloaded-admin.php:1067
|
255 |
+
#: wp-table-reloaded-admin.php:1121
|
256 |
+
#: wp-table-reloaded-admin.php:1568
|
257 |
+
#: wp-table-reloaded-admin.php:1577
|
258 |
+
#@ wp-table-reloaded
|
259 |
msgid "Table Name"
|
260 |
msgstr "Nome da Tabela"
|
261 |
|
262 |
+
#: wp-table-reloaded-admin.php:848
|
263 |
+
#: wp-table-reloaded-admin.php:856
|
264 |
+
#: wp-table-reloaded-admin.php:975
|
265 |
+
#: wp-table-reloaded-admin.php:984
|
266 |
+
#: wp-table-reloaded-admin.php:1071
|
267 |
+
#: wp-table-reloaded-admin.php:1125
|
268 |
+
#: wp-table-reloaded-admin.php:1569
|
269 |
+
#: wp-table-reloaded-admin.php:1578
|
270 |
+
#@ wp-table-reloaded
|
271 |
msgid "Description"
|
272 |
msgstr "Descrição"
|
273 |
|
274 |
+
#: wp-table-reloaded-admin.php:849
|
275 |
+
#: wp-table-reloaded-admin.php:857
|
276 |
+
#: wp-table-reloaded-admin.php:1414
|
277 |
+
#: wp-table-reloaded-admin.php:1570
|
278 |
+
#: wp-table-reloaded-admin.php:1579
|
279 |
+
#@ wp-table-reloaded
|
280 |
msgid "Action"
|
281 |
msgstr "Ação"
|
282 |
|
283 |
+
#: wp-table-reloaded-admin.php:877
|
284 |
+
#@ wp-table-reloaded
|
285 |
msgid "Insert"
|
286 |
msgstr "Inserir"
|
287 |
|
288 |
+
#: wp-table-reloaded-admin.php:886
|
289 |
+
#: wp-table-reloaded-admin.php:1045
|
290 |
+
#: wp-table-reloaded-admin.php:1699
|
291 |
+
#@ wp-table-reloaded
|
292 |
msgid "No tables found."
|
293 |
msgstr "Nenhuma tabela foi encontrada."
|
294 |
|
295 |
+
#: wp-table-reloaded-admin.php:961
|
296 |
+
#@ wp-table-reloaded
|
297 |
msgid "You may add, edit, copy or delete tables here."
|
298 |
msgstr "Você pode adicionar, editar, copiar ou excluir tabelas aqui."
|
299 |
|
300 |
+
#: wp-table-reloaded-admin.php:962
|
301 |
+
#@ wp-table-reloaded
|
302 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
303 |
msgstr "Se você quiser mostrar uma tabela em suas páginas, artigos (posts) ou widgets de texto, use o código <strong>[table id=<the_table_ID> /]</strong> ou clique no botão \"Table\" na barra de ferramentas do seu editor."
|
304 |
|
305 |
+
#: wp-table-reloaded-admin.php:1017
|
306 |
+
#@ wp-table-reloaded
|
307 |
msgid "Edit"
|
308 |
msgstr "Editar"
|
309 |
|
310 |
+
#: wp-table-reloaded-admin.php:1020
|
311 |
+
#@ wp-table-reloaded
|
312 |
msgid "Copy"
|
313 |
msgstr "Copiar"
|
314 |
|
315 |
+
#: wp-table-reloaded-admin.php:1021
|
316 |
+
#@ wp-table-reloaded
|
317 |
msgid "Export"
|
318 |
msgstr "Exportar"
|
319 |
|
320 |
+
#: wp-table-reloaded-admin.php:1022
|
321 |
+
#@ wp-table-reloaded
|
322 |
msgid "Delete"
|
323 |
msgstr "Excluir"
|
324 |
|
325 |
+
#: wp-table-reloaded-admin.php:1036
|
326 |
+
#: wp-table-reloaded-admin.php:1608
|
327 |
+
#@ wp-table-reloaded
|
328 |
msgid "Bulk actions:"
|
329 |
msgstr "Ações em lote:"
|
330 |
|
331 |
+
#: wp-table-reloaded-admin.php:1036
|
332 |
+
#@ wp-table-reloaded
|
333 |
msgid "Copy Tables"
|
334 |
msgstr "Copiar Tabelas"
|
335 |
|
336 |
+
#: wp-table-reloaded-admin.php:1036
|
337 |
+
#@ wp-table-reloaded
|
338 |
msgid "Delete Tables"
|
339 |
msgstr "Excluir Tabelas"
|
340 |
|
341 |
+
#: wp-table-reloaded-admin.php:1045
|
342 |
+
#: wp-table-reloaded-admin.php:1699
|
343 |
#, php-format
|
344 |
+
#@ wp-table-reloaded
|
345 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
346 |
msgstr "Você deve <a href=\"%s\">adicionar</a> ou <a href=\"%s\">importar</a> uma!"
|
347 |
|
348 |
+
#: wp-table-reloaded-admin.php:1055
|
349 |
+
#: wp-table-reloaded-admin.php:1902
|
350 |
+
#@ wp-table-reloaded
|
351 |
msgid "Add new Table"
|
352 |
msgstr "Adicionar nova Tabela"
|
353 |
|
354 |
+
#: wp-table-reloaded-admin.php:1068
|
355 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
356 |
msgid "Enter Table Name"
|
357 |
msgstr "Digite o Nome da Tabela"
|
358 |
|
359 |
+
#: wp-table-reloaded-admin.php:1072
|
360 |
+
#@ wp-table-reloaded
|
361 |
msgid "Enter Description"
|
362 |
msgstr "Digite a Descrição"
|
363 |
|
364 |
+
#: wp-table-reloaded-admin.php:1075
|
365 |
+
#@ wp-table-reloaded
|
366 |
msgid "Number of Rows"
|
367 |
msgstr "Número de Linhas"
|
368 |
|
369 |
+
#: wp-table-reloaded-admin.php:1079
|
370 |
+
#@ wp-table-reloaded
|
371 |
msgid "Number of Columns"
|
372 |
msgstr "Número de Colunas"
|
373 |
|
374 |
+
#: wp-table-reloaded-admin.php:1086
|
375 |
+
#@ wp-table-reloaded
|
376 |
msgid "Add Table"
|
377 |
msgstr "Adicionar Tabela"
|
378 |
|
379 |
+
#: wp-table-reloaded-admin.php:1105
|
380 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
|
|
381 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
382 |
msgstr "Você pode editar o conteúdo da tabela aqui. Também é possível inserir e excluir colunas e linhas."
|
383 |
|
384 |
+
#: wp-table-reloaded-admin.php:1113
|
385 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
|
|
386 |
msgid "Table Information"
|
387 |
msgstr "Informações da Tabela"
|
388 |
|
389 |
+
#: wp-table-reloaded-admin.php:1139
|
390 |
+
#: wp-table-reloaded-admin.php:1353
|
391 |
+
#: wp-table-reloaded-admin.php:1393
|
392 |
+
#: wp-table-reloaded-admin.php:1444
|
393 |
+
#@ wp-table-reloaded
|
394 |
msgid "Update Changes"
|
395 |
msgstr "Atualizar Mudanças"
|
396 |
|
397 |
+
#: wp-table-reloaded-admin.php:1140
|
398 |
+
#: wp-table-reloaded-admin.php:1354
|
399 |
+
#: wp-table-reloaded-admin.php:1394
|
400 |
+
#: wp-table-reloaded-admin.php:1445
|
401 |
+
#@ wp-table-reloaded
|
402 |
msgid "Save and go back"
|
403 |
msgstr "Salvar e voltar"
|
404 |
|
405 |
+
#: wp-table-reloaded-admin.php:1143
|
406 |
+
#: wp-table-reloaded-admin.php:1357
|
407 |
+
#: wp-table-reloaded-admin.php:1397
|
408 |
+
#: wp-table-reloaded-admin.php:1448
|
409 |
+
#@ wp-table-reloaded
|
410 |
msgid "Cancel"
|
411 |
msgstr "Cancelar"
|
412 |
|
413 |
+
#: wp-table-reloaded-admin.php:1149
|
414 |
+
#@ wp-table-reloaded
|
415 |
msgid "Table Contents"
|
416 |
msgstr "Conteúdo da Tabela"
|
417 |
|
418 |
+
#: wp-table-reloaded-admin.php:1149
|
419 |
+
#: wp-table-reloaded-admin.php:1246
|
420 |
+
#: wp-table-reloaded-admin.php:1362
|
421 |
+
#: wp-table-reloaded-admin.php:1402
|
422 |
+
#: wp-table-reloaded-admin.php:1750
|
423 |
+
#: wp-table-reloaded-admin.php:1852
|
424 |
+
#@ wp-table-reloaded
|
425 |
msgid "Hide"
|
426 |
msgstr "Esconder"
|
427 |
|
428 |
+
#: wp-table-reloaded-admin.php:1149
|
429 |
+
#: wp-table-reloaded-admin.php:1246
|
430 |
+
#: wp-table-reloaded-admin.php:1362
|
431 |
+
#: wp-table-reloaded-admin.php:1402
|
432 |
+
#: wp-table-reloaded-admin.php:1750
|
433 |
+
#: wp-table-reloaded-admin.php:1852
|
434 |
+
#@ wp-table-reloaded
|
435 |
msgid "Expand"
|
436 |
msgstr "Expandir"
|
437 |
|
438 |
+
#: wp-table-reloaded-admin.php:1190
|
439 |
+
#@ wp-table-reloaded
|
440 |
msgid "Insert Row"
|
441 |
msgstr "Adicionar Linha"
|
442 |
|
443 |
+
#: wp-table-reloaded-admin.php:1192
|
444 |
+
#@ wp-table-reloaded
|
445 |
msgid "Delete Row"
|
446 |
msgstr "Excluir Linha"
|
447 |
|
448 |
+
#: wp-table-reloaded-admin.php:1206
|
449 |
+
#@ wp-table-reloaded
|
450 |
msgid "Insert Column"
|
451 |
msgstr "Inserir Coluna"
|
452 |
|
453 |
+
#: wp-table-reloaded-admin.php:1208
|
454 |
+
#@ wp-table-reloaded
|
455 |
msgid "Delete Column"
|
456 |
msgstr "Excluir Coluna"
|
457 |
|
458 |
+
#: wp-table-reloaded-admin.php:1246
|
459 |
+
#@ wp-table-reloaded
|
460 |
msgid "Data Manipulation"
|
461 |
msgstr "Manipulação de Conteúdo"
|
462 |
|
463 |
+
#: wp-table-reloaded-admin.php:1260
|
464 |
#, php-format
|
465 |
+
#@ wp-table-reloaded
|
466 |
msgid "Swap rows %s and %s"
|
467 |
msgstr "Trocar linhas %s e %s"
|
468 |
|
469 |
+
#: wp-table-reloaded-admin.php:1262
|
470 |
+
#: wp-table-reloaded-admin.php:1280
|
471 |
+
#@ wp-table-reloaded
|
472 |
msgid "Swap"
|
473 |
msgstr "Trocar"
|
474 |
|
475 |
+
#: wp-table-reloaded-admin.php:1278
|
476 |
#, php-format
|
477 |
+
#@ wp-table-reloaded
|
478 |
msgid "Swap columns %s and %s"
|
479 |
msgstr "Trocar colunas %s e %s"
|
480 |
|
481 |
+
#: wp-table-reloaded-admin.php:1327
|
482 |
+
#@ wp-table-reloaded
|
483 |
msgid "Insert Link"
|
484 |
msgstr "Inserir Link"
|
485 |
|
486 |
+
#: wp-table-reloaded-admin.php:1328
|
487 |
+
#@ wp-table-reloaded
|
488 |
msgid "Insert Image"
|
489 |
msgstr "Inserir Imagem"
|
490 |
|
491 |
+
#: wp-table-reloaded-admin.php:1338
|
492 |
+
#@ wp-table-reloaded
|
493 |
msgid "ascending"
|
494 |
msgstr "crescente"
|
495 |
|
496 |
+
#: wp-table-reloaded-admin.php:1339
|
497 |
+
#@ wp-table-reloaded
|
498 |
msgid "descending"
|
499 |
msgstr "decrescente"
|
500 |
|
501 |
+
#: wp-table-reloaded-admin.php:1342
|
502 |
#, php-format
|
503 |
+
#@ wp-table-reloaded
|
504 |
msgid "Sort table by column %s in %s order"
|
505 |
msgstr "Ordenar tabela pela coluna %s em ordem %s"
|
506 |
|
507 |
+
#: wp-table-reloaded-admin.php:1345
|
508 |
+
#@ wp-table-reloaded
|
509 |
msgid "Sort"
|
510 |
msgstr "Ordenar"
|
511 |
|
512 |
+
#: wp-table-reloaded-admin.php:1362
|
513 |
+
#@ wp-table-reloaded
|
514 |
msgid "Table Settings"
|
515 |
msgstr "Configurações da Tabela"
|
516 |
|
517 |
+
#: wp-table-reloaded-admin.php:1364
|
518 |
+
#@ wp-table-reloaded
|
519 |
msgid "These settings will only be used for this table."
|
520 |
msgstr "Estas configurações serão utilizadas somente para esta tabela."
|
521 |
|
522 |
+
#: wp-table-reloaded-admin.php:1367
|
523 |
+
#@ wp-table-reloaded
|
524 |
msgid "Alternating row colors"
|
525 |
msgstr "Alternar cores das linhas"
|
526 |
|
527 |
+
#: wp-table-reloaded-admin.php:1368
|
528 |
+
#@ wp-table-reloaded
|
529 |
msgid "Every second row will have an alternating background color."
|
530 |
msgstr "A segunda linha de cada duas terá uma cor de fundo diferente."
|
531 |
|
532 |
+
#: wp-table-reloaded-admin.php:1371
|
533 |
+
#@ wp-table-reloaded
|
534 |
msgid "Use Table Headline"
|
535 |
msgstr "Usar Cabeçalho da Tabela"
|
536 |
|
537 |
+
#: wp-table-reloaded-admin.php:1375
|
538 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
539 |
msgid "Print Table Name"
|
540 |
msgstr "Mostrar o Nome da Tabela"
|
541 |
|
542 |
+
#: wp-table-reloaded-admin.php:1379
|
543 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
544 |
msgid "Print Table Description"
|
545 |
msgstr "Mostrar Descrição da Tabela"
|
546 |
|
547 |
+
#: wp-table-reloaded-admin.php:1380
|
548 |
+
#@ wp-table-reloaded
|
549 |
msgid "The Table Description will be written under the table."
|
550 |
msgstr "A Descrição será escrita embaixo da tabela."
|
551 |
|
552 |
+
#: wp-table-reloaded-admin.php:1383
|
553 |
+
#@ wp-table-reloaded
|
554 |
msgid "Use Tablesorter"
|
555 |
msgstr "Usar o Organizador de Tabela"
|
556 |
|
557 |
+
#: wp-table-reloaded-admin.php:1453
|
558 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
559 |
msgid "Other actions"
|
560 |
msgstr "Outras ações"
|
561 |
|
562 |
+
#: wp-table-reloaded-admin.php:1456
|
563 |
+
#@ wp-table-reloaded
|
564 |
msgid "Delete Table"
|
565 |
msgstr "Excluir Tabela"
|
566 |
|
567 |
+
#: wp-table-reloaded-admin.php:1457
|
568 |
+
#: wp-table-reloaded-admin.php:1688
|
569 |
+
#@ wp-table-reloaded
|
570 |
msgid "Export Table"
|
571 |
msgstr "Exportar Tabela"
|
572 |
|
573 |
+
#: wp-table-reloaded-admin.php:1469
|
574 |
+
#: wp-table-reloaded-admin.php:1903
|
575 |
+
#@ wp-table-reloaded
|
576 |
msgid "Import a Table"
|
577 |
msgstr "Importar uma Tabela"
|
578 |
|
579 |
+
#: wp-table-reloaded-admin.php:1480
|
580 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
581 |
msgid "Select Import Format"
|
582 |
msgstr "Selecionar o Formato de Importação"
|
583 |
|
584 |
+
#: wp-table-reloaded-admin.php:1523
|
585 |
+
#@ wp-table-reloaded
|
586 |
msgid "Select File with Table to Import"
|
587 |
msgstr "Selecionar o Arquivo com a Tabela a ser Importada"
|
588 |
|
589 |
+
#: wp-table-reloaded-admin.php:1535
|
590 |
+
#@ wp-table-reloaded
|
591 |
msgid "Paste data with Table to Import"
|
592 |
msgstr "Colar conteúdo com a Tabela para Importar"
|
593 |
|
594 |
+
#: wp-table-reloaded-admin.php:1541
|
595 |
+
#@ wp-table-reloaded
|
596 |
msgid "Import Table"
|
597 |
msgstr "Importar Tabela"
|
598 |
|
599 |
+
#: wp-table-reloaded-admin.php:1554
|
600 |
+
#@ wp-table-reloaded
|
601 |
msgid "Import from original wp-Table plugin"
|
602 |
msgstr "Importar do plugin wp-Table original"
|
603 |
|
604 |
+
#: wp-table-reloaded-admin.php:1600
|
605 |
+
#@ wp-table-reloaded
|
606 |
msgid "Import"
|
607 |
msgstr "Importar"
|
608 |
|
609 |
+
#: wp-table-reloaded-admin.php:1608
|
610 |
+
#@ wp-table-reloaded
|
611 |
msgid "Import Tables"
|
612 |
msgstr "Importar Tabelas"
|
613 |
|
614 |
+
#: wp-table-reloaded-admin.php:1614
|
615 |
+
#@ wp-table-reloaded
|
616 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
617 |
msgstr "O plugin wp-Table, de Alex Rabe, parece estar instalado, mas nenhuma tabela foi encontrada."
|
618 |
|
619 |
+
#: wp-table-reloaded-admin.php:1633
|
620 |
+
#: wp-table-reloaded-admin.php:1904
|
621 |
+
#@ wp-table-reloaded
|
622 |
msgid "Export a Table"
|
623 |
msgstr "Exportar uma Tabela"
|
624 |
|
625 |
+
#: wp-table-reloaded-admin.php:1647
|
626 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
627 |
msgid "Select Table to Export"
|
628 |
msgstr "Selecionar Tabela para Exportar"
|
629 |
|
630 |
+
#: wp-table-reloaded-admin.php:1662
|
631 |
+
#@ wp-table-reloaded
|
632 |
msgid "Select Export Format"
|
633 |
msgstr "Selecionar Formato para Exportação"
|
634 |
|
635 |
+
#: wp-table-reloaded-admin.php:1672
|
636 |
+
#@ wp-table-reloaded
|
637 |
msgid "Select Delimiter to use"
|
638 |
msgstr "Selecionar Delimitador para usar"
|
639 |
|
640 |
+
#: wp-table-reloaded-admin.php:1679
|
641 |
+
#@ wp-table-reloaded
|
642 |
msgid "<small>(Only needed for CSV export.)</small>"
|
643 |
msgstr "<small>(Necessário somente para exportar pra CSV.)</small>"
|
644 |
|
645 |
+
#: wp-table-reloaded-admin.php:1682
|
646 |
+
#@ wp-table-reloaded
|
647 |
msgid "Download file"
|
648 |
msgstr "Fazer Download do arquivo"
|
649 |
|
650 |
+
#: wp-table-reloaded-admin.php:1683
|
651 |
+
#@ wp-table-reloaded
|
652 |
msgid "Yes, I want to download the export file."
|
653 |
msgstr "Sim, eu quero fazer o download do arquivo exportado."
|
654 |
|
655 |
+
#: wp-table-reloaded-admin.php:1708
|
656 |
+
#@ wp-table-reloaded
|
657 |
msgid "General Plugin Options"
|
658 |
msgstr "Opções Gerais do Plugin"
|
659 |
|
660 |
+
#: wp-table-reloaded-admin.php:1720
|
661 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
662 |
msgid "Frontend Options"
|
663 |
msgstr "Opções de Interface"
|
664 |
|
665 |
+
#: wp-table-reloaded-admin.php:1724
|
666 |
+
#@ wp-table-reloaded
|
667 |
msgid "Enable Tablesorter-JavaScript?"
|
668 |
msgstr "Habilitar Tablesorter-JavaScript?"
|
669 |
|
670 |
+
#: wp-table-reloaded-admin.php:1725
|
671 |
+
#@ wp-table-reloaded
|
672 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
673 |
msgstr "Sim, habilitar o <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Ele pode ser usado para deixar as tabelas \"organizáveis\" (pode ser ativado para cada tabela separadamente nas suas opções)."
|
674 |
|
675 |
+
#: wp-table-reloaded-admin.php:1728
|
676 |
+
#@ wp-table-reloaded
|
677 |
msgid "Add custom CSS?"
|
678 |
msgstr "Adicionar CSS personalizado?"
|
679 |
|
680 |
+
#: wp-table-reloaded-admin.php:1735
|
681 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
682 |
msgid "Enter custom CSS"
|
683 |
msgstr "Digitar CSS personalizado"
|
684 |
|
685 |
+
#: wp-table-reloaded-admin.php:1741
|
|
|
|
|
|
|
|
|
|
|
686 |
#, php-format
|
687 |
+
#@ wp-table-reloaded
|
688 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
689 |
msgstr "Veja o <a href=\"%s\">site do plugin</a> para exemplos de estilo ou use um desses: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
690 |
|
691 |
+
#: wp-table-reloaded-admin.php:1741
|
692 |
+
#@ wp-table-reloaded
|
693 |
msgid "Just copy the contents of a file into the textarea."
|
694 |
msgstr "Simplesmente copia o conteúdo de um arquivo pra dentro do textarea."
|
695 |
|
696 |
+
#: wp-table-reloaded-admin.php:1758
|
697 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
698 |
msgid "Uninstall Plugin upon Deactivation?"
|
699 |
msgstr "Desinstalar o Plugin após a Desativação?"
|
700 |
|
701 |
+
#: wp-table-reloaded-admin.php:1759
|
702 |
+
#@ wp-table-reloaded
|
703 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
704 |
msgstr "Sim, desinstalar tudo quando o plugin for desativado. Atenção: Você só deve marcar essa opção exatamente antes de desativar o plugin na página de Plugins do WordPress."
|
705 |
|
706 |
+
#: wp-table-reloaded-admin.php:1772
|
707 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
708 |
msgid "Save Options"
|
709 |
msgstr "Salvar Opções"
|
710 |
|
711 |
+
#: wp-table-reloaded-admin.php:1778
|
712 |
+
#@ wp-table-reloaded
|
713 |
msgid "Manually Uninstall Plugin"
|
714 |
msgstr "Desinstalar Plugin Manualmente"
|
715 |
|
716 |
+
#: wp-table-reloaded-admin.php:1783
|
717 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
718 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
719 |
msgstr "Desinstalar o Plugin WP-Table Reloaded"
|
720 |
|
721 |
+
#: wp-table-reloaded-admin.php:1800
|
722 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
723 |
msgid "Plugin Purpose"
|
724 |
msgstr "Proposta do Plugin"
|
725 |
|
726 |
+
#: wp-table-reloaded-admin.php:1802
|
727 |
+
#@ wp-table-reloaded
|
728 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
729 |
msgstr "Este plugin permite à você criar e administrar tabelas na área de administrador do WordPress."
|
730 |
|
731 |
+
#: wp-table-reloaded-admin.php:1802
|
732 |
+
#@ wp-table-reloaded
|
733 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
734 |
msgstr "Estas tabelas podem conter texto, números e até HTML (por exemplo, incluir imagens ou links)."
|
735 |
|
736 |
+
#: wp-table-reloaded-admin.php:1802
|
737 |
+
#@ wp-table-reloaded
|
738 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
739 |
msgstr "Você pode, então, mostrar as tabelas nos seus artigos (posts), em suas páginas ou nos widgets de texto, usando o código gerado."
|
740 |
|
741 |
+
#: wp-table-reloaded-admin.php:1802
|
742 |
+
#@ wp-table-reloaded
|
743 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
744 |
msgstr "Se você quiser mostrar suas tabelas em qualquer outro lugar no seu tema, você pode usar uma \"template tag function\"."
|
745 |
|
746 |
+
#: wp-table-reloaded-admin.php:1807
|
747 |
+
#@ wp-table-reloaded
|
748 |
msgid "Usage"
|
749 |
msgstr "Uso"
|
750 |
|
751 |
+
#: wp-table-reloaded-admin.php:1809
|
752 |
+
#@ wp-table-reloaded
|
753 |
msgid "At first you should add or import a table."
|
754 |
msgstr "Primeiro você deve adicionar ou importar uma tabela."
|
755 |
|
756 |
+
#: wp-table-reloaded-admin.php:1809
|
757 |
+
#@ wp-table-reloaded
|
758 |
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."
|
759 |
msgstr "Isso quer dizer que ou você deixa o plugin criar uma tabela vazia pra você, ou você deve importar uma tabela existente de um arquivo CSV, XML ou HTML."
|
760 |
|
761 |
+
#: wp-table-reloaded-admin.php:1809
|
762 |
+
#@ wp-table-reloaded
|
763 |
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."
|
764 |
msgstr "Depois disso você poderá editar o conteúdo ou mudar a estrutura da tabela (por exemplo, inserindo ou excluindo linhas e colunas, trocando elas de lugar ou organizando toda essa informação) e também selecionar opções especificamente para cada tabela, alternando as cores das linhas ou escolhendo se deseja ou não mostrar o nome da tabela e sua descrição."
|
765 |
|
766 |
+
#: wp-table-reloaded-admin.php:1809
|
767 |
+
#@ wp-table-reloaded
|
768 |
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."
|
769 |
msgstr "Para adicionar facilmente um link ou imagem em uma célula, uso o botão específico. Ele irá pedir um endereço URL e um título, então você poderá clicar numa célula e o HTML correspondente será incluído pra você."
|
770 |
|
771 |
+
#: wp-table-reloaded-admin.php:1809
|
772 |
+
#@ wp-table-reloaded
|
773 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
774 |
msgstr "Para incluir a tabela nos seus artigos (posts), páginas ou widgets de texto, escreva o código [table id=<table-id>] onde quiser que a tabela apareça."
|
775 |
|
776 |
+
#: wp-table-reloaded-admin.php:1809
|
777 |
+
#@ wp-table-reloaded
|
778 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
779 |
msgstr "Você também pode selecionar a tabela desejada de uma lista (depois de clicar no botão \"Tabela\" na barra de ferramentas do editor) e o código correspondente será inserido pra você."
|
780 |
|
781 |
+
#: wp-table-reloaded-admin.php:1809
|
782 |
+
#@ wp-table-reloaded
|
783 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
784 |
msgstr "Você também pode personalizar a aparência da sua tabela via CSS. Arquivos de exemplo estão disponíveis no site do plugin. Toda tabela possui a classe CSS \"wp-table-reloaded\". Cada tabela também possui a classe \"wp-table-reloaded-<table-id>\"."
|
785 |
|
786 |
+
#: wp-table-reloaded-admin.php:1809
|
787 |
+
#@ wp-table-reloaded
|
788 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
789 |
msgstr "Você também pode usar as classes \"column-<number>\" e \"row-<number>\" para personalizar a aparência das linhas e colunas individualmente. Use-as para personalizar a largura das colunas e o alinhamento do texto, por exemplo."
|
790 |
|
791 |
+
#: wp-table-reloaded-admin.php:1814
|
792 |
+
#@ wp-table-reloaded
|
793 |
msgid "More Information and Documentation"
|
794 |
msgstr "Mais Informações e Documentação"
|
795 |
|
796 |
+
#: wp-table-reloaded-admin.php:1816
|
797 |
+
#@ wp-table-reloaded
|
798 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
799 |
msgstr "Mais informações podem ser encontradas no <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site do plugin</a> ou na sua página no <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Diretório de Plugins do WordPress</a>."
|
800 |
|
801 |
+
#: wp-table-reloaded-admin.php:1816
|
802 |
+
#: wp-table-reloaded-admin.php:1980
|
803 |
+
#@ wp-table-reloaded
|
804 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
805 |
msgstr "Veja a <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentação</a> ou descubra como conseguir <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">suporte</a> (em inglês)."
|
806 |
|
807 |
+
#: wp-table-reloaded-admin.php:1821
|
808 |
+
#@ wp-table-reloaded
|
809 |
msgid "Author and Licence"
|
810 |
msgstr "Autor e Licensa"
|
811 |
|
812 |
+
#: wp-table-reloaded-admin.php:1823
|
813 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
815 |
msgstr "Doações e boas avaliações me dão ânimo para continuar desenvolvendo o plugin e oferecendo incontáveis horas de suporte. Qualquer quantia é muito bem-vinda! Obrigado!"
|
816 |
|
817 |
+
#: wp-table-reloaded-admin.php:1828
|
818 |
+
#@ wp-table-reloaded
|
819 |
msgid "Credits and Thanks"
|
820 |
msgstr "Créditos e Agradecimentos"
|
821 |
|
822 |
+
#: wp-table-reloaded-admin.php:1831
|
823 |
+
#@ wp-table-reloaded
|
824 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
825 |
msgstr "Meu muito obrigado para o <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> pelo plugin original \"wp-Table plugin\","
|
826 |
|
827 |
+
#: wp-table-reloaded-admin.php:1832
|
828 |
+
#@ wp-table-reloaded
|
829 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
830 |
msgstr "Christian Bach pelo <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
831 |
|
832 |
+
#: wp-table-reloaded-admin.php:1833
|
833 |
+
#@ wp-table-reloaded
|
834 |
msgid "the submitters of translations:"
|
835 |
msgstr "o pessoal que contriuiu com traduções:"
|
836 |
|
837 |
+
#: wp-table-reloaded-admin.php:1834
|
838 |
+
#@ wp-table-reloaded
|
839 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
840 |
msgstr "Albanian (obrigado <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
841 |
|
842 |
+
#: wp-table-reloaded-admin.php:1837
|
843 |
+
#@ wp-table-reloaded
|
844 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
845 |
msgstr "Czech (obrigado <a href=\"http://separatista.net/\">Separatista</a>)"
|
846 |
|
847 |
+
#: wp-table-reloaded-admin.php:1838
|
848 |
+
#@ wp-table-reloaded
|
849 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
850 |
msgstr "French (obrigado <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
851 |
|
852 |
+
#: wp-table-reloaded-admin.php:1841
|
853 |
+
#@ wp-table-reloaded
|
854 |
msgid "Polish (thanks to Alex Kortan)"
|
855 |
msgstr "Polish (obrigado Alex Kortan)"
|
856 |
|
857 |
+
#: wp-table-reloaded-admin.php:1842
|
858 |
+
#@ wp-table-reloaded
|
859 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
860 |
msgstr "Russian (obrigado <a href=\"http://wp-skins.info/\">Truper</a>)"
|
861 |
|
862 |
+
#: wp-table-reloaded-admin.php:1843
|
863 |
+
#@ wp-table-reloaded
|
864 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
865 |
msgstr "Spanish (obrigado <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> e <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
866 |
|
867 |
+
#: wp-table-reloaded-admin.php:1844
|
868 |
+
#@ wp-table-reloaded
|
869 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
870 |
msgstr "Swedish (obrigado <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
871 |
|
872 |
+
#: wp-table-reloaded-admin.php:1845
|
873 |
+
#@ wp-table-reloaded
|
874 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
875 |
msgstr "Turkish (obrigado <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
876 |
|
877 |
+
#: wp-table-reloaded-admin.php:1846
|
878 |
+
#@ wp-table-reloaded
|
879 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
880 |
msgstr "pra todos que doaram, contribuíram, ajudaram, apoiaram e também pra todos os usuários do plugin!"
|
881 |
|
882 |
+
#: wp-table-reloaded-admin.php:1852
|
883 |
+
#@ wp-table-reloaded
|
884 |
msgid "Debug and Version Information"
|
885 |
msgstr "Informações de Versão e Debug"
|
886 |
|
887 |
+
#: wp-table-reloaded-admin.php:1855
|
888 |
+
#@ wp-table-reloaded
|
889 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
890 |
msgstr "Você está usando as seguintes versões deste software. <strong>Por favor, forneça esta informação na hora de reportar bugs.</strong>"
|
891 |
|
892 |
+
#: wp-table-reloaded-admin.php:1901
|
893 |
+
#@ wp-table-reloaded
|
894 |
msgid "List Tables"
|
895 |
msgstr "Listar Tabelas"
|
896 |
|
897 |
+
#: wp-table-reloaded-admin.php:1906
|
898 |
+
#@ wp-table-reloaded
|
899 |
msgid "Plugin Options"
|
900 |
msgstr "Opções do Plugin"
|
901 |
|
902 |
+
#: wp-table-reloaded-admin.php:1907
|
903 |
+
#@ wp-table-reloaded
|
904 |
msgid "About the Plugin"
|
905 |
msgstr "Sobre o Plugin"
|
906 |
|
907 |
+
#: wp-table-reloaded-admin.php:1979
|
908 |
+
#@ wp-table-reloaded
|
909 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
910 |
msgstr "Mais informações podem ser encontradas no <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">site do plugin</a>."
|
911 |
|
912 |
+
#: wp-table-reloaded-admin.php:2260
|
913 |
+
#@ wp-table-reloaded
|
914 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
915 |
msgstr "Você deseja mesmo ativar isto? Você só deve fazer isso exatamente antes de desinstalar!"
|
916 |
|
917 |
+
#: wp-table-reloaded-admin.php:2261
|
918 |
+
#@ wp-table-reloaded
|
919 |
msgid "URL of link to insert"
|
920 |
msgstr "URL do link para inserir"
|
921 |
|
922 |
+
#: wp-table-reloaded-admin.php:2262
|
923 |
+
#@ wp-table-reloaded
|
924 |
msgid "Text of link"
|
925 |
msgstr "Texto do link"
|
926 |
|
927 |
+
#: wp-table-reloaded-admin.php:2263
|
928 |
+
#@ wp-table-reloaded
|
929 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
930 |
msgstr "Para inserir este link numa célula basta clicar nela após fechar esta janela."
|
931 |
|
932 |
+
#: wp-table-reloaded-admin.php:2265
|
933 |
+
#@ wp-table-reloaded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
msgid "Do you want to copy the selected tables?"
|
935 |
msgstr "Você deseja copiar as tabelas selecionadas?"
|
936 |
|
937 |
+
#: wp-table-reloaded-admin.php:2266
|
938 |
+
#@ wp-table-reloaded
|
939 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
940 |
msgstr "As tabelas selecionadas, e todo o seu conteúdo, serão excluídas. Você deseja mesmo excluí-las?"
|
941 |
|
942 |
+
#: wp-table-reloaded-admin.php:2267
|
943 |
+
#@ wp-table-reloaded
|
944 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
945 |
msgstr "Você deseja mesmo importar as tabelas selecionadas do plugin wp-Table?"
|
946 |
|
947 |
+
#: wp-table-reloaded-admin.php:2268
|
948 |
+
#@ wp-table-reloaded
|
949 |
msgid "Do you want to copy this table?"
|
950 |
msgstr "Você deseja copiar esta tabela?"
|
951 |
|
952 |
+
#: wp-table-reloaded-admin.php:2269
|
953 |
+
#@ wp-table-reloaded
|
954 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
955 |
msgstr "Todas as tabelas e seu conteúdo serão excluídos. Você deseja mesmo excluí-las?"
|
956 |
|
957 |
+
#: wp-table-reloaded-admin.php:2270
|
958 |
+
#@ wp-table-reloaded
|
959 |
msgid "Do you really want to delete this row?"
|
960 |
msgstr "Você deseja mesmo excluir esta linha?"
|
961 |
|
962 |
+
#: wp-table-reloaded-admin.php:2271
|
963 |
+
#@ wp-table-reloaded
|
964 |
msgid "Do you really want to delete this column?"
|
965 |
msgstr "Você deseja mesmo excluir esta coluna?"
|
966 |
|
967 |
+
#: wp-table-reloaded-admin.php:2272
|
968 |
+
#@ wp-table-reloaded
|
969 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
970 |
msgstr "Você deseja mesmo importar esta tabela do plugin wp-Table?"
|
971 |
|
972 |
+
#: wp-table-reloaded-admin.php:2273
|
973 |
+
#@ wp-table-reloaded
|
974 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
975 |
msgstr "Você deseja mesmo desinstalar o plugin e excluir todo o conteúdo?"
|
976 |
|
977 |
+
#: wp-table-reloaded-admin.php:2274
|
978 |
+
#@ wp-table-reloaded
|
979 |
msgid "Are you really sure?"
|
980 |
msgstr "Tem certeza?"
|
981 |
|
982 |
+
#: wp-table-reloaded-admin.php:2318
|
983 |
+
#@ wp-table-reloaded
|
984 |
msgid "Table"
|
985 |
msgstr "Tabela"
|
986 |
|
987 |
+
#: wp-table-reloaded-admin.php:236
|
988 |
#, php-format
|
989 |
+
#@ wp-table-reloaded
|
990 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
991 |
msgstr "Tabela editada com sucesso. Essa tabela agora tem o ID %s. Você precisará ajustar manualmente os códigos já existentes."
|
992 |
|
993 |
+
#: wp-table-reloaded-admin.php:238
|
994 |
#, php-format
|
995 |
+
#@ wp-table-reloaded
|
996 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
997 |
msgstr "O ID não pode ser alterado de %s para %s porque já existe uma Tabela com esse ID."
|
998 |
|
999 |
+
#: wp-table-reloaded-admin.php:346
|
1000 |
+
#@ wp-table-reloaded
|
1001 |
msgid "Row added successfully."
|
1002 |
msgid_plural "Rows added successfully."
|
1003 |
msgstr[0] "Linha adicionada com sucesso."
|
1004 |
msgstr[1] "Linhas adicionadas com sucesso."
|
1005 |
|
1006 |
+
#: wp-table-reloaded-admin.php:360
|
1007 |
+
#@ wp-table-reloaded
|
1008 |
msgid "Column added successfully."
|
1009 |
msgid_plural "Columns added successfully."
|
1010 |
msgstr[0] "Coluna adicionada com sucesso."
|
1011 |
msgstr[1] "Colunas adicionadasc om sucesso."
|
1012 |
|
1013 |
+
#: wp-table-reloaded-admin.php:656
|
1014 |
+
#: wp-table-reloaded-admin.php:675
|
1015 |
#, php-format
|
1016 |
+
#@ wp-table-reloaded
|
1017 |
msgid "from %s"
|
1018 |
msgstr "de %s"
|
1019 |
|
1020 |
+
#: wp-table-reloaded-admin.php:697
|
1021 |
#, php-format
|
1022 |
+
#@ wp-table-reloaded
|
1023 |
msgid "Table %s (%s) replaced successfully."
|
1024 |
msgstr "Tabela %s (%s) substituída com sucesso."
|
1025 |
|
1026 |
+
#: wp-table-reloaded-admin.php:1117
|
1027 |
+
#@ wp-table-reloaded
|
1028 |
msgid "Table ID"
|
1029 |
msgstr "ID da Tabela"
|
1030 |
|
1031 |
+
#: wp-table-reloaded-admin.php:1218
|
1032 |
#, php-format
|
1033 |
+
#@ wp-table-reloaded
|
1034 |
msgid "Add %s row(s)"
|
1035 |
msgstr "Adiciona %s linha(s)"
|
1036 |
|
1037 |
+
#: wp-table-reloaded-admin.php:1219
|
1038 |
+
#: wp-table-reloaded-admin.php:1221
|
1039 |
+
#: wp-table-reloaded-admin.php:1439
|
1040 |
+
#@ wp-table-reloaded
|
1041 |
msgid "Add"
|
1042 |
msgstr "Adicionar"
|
1043 |
|
1044 |
+
#: wp-table-reloaded-admin.php:1220
|
1045 |
#, php-format
|
1046 |
+
#@ wp-table-reloaded
|
1047 |
msgid "Add %s column(s)"
|
1048 |
msgstr "Adicionar %s coluna(s)"
|
1049 |
|
1050 |
+
#: wp-table-reloaded-admin.php:1491
|
1051 |
+
#@ wp-table-reloaded
|
1052 |
msgid "Add or Replace Table?"
|
1053 |
msgstr "Adicionar ou Substituir Tabela?"
|
1054 |
|
1055 |
+
#: wp-table-reloaded-admin.php:1493
|
1056 |
+
#@ wp-table-reloaded
|
1057 |
msgid "Add as new Table"
|
1058 |
msgstr "Adicionar como uma nova Tabela"
|
1059 |
|
1060 |
+
#: wp-table-reloaded-admin.php:1494
|
1061 |
+
#@ wp-table-reloaded
|
1062 |
msgid "Replace existing Table"
|
1063 |
msgstr "Substituir Tabela existente"
|
1064 |
|
1065 |
+
#: wp-table-reloaded-admin.php:1498
|
1066 |
+
#@ wp-table-reloaded
|
1067 |
msgid "Select existing Table to Replace"
|
1068 |
msgstr "Selecionar Tabela para Substituir"
|
1069 |
|
1070 |
+
#: wp-table-reloaded-admin.php:1514
|
1071 |
+
#@ wp-table-reloaded
|
1072 |
msgid "Select source for import"
|
1073 |
msgstr "Selecionar fonte para importação"
|
1074 |
|
1075 |
+
#: wp-table-reloaded-admin.php:1516
|
1076 |
+
#@ wp-table-reloaded
|
1077 |
msgid "File upload"
|
1078 |
msgstr "Upload de arquivo"
|
1079 |
|
1080 |
+
#: wp-table-reloaded-admin.php:1517
|
1081 |
+
#@ wp-table-reloaded
|
1082 |
msgid "URL"
|
1083 |
msgstr "URL"
|
1084 |
|
1085 |
+
#: wp-table-reloaded-admin.php:1518
|
1086 |
+
#@ wp-table-reloaded
|
1087 |
msgid "Manual input"
|
1088 |
msgstr "Inserção manual"
|
1089 |
|
1090 |
+
#: wp-table-reloaded-admin.php:1519
|
1091 |
+
#@ wp-table-reloaded
|
1092 |
msgid "File on server"
|
1093 |
msgstr "Arquivo no servidor"
|
1094 |
|
1095 |
+
#: wp-table-reloaded-admin.php:1527
|
1096 |
+
#@ wp-table-reloaded
|
1097 |
msgid "URL to import table from"
|
1098 |
msgstr "URL para importar Tabela"
|
1099 |
|
1100 |
+
#: wp-table-reloaded-admin.php:1531
|
1101 |
+
#@ wp-table-reloaded
|
1102 |
msgid "Path to file on server"
|
1103 |
msgstr "Caminho para o arquivo no servidor"
|
1104 |
|
1105 |
+
#: wp-table-reloaded-admin.php:1836
|
1106 |
+
#@ wp-table-reloaded
|
1107 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1108 |
msgstr "Brazilian Portugues (obrigado para <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1109 |
|
1110 |
+
#: wp-table-reloaded-admin.php:2275
|
1111 |
+
#@ wp-table-reloaded
|
1112 |
msgid "Do you really want to change the ID of the table?"
|
1113 |
msgstr "Você realmente deseja mudar o ID desta tabela?"
|
1114 |
|
1115 |
+
#: wp-table-reloaded-admin.php:179
|
1116 |
+
#, php-format
|
1117 |
+
#@ wp-table-reloaded
|
1118 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
1119 |
+
msgstr "Obrigado por usar este plugin! Você instalou WP-Table Reloaded mais de um mês atrás. Se funcionar e você estiver satisfeito com os resultados da gestão de suas %s tabelas, será que não vale, pelo menos, um dólar ou euro?"
|
1120 |
+
|
1121 |
+
#: wp-table-reloaded-admin.php:180
|
1122 |
+
#, php-format
|
1123 |
+
#@ wp-table-reloaded
|
1124 |
+
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!"
|
1125 |
+
msgstr "As <a href=\"%s\">doações</a> me ajudam a continuar mantendo o suporte e o desenvolvimento deste software <i>gratuito</i> - coisas para as quais eu gasto incontáveis horas do meu tempo livre! Obrigado!"
|
1126 |
+
|
1127 |
+
#: wp-table-reloaded-admin.php:181
|
1128 |
+
#@ wp-table-reloaded
|
1129 |
+
msgid "Sure, no problem!"
|
1130 |
+
msgstr "Claro, sem problemas!"
|
1131 |
+
|
1132 |
+
#: wp-table-reloaded-admin.php:182
|
1133 |
+
#@ wp-table-reloaded
|
1134 |
+
msgid "I already donated."
|
1135 |
+
msgstr "Eu já fiz uma doação."
|
1136 |
+
|
1137 |
+
#: wp-table-reloaded-admin.php:183
|
1138 |
+
#@ wp-table-reloaded
|
1139 |
+
msgid "No, thanks. Don't ask again."
|
1140 |
+
msgstr "Não, obrigado. Não pergunte novamente."
|
1141 |
+
|
1142 |
+
#: wp-table-reloaded-admin.php:381
|
1143 |
+
#@ wp-table-reloaded
|
1144 |
+
msgid "Row moved successfully."
|
1145 |
+
msgstr "Linha movida com sucesso."
|
1146 |
+
|
1147 |
+
#: wp-table-reloaded-admin.php:406
|
1148 |
+
#@ wp-table-reloaded
|
1149 |
+
msgid "Column moved successfully."
|
1150 |
+
msgstr "Coluna movida com sucesso."
|
1151 |
+
|
1152 |
+
#: wp-table-reloaded-admin.php:413
|
1153 |
+
#@ wp-table-reloaded
|
1154 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
1155 |
+
msgstr "Não foi possível inserir o Campo de Dados Personalizado porque você não digitou um nome."
|
1156 |
+
|
1157 |
+
#: wp-table-reloaded-admin.php:418
|
1158 |
+
#@ wp-table-reloaded
|
1159 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
1160 |
+
msgstr "Não foi possível adicionar o Campo de Dados Personalizado porque o nome que você escolheu está reservado por outra tabela de dados."
|
1161 |
+
|
1162 |
+
#: wp-table-reloaded-admin.php:424
|
1163 |
+
#@ wp-table-reloaded
|
1164 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
1165 |
+
msgstr "Não foi possível adicionar o Campo de Dados Personalizado porque o nome contém caracteres ilegais."
|
1166 |
+
|
1167 |
+
#: wp-table-reloaded-admin.php:428
|
1168 |
+
#@ wp-table-reloaded
|
1169 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
1170 |
+
msgstr "Não foi possível adicionar o Campo de Dados Personalizado porque já existe um Campo com este nome."
|
1171 |
+
|
1172 |
+
#: wp-table-reloaded-admin.php:434
|
1173 |
+
#@ wp-table-reloaded
|
1174 |
+
msgid "Custom Data Field added successfully."
|
1175 |
+
msgstr "Campo de Dados Personalizado adicionado com sucesso."
|
1176 |
+
|
1177 |
+
#: wp-table-reloaded-admin.php:580
|
1178 |
+
#@ wp-table-reloaded
|
1179 |
+
msgid "Custom Data Field deleted successfully."
|
1180 |
+
msgstr "Campo de Dados Personalizado apagado com sucesso."
|
1181 |
+
|
1182 |
+
#: wp-table-reloaded-admin.php:582
|
1183 |
+
#@ wp-table-reloaded
|
1184 |
+
msgid "Custom Data Field could not be deleted."
|
1185 |
+
msgstr "Campo de Dados Personalizado não pode ser apagado."
|
1186 |
+
|
1187 |
+
#: wp-table-reloaded-admin.php:906
|
1188 |
+
#, php-format
|
1189 |
+
#@ wp-table-reloaded
|
1190 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
1191 |
+
msgstr "Visualização da Tabela \"%s\" (ID %s)"
|
1192 |
+
|
1193 |
+
#: wp-table-reloaded-admin.php:909
|
1194 |
+
#@ wp-table-reloaded
|
1195 |
+
msgid "This is a preview of the table data."
|
1196 |
+
msgstr "Isso é uma prévia dos dados da tabela."
|
1197 |
+
|
1198 |
+
#: wp-table-reloaded-admin.php:910
|
1199 |
+
#@ wp-table-reloaded
|
1200 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
1201 |
+
msgstr "Por causa dos estilos CSS, a tabela pode parecer diferente na sua página!"
|
1202 |
+
|
1203 |
+
#: wp-table-reloaded-admin.php:911
|
1204 |
+
#: wp-table-reloaded-admin.php:1106
|
1205 |
+
#, php-format
|
1206 |
+
#@ wp-table-reloaded
|
1207 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
1208 |
+
msgstr "Para mostrar esta tabela em suas páginas, posts ou widgets de texto, use o código <strong>[table id=%s /]</strong>."
|
1209 |
+
|
1210 |
+
#: wp-table-reloaded-admin.php:924
|
1211 |
+
#@ wp-table-reloaded
|
1212 |
+
msgid "There is no table with this ID!"
|
1213 |
+
msgstr "Não existe tabela com este ID!"
|
1214 |
+
|
1215 |
+
#: wp-table-reloaded-admin.php:941
|
1216 |
+
#@ wp-table-reloaded
|
1217 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
1218 |
+
msgstr "Muito obrigado! Sua doação é muito bem-vinda. Você acaba de contribuir para o desenvolvimento do WP-Table Reloaded!"
|
1219 |
+
|
1220 |
+
#: wp-table-reloaded-admin.php:943
|
1221 |
+
#, php-format
|
1222 |
+
#@ wp-table-reloaded
|
1223 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
1224 |
+
msgstr "Não tem problema! Eu ainda espero que você aproveite os benefícios que WP-Table Reloaded traz para você. Caso você mude de idéia, sempre irá encontrar o botão \"Donate\" no <a href=\"%s\">WP-Table Reloaded website</a>."
|
1225 |
+
|
1226 |
+
#: wp-table-reloaded-admin.php:976
|
1227 |
+
#: wp-table-reloaded-admin.php:985
|
1228 |
+
#: wp-table-reloaded-admin.php:1130
|
1229 |
+
#@ wp-table-reloaded
|
1230 |
+
msgid "Last Modified"
|
1231 |
+
msgstr "Última Modificação"
|
1232 |
+
|
1233 |
+
#: wp-table-reloaded-admin.php:997
|
1234 |
+
#@ wp-table-reloaded
|
1235 |
+
msgid "(no name)"
|
1236 |
+
msgstr "(sem nome)"
|
1237 |
+
|
1238 |
+
#: wp-table-reloaded-admin.php:998
|
1239 |
+
#@ wp-table-reloaded
|
1240 |
+
msgid "(no description)"
|
1241 |
+
msgstr "(sem descrição)"
|
1242 |
+
|
1243 |
+
#: wp-table-reloaded-admin.php:1002
|
1244 |
+
#: wp-table-reloaded-admin.php:1131
|
1245 |
+
#@ wp-table-reloaded
|
1246 |
+
msgid "by"
|
1247 |
+
msgstr "por"
|
1248 |
+
|
1249 |
+
#: wp-table-reloaded-admin.php:1015
|
1250 |
+
#, php-format
|
1251 |
+
#@ wp-table-reloaded
|
1252 |
+
msgid "Edit %s"
|
1253 |
+
msgstr "Editar %s"
|
1254 |
+
|
1255 |
+
#: wp-table-reloaded-admin.php:1019
|
1256 |
+
#@ wp-table-reloaded
|
1257 |
+
msgid "Shortcode"
|
1258 |
+
msgstr "Código"
|
1259 |
+
|
1260 |
+
#: wp-table-reloaded-admin.php:1023
|
1261 |
+
#, php-format
|
1262 |
+
#@ wp-table-reloaded
|
1263 |
+
msgid "Preview of Table %s"
|
1264 |
+
msgstr "Visualização da Tabela %s"
|
1265 |
+
|
1266 |
+
#: wp-table-reloaded-admin.php:1024
|
1267 |
+
#@ wp-table-reloaded
|
1268 |
+
msgid "Preview"
|
1269 |
+
msgstr "Visualizar"
|
1270 |
+
|
1271 |
+
#: wp-table-reloaded-admin.php:1059
|
1272 |
+
#@ wp-table-reloaded
|
1273 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
1274 |
+
msgstr "Você pode adicionar uma nova tabela aqui. Basta digitar o seu nome, uma descrição (opcional) e o número de linhas e colunas."
|
1275 |
+
|
1276 |
+
#: wp-table-reloaded-admin.php:1059
|
1277 |
+
#@ wp-table-reloaded
|
1278 |
+
msgid "You may add, insert or delete rows and columns later."
|
1279 |
+
msgstr "Você pode adicionar, inserir ou apagar linhas e colunas depois."
|
1280 |
+
|
1281 |
+
#: wp-table-reloaded-admin.php:1102
|
1282 |
+
#, php-format
|
1283 |
+
#@ wp-table-reloaded
|
1284 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
1285 |
+
msgstr "Editar Tabela \"%s\" (ID %s)"
|
1286 |
+
|
1287 |
+
#: wp-table-reloaded-admin.php:1195
|
1288 |
+
#@ wp-table-reloaded
|
1289 |
+
msgid "Row hidden"
|
1290 |
+
msgstr "Linha escondida"
|
1291 |
+
|
1292 |
+
#: wp-table-reloaded-admin.php:1232
|
1293 |
+
#@ wp-table-reloaded
|
1294 |
+
msgid "Column hidden"
|
1295 |
+
msgstr "Coluna escondida"
|
1296 |
+
|
1297 |
+
#: wp-table-reloaded-admin.php:1294
|
1298 |
+
#: wp-table-reloaded-admin.php:1317
|
1299 |
+
#@ wp-table-reloaded
|
1300 |
+
msgid "before"
|
1301 |
+
msgstr "antes"
|
1302 |
+
|
1303 |
+
#: wp-table-reloaded-admin.php:1295
|
1304 |
+
#: wp-table-reloaded-admin.php:1318
|
1305 |
+
#@ wp-table-reloaded
|
1306 |
+
msgid "after"
|
1307 |
+
msgstr "depois"
|
1308 |
+
|
1309 |
+
#: wp-table-reloaded-admin.php:1298
|
1310 |
+
#, php-format
|
1311 |
+
#@ wp-table-reloaded
|
1312 |
+
msgid "Move row %s %s row %s"
|
1313 |
+
msgstr "Mover linha %s %s linha %s"
|
1314 |
+
|
1315 |
+
#: wp-table-reloaded-admin.php:1300
|
1316 |
+
#: wp-table-reloaded-admin.php:1323
|
1317 |
+
#@ wp-table-reloaded
|
1318 |
+
msgid "Move"
|
1319 |
+
msgstr "Mover"
|
1320 |
+
|
1321 |
+
#: wp-table-reloaded-admin.php:1321
|
1322 |
+
#, php-format
|
1323 |
+
#@ wp-table-reloaded
|
1324 |
+
msgid "Move column %s %s column %s"
|
1325 |
+
msgstr "Mover coluna %s %s coluna %s"
|
1326 |
+
|
1327 |
+
#: wp-table-reloaded-admin.php:1372
|
1328 |
+
#@ wp-table-reloaded
|
1329 |
+
msgid "The first row of your table will use the <th> tag."
|
1330 |
+
msgstr "A primeira linha da sua tabela irá usar a tag <th>."
|
1331 |
+
|
1332 |
+
#: wp-table-reloaded-admin.php:1376
|
1333 |
+
#@ wp-table-reloaded
|
1334 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
1335 |
+
msgstr "O Nome da Tabela será escrito acima da tabela em uma tag <h2>."
|
1336 |
+
|
1337 |
+
#: wp-table-reloaded-admin.php:1386
|
1338 |
+
#@ wp-table-reloaded
|
1339 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1340 |
+
msgstr "Você pode ordenar uma tabela usando o <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1341 |
+
|
1342 |
+
#: wp-table-reloaded-admin.php:1386
|
1343 |
+
#@ wp-table-reloaded
|
1344 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
1345 |
+
msgstr "<small>Atenção: Você deve ter o Tablesorter ativo nas tela de \"Opções do Plugin\" e a opção \"Usar Cabeçalho da Tabela\" deve estar habilitada acima para isso funcionar!</small>"
|
1346 |
+
|
1347 |
+
#: wp-table-reloaded-admin.php:1402
|
1348 |
+
#@ wp-table-reloaded
|
1349 |
+
msgid "Custom Data Fields"
|
1350 |
+
msgstr "Campos de Dados Personalizados"
|
1351 |
+
|
1352 |
+
#: wp-table-reloaded-admin.php:1404
|
1353 |
+
#@ wp-table-reloaded
|
1354 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1355 |
+
msgstr "Campos de Dados Personalizados podem ser usados para adicionar novos metadados para uma tabela."
|
1356 |
+
|
1357 |
+
#: wp-table-reloaded-admin.php:1404
|
1358 |
+
#@ wp-table-reloaded
|
1359 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
1360 |
+
msgstr "Por exemplo, isso poderiam ser informações sobre a origem ou o criador dos dados."
|
1361 |
+
|
1362 |
+
#: wp-table-reloaded-admin.php:1406
|
1363 |
+
#, php-format
|
1364 |
+
#@ wp-table-reloaded
|
1365 |
+
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>."
|
1366 |
+
msgstr "Você pode mostrar estes dados da mesma maneira que as tabelas usando o código <strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
1367 |
+
|
1368 |
+
#: wp-table-reloaded-admin.php:1412
|
1369 |
+
#@ wp-table-reloaded
|
1370 |
+
msgid "Field Name"
|
1371 |
+
msgstr "Nome do Campo"
|
1372 |
+
|
1373 |
+
#: wp-table-reloaded-admin.php:1413
|
1374 |
+
#@ wp-table-reloaded
|
1375 |
+
msgid "Value"
|
1376 |
+
msgstr "Valor"
|
1377 |
+
|
1378 |
+
#: wp-table-reloaded-admin.php:1427
|
1379 |
+
#@ wp-table-reloaded
|
1380 |
+
msgid "Delete Field"
|
1381 |
+
msgstr "Apagar Campo"
|
1382 |
+
|
1383 |
+
#: wp-table-reloaded-admin.php:1429
|
1384 |
+
#@ wp-table-reloaded
|
1385 |
+
msgid "View shortcode"
|
1386 |
+
msgstr "Ver código"
|
1387 |
+
|
1388 |
+
#: wp-table-reloaded-admin.php:1438
|
1389 |
+
#@ wp-table-reloaded
|
1390 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
1391 |
+
msgstr "Para adicionar um novo Campo de Dados Personalizado, digite seu nome (somente letras minúsculas, números, _ e -)."
|
1392 |
+
|
1393 |
+
#: wp-table-reloaded-admin.php:1439
|
1394 |
+
#@ wp-table-reloaded
|
1395 |
+
msgid "Custom Data Field Name"
|
1396 |
+
msgstr "Nome do Campo de Dados Personalizado"
|
1397 |
+
|
1398 |
+
#: wp-table-reloaded-admin.php:1473
|
1399 |
+
#@ wp-table-reloaded
|
1400 |
+
msgid "You may import a table from existing data here."
|
1401 |
+
msgstr "Você pode importar uma tabela de dados já existentes aqui."
|
1402 |
+
|
1403 |
+
#: wp-table-reloaded-admin.php:1473
|
1404 |
+
#@ wp-table-reloaded
|
1405 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
1406 |
+
msgstr "Isto pode ser um arquivo CSV, XML ou HTML, no entanto é preciso obedecer uma certa estrutura. Por favor, consulte a documentação."
|
1407 |
+
|
1408 |
+
#: wp-table-reloaded-admin.php:1473
|
1409 |
+
#@ wp-table-reloaded
|
1410 |
+
msgid "You may also select the import source."
|
1411 |
+
msgstr "Você também pode selecionar a origem do código."
|
1412 |
+
|
1413 |
+
#: wp-table-reloaded-admin.php:1637
|
1414 |
+
#@ wp-table-reloaded
|
1415 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
1416 |
+
msgstr "Você pode exportar uma tabela aqui. É só selecionar uma tabela, o formato de arquivo que deseja exportar e (para CSV somente) um delimitador."
|
1417 |
+
|
1418 |
+
#: wp-table-reloaded-admin.php:1638
|
1419 |
+
#@ wp-table-reloaded
|
1420 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
1421 |
+
msgstr "Você pode optar por baixar o arquivo exportado. Caso contrário ele será mostrado nesta página."
|
1422 |
+
|
1423 |
+
#: wp-table-reloaded-admin.php:1639
|
1424 |
+
#@ wp-table-reloaded
|
1425 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
1426 |
+
msgstr "Esteja ciente de que apenas a tabela de dados, sem opções ou configurações, será exportada."
|
1427 |
+
|
1428 |
+
#: wp-table-reloaded-admin.php:1712
|
1429 |
+
#@ wp-table-reloaded
|
1430 |
+
msgid "You may change these global options."
|
1431 |
+
msgstr "Você pode mudar essas opções globais."
|
1432 |
+
|
1433 |
+
#: wp-table-reloaded-admin.php:1713
|
1434 |
+
#@ wp-table-reloaded
|
1435 |
+
msgid "They will effect all tables or the general plugin behavior."
|
1436 |
+
msgstr "Elas irão afetar todas as tabelas ou o comportamento padrão do plugin."
|
1437 |
+
|
1438 |
+
#: wp-table-reloaded-admin.php:1730
|
1439 |
+
#@ wp-table-reloaded
|
1440 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
1441 |
+
msgstr "Sim, inclua e carregue o seguinte código CSS no meu site, dentro da tag <style>"
|
1442 |
+
|
1443 |
+
#: wp-table-reloaded-admin.php:1740
|
1444 |
+
#, php-format
|
1445 |
+
#@ wp-table-reloaded
|
1446 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
1447 |
+
msgstr "Você pode conseguir uma melhor performance se você adicionar os estilos CSS diretamente no arquivo \"style.css\" (localizado em <a href=\"%s\">%s</a>)."
|
1448 |
+
|
1449 |
+
#: wp-table-reloaded-admin.php:1742
|
1450 |
+
#, php-format
|
1451 |
+
#@ wp-table-reloaded
|
1452 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
1453 |
+
msgstr "Outra possibilidade é incluir um arquivo CSS (por exemplo, do diretório do seu tema) com o comando @import do CSS: %s"
|
1454 |
+
|
1455 |
+
#: wp-table-reloaded-admin.php:1750
|
1456 |
+
#@ wp-table-reloaded
|
1457 |
+
msgid "Advanced Options"
|
1458 |
+
msgstr "Opções Avançadas"
|
1459 |
+
|
1460 |
+
#: wp-table-reloaded-admin.php:1754
|
1461 |
+
#@ wp-table-reloaded
|
1462 |
+
msgid "Use Tablesorter Extended?"
|
1463 |
+
msgstr "Usar Tablesorter Extended?"
|
1464 |
+
|
1465 |
+
#: wp-table-reloaded-admin.php:1755
|
1466 |
+
#@ wp-table-reloaded
|
1467 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
1468 |
+
msgstr "Sim, usar Extended Tablesorter de <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> ao invés do original Tablesorter script (FUNCIONALIDADE EXPERIMENTAL!!!)."
|
1469 |
+
|
1470 |
+
#: wp-table-reloaded-admin.php:1759
|
1471 |
+
#@ wp-table-reloaded
|
1472 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
1473 |
+
msgstr "(Esta configuração não influencia o botão \"Desinstalar Manualmente o Plugin\" abaixo!)"
|
1474 |
+
|
1475 |
+
#: wp-table-reloaded-admin.php:1762
|
1476 |
+
#@ wp-table-reloaded
|
1477 |
+
msgid "Allow donation message?"
|
1478 |
+
msgstr "Permitir mensagem de doação?"
|
1479 |
+
|
1480 |
+
#: wp-table-reloaded-admin.php:1763
|
1481 |
+
#@ wp-table-reloaded
|
1482 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
1483 |
+
msgstr "Sim, mostre a mensagem de doação depois de 30 dias de uso do plugin."
|
1484 |
+
|
1485 |
+
#: wp-table-reloaded-admin.php:1780
|
1486 |
+
#@ wp-table-reloaded
|
1487 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
1488 |
+
msgstr "Você pode desinstalar o plugin aqui. Isso <strong>irá apagar</strong> todas as tabelas, dados, opções e tudo o que disser respeito ao plugin, incluindo todas as tabelas que você adicionou ou importou."
|
1489 |
+
|
1490 |
+
#: wp-table-reloaded-admin.php:1780
|
1491 |
+
#@ wp-table-reloaded
|
1492 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
1493 |
+
msgstr "Tenha muito cuidado com isso e apenas clique no botão se você sabe o que está fazendo!"
|
1494 |
+
|
1495 |
+
#: wp-table-reloaded-admin.php:1794
|
1496 |
+
#@ wp-table-reloaded
|
1497 |
+
msgid "About WP-Table Reloaded"
|
1498 |
+
msgstr "Sobre o WP-Table Reloaded"
|
1499 |
+
|
1500 |
+
#: wp-table-reloaded-admin.php:1823
|
1501 |
+
#@ wp-table-reloaded
|
1502 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1503 |
+
msgstr "Este plugin foi escrito por <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. Ele é licenciado como Software Livre usando GPL 2."
|
1504 |
+
|
1505 |
+
#: wp-table-reloaded-admin.php:1823
|
1506 |
+
#: wp-table-reloaded-admin.php:1981
|
1507 |
+
#@ wp-table-reloaded
|
1508 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1509 |
+
msgstr "Se você gostou deste plugin, por favor, considere <a href=\"http://tobias.baethge.com/donate/\"><strong>fazer uma doação</strong></a> e avalie o plugin no <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">Diretório de Plugins do WordPress</a>."
|
1510 |
+
|
1511 |
+
#: wp-table-reloaded-admin.php:1835
|
1512 |
+
#@ wp-table-reloaded
|
1513 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1514 |
+
msgstr "Bielorrussia (obrigado <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1515 |
+
|
1516 |
+
#: wp-table-reloaded-admin.php:1839
|
1517 |
+
#@ wp-table-reloaded
|
1518 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1519 |
+
msgstr "Itália (obrigado <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1520 |
+
|
1521 |
+
#: wp-table-reloaded-admin.php:1840
|
1522 |
+
#@ wp-table-reloaded
|
1523 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1524 |
+
msgstr "Japão (obrigado <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1525 |
+
|
1526 |
+
#: wp-table-reloaded-admin.php:1858
|
1527 |
+
#@ wp-table-reloaded
|
1528 |
+
msgid "Plugin installed"
|
1529 |
+
msgstr "Plugin instalado"
|
1530 |
+
|
1531 |
+
#: wp-table-reloaded-admin.php:1948
|
1532 |
+
#@ wp-table-reloaded
|
1533 |
+
msgid "This is the \"List Tables\" screen."
|
1534 |
+
msgstr "Esta é a tela \"Listar Tabelas\"."
|
1535 |
+
|
1536 |
+
#: wp-table-reloaded-admin.php:1952
|
1537 |
+
#@ wp-table-reloaded
|
1538 |
+
msgid "This is the \"Edit Table\" screen."
|
1539 |
+
msgstr "Esta é a tela \"Editar Tabela\"."
|
1540 |
+
|
1541 |
+
#: wp-table-reloaded-admin.php:1955
|
1542 |
+
#@ wp-table-reloaded
|
1543 |
+
msgid "This is the \"Add new Table\" screen."
|
1544 |
+
msgstr "Esta é a tela \"Adicionar nova Tabela\"."
|
1545 |
+
|
1546 |
+
#: wp-table-reloaded-admin.php:1958
|
1547 |
+
#@ wp-table-reloaded
|
1548 |
+
msgid "This is the \"Import a Table\" screen."
|
1549 |
+
msgstr "Esta é a tela \"Importar uma Tabela\"."
|
1550 |
+
|
1551 |
+
#: wp-table-reloaded-admin.php:1961
|
1552 |
+
#@ wp-table-reloaded
|
1553 |
+
msgid "This is the \"Export a Table\" screen."
|
1554 |
+
msgstr "Esta é a tela \"Exportar uma Tabela\"."
|
1555 |
+
|
1556 |
+
#: wp-table-reloaded-admin.php:1964
|
1557 |
+
#@ wp-table-reloaded
|
1558 |
+
msgid "This is the \"Plugin Options\" screen."
|
1559 |
+
msgstr "Esta é a tabela \"Opções do Plugin\"."
|
1560 |
+
|
1561 |
+
#: wp-table-reloaded-admin.php:1970
|
1562 |
+
#@ wp-table-reloaded
|
1563 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1564 |
+
msgstr "Esta é a tela \"Sobre Wp-Table Reloaded\"."
|
1565 |
+
|
1566 |
+
#: wp-table-reloaded-admin.php:2264
|
1567 |
+
#@ wp-table-reloaded
|
1568 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1569 |
+
msgstr "Para inserir uma imagem, clique na célula dentro da qual pretente inserir a imagem."
|
1570 |
+
|
1571 |
+
#: wp-table-reloaded-admin.php:2264
|
1572 |
+
#@ wp-table-reloaded
|
1573 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1574 |
+
msgstr "A Biblioteca de Mídia irá abrir, a partir da qual você pode selecionar a imagem desejada ou inserir o URL da imagem."
|
1575 |
+
|
1576 |
+
#: wp-table-reloaded-admin.php:2264
|
1577 |
+
#, php-format
|
1578 |
+
#@ wp-table-reloaded
|
1579 |
+
msgid "Click the \"%s\" button to insert the image."
|
1580 |
+
msgstr "Clique no botão \"%s\" para inserir a imagem."
|
1581 |
+
|
1582 |
+
#: wp-table-reloaded-admin.php:2264
|
1583 |
+
msgid "Insert into Post"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: wp-table-reloaded-admin.php:2276
|
1587 |
+
#@ wp-table-reloaded
|
1588 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1589 |
+
msgstr "Para mostrar este Campo de Dados Personalizado use este código:"
|
1590 |
+
|
1591 |
+
#: wp-table-reloaded-admin.php:2277
|
1592 |
+
#@ wp-table-reloaded
|
1593 |
+
msgid "To show this table, use this shortcode:"
|
1594 |
+
msgstr "Para mostrar esta tabela, use este código:"
|
1595 |
+
|
1596 |
+
#: wp-table-reloaded-admin.php:2349
|
1597 |
+
#@ wp-table-reloaded
|
1598 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1599 |
+
msgstr "Obrigado por usar o a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1600 |
+
|
languages/wp-table-reloaded-ru_RU.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-ru_RU.po
CHANGED
@@ -1,18 +1,23 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP-Table Reloaded v1.0.1\n"
|
|
|
|
|
4 |
"PO-Revision-Date: 2009-04-22 09:52+0400\n"
|
5 |
"Last-Translator: Truper (http://wp-skins.info)\n"
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=
|
10 |
"X-Poedit-Language: Russian\n"
|
11 |
"X-Poedit-Country: RUSSIA\n"
|
12 |
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Poedit-
|
|
|
|
|
16 |
|
17 |
#: php/wp-table-reloaded-export.class.php:30
|
18 |
#: php/wp-table-reloaded-import.class.php:38
|
@@ -41,582 +46,530 @@ msgstr ", (запятая)"
|
|
41 |
msgid ": (colon)"
|
42 |
msgstr ": (двоеточие)"
|
43 |
|
44 |
-
#: wp-table-reloaded-admin.php:
|
45 |
#, php-format
|
46 |
msgid "Table \"%s\" added successfully."
|
47 |
msgstr "Таблица \"%s\" успешно добавлена."
|
48 |
|
49 |
-
#: wp-table-reloaded-admin.php:
|
50 |
msgid "Table edited successfully."
|
51 |
msgstr "Таблица успешно отредактирована."
|
52 |
|
53 |
-
#: wp-table-reloaded-admin.php:
|
54 |
msgid "Rows swapped successfully."
|
55 |
msgstr "Строки успешно поменяны местами."
|
56 |
|
57 |
-
#: wp-table-reloaded-admin.php:
|
58 |
msgid "Columns swapped successfully."
|
59 |
msgstr "Столбцы успешно поменяны местами."
|
60 |
|
61 |
-
#: wp-table-reloaded-admin.php:
|
62 |
-
#: wp-table-reloaded-admin.php:
|
63 |
msgid "Copy of"
|
64 |
msgstr "Копия"
|
65 |
|
66 |
-
#: wp-table-reloaded-admin.php:
|
67 |
#, php-format
|
68 |
msgid "Table \"%s\" copied successfully."
|
69 |
msgstr "Таблица \"%s\" успешно скопирована."
|
70 |
|
71 |
-
#: wp-table-reloaded-admin.php:
|
72 |
#, php-format
|
73 |
msgid "Table \"%s\" deleted successfully."
|
74 |
msgstr "Таблица \"%s\" успешно удалена."
|
75 |
|
76 |
-
#: wp-table-reloaded-admin.php:
|
77 |
msgid "Row deleted successfully."
|
78 |
msgstr "Строка успешно удалена."
|
79 |
|
80 |
-
#: wp-table-reloaded-admin.php:
|
81 |
msgid "Column deleted successfully."
|
82 |
msgstr "Столбец успешно удален."
|
83 |
|
84 |
-
#: wp-table-reloaded-admin.php:
|
85 |
msgid "Delete failed."
|
86 |
msgstr "Ошибка при удалении."
|
87 |
|
88 |
-
#: wp-table-reloaded-admin.php:
|
89 |
msgid "Row inserted successfully."
|
90 |
msgstr "Строка вставлена успешно."
|
91 |
|
92 |
-
#: wp-table-reloaded-admin.php:
|
93 |
msgid "Column inserted successfully."
|
94 |
msgstr "Столбец вставлен успешно."
|
95 |
|
96 |
-
#: wp-table-reloaded-admin.php:
|
97 |
msgid "Insert failed."
|
98 |
msgstr "Ошибка при вставке."
|
99 |
|
100 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
101 |
msgid "Imported Table"
|
102 |
msgstr "Импортированная таблица"
|
103 |
|
104 |
-
#: wp-table-reloaded-admin.php:
|
105 |
msgid "via form"
|
106 |
msgstr "из формы"
|
107 |
|
108 |
-
#: wp-table-reloaded-admin.php:
|
109 |
-
#: wp-table-reloaded-admin.php:
|
110 |
msgid "Table imported successfully."
|
111 |
msgstr "Таблица импортирована успешно."
|
112 |
|
113 |
-
#: wp-table-reloaded-admin.php:
|
|
|
114 |
msgid "Table could not be imported."
|
115 |
msgstr "Таблица не может быть импортирована."
|
116 |
|
117 |
-
#: wp-table-reloaded-admin.php:
|
118 |
#, php-format
|
119 |
msgid "Table \"%s\" exported successfully."
|
120 |
msgstr "Таблица \"%s\" экспортирована успешно."
|
121 |
|
122 |
-
#: wp-table-reloaded-admin.php:
|
123 |
msgid "Options saved successfully."
|
124 |
msgstr "Настройки успешно сохранены."
|
125 |
|
126 |
-
#: wp-table-reloaded-admin.php:
|
|
|
127 |
msgid "WP-Table Reloaded"
|
128 |
msgstr "Работа с таблицами"
|
129 |
|
130 |
-
#: wp-table-reloaded-admin.php:
|
|
|
131 |
msgid "Plugin deactivated successfully."
|
132 |
msgstr "Плагин успешно деактивирован."
|
133 |
|
134 |
-
#: wp-table-reloaded-admin.php:
|
|
|
135 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
136 |
msgstr "Все таблицы, данные и настройки были удалены. Теперь можно удалить сам плагин из директории плагинов WordPress (wp-content/plugins)."
|
137 |
|
138 |
-
#: wp-table-reloaded-admin.php:
|
139 |
-
#: wp-table-reloaded-admin.php:
|
140 |
msgid "List of Tables"
|
141 |
msgstr "Список таблиц"
|
142 |
|
143 |
-
#: wp-table-reloaded-admin.php:
|
144 |
-
#: wp-table-reloaded-admin.php:
|
145 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
146 |
msgid "ID"
|
147 |
msgstr "ID"
|
148 |
|
149 |
-
#: wp-table-reloaded-admin.php:
|
150 |
-
#: wp-table-reloaded-admin.php:
|
151 |
-
#: wp-table-reloaded-admin.php:
|
152 |
-
#: wp-table-reloaded-admin.php:
|
153 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
154 |
msgid "Table Name"
|
155 |
msgstr "Имя таблицы"
|
156 |
|
157 |
-
#: wp-table-reloaded-admin.php:
|
158 |
-
#: wp-table-reloaded-admin.php:
|
159 |
-
#: wp-table-reloaded-admin.php:
|
160 |
-
#: wp-table-reloaded-admin.php:
|
161 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
162 |
msgid "Description"
|
163 |
msgstr "Описание"
|
164 |
|
165 |
-
#: wp-table-reloaded-admin.php:
|
166 |
-
#: wp-table-reloaded-admin.php:
|
167 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
168 |
msgid "Action"
|
169 |
msgstr "Действие"
|
170 |
|
171 |
-
#: wp-table-reloaded-admin.php:
|
172 |
msgid "Edit"
|
173 |
msgstr "Изменить"
|
174 |
|
175 |
-
#: wp-table-reloaded-admin.php:
|
176 |
msgid "Do you want to copy this table?"
|
177 |
msgstr "Вы хотите скопировать эту таблицу?"
|
178 |
|
179 |
-
#: wp-table-reloaded-admin.php:
|
180 |
msgid "Copy"
|
181 |
msgstr "Копировать"
|
182 |
|
183 |
-
#: wp-table-reloaded-admin.php:
|
184 |
msgid "Export"
|
185 |
msgstr "Экспорт"
|
186 |
|
187 |
-
#: wp-table-reloaded-admin.php:
|
188 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
189 |
msgstr "Таблица и все её содержимое будет стерто. Вы действительно хотите удалить её?"
|
190 |
|
191 |
-
#: wp-table-reloaded-admin.php:
|
192 |
msgid "Delete"
|
193 |
msgstr "Удалить"
|
194 |
|
195 |
-
#: wp-table-reloaded-admin.php:
|
196 |
-
#: wp-table-reloaded-admin.php:
|
197 |
-
#: wp-table-reloaded-admin.php:
|
198 |
msgid "No tables found."
|
199 |
msgstr "Таблицы не найдены."
|
200 |
|
201 |
-
#: wp-table-reloaded-admin.php:
|
202 |
-
#: wp-table-reloaded-admin.php:
|
203 |
#, php-format
|
204 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
205 |
msgstr "Вы можете <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a>!"
|
206 |
|
207 |
-
#: wp-table-reloaded-admin.php:
|
208 |
-
#: wp-table-reloaded-admin.php:
|
209 |
msgid "Add new Table"
|
210 |
msgstr "Создать таблицу"
|
211 |
|
212 |
-
#: wp-table-reloaded-admin.php:
|
213 |
-
|
214 |
-
msgstr "Здесь Вы можете создать новую таблицу. Просто введите название, описание (не обязательно) и количество строк и столбцов.<br/>Добавить, вставить или удалить строки и столбцы Вы сможете позднее."
|
215 |
-
|
216 |
-
#: wp-table-reloaded-admin.php:698
|
217 |
msgid "Enter Table Name"
|
218 |
msgstr "Введите имя таблицы"
|
219 |
|
220 |
-
#: wp-table-reloaded-admin.php:
|
|
|
221 |
msgid "Enter Description"
|
222 |
msgstr "Введите описание"
|
223 |
|
224 |
-
#: wp-table-reloaded-admin.php:
|
225 |
msgid "Number of Rows"
|
226 |
msgstr "Количество строк"
|
227 |
|
228 |
-
#: wp-table-reloaded-admin.php:
|
229 |
msgid "Number of Columns"
|
230 |
msgstr "Количество столбцов"
|
231 |
|
232 |
-
#: wp-table-reloaded-admin.php:
|
233 |
msgid "Add Table"
|
234 |
msgstr "Добавить таблицу"
|
235 |
|
236 |
-
#: wp-table-reloaded-admin.php:
|
237 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
238 |
msgstr "Здесь Вы можете изменять данные в таблице. Ещё Вы можете добавлять или удалять строки и столбцы."
|
239 |
|
240 |
-
#: wp-table-reloaded-admin.php:
|
241 |
msgid "Table Information"
|
242 |
msgstr "Информация о таблице"
|
243 |
|
244 |
-
#: wp-table-reloaded-admin.php:
|
245 |
msgid "Table Contents"
|
246 |
msgstr "Содержание таблицы"
|
247 |
|
248 |
-
#: wp-table-reloaded-admin.php:
|
249 |
msgid "Insert Row"
|
250 |
msgstr "Вставить строку"
|
251 |
|
252 |
-
#: wp-table-reloaded-admin.php:
|
253 |
msgid "Do you really want to delete this row?"
|
254 |
msgstr "Вы на самом деле хотите удалить эту строку?"
|
255 |
|
256 |
-
#: wp-table-reloaded-admin.php:
|
257 |
msgid "Delete Row"
|
258 |
msgstr "Удалить строку"
|
259 |
|
260 |
-
#: wp-table-reloaded-admin.php:
|
261 |
msgid "Insert Column"
|
262 |
msgstr "Вставить столбец"
|
263 |
|
264 |
-
#: wp-table-reloaded-admin.php:
|
265 |
msgid "Do you really want to delete this column?"
|
266 |
msgstr "Вы на самом деле хотите удалить этот столбец?"
|
267 |
|
268 |
-
#: wp-table-reloaded-admin.php:
|
269 |
msgid "Delete Column"
|
270 |
msgstr "Удалить столбец"
|
271 |
|
272 |
-
#: wp-table-reloaded-admin.php:
|
273 |
-
msgid "Add Row"
|
274 |
-
msgstr "Добавить строку"
|
275 |
-
|
276 |
-
#: wp-table-reloaded-admin.php:815
|
277 |
-
msgid "Add Column"
|
278 |
-
msgstr "Добавить столбец"
|
279 |
-
|
280 |
-
#: wp-table-reloaded-admin.php:839
|
281 |
#, php-format
|
282 |
msgid "Swap rows %s and %s"
|
283 |
msgstr "Поменять местами строки %s и %s"
|
284 |
|
285 |
-
#: wp-table-reloaded-admin.php:
|
286 |
-
#: wp-table-reloaded-admin.php:
|
287 |
msgid "Swap"
|
288 |
msgstr "Поменять"
|
289 |
|
290 |
-
#: wp-table-reloaded-admin.php:
|
291 |
#, php-format
|
292 |
msgid "Swap columns %s and %s"
|
293 |
msgstr "Поменять местами столбцы %s и %s"
|
294 |
|
295 |
-
#: wp-table-reloaded-admin.php:
|
296 |
msgid "Table Settings"
|
297 |
msgstr "Настройки таблицы"
|
298 |
|
299 |
-
#: wp-table-reloaded-admin.php:
|
300 |
msgid "These settings will only be used for this table."
|
301 |
msgstr "Эти настройки используются только для этой таблицы."
|
302 |
|
303 |
-
#: wp-table-reloaded-admin.php:
|
304 |
msgid "Alternating row colors"
|
305 |
msgstr "Разные цвета для строк"
|
306 |
|
307 |
-
#: wp-table-reloaded-admin.php:
|
308 |
msgid "Every second row will have an alternating background color."
|
309 |
msgstr "Каждая вторая строка будет иметь другой цвет фона."
|
310 |
|
311 |
-
#: wp-table-reloaded-admin.php:
|
312 |
msgid "Use Table Headline"
|
313 |
msgstr "Использовать заголовок таблицы"
|
314 |
|
315 |
-
#: wp-table-reloaded-admin.php:
|
316 |
-
msgid "The first row of your table will use the [th] tag."
|
317 |
-
msgstr "Первая строка Вашей таблицы будет использовать тег [th]."
|
318 |
-
|
319 |
-
#: wp-table-reloaded-admin.php:908
|
320 |
msgid "Print Table Name"
|
321 |
msgstr "Печатать название таблицы"
|
322 |
|
323 |
-
#: wp-table-reloaded-admin.php:
|
324 |
-
msgid "The Table Name will be written above the table in a [h2] tag."
|
325 |
-
msgstr "Имя таблицы будет написано над таблицей в теге [h2]."
|
326 |
-
|
327 |
-
#: wp-table-reloaded-admin.php:912
|
328 |
msgid "Print Table Description"
|
329 |
msgstr "Печатать описание таблицы"
|
330 |
|
331 |
-
#: wp-table-reloaded-admin.php:
|
332 |
msgid "The Table Description will be written under the table."
|
333 |
msgstr "Описание таблицы будет написано после таблицы."
|
334 |
|
335 |
-
#: wp-table-reloaded-admin.php:
|
336 |
msgid "Use Tablesorter"
|
337 |
msgstr "Использовать сортировку в таблице"
|
338 |
|
339 |
-
#: wp-table-reloaded-admin.php:
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
#: wp-table-reloaded-admin.php:758
|
344 |
-
#: wp-table-reloaded-admin.php:926
|
345 |
msgid "Update Changes"
|
346 |
msgstr "Сохранить изменения"
|
347 |
|
348 |
-
#: wp-table-reloaded-admin.php:
|
349 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
350 |
msgid "Save and go back"
|
351 |
msgstr "Сохранить и вернуться"
|
352 |
|
353 |
-
#: wp-table-reloaded-admin.php:
|
354 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
355 |
msgid "Cancel"
|
356 |
msgstr "Отмена"
|
357 |
|
358 |
-
#: wp-table-reloaded-admin.php:
|
359 |
msgid "Other actions"
|
360 |
msgstr "Другие действия"
|
361 |
|
362 |
-
#: wp-table-reloaded-admin.php:
|
363 |
msgid "Delete Table"
|
364 |
msgstr "Удалить таблицу"
|
365 |
|
366 |
-
#: wp-table-reloaded-admin.php:
|
367 |
-
#: wp-table-reloaded-admin.php:
|
368 |
msgid "Export Table"
|
369 |
msgstr "Экспорт таблицы"
|
370 |
|
371 |
-
#: wp-table-reloaded-admin.php:
|
372 |
-
#: wp-table-reloaded-admin.php:
|
373 |
msgid "Import a Table"
|
374 |
msgstr "Импорт таблицы"
|
375 |
|
376 |
-
#: wp-table-reloaded-admin.php:
|
377 |
msgid "Select Import Format"
|
378 |
msgstr "Выберите формат для импорта"
|
379 |
|
380 |
-
#: wp-table-reloaded-admin.php:
|
381 |
msgid "<small>(Only needed for CSV export.)</small>"
|
382 |
msgstr "<small>(Необходимо только для CSV.)</small>"
|
383 |
|
384 |
-
#: wp-table-reloaded-admin.php:
|
385 |
msgid "Select File with Table to Import"
|
386 |
msgstr "Выберите файл с таблицей для импорта"
|
387 |
|
388 |
-
#: wp-table-reloaded-admin.php:
|
389 |
-
msgid "- or -"
|
390 |
-
msgstr "- или -"
|
391 |
-
|
392 |
-
#: wp-table-reloaded-admin.php:973
|
393 |
-
msgid "(upload will be preferred over pasting)"
|
394 |
-
msgstr "(сначала загрузить, потом вставить)"
|
395 |
-
|
396 |
-
#: wp-table-reloaded-admin.php:976
|
397 |
msgid "Paste data with Table to Import"
|
398 |
msgstr "Вставьте данные с таблицей для импорта"
|
399 |
|
400 |
-
#: wp-table-reloaded-admin.php:
|
401 |
msgid "Import Table"
|
402 |
msgstr "Импорт таблицы"
|
403 |
|
404 |
-
#: wp-table-reloaded-admin.php:
|
405 |
msgid "Import"
|
406 |
msgstr "Импорт"
|
407 |
|
408 |
-
#: wp-table-reloaded-admin.php:
|
409 |
-
#: wp-table-reloaded-admin.php:
|
410 |
msgid "Export a Table"
|
411 |
msgstr "Экспорт таблицы"
|
412 |
|
413 |
-
#: wp-table-reloaded-admin.php:
|
414 |
-
msgid "You may export a table here. Just select the table, your desired export format and a delimiter (needed for CSV only).<br/>You may opt to download the export file. Otherwise it will be shown on this page."
|
415 |
-
msgstr "Здесь Вы можете сделать экспорт таблицы. Просто выберите в таблице нужный формат экспорта и разделитель (необходимо только для CSV).<br/>Вы можете выбрать файл для загрузки экспорта. В противном случае он будет показан на этой странице."
|
416 |
-
|
417 |
-
#: wp-table-reloaded-admin.php:1077
|
418 |
msgid "Select Table to Export"
|
419 |
msgstr "Выберите таблицу для экспорта"
|
420 |
|
421 |
-
#: wp-table-reloaded-admin.php:
|
422 |
msgid "Select Export Format"
|
423 |
msgstr "Выберите формат экспорта"
|
424 |
|
425 |
-
#: wp-table-reloaded-admin.php:
|
426 |
msgid "Select Delimiter to use"
|
427 |
msgstr "Выберите разделитель"
|
428 |
|
429 |
-
#: wp-table-reloaded-admin.php:
|
430 |
msgid "Download file"
|
431 |
msgstr "Скачать файл"
|
432 |
|
433 |
-
#: wp-table-reloaded-admin.php:
|
434 |
msgid "Yes, I want to download the export file."
|
435 |
msgstr "Да, я хочу скачать файл экспорта."
|
436 |
|
437 |
-
#: wp-table-reloaded-admin.php:
|
438 |
msgid "General Plugin Options"
|
439 |
msgstr "Главные настройки плагина"
|
440 |
|
441 |
-
#: wp-table-reloaded-admin.php:
|
442 |
-
msgid "You may change these global options.<br/>They will effect all tables or the general plugin behaviour."
|
443 |
-
msgstr "Вы можете изменить главные настройки плагина.<br/>Они повлияют на все таблицы или на общее поведение плагина."
|
444 |
-
|
445 |
-
#: wp-table-reloaded-admin.php:1149
|
446 |
msgid "Frontend Options"
|
447 |
msgstr "Внешние настройки"
|
448 |
|
449 |
-
#: wp-table-reloaded-admin.php:
|
450 |
msgid "Enable Tablesorter-JavaScript?"
|
451 |
msgstr "Разрешить сортировку в таблицах с помощью JavaScript?"
|
452 |
|
453 |
-
#: wp-table-reloaded-admin.php:
|
454 |
-
msgid "Admin Options"
|
455 |
-
msgstr "Административные настройки"
|
456 |
-
|
457 |
-
#: wp-table-reloaded-admin.php:1179
|
458 |
msgid "Uninstall Plugin upon Deactivation?"
|
459 |
msgstr "Удалить плагин после деактивации?"
|
460 |
|
461 |
-
#: wp-table-reloaded-admin.php:
|
462 |
msgid "Save Options"
|
463 |
msgstr "Сохранить настройки"
|
464 |
|
465 |
-
#: wp-table-reloaded-admin.php:
|
466 |
msgid "Manually Uninstall Plugin"
|
467 |
msgstr "Удалить плагин вручную"
|
468 |
|
469 |
-
#: wp-table-reloaded-admin.php:
|
470 |
-
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.<br/> Be very careful with this and only click the button if you know what you are doing!"
|
471 |
-
msgstr "Здесь Вы можете удалить плагин. Это <strong>приведет к удалению</strong> всех таблиц, данных, настроек и т.д., которые относятся к плагину, в том числе все таблицы, которые вы добавили или импортировали.<br/> Будьте очень осторожны и нажимайте на кнопку, если Вы знаете что делаете!"
|
472 |
-
|
473 |
-
#: wp-table-reloaded-admin.php:1548
|
474 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
475 |
msgstr "Вы на самом деле хотите удалить этот плагин со всеми данными?"
|
476 |
|
477 |
-
#: wp-table-reloaded-admin.php:
|
478 |
msgid "Are you really sure?"
|
479 |
msgstr "Вы действительно уверены?"
|
480 |
|
481 |
-
#: wp-table-reloaded-admin.php:
|
482 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
483 |
msgstr "Удалить плагин WP-Table Reloaded"
|
484 |
|
485 |
-
#: wp-table-reloaded-admin.php:
|
486 |
-
msgid "Information about the plugin"
|
487 |
-
msgstr "Информация о плагине"
|
488 |
-
|
489 |
-
#: wp-table-reloaded-admin.php:1218
|
490 |
msgid "Plugin Purpose"
|
491 |
msgstr "Цель плагина"
|
492 |
|
493 |
-
#: wp-table-reloaded-admin.php:
|
494 |
msgid "Usage"
|
495 |
msgstr "Использование"
|
496 |
|
497 |
-
#: wp-table-reloaded-admin.php:
|
498 |
msgid "More Information and Documentation"
|
499 |
msgstr "Дополнительная информация и документация"
|
500 |
|
501 |
-
#: wp-table-reloaded-admin.php:
|
502 |
msgid "Author and Licence"
|
503 |
msgstr "Автор и лицензия"
|
504 |
|
505 |
-
#: wp-table-reloaded-admin.php:
|
506 |
-
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licenced as Free Software under GPL 2."
|
507 |
-
msgstr "Этот плагин написал <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. Он доступен по лицензии Free Software under GPL 2."
|
508 |
-
|
509 |
-
#: wp-table-reloaded-admin.php:1246
|
510 |
msgid "Credits and Thanks"
|
511 |
msgstr "Благодарности"
|
512 |
|
513 |
-
#: wp-table-reloaded-admin.php:
|
514 |
msgid "List Tables"
|
515 |
msgstr "Список таблиц"
|
516 |
|
517 |
-
#: wp-table-reloaded-admin.php:
|
518 |
msgid "Plugin Options"
|
519 |
msgstr "Настройки плагина"
|
520 |
|
521 |
-
#: wp-table-reloaded-admin.php:
|
522 |
msgid "About the Plugin"
|
523 |
msgstr "О плагине"
|
524 |
|
525 |
-
#: wp-table-reloaded-admin.php:
|
526 |
-
#, php-format
|
527 |
-
msgid "Edit Table \"%s\""
|
528 |
-
msgstr "Редактировать таблицу \"%s\""
|
529 |
-
|
530 |
-
#: wp-table-reloaded-admin.php:737
|
531 |
-
#, php-format
|
532 |
-
msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
|
533 |
-
msgstr "Если вы хотите отобразить таблицу на Вашей странице, в новости или текстовом виджете, используйте этот код: <strong>[table id=%s /]</strong>"
|
534 |
-
|
535 |
-
#: wp-table-reloaded-admin.php:824
|
536 |
msgid "Data Manipulation"
|
537 |
msgstr "Работа с данными"
|
538 |
|
539 |
-
#: wp-table-reloaded-admin.php:
|
540 |
msgid "Insert Link"
|
541 |
msgstr "Ссылка"
|
542 |
|
543 |
-
#: wp-table-reloaded-admin.php:
|
|
|
544 |
msgid "Insert Image"
|
545 |
msgstr "Картинка"
|
546 |
|
547 |
-
#: wp-table-reloaded-admin.php:
|
548 |
msgid "URL of link to insert"
|
549 |
msgstr "УРЛ ссылки для вставки"
|
550 |
|
551 |
-
#: wp-table-reloaded-admin.php:
|
552 |
msgid "Text of link"
|
553 |
msgstr "Текст ссылки"
|
554 |
|
555 |
-
#: wp-table-reloaded-admin.php:
|
556 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
557 |
msgstr "Чтобы добавить ссылку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
|
558 |
|
559 |
-
#: wp-table-reloaded-admin.php:
|
560 |
-
msgid "URL of image to insert"
|
561 |
-
msgstr "УРЛ картинки для вставки"
|
562 |
-
|
563 |
-
#: wp-table-reloaded-admin.php:1539
|
564 |
-
msgid "To insert the following image into a cell, just click the cell after closing this dialog."
|
565 |
-
msgstr "Чтобы вставить картинку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
|
566 |
-
|
567 |
-
#: wp-table-reloaded-admin.php:951
|
568 |
-
msgid "You may import a table from existing data here.<br/>It may be a CSV, XML or HTML file. It needs a certain structure though. Please consult the documentation."
|
569 |
-
msgstr "Здесь Вы можете импортировать таблицу из существующей.<br/>Это может быть CSV, XML или HTML файл. Если что-то непонятно, пожалуйста, обратитесь к документации."
|
570 |
-
|
571 |
-
#: wp-table-reloaded-admin.php:995
|
572 |
msgid "Import from original wp-Table plugin"
|
573 |
msgstr "Импорт из оригинального плагина wp-Table"
|
574 |
|
575 |
-
#: wp-table-reloaded-admin.php:
|
576 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
577 |
msgstr "Вы на самом деле хотите импортировать эту таблицу из плагина wp-Table?"
|
578 |
|
579 |
-
#: wp-table-reloaded-admin.php:
|
580 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
581 |
msgstr "Плагин wp-Table от Alex Rabe установлен, но таблицы не найдены."
|
582 |
|
583 |
-
#: wp-table-reloaded-admin.php:
|
584 |
msgid "Add custom CSS?"
|
585 |
msgstr "Добавить произвольный CSS?"
|
586 |
|
587 |
-
#: wp-table-reloaded-admin.php:
|
588 |
msgid "Enter custom CSS"
|
589 |
msgstr "Введите произвольный CSS"
|
590 |
|
591 |
-
#: wp-table-reloaded-admin.php:
|
592 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
593 |
msgstr "Вы действительно хотите активировать это? Вы должны сделать это до удаления!"
|
594 |
|
595 |
-
#: wp-table-reloaded-admin.php:
|
596 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
597 |
msgstr "Спасибо <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> за оригинальный плагин wp-Table,"
|
598 |
|
599 |
-
#: wp-table-reloaded-admin.php:
|
600 |
msgid "the submitters of translations:"
|
601 |
msgstr "тем кто сделал перевод:"
|
602 |
|
603 |
-
#: wp-table-reloaded-admin.php:
|
604 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
605 |
msgstr "Албанский (спасибо <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
606 |
|
607 |
-
#: wp-table-reloaded-admin.php:
|
608 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
609 |
msgstr "Французкий (спасибо <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
610 |
|
611 |
-
#: wp-table-reloaded-admin.php:
|
612 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
613 |
msgstr "Русский (спасибо <a href=\"http://wp-skins.info/\">Truper</a>)"
|
614 |
|
615 |
-
#: wp-table-reloaded-admin.php:
|
616 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
617 |
msgstr "Шведский (спасибо <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
618 |
|
619 |
-
#: wp-table-reloaded-admin.php:
|
620 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
621 |
msgstr "Турецкий (спасибо <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
622 |
|
@@ -628,248 +581,736 @@ msgstr ". (точка)"
|
|
628 |
msgid "| (pipe)"
|
629 |
msgstr "| (черта)"
|
630 |
|
631 |
-
#: wp-table-reloaded-admin.php:
|
632 |
msgid "Table sorted successfully."
|
633 |
msgstr "Таблица успешно отсортирована."
|
634 |
|
635 |
-
#: wp-table-reloaded-admin.php:
|
636 |
msgid "Table copied successfully."
|
637 |
msgid_plural "Tables copied successfully."
|
638 |
msgstr[0] "Таблица успешно скопирована."
|
639 |
msgstr[1] "Таблицы успешно скопированы."
|
640 |
msgstr[2] ""
|
641 |
|
642 |
-
#: wp-table-reloaded-admin.php:
|
643 |
msgid "Table deleted successfully."
|
644 |
msgid_plural "Tables deleted successfully."
|
645 |
msgstr[0] "Таблица успешно удалена."
|
646 |
msgstr[1] "Таблицы успешно удалены."
|
647 |
msgstr[2] ""
|
648 |
|
649 |
-
#: wp-table-reloaded-admin.php:
|
650 |
msgid "Table imported successfully."
|
651 |
msgid_plural "Tables imported successfully."
|
652 |
msgstr[0] "Таблица успешно импортирована."
|
653 |
msgstr[1] "Таблицы успешно импортированы."
|
654 |
msgstr[2] ""
|
655 |
|
656 |
-
#: wp-table-reloaded-admin.php:
|
657 |
msgid "You did not select any tables!"
|
658 |
msgstr "Вы не выбрали ни одной таблицы!"
|
659 |
|
660 |
-
#: wp-table-reloaded-admin.php:
|
661 |
-
#: wp-table-reloaded-admin.php:
|
662 |
msgid "This is a list of all available tables."
|
663 |
msgstr "Это список всех доступных таблиц."
|
664 |
|
665 |
-
#: wp-table-reloaded-admin.php:
|
666 |
msgid "You may insert a table into a post or page here."
|
667 |
msgstr "Здесь Вы можете вставить таблицу в новость или страницу."
|
668 |
|
669 |
-
#: wp-table-reloaded-admin.php:
|
670 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
671 |
msgstr "Нажмите \"Вставить\" после желаемой таблицы и соответствующий код будет вставлен в редактор (<strong>[table id=<the_table_ID> /]</strong>)."
|
672 |
|
673 |
-
#: wp-table-reloaded-admin.php:
|
674 |
msgid "Insert"
|
675 |
msgstr "Вставить"
|
676 |
|
677 |
-
#: wp-table-reloaded-admin.php:
|
678 |
msgid "You may add, edit, copy or delete tables here."
|
679 |
msgstr "Здесь Вы можете добавлять, редактировать, копировать или удалять таблицы."
|
680 |
|
681 |
-
#: wp-table-reloaded-admin.php:
|
682 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
683 |
msgstr "Если Вы хотите отобразить таблицу на странице, в новости или текстовом виджете, то используйте код <strong>[table id=<the_table_ID> /]</strong> или нажмите на кнопку \"Таблица\" в панели редактора."
|
684 |
|
685 |
-
#: wp-table-reloaded-admin.php:
|
686 |
-
#: wp-table-reloaded-admin.php:
|
687 |
msgid "Bulk actions:"
|
688 |
msgstr "Массовые действия:"
|
689 |
|
690 |
-
#: wp-table-reloaded-admin.php:
|
691 |
msgid "Copy Tables"
|
692 |
msgstr "Копировать таблицы"
|
693 |
|
694 |
-
#: wp-table-reloaded-admin.php:
|
695 |
msgid "Delete Tables"
|
696 |
msgstr "Удалить таблицы"
|
697 |
|
698 |
-
#: wp-table-reloaded-admin.php:
|
699 |
-
#: wp-table-reloaded-admin.php:
|
700 |
-
#: wp-table-reloaded-admin.php:
|
701 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
702 |
msgid "Hide"
|
703 |
msgstr "Скрыть"
|
704 |
|
705 |
-
#: wp-table-reloaded-admin.php:
|
706 |
-
#: wp-table-reloaded-admin.php:
|
707 |
-
#: wp-table-reloaded-admin.php:
|
708 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
709 |
msgid "Expand"
|
710 |
msgstr "Развернуть"
|
711 |
|
712 |
-
#: wp-table-reloaded-admin.php:
|
713 |
msgid "ascending"
|
714 |
msgstr "по возрастанию"
|
715 |
|
716 |
-
#: wp-table-reloaded-admin.php:
|
717 |
msgid "descending"
|
718 |
msgstr "по убыванию"
|
719 |
|
720 |
-
#: wp-table-reloaded-admin.php:
|
721 |
#, php-format
|
722 |
msgid "Sort table by column %s in %s order"
|
723 |
msgstr "Сортировка таблицы по столбцам %s и %s"
|
724 |
|
725 |
-
#: wp-table-reloaded-admin.php:
|
726 |
msgid "Sort"
|
727 |
msgstr "Сортировка"
|
728 |
|
729 |
-
#: wp-table-reloaded-admin.php:
|
730 |
msgid "Import Tables"
|
731 |
msgstr "Импорт таблиц"
|
732 |
|
733 |
-
#: wp-table-reloaded-admin.php:
|
734 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
735 |
msgstr "Да, разрешить <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Это включает сортировку в Ваших таблицах (может быть активирована для каждой таблицы отдельно)."
|
736 |
|
737 |
-
#: wp-table-reloaded-admin.php:
|
738 |
-
msgid "Yes, include and load the following CSS-snippet on my site inside a [style]-HTML-tag."
|
739 |
-
msgstr "Да, включить и загрузить следующий CSS-фрагмент на свой сайт внутри [style]-HTML-tag."
|
740 |
-
|
741 |
-
#: wp-table-reloaded-admin.php:1166
|
742 |
-
#, php-format
|
743 |
-
msgid "(You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" <small>(located at %s)</small>) instead."
|
744 |
-
msgstr "(Вы можете добиться лучшей производительности сайта, если добавите CSS стили в файл темы \"style.css\" <small>(находится %s)</small>)."
|
745 |
-
|
746 |
-
#: wp-table-reloaded-admin.php:1167
|
747 |
#, php-format
|
748 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
749 |
msgstr "Смотрите <a href=\"%s\">сайт плагина</a> для просмотра примеров или использовать один из следующих: <a href=\"%s\">Пример стиля 1</a> <a href=\"%s\">Пример стиля 2</a>"
|
750 |
|
751 |
-
#: wp-table-reloaded-admin.php:
|
752 |
msgid "Just copy the contents of a file into the textarea."
|
753 |
msgstr "Просто скопируйте содержимое файла в область ввода."
|
754 |
|
755 |
-
#: wp-table-reloaded-admin.php:
|
756 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
757 |
msgstr "Да, удалить все, когда плагин будет отключен. Внимание: Вы должны поставить этот флажок, непосредственно перед отключением плагина со страницы плагинов WordPress!"
|
758 |
|
759 |
-
#: wp-table-reloaded-admin.php:
|
760 |
-
msgid "<small>(This setting does not influence the \"Manually Uninstall Plugin\" button below!)</small>"
|
761 |
-
msgstr "<small>(Этот параметр не влияет на кнопку ниже \"Ручное удаление плагина\"!)</small>"
|
762 |
-
|
763 |
-
#: wp-table-reloaded-admin.php:1220
|
764 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
765 |
msgstr "Этот плагин позволит вам создавать и управлять таблицами в панели администратора WordPress."
|
766 |
|
767 |
-
#: wp-table-reloaded-admin.php:
|
768 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
769 |
msgstr "Эти таблицы могут содержать строки, цифры и даже HTML (например изображения или ссылки)."
|
770 |
|
771 |
-
#: wp-table-reloaded-admin.php:
|
772 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
773 |
msgstr "Вы можете отображать таблицы в ваших новостях, на страницах или в текстовых виджетах, используя код."
|
774 |
|
775 |
-
#: wp-table-reloaded-admin.php:
|
776 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
777 |
msgstr "Если вы хотите отображать свои таблицы в вашей теме, вы можете использовать функции тэгов шаблона."
|
778 |
|
779 |
-
#: wp-table-reloaded-admin.php:
|
780 |
msgid "At first you should add or import a table."
|
781 |
msgstr "Сначала Вы должны добавить или импортировать таблицы."
|
782 |
|
783 |
-
#: wp-table-reloaded-admin.php:
|
784 |
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."
|
785 |
msgstr "Это означает, что вы либо создаете пустую таблицу, либо Вы загружаете существующую таблицу из CSV, XML или HTML файла."
|
786 |
|
787 |
-
#: wp-table-reloaded-admin.php:
|
788 |
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."
|
789 |
msgstr "Затем вы можете изменить данные или структуру таблицы (например, путем включения или удаления строк и столбцов, заменой строк и столбцов или их сортировкой), и выбрать настройки для каждой таблицы, такие как чередование цвета у строк, печатать название или описание."
|
790 |
|
791 |
-
#: wp-table-reloaded-admin.php:
|
792 |
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."
|
793 |
msgstr "Чтобы легко добавлять ссылки или изображения в ячейку, используйте кнопки. Где Вы введете адрес и название. Затем вы можете нажать на ячейку и соответствующий HTML код будет добавлен."
|
794 |
|
795 |
-
#: wp-table-reloaded-admin.php:
|
796 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
797 |
msgstr "Чтобы вставить таблицу в ваши новости, страницы или текстовые виджеты, используйте код [table id=<table-id>]."
|
798 |
|
799 |
-
#: wp-table-reloaded-admin.php:
|
800 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
801 |
msgstr "Так же Вы можете выбрать требуемую таблицу из списка (после нажатия на кнопку \"Таблицы\" в панели редактора) и соответствующий код будет добавлен автоматически."
|
802 |
|
803 |
-
#: wp-table-reloaded-admin.php:
|
804 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
805 |
msgstr "Вы также можете менять стиль вашей таблицы с помощью CSS. Примеры можно посмотреть на веб-сайте плагина. Каждая таблица имеет CSS класс \"wp-table-reloaded\". Каждая таблица имеет также класс \"wp-table-reloaded-<table-id>\"."
|
806 |
|
807 |
-
#: wp-table-reloaded-admin.php:
|
808 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
809 |
msgstr "Вы также можете использовать классы \"column-<number>\" и \"row-<number>\" для изменения стиля строк и столбцов. Используйте этот стиль, например, для изменения ширины колонок и выравнивание текста."
|
810 |
|
811 |
-
#: wp-table-reloaded-admin.php:
|
812 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
813 |
-
msgstr "Больше информации Вы найдете на a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a> или на странице плагина в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
814 |
|
815 |
-
#: wp-table-reloaded-admin.php:
|
816 |
-
#: wp-table-reloaded-admin.php:
|
817 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
818 |
msgstr "Смотрите <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">документацию</a> или узнайте, как получить <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">поддержку</a>."
|
819 |
|
820 |
-
#: wp-table-reloaded-admin.php:
|
821 |
-
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
822 |
-
msgstr "Если Вам понравился плагин, пожалуйста рассмотрите <a href=\"http://tobias.baethge.com/wordpress-plugins/donate/\"><strong>пожертвование</strong></a> и оцените плагин в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
823 |
-
|
824 |
-
#: wp-table-reloaded-admin.php:1241
|
825 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
826 |
msgstr "Пожертвования и хорошие оценки в рейтинге подтолкнут меня к дальнейшей разработке плагина и возможности предоставить больше часов поддержки пользователей плагина. Спасибо за любую сумму!"
|
827 |
|
828 |
-
#: wp-table-reloaded-admin.php:
|
829 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
830 |
msgstr "Christian Bach за <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
831 |
|
832 |
-
#: wp-table-reloaded-admin.php:
|
833 |
-
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
|
834 |
-
msgstr "Чешский (thanks to <a href=\"http://separatista.net/\">Pavel</a>)"
|
835 |
-
|
836 |
-
#: wp-table-reloaded-admin.php:1256
|
837 |
-
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Mat�as Halles</a>)"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: wp-table-reloaded-admin.php:1259
|
841 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
842 |
msgstr "и всем пожертвовавшим, сторонникам, обозревателям и пользователям плагина!"
|
843 |
|
844 |
-
#: wp-table-reloaded-admin.php:
|
845 |
msgid "Debug and Version Information"
|
846 |
msgstr "Отладка и информация о версии"
|
847 |
|
848 |
-
#: wp-table-reloaded-admin.php:
|
849 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
850 |
msgstr "Вы используете следующую версию программного обеспечения. <strong>Просьба предоставить эту информацию в сообщениях об ошибках.</strong>"
|
851 |
|
852 |
-
#: wp-table-reloaded-admin.php:
|
853 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
854 |
msgstr "Более подробную информацию можно найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a>."
|
855 |
|
856 |
-
#: wp-table-reloaded-admin.php:
|
857 |
-
msgid "''alt'' text of the image"
|
858 |
-
msgstr "''alt'' текст для картинки"
|
859 |
-
|
860 |
-
#: wp-table-reloaded-admin.php:1540
|
861 |
msgid "Do you want to copy the selected tables?"
|
862 |
msgstr "Вы хотите скопировать выбранные таблицы?"
|
863 |
|
864 |
-
#: wp-table-reloaded-admin.php:
|
865 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
866 |
msgstr "Выбранные таблицы и все содержимое будет стерто. Вы действительно хотите удалить их?"
|
867 |
|
868 |
-
#: wp-table-reloaded-admin.php:
|
869 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
870 |
msgstr "Вы действительно хотите импортировать выбранные таблицы из плагина wp-Table?"
|
871 |
|
872 |
-
#: wp-table-reloaded-admin.php:
|
873 |
msgid "Table"
|
874 |
msgstr "Таблица"
|
875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP-Table Reloaded v1.0.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
"PO-Revision-Date: 2009-04-22 09:52+0400\n"
|
7 |
"Last-Translator: Truper (http://wp-skins.info)\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-Poedit-Language: Russian\n"
|
14 |
"X-Poedit-Country: RUSSIA\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;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
#: php/wp-table-reloaded-export.class.php:30
|
23 |
#: php/wp-table-reloaded-import.class.php:38
|
46 |
msgid ": (colon)"
|
47 |
msgstr ": (двоеточие)"
|
48 |
|
49 |
+
#: wp-table-reloaded-admin.php:208
|
50 |
#, php-format
|
51 |
msgid "Table \"%s\" added successfully."
|
52 |
msgstr "Таблица \"%s\" успешно добавлена."
|
53 |
|
54 |
+
#: wp-table-reloaded-admin.php:241
|
55 |
msgid "Table edited successfully."
|
56 |
msgstr "Таблица успешно отредактирована."
|
57 |
|
58 |
+
#: wp-table-reloaded-admin.php:279
|
59 |
msgid "Rows swapped successfully."
|
60 |
msgstr "Строки успешно поменяны местами."
|
61 |
|
62 |
+
#: wp-table-reloaded-admin.php:300
|
63 |
msgid "Columns swapped successfully."
|
64 |
msgstr "Столбцы успешно поменяны местами."
|
65 |
|
66 |
+
#: wp-table-reloaded-admin.php:470
|
67 |
+
#: wp-table-reloaded-admin.php:525
|
68 |
msgid "Copy of"
|
69 |
msgstr "Копия"
|
70 |
|
71 |
+
#: wp-table-reloaded-admin.php:530
|
72 |
#, php-format
|
73 |
msgid "Table \"%s\" copied successfully."
|
74 |
msgstr "Таблица \"%s\" успешно скопирована."
|
75 |
|
76 |
+
#: wp-table-reloaded-admin.php:546
|
77 |
#, php-format
|
78 |
msgid "Table \"%s\" deleted successfully."
|
79 |
msgstr "Таблица \"%s\" успешно удалена."
|
80 |
|
81 |
+
#: wp-table-reloaded-admin.php:557
|
82 |
msgid "Row deleted successfully."
|
83 |
msgstr "Строка успешно удалена."
|
84 |
|
85 |
+
#: wp-table-reloaded-admin.php:571
|
86 |
msgid "Column deleted successfully."
|
87 |
msgstr "Столбец успешно удален."
|
88 |
|
89 |
+
#: wp-table-reloaded-admin.php:588
|
90 |
msgid "Delete failed."
|
91 |
msgstr "Ошибка при удалении."
|
92 |
|
93 |
+
#: wp-table-reloaded-admin.php:614
|
94 |
msgid "Row inserted successfully."
|
95 |
msgstr "Строка вставлена успешно."
|
96 |
|
97 |
+
#: wp-table-reloaded-admin.php:624
|
98 |
msgid "Column inserted successfully."
|
99 |
msgstr "Столбец вставлен успешно."
|
100 |
|
101 |
+
#: wp-table-reloaded-admin.php:627
|
102 |
msgid "Insert failed."
|
103 |
msgstr "Ошибка при вставке."
|
104 |
|
105 |
+
#: wp-table-reloaded-admin.php:655
|
106 |
+
#: wp-table-reloaded-admin.php:664
|
107 |
+
#: wp-table-reloaded-admin.php:674
|
108 |
msgid "Imported Table"
|
109 |
msgstr "Импортированная таблица"
|
110 |
|
111 |
+
#: wp-table-reloaded-admin.php:665
|
112 |
msgid "via form"
|
113 |
msgstr "из формы"
|
114 |
|
115 |
+
#: wp-table-reloaded-admin.php:701
|
116 |
+
#: wp-table-reloaded-admin.php:739
|
117 |
msgid "Table imported successfully."
|
118 |
msgstr "Таблица импортирована успешно."
|
119 |
|
120 |
+
#: wp-table-reloaded-admin.php:685
|
121 |
+
#: wp-table-reloaded-admin.php:716
|
122 |
msgid "Table could not be imported."
|
123 |
msgstr "Таблица не может быть импортирована."
|
124 |
|
125 |
+
#: wp-table-reloaded-admin.php:766
|
126 |
#, php-format
|
127 |
msgid "Table \"%s\" exported successfully."
|
128 |
msgstr "Таблица \"%s\" экспортирована успешно."
|
129 |
|
130 |
+
#: wp-table-reloaded-admin.php:797
|
131 |
msgid "Options saved successfully."
|
132 |
msgstr "Настройки успешно сохранены."
|
133 |
|
134 |
+
#: wp-table-reloaded-admin.php:815
|
135 |
+
#: wp-table-reloaded-admin.php:958
|
136 |
msgid "WP-Table Reloaded"
|
137 |
msgstr "Работа с таблицами"
|
138 |
|
139 |
+
#: wp-table-reloaded-admin.php:816
|
140 |
+
#: wp-table-reloaded-admin.php:1967
|
141 |
msgid "Plugin deactivated successfully."
|
142 |
msgstr "Плагин успешно деактивирован."
|
143 |
|
144 |
+
#: wp-table-reloaded-admin.php:817
|
145 |
+
#: wp-table-reloaded-admin.php:1967
|
146 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
147 |
msgstr "Все таблицы, данные и настройки были удалены. Теперь можно удалить сам плагин из директории плагинов WordPress (wp-content/plugins)."
|
148 |
|
149 |
+
#: wp-table-reloaded-admin.php:833
|
150 |
+
#: wp-table-reloaded-admin.php:958
|
151 |
msgid "List of Tables"
|
152 |
msgstr "Список таблиц"
|
153 |
|
154 |
+
#: wp-table-reloaded-admin.php:846
|
155 |
+
#: wp-table-reloaded-admin.php:854
|
156 |
+
#: wp-table-reloaded-admin.php:973
|
157 |
+
#: wp-table-reloaded-admin.php:982
|
158 |
+
#: wp-table-reloaded-admin.php:1567
|
159 |
+
#: wp-table-reloaded-admin.php:1576
|
160 |
msgid "ID"
|
161 |
msgstr "ID"
|
162 |
|
163 |
+
#: wp-table-reloaded-admin.php:847
|
164 |
+
#: wp-table-reloaded-admin.php:855
|
165 |
+
#: wp-table-reloaded-admin.php:974
|
166 |
+
#: wp-table-reloaded-admin.php:983
|
167 |
+
#: wp-table-reloaded-admin.php:1067
|
168 |
+
#: wp-table-reloaded-admin.php:1121
|
169 |
+
#: wp-table-reloaded-admin.php:1568
|
170 |
+
#: wp-table-reloaded-admin.php:1577
|
171 |
msgid "Table Name"
|
172 |
msgstr "Имя таблицы"
|
173 |
|
174 |
+
#: wp-table-reloaded-admin.php:848
|
175 |
+
#: wp-table-reloaded-admin.php:856
|
176 |
+
#: wp-table-reloaded-admin.php:975
|
177 |
+
#: wp-table-reloaded-admin.php:984
|
178 |
+
#: wp-table-reloaded-admin.php:1071
|
179 |
+
#: wp-table-reloaded-admin.php:1125
|
180 |
+
#: wp-table-reloaded-admin.php:1569
|
181 |
+
#: wp-table-reloaded-admin.php:1578
|
182 |
msgid "Description"
|
183 |
msgstr "Описание"
|
184 |
|
185 |
+
#: wp-table-reloaded-admin.php:849
|
186 |
+
#: wp-table-reloaded-admin.php:857
|
187 |
+
#: wp-table-reloaded-admin.php:1414
|
188 |
+
#: wp-table-reloaded-admin.php:1570
|
189 |
+
#: wp-table-reloaded-admin.php:1579
|
190 |
msgid "Action"
|
191 |
msgstr "Действие"
|
192 |
|
193 |
+
#: wp-table-reloaded-admin.php:1017
|
194 |
msgid "Edit"
|
195 |
msgstr "Изменить"
|
196 |
|
197 |
+
#: wp-table-reloaded-admin.php:2267
|
198 |
msgid "Do you want to copy this table?"
|
199 |
msgstr "Вы хотите скопировать эту таблицу?"
|
200 |
|
201 |
+
#: wp-table-reloaded-admin.php:1020
|
202 |
msgid "Copy"
|
203 |
msgstr "Копировать"
|
204 |
|
205 |
+
#: wp-table-reloaded-admin.php:1021
|
206 |
msgid "Export"
|
207 |
msgstr "Экспорт"
|
208 |
|
209 |
+
#: wp-table-reloaded-admin.php:2268
|
210 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
211 |
msgstr "Таблица и все её содержимое будет стерто. Вы действительно хотите удалить её?"
|
212 |
|
213 |
+
#: wp-table-reloaded-admin.php:1022
|
214 |
msgid "Delete"
|
215 |
msgstr "Удалить"
|
216 |
|
217 |
+
#: wp-table-reloaded-admin.php:886
|
218 |
+
#: wp-table-reloaded-admin.php:1045
|
219 |
+
#: wp-table-reloaded-admin.php:1699
|
220 |
msgid "No tables found."
|
221 |
msgstr "Таблицы не найдены."
|
222 |
|
223 |
+
#: wp-table-reloaded-admin.php:1045
|
224 |
+
#: wp-table-reloaded-admin.php:1699
|
225 |
#, php-format
|
226 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
227 |
msgstr "Вы можете <a href=\"%s\">добавить</a> или <a href=\"%s\">импортировать</a>!"
|
228 |
|
229 |
+
#: wp-table-reloaded-admin.php:1055
|
230 |
+
#: wp-table-reloaded-admin.php:1902
|
231 |
msgid "Add new Table"
|
232 |
msgstr "Создать таблицу"
|
233 |
|
234 |
+
#: wp-table-reloaded-admin.php:1068
|
235 |
+
#: wp-table-reloaded-admin.php:1068
|
|
|
|
|
|
|
236 |
msgid "Enter Table Name"
|
237 |
msgstr "Введите имя таблицы"
|
238 |
|
239 |
+
#: wp-table-reloaded-admin.php:1072
|
240 |
+
#: wp-table-reloaded-admin.php:1072
|
241 |
msgid "Enter Description"
|
242 |
msgstr "Введите описание"
|
243 |
|
244 |
+
#: wp-table-reloaded-admin.php:1075
|
245 |
msgid "Number of Rows"
|
246 |
msgstr "Количество строк"
|
247 |
|
248 |
+
#: wp-table-reloaded-admin.php:1079
|
249 |
msgid "Number of Columns"
|
250 |
msgstr "Количество столбцов"
|
251 |
|
252 |
+
#: wp-table-reloaded-admin.php:1086
|
253 |
msgid "Add Table"
|
254 |
msgstr "Добавить таблицу"
|
255 |
|
256 |
+
#: wp-table-reloaded-admin.php:1105
|
257 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
258 |
msgstr "Здесь Вы можете изменять данные в таблице. Ещё Вы можете добавлять или удалять строки и столбцы."
|
259 |
|
260 |
+
#: wp-table-reloaded-admin.php:1113
|
261 |
msgid "Table Information"
|
262 |
msgstr "Информация о таблице"
|
263 |
|
264 |
+
#: wp-table-reloaded-admin.php:1149
|
265 |
msgid "Table Contents"
|
266 |
msgstr "Содержание таблицы"
|
267 |
|
268 |
+
#: wp-table-reloaded-admin.php:1190
|
269 |
msgid "Insert Row"
|
270 |
msgstr "Вставить строку"
|
271 |
|
272 |
+
#: wp-table-reloaded-admin.php:2269
|
273 |
msgid "Do you really want to delete this row?"
|
274 |
msgstr "Вы на самом деле хотите удалить эту строку?"
|
275 |
|
276 |
+
#: wp-table-reloaded-admin.php:1192
|
277 |
msgid "Delete Row"
|
278 |
msgstr "Удалить строку"
|
279 |
|
280 |
+
#: wp-table-reloaded-admin.php:1206
|
281 |
msgid "Insert Column"
|
282 |
msgstr "Вставить столбец"
|
283 |
|
284 |
+
#: wp-table-reloaded-admin.php:2270
|
285 |
msgid "Do you really want to delete this column?"
|
286 |
msgstr "Вы на самом деле хотите удалить этот столбец?"
|
287 |
|
288 |
+
#: wp-table-reloaded-admin.php:1208
|
289 |
msgid "Delete Column"
|
290 |
msgstr "Удалить столбец"
|
291 |
|
292 |
+
#: wp-table-reloaded-admin.php:1260
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
#, php-format
|
294 |
msgid "Swap rows %s and %s"
|
295 |
msgstr "Поменять местами строки %s и %s"
|
296 |
|
297 |
+
#: wp-table-reloaded-admin.php:1262
|
298 |
+
#: wp-table-reloaded-admin.php:1280
|
299 |
msgid "Swap"
|
300 |
msgstr "Поменять"
|
301 |
|
302 |
+
#: wp-table-reloaded-admin.php:1278
|
303 |
#, php-format
|
304 |
msgid "Swap columns %s and %s"
|
305 |
msgstr "Поменять местами столбцы %s и %s"
|
306 |
|
307 |
+
#: wp-table-reloaded-admin.php:1362
|
308 |
msgid "Table Settings"
|
309 |
msgstr "Настройки таблицы"
|
310 |
|
311 |
+
#: wp-table-reloaded-admin.php:1364
|
312 |
msgid "These settings will only be used for this table."
|
313 |
msgstr "Эти настройки используются только для этой таблицы."
|
314 |
|
315 |
+
#: wp-table-reloaded-admin.php:1367
|
316 |
msgid "Alternating row colors"
|
317 |
msgstr "Разные цвета для строк"
|
318 |
|
319 |
+
#: wp-table-reloaded-admin.php:1368
|
320 |
msgid "Every second row will have an alternating background color."
|
321 |
msgstr "Каждая вторая строка будет иметь другой цвет фона."
|
322 |
|
323 |
+
#: wp-table-reloaded-admin.php:1371
|
324 |
msgid "Use Table Headline"
|
325 |
msgstr "Использовать заголовок таблицы"
|
326 |
|
327 |
+
#: wp-table-reloaded-admin.php:1375
|
|
|
|
|
|
|
|
|
328 |
msgid "Print Table Name"
|
329 |
msgstr "Печатать название таблицы"
|
330 |
|
331 |
+
#: wp-table-reloaded-admin.php:1379
|
|
|
|
|
|
|
|
|
332 |
msgid "Print Table Description"
|
333 |
msgstr "Печатать описание таблицы"
|
334 |
|
335 |
+
#: wp-table-reloaded-admin.php:1380
|
336 |
msgid "The Table Description will be written under the table."
|
337 |
msgstr "Описание таблицы будет написано после таблицы."
|
338 |
|
339 |
+
#: wp-table-reloaded-admin.php:1383
|
340 |
msgid "Use Tablesorter"
|
341 |
msgstr "Использовать сортировку в таблице"
|
342 |
|
343 |
+
#: wp-table-reloaded-admin.php:1139
|
344 |
+
#: wp-table-reloaded-admin.php:1353
|
345 |
+
#: wp-table-reloaded-admin.php:1393
|
346 |
+
#: wp-table-reloaded-admin.php:1444
|
|
|
|
|
347 |
msgid "Update Changes"
|
348 |
msgstr "Сохранить изменения"
|
349 |
|
350 |
+
#: wp-table-reloaded-admin.php:1140
|
351 |
+
#: wp-table-reloaded-admin.php:1354
|
352 |
+
#: wp-table-reloaded-admin.php:1394
|
353 |
+
#: wp-table-reloaded-admin.php:1445
|
354 |
msgid "Save and go back"
|
355 |
msgstr "Сохранить и вернуться"
|
356 |
|
357 |
+
#: wp-table-reloaded-admin.php:1143
|
358 |
+
#: wp-table-reloaded-admin.php:1357
|
359 |
+
#: wp-table-reloaded-admin.php:1397
|
360 |
+
#: wp-table-reloaded-admin.php:1448
|
361 |
msgid "Cancel"
|
362 |
msgstr "Отмена"
|
363 |
|
364 |
+
#: wp-table-reloaded-admin.php:1453
|
365 |
msgid "Other actions"
|
366 |
msgstr "Другие действия"
|
367 |
|
368 |
+
#: wp-table-reloaded-admin.php:1456
|
369 |
msgid "Delete Table"
|
370 |
msgstr "Удалить таблицу"
|
371 |
|
372 |
+
#: wp-table-reloaded-admin.php:1457
|
373 |
+
#: wp-table-reloaded-admin.php:1688
|
374 |
msgid "Export Table"
|
375 |
msgstr "Экспорт таблицы"
|
376 |
|
377 |
+
#: wp-table-reloaded-admin.php:1469
|
378 |
+
#: wp-table-reloaded-admin.php:1903
|
379 |
msgid "Import a Table"
|
380 |
msgstr "Импорт таблицы"
|
381 |
|
382 |
+
#: wp-table-reloaded-admin.php:1480
|
383 |
msgid "Select Import Format"
|
384 |
msgstr "Выберите формат для импорта"
|
385 |
|
386 |
+
#: wp-table-reloaded-admin.php:1679
|
387 |
msgid "<small>(Only needed for CSV export.)</small>"
|
388 |
msgstr "<small>(Необходимо только для CSV.)</small>"
|
389 |
|
390 |
+
#: wp-table-reloaded-admin.php:1523
|
391 |
msgid "Select File with Table to Import"
|
392 |
msgstr "Выберите файл с таблицей для импорта"
|
393 |
|
394 |
+
#: wp-table-reloaded-admin.php:1535
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "Paste data with Table to Import"
|
396 |
msgstr "Вставьте данные с таблицей для импорта"
|
397 |
|
398 |
+
#: wp-table-reloaded-admin.php:1541
|
399 |
msgid "Import Table"
|
400 |
msgstr "Импорт таблицы"
|
401 |
|
402 |
+
#: wp-table-reloaded-admin.php:1600
|
403 |
msgid "Import"
|
404 |
msgstr "Импорт"
|
405 |
|
406 |
+
#: wp-table-reloaded-admin.php:1633
|
407 |
+
#: wp-table-reloaded-admin.php:1904
|
408 |
msgid "Export a Table"
|
409 |
msgstr "Экспорт таблицы"
|
410 |
|
411 |
+
#: wp-table-reloaded-admin.php:1647
|
|
|
|
|
|
|
|
|
412 |
msgid "Select Table to Export"
|
413 |
msgstr "Выберите таблицу для экспорта"
|
414 |
|
415 |
+
#: wp-table-reloaded-admin.php:1662
|
416 |
msgid "Select Export Format"
|
417 |
msgstr "Выберите формат экспорта"
|
418 |
|
419 |
+
#: wp-table-reloaded-admin.php:1672
|
420 |
msgid "Select Delimiter to use"
|
421 |
msgstr "Выберите разделитель"
|
422 |
|
423 |
+
#: wp-table-reloaded-admin.php:1682
|
424 |
msgid "Download file"
|
425 |
msgstr "Скачать файл"
|
426 |
|
427 |
+
#: wp-table-reloaded-admin.php:1683
|
428 |
msgid "Yes, I want to download the export file."
|
429 |
msgstr "Да, я хочу скачать файл экспорта."
|
430 |
|
431 |
+
#: wp-table-reloaded-admin.php:1708
|
432 |
msgid "General Plugin Options"
|
433 |
msgstr "Главные настройки плагина"
|
434 |
|
435 |
+
#: wp-table-reloaded-admin.php:1720
|
|
|
|
|
|
|
|
|
436 |
msgid "Frontend Options"
|
437 |
msgstr "Внешние настройки"
|
438 |
|
439 |
+
#: wp-table-reloaded-admin.php:1724
|
440 |
msgid "Enable Tablesorter-JavaScript?"
|
441 |
msgstr "Разрешить сортировку в таблицах с помощью JavaScript?"
|
442 |
|
443 |
+
#: wp-table-reloaded-admin.php:1758
|
|
|
|
|
|
|
|
|
444 |
msgid "Uninstall Plugin upon Deactivation?"
|
445 |
msgstr "Удалить плагин после деактивации?"
|
446 |
|
447 |
+
#: wp-table-reloaded-admin.php:1772
|
448 |
msgid "Save Options"
|
449 |
msgstr "Сохранить настройки"
|
450 |
|
451 |
+
#: wp-table-reloaded-admin.php:1778
|
452 |
msgid "Manually Uninstall Plugin"
|
453 |
msgstr "Удалить плагин вручную"
|
454 |
|
455 |
+
#: wp-table-reloaded-admin.php:2272
|
|
|
|
|
|
|
|
|
456 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
457 |
msgstr "Вы на самом деле хотите удалить этот плагин со всеми данными?"
|
458 |
|
459 |
+
#: wp-table-reloaded-admin.php:2273
|
460 |
msgid "Are you really sure?"
|
461 |
msgstr "Вы действительно уверены?"
|
462 |
|
463 |
+
#: wp-table-reloaded-admin.php:1783
|
464 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
465 |
msgstr "Удалить плагин WP-Table Reloaded"
|
466 |
|
467 |
+
#: wp-table-reloaded-admin.php:1800
|
|
|
|
|
|
|
|
|
468 |
msgid "Plugin Purpose"
|
469 |
msgstr "Цель плагина"
|
470 |
|
471 |
+
#: wp-table-reloaded-admin.php:1807
|
472 |
msgid "Usage"
|
473 |
msgstr "Использование"
|
474 |
|
475 |
+
#: wp-table-reloaded-admin.php:1814
|
476 |
msgid "More Information and Documentation"
|
477 |
msgstr "Дополнительная информация и документация"
|
478 |
|
479 |
+
#: wp-table-reloaded-admin.php:1821
|
480 |
msgid "Author and Licence"
|
481 |
msgstr "Автор и лицензия"
|
482 |
|
483 |
+
#: wp-table-reloaded-admin.php:1828
|
|
|
|
|
|
|
|
|
484 |
msgid "Credits and Thanks"
|
485 |
msgstr "Благодарности"
|
486 |
|
487 |
+
#: wp-table-reloaded-admin.php:1901
|
488 |
msgid "List Tables"
|
489 |
msgstr "Список таблиц"
|
490 |
|
491 |
+
#: wp-table-reloaded-admin.php:1906
|
492 |
msgid "Plugin Options"
|
493 |
msgstr "Настройки плагина"
|
494 |
|
495 |
+
#: wp-table-reloaded-admin.php:1907
|
496 |
msgid "About the Plugin"
|
497 |
msgstr "О плагине"
|
498 |
|
499 |
+
#: wp-table-reloaded-admin.php:1246
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Data Manipulation"
|
501 |
msgstr "Работа с данными"
|
502 |
|
503 |
+
#: wp-table-reloaded-admin.php:1327
|
504 |
msgid "Insert Link"
|
505 |
msgstr "Ссылка"
|
506 |
|
507 |
+
#: wp-table-reloaded-admin.php:1328
|
508 |
+
#: wp-table-reloaded-admin.php:1328
|
509 |
msgid "Insert Image"
|
510 |
msgstr "Картинка"
|
511 |
|
512 |
+
#: wp-table-reloaded-admin.php:2260
|
513 |
msgid "URL of link to insert"
|
514 |
msgstr "УРЛ ссылки для вставки"
|
515 |
|
516 |
+
#: wp-table-reloaded-admin.php:2261
|
517 |
msgid "Text of link"
|
518 |
msgstr "Текст ссылки"
|
519 |
|
520 |
+
#: wp-table-reloaded-admin.php:2262
|
521 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
522 |
msgstr "Чтобы добавить ссылку в ячейку, просто нажмите на ячейку после закрытия этого диалогового окна."
|
523 |
|
524 |
+
#: wp-table-reloaded-admin.php:1554
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
msgid "Import from original wp-Table plugin"
|
526 |
msgstr "Импорт из оригинального плагина wp-Table"
|
527 |
|
528 |
+
#: wp-table-reloaded-admin.php:2271
|
529 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
530 |
msgstr "Вы на самом деле хотите импортировать эту таблицу из плагина wp-Table?"
|
531 |
|
532 |
+
#: wp-table-reloaded-admin.php:1614
|
533 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
534 |
msgstr "Плагин wp-Table от Alex Rabe установлен, но таблицы не найдены."
|
535 |
|
536 |
+
#: wp-table-reloaded-admin.php:1728
|
537 |
msgid "Add custom CSS?"
|
538 |
msgstr "Добавить произвольный CSS?"
|
539 |
|
540 |
+
#: wp-table-reloaded-admin.php:1735
|
541 |
msgid "Enter custom CSS"
|
542 |
msgstr "Введите произвольный CSS"
|
543 |
|
544 |
+
#: wp-table-reloaded-admin.php:2259
|
545 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
546 |
msgstr "Вы действительно хотите активировать это? Вы должны сделать это до удаления!"
|
547 |
|
548 |
+
#: wp-table-reloaded-admin.php:1831
|
549 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
550 |
msgstr "Спасибо <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> за оригинальный плагин wp-Table,"
|
551 |
|
552 |
+
#: wp-table-reloaded-admin.php:1833
|
553 |
msgid "the submitters of translations:"
|
554 |
msgstr "тем кто сделал перевод:"
|
555 |
|
556 |
+
#: wp-table-reloaded-admin.php:1834
|
557 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
558 |
msgstr "Албанский (спасибо <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
559 |
|
560 |
+
#: wp-table-reloaded-admin.php:1838
|
561 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
562 |
msgstr "Французкий (спасибо <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
563 |
|
564 |
+
#: wp-table-reloaded-admin.php:1842
|
565 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
566 |
msgstr "Русский (спасибо <a href=\"http://wp-skins.info/\">Truper</a>)"
|
567 |
|
568 |
+
#: wp-table-reloaded-admin.php:1844
|
569 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
570 |
msgstr "Шведский (спасибо <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
571 |
|
572 |
+
#: wp-table-reloaded-admin.php:1845
|
573 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
574 |
msgstr "Турецкий (спасибо <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
575 |
|
581 |
msgid "| (pipe)"
|
582 |
msgstr "| (черта)"
|
583 |
|
584 |
+
#: wp-table-reloaded-admin.php:331
|
585 |
msgid "Table sorted successfully."
|
586 |
msgstr "Таблица успешно отсортирована."
|
587 |
|
588 |
+
#: wp-table-reloaded-admin.php:474
|
589 |
msgid "Table copied successfully."
|
590 |
msgid_plural "Tables copied successfully."
|
591 |
msgstr[0] "Таблица успешно скопирована."
|
592 |
msgstr[1] "Таблицы успешно скопированы."
|
593 |
msgstr[2] ""
|
594 |
|
595 |
+
#: wp-table-reloaded-admin.php:480
|
596 |
msgid "Table deleted successfully."
|
597 |
msgid_plural "Tables deleted successfully."
|
598 |
msgstr[0] "Таблица успешно удалена."
|
599 |
msgstr[1] "Таблицы успешно удалены."
|
600 |
msgstr[2] ""
|
601 |
|
602 |
+
#: wp-table-reloaded-admin.php:501
|
603 |
msgid "Table imported successfully."
|
604 |
msgid_plural "Tables imported successfully."
|
605 |
msgstr[0] "Таблица успешно импортирована."
|
606 |
msgstr[1] "Таблицы успешно импортированы."
|
607 |
msgstr[2] ""
|
608 |
|
609 |
+
#: wp-table-reloaded-admin.php:508
|
610 |
msgid "You did not select any tables!"
|
611 |
msgstr "Вы не выбрали ни одной таблицы!"
|
612 |
|
613 |
+
#: wp-table-reloaded-admin.php:836
|
614 |
+
#: wp-table-reloaded-admin.php:961
|
615 |
msgid "This is a list of all available tables."
|
616 |
msgstr "Это список всех доступных таблиц."
|
617 |
|
618 |
+
#: wp-table-reloaded-admin.php:836
|
619 |
msgid "You may insert a table into a post or page here."
|
620 |
msgstr "Здесь Вы можете вставить таблицу в новость или страницу."
|
621 |
|
622 |
+
#: wp-table-reloaded-admin.php:837
|
623 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
624 |
msgstr "Нажмите \"Вставить\" после желаемой таблицы и соответствующий код будет вставлен в редактор (<strong>[table id=<the_table_ID> /]</strong>)."
|
625 |
|
626 |
+
#: wp-table-reloaded-admin.php:877
|
627 |
msgid "Insert"
|
628 |
msgstr "Вставить"
|
629 |
|
630 |
+
#: wp-table-reloaded-admin.php:961
|
631 |
msgid "You may add, edit, copy or delete tables here."
|
632 |
msgstr "Здесь Вы можете добавлять, редактировать, копировать или удалять таблицы."
|
633 |
|
634 |
+
#: wp-table-reloaded-admin.php:962
|
635 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
636 |
msgstr "Если Вы хотите отобразить таблицу на странице, в новости или текстовом виджете, то используйте код <strong>[table id=<the_table_ID> /]</strong> или нажмите на кнопку \"Таблица\" в панели редактора."
|
637 |
|
638 |
+
#: wp-table-reloaded-admin.php:1036
|
639 |
+
#: wp-table-reloaded-admin.php:1608
|
640 |
msgid "Bulk actions:"
|
641 |
msgstr "Массовые действия:"
|
642 |
|
643 |
+
#: wp-table-reloaded-admin.php:1036
|
644 |
msgid "Copy Tables"
|
645 |
msgstr "Копировать таблицы"
|
646 |
|
647 |
+
#: wp-table-reloaded-admin.php:1036
|
648 |
msgid "Delete Tables"
|
649 |
msgstr "Удалить таблицы"
|
650 |
|
651 |
+
#: wp-table-reloaded-admin.php:1149
|
652 |
+
#: wp-table-reloaded-admin.php:1246
|
653 |
+
#: wp-table-reloaded-admin.php:1362
|
654 |
+
#: wp-table-reloaded-admin.php:1402
|
655 |
+
#: wp-table-reloaded-admin.php:1750
|
656 |
+
#: wp-table-reloaded-admin.php:1852
|
657 |
msgid "Hide"
|
658 |
msgstr "Скрыть"
|
659 |
|
660 |
+
#: wp-table-reloaded-admin.php:1149
|
661 |
+
#: wp-table-reloaded-admin.php:1246
|
662 |
+
#: wp-table-reloaded-admin.php:1362
|
663 |
+
#: wp-table-reloaded-admin.php:1402
|
664 |
+
#: wp-table-reloaded-admin.php:1750
|
665 |
+
#: wp-table-reloaded-admin.php:1852
|
666 |
msgid "Expand"
|
667 |
msgstr "Развернуть"
|
668 |
|
669 |
+
#: wp-table-reloaded-admin.php:1338
|
670 |
msgid "ascending"
|
671 |
msgstr "по возрастанию"
|
672 |
|
673 |
+
#: wp-table-reloaded-admin.php:1339
|
674 |
msgid "descending"
|
675 |
msgstr "по убыванию"
|
676 |
|
677 |
+
#: wp-table-reloaded-admin.php:1342
|
678 |
#, php-format
|
679 |
msgid "Sort table by column %s in %s order"
|
680 |
msgstr "Сортировка таблицы по столбцам %s и %s"
|
681 |
|
682 |
+
#: wp-table-reloaded-admin.php:1345
|
683 |
msgid "Sort"
|
684 |
msgstr "Сортировка"
|
685 |
|
686 |
+
#: wp-table-reloaded-admin.php:1608
|
687 |
msgid "Import Tables"
|
688 |
msgstr "Импорт таблиц"
|
689 |
|
690 |
+
#: wp-table-reloaded-admin.php:1725
|
691 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
692 |
msgstr "Да, разрешить <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Это включает сортировку в Ваших таблицах (может быть активирована для каждой таблицы отдельно)."
|
693 |
|
694 |
+
#: wp-table-reloaded-admin.php:1741
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
#, php-format
|
696 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
697 |
msgstr "Смотрите <a href=\"%s\">сайт плагина</a> для просмотра примеров или использовать один из следующих: <a href=\"%s\">Пример стиля 1</a> <a href=\"%s\">Пример стиля 2</a>"
|
698 |
|
699 |
+
#: wp-table-reloaded-admin.php:1741
|
700 |
msgid "Just copy the contents of a file into the textarea."
|
701 |
msgstr "Просто скопируйте содержимое файла в область ввода."
|
702 |
|
703 |
+
#: wp-table-reloaded-admin.php:1759
|
704 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
705 |
msgstr "Да, удалить все, когда плагин будет отключен. Внимание: Вы должны поставить этот флажок, непосредственно перед отключением плагина со страницы плагинов WordPress!"
|
706 |
|
707 |
+
#: wp-table-reloaded-admin.php:1802
|
|
|
|
|
|
|
|
|
708 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
709 |
msgstr "Этот плагин позволит вам создавать и управлять таблицами в панели администратора WordPress."
|
710 |
|
711 |
+
#: wp-table-reloaded-admin.php:1802
|
712 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
713 |
msgstr "Эти таблицы могут содержать строки, цифры и даже HTML (например изображения или ссылки)."
|
714 |
|
715 |
+
#: wp-table-reloaded-admin.php:1802
|
716 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
717 |
msgstr "Вы можете отображать таблицы в ваших новостях, на страницах или в текстовых виджетах, используя код."
|
718 |
|
719 |
+
#: wp-table-reloaded-admin.php:1802
|
720 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
721 |
msgstr "Если вы хотите отображать свои таблицы в вашей теме, вы можете использовать функции тэгов шаблона."
|
722 |
|
723 |
+
#: wp-table-reloaded-admin.php:1809
|
724 |
msgid "At first you should add or import a table."
|
725 |
msgstr "Сначала Вы должны добавить или импортировать таблицы."
|
726 |
|
727 |
+
#: wp-table-reloaded-admin.php:1809
|
728 |
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."
|
729 |
msgstr "Это означает, что вы либо создаете пустую таблицу, либо Вы загружаете существующую таблицу из CSV, XML или HTML файла."
|
730 |
|
731 |
+
#: wp-table-reloaded-admin.php:1809
|
732 |
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."
|
733 |
msgstr "Затем вы можете изменить данные или структуру таблицы (например, путем включения или удаления строк и столбцов, заменой строк и столбцов или их сортировкой), и выбрать настройки для каждой таблицы, такие как чередование цвета у строк, печатать название или описание."
|
734 |
|
735 |
+
#: wp-table-reloaded-admin.php:1809
|
736 |
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."
|
737 |
msgstr "Чтобы легко добавлять ссылки или изображения в ячейку, используйте кнопки. Где Вы введете адрес и название. Затем вы можете нажать на ячейку и соответствующий HTML код будет добавлен."
|
738 |
|
739 |
+
#: wp-table-reloaded-admin.php:1809
|
740 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
741 |
msgstr "Чтобы вставить таблицу в ваши новости, страницы или текстовые виджеты, используйте код [table id=<table-id>]."
|
742 |
|
743 |
+
#: wp-table-reloaded-admin.php:1809
|
744 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
745 |
msgstr "Так же Вы можете выбрать требуемую таблицу из списка (после нажатия на кнопку \"Таблицы\" в панели редактора) и соответствующий код будет добавлен автоматически."
|
746 |
|
747 |
+
#: wp-table-reloaded-admin.php:1809
|
748 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
749 |
msgstr "Вы также можете менять стиль вашей таблицы с помощью CSS. Примеры можно посмотреть на веб-сайте плагина. Каждая таблица имеет CSS класс \"wp-table-reloaded\". Каждая таблица имеет также класс \"wp-table-reloaded-<table-id>\"."
|
750 |
|
751 |
+
#: wp-table-reloaded-admin.php:1809
|
752 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
753 |
msgstr "Вы также можете использовать классы \"column-<number>\" и \"row-<number>\" для изменения стиля строк и столбцов. Используйте этот стиль, например, для изменения ширины колонок и выравнивание текста."
|
754 |
|
755 |
+
#: wp-table-reloaded-admin.php:1816
|
756 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
757 |
+
msgstr "Больше информации Вы найдете на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a> или на странице плагина в <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
758 |
|
759 |
+
#: wp-table-reloaded-admin.php:1816
|
760 |
+
#: wp-table-reloaded-admin.php:1980
|
761 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
762 |
msgstr "Смотрите <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">документацию</a> или узнайте, как получить <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">поддержку</a>."
|
763 |
|
764 |
+
#: wp-table-reloaded-admin.php:1823
|
|
|
|
|
|
|
|
|
765 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
766 |
msgstr "Пожертвования и хорошие оценки в рейтинге подтолкнут меня к дальнейшей разработке плагина и возможности предоставить больше часов поддержки пользователей плагина. Спасибо за любую сумму!"
|
767 |
|
768 |
+
#: wp-table-reloaded-admin.php:1832
|
769 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
770 |
msgstr "Christian Bach за <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
771 |
|
772 |
+
#: wp-table-reloaded-admin.php:1846
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
774 |
msgstr "и всем пожертвовавшим, сторонникам, обозревателям и пользователям плагина!"
|
775 |
|
776 |
+
#: wp-table-reloaded-admin.php:1852
|
777 |
msgid "Debug and Version Information"
|
778 |
msgstr "Отладка и информация о версии"
|
779 |
|
780 |
+
#: wp-table-reloaded-admin.php:1855
|
781 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
782 |
msgstr "Вы используете следующую версию программного обеспечения. <strong>Просьба предоставить эту информацию в сообщениях об ошибках.</strong>"
|
783 |
|
784 |
+
#: wp-table-reloaded-admin.php:1979
|
785 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
786 |
msgstr "Более подробную информацию можно найти на <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">сайте плагина</a>."
|
787 |
|
788 |
+
#: wp-table-reloaded-admin.php:2264
|
|
|
|
|
|
|
|
|
789 |
msgid "Do you want to copy the selected tables?"
|
790 |
msgstr "Вы хотите скопировать выбранные таблицы?"
|
791 |
|
792 |
+
#: wp-table-reloaded-admin.php:2265
|
793 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
794 |
msgstr "Выбранные таблицы и все содержимое будет стерто. Вы действительно хотите удалить их?"
|
795 |
|
796 |
+
#: wp-table-reloaded-admin.php:2266
|
797 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
798 |
msgstr "Вы действительно хотите импортировать выбранные таблицы из плагина wp-Table?"
|
799 |
|
800 |
+
#: wp-table-reloaded-admin.php:2318
|
801 |
msgid "Table"
|
802 |
msgstr "Таблица"
|
803 |
|
804 |
+
#: wp-table-reloaded-admin.php:179
|
805 |
+
#, php-format
|
806 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
807 |
+
msgstr "Спасибо за использование этого плагина! У Вас уже установлен WP-Table Reloaded более месяца назад."
|
808 |
+
|
809 |
+
#: wp-table-reloaded-admin.php:180
|
810 |
+
#, php-format
|
811 |
+
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!"
|
812 |
+
msgstr "<a href=\"%s\">Пожертвования</a> помогут мне разрабатывать и поддерживать этот <i>бесплатный</i> проект. Спасибо."
|
813 |
+
|
814 |
+
#: wp-table-reloaded-admin.php:181
|
815 |
+
msgid "Sure, no problem!"
|
816 |
+
msgstr "Конечно, нет проблем!"
|
817 |
+
|
818 |
+
#: wp-table-reloaded-admin.php:182
|
819 |
+
msgid "I already donated."
|
820 |
+
msgstr "Я уже пожертвовал."
|
821 |
+
|
822 |
+
#: wp-table-reloaded-admin.php:183
|
823 |
+
msgid "No, thanks. Don't ask again."
|
824 |
+
msgstr "Нет, спасибо. Не надо больше спрашивать."
|
825 |
+
|
826 |
+
#: wp-table-reloaded-admin.php:236
|
827 |
+
#, php-format
|
828 |
+
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
829 |
+
msgstr "Таблица отредактирована успешно. Эта таблица в настоящее время имеет ID %s. Вы должны скорректировать существующие коды (shortcodes) соответственно."
|
830 |
+
|
831 |
+
#: wp-table-reloaded-admin.php:238
|
832 |
+
#, php-format
|
833 |
+
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
834 |
+
msgstr "ID не может быть изменен с %s на %s, потому что там уже есть таблица."
|
835 |
+
|
836 |
+
#: wp-table-reloaded-admin.php:346
|
837 |
+
msgid "Row added successfully."
|
838 |
+
msgid_plural "Rows added successfully."
|
839 |
+
msgstr[0] "Строка успешно добавлена."
|
840 |
+
msgstr[1] "Строки успешно добавлены."
|
841 |
+
msgstr[2] ""
|
842 |
+
|
843 |
+
#: wp-table-reloaded-admin.php:360
|
844 |
+
msgid "Column added successfully."
|
845 |
+
msgid_plural "Columns added successfully."
|
846 |
+
msgstr[0] "Колонка успешно добавлена."
|
847 |
+
msgstr[1] "Колонки успешно добавлены."
|
848 |
+
msgstr[2] ""
|
849 |
+
|
850 |
+
#: wp-table-reloaded-admin.php:381
|
851 |
+
msgid "Row moved successfully."
|
852 |
+
msgstr "Строка успешно перенесена."
|
853 |
+
|
854 |
+
#: wp-table-reloaded-admin.php:406
|
855 |
+
msgid "Column moved successfully."
|
856 |
+
msgstr "Колонка успешно перенесена."
|
857 |
+
|
858 |
+
#: wp-table-reloaded-admin.php:413
|
859 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
860 |
+
msgstr "Не удалось добавить пользовательское поле данных, потому что вы не указали имя."
|
861 |
+
|
862 |
+
#: wp-table-reloaded-admin.php:418
|
863 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
864 |
+
msgstr "Не удалось добавить пользовательское поле данных, потому что вы ввели имя зарезервированное для других табличных данных."
|
865 |
+
|
866 |
+
#: wp-table-reloaded-admin.php:424
|
867 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
868 |
+
msgstr "Не удалось добавить пользовательское поле данных, поскольку в название содержатся недопустимые символы."
|
869 |
+
|
870 |
+
#: wp-table-reloaded-admin.php:428
|
871 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
872 |
+
msgstr "Не удалось добавить пользовательское поле данных, потому что поле с таким именем уже существует."
|
873 |
+
|
874 |
+
#: wp-table-reloaded-admin.php:434
|
875 |
+
msgid "Custom Data Field added successfully."
|
876 |
+
msgstr "Пользовательское поле данных успешно добавлено."
|
877 |
+
|
878 |
+
#: wp-table-reloaded-admin.php:580
|
879 |
+
msgid "Custom Data Field deleted successfully."
|
880 |
+
msgstr "Пользовательское поле данных успешно удалено."
|
881 |
+
|
882 |
+
#: wp-table-reloaded-admin.php:582
|
883 |
+
msgid "Custom Data Field could not be deleted."
|
884 |
+
msgstr "Пользовательское поле данных не может быть удалено."
|
885 |
+
|
886 |
+
#: wp-table-reloaded-admin.php:656
|
887 |
+
#: wp-table-reloaded-admin.php:675
|
888 |
+
#, php-format
|
889 |
+
msgid "from %s"
|
890 |
+
msgstr "от %s"
|
891 |
+
|
892 |
+
#: wp-table-reloaded-admin.php:697
|
893 |
+
#, php-format
|
894 |
+
msgid "Table %s (%s) replaced successfully."
|
895 |
+
msgstr "Таблица %s (%s) заменена успешно."
|
896 |
+
|
897 |
+
#: wp-table-reloaded-admin.php:906
|
898 |
+
#, php-format
|
899 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
900 |
+
msgstr "Просмотреть таблицу \"%s\" (ID %s)"
|
901 |
+
|
902 |
+
#: wp-table-reloaded-admin.php:909
|
903 |
+
msgid "This is a preview of the table data."
|
904 |
+
msgstr "Это предварительный просмотр данных в таблице."
|
905 |
+
|
906 |
+
#: wp-table-reloaded-admin.php:910
|
907 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
908 |
+
msgstr "Из-за CSS стиля, таблица может выглядеть несколько иначе на вашей странице!"
|
909 |
+
|
910 |
+
#: wp-table-reloaded-admin.php:911
|
911 |
+
#: wp-table-reloaded-admin.php:1106
|
912 |
+
#, php-format
|
913 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
914 |
+
msgstr "Чтобы показать эту таблицу на вашей странице, записи или текстовом виджете, используйте код <strong>[table id=%s /]</strong>."
|
915 |
+
|
916 |
+
#: wp-table-reloaded-admin.php:924
|
917 |
+
msgid "There is no table with this ID!"
|
918 |
+
msgstr "Не существует таблицы с таким ID!"
|
919 |
+
|
920 |
+
#: wp-table-reloaded-admin.php:941
|
921 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
922 |
+
msgstr "Большое спасибо! Ваше пожертвование высоко ценится. Вы только что поспособствовали дальнейшему развитию WP-Table Reloaded!"
|
923 |
+
|
924 |
+
#: wp-table-reloaded-admin.php:943
|
925 |
+
#, php-format
|
926 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
927 |
+
msgstr "Нет проблем! Я по-прежнему надеюсь, что вы пользуетесь удобствами при работе с WP-Table Reloaded. Если вы хотите отблагодарить меня, то всегда сможете найти кнопку \"Donate\" на <a href=\"%s\">WP-Table Reloaded website</a>."
|
928 |
+
|
929 |
+
#: wp-table-reloaded-admin.php:976
|
930 |
+
#: wp-table-reloaded-admin.php:985
|
931 |
+
#: wp-table-reloaded-admin.php:1130
|
932 |
+
msgid "Last Modified"
|
933 |
+
msgstr "Последнее изменение"
|
934 |
+
|
935 |
+
#: wp-table-reloaded-admin.php:997
|
936 |
+
msgid "(no name)"
|
937 |
+
msgstr "(без названия)"
|
938 |
+
|
939 |
+
#: wp-table-reloaded-admin.php:998
|
940 |
+
msgid "(no description)"
|
941 |
+
msgstr "(нет описания)"
|
942 |
+
|
943 |
+
#: wp-table-reloaded-admin.php:1002
|
944 |
+
#: wp-table-reloaded-admin.php:1131
|
945 |
+
msgid "by"
|
946 |
+
msgstr "автор"
|
947 |
+
|
948 |
+
#: wp-table-reloaded-admin.php:1015
|
949 |
+
#, php-format
|
950 |
+
msgid "Edit %s"
|
951 |
+
msgstr "Изменить %s"
|
952 |
+
|
953 |
+
#: wp-table-reloaded-admin.php:1019
|
954 |
+
msgid "Shortcode"
|
955 |
+
msgstr "Код"
|
956 |
+
|
957 |
+
#: wp-table-reloaded-admin.php:1023
|
958 |
+
#, php-format
|
959 |
+
msgid "Preview of Table %s"
|
960 |
+
msgstr "Просмотреть таблицу %s"
|
961 |
+
|
962 |
+
#: wp-table-reloaded-admin.php:1024
|
963 |
+
msgid "Preview"
|
964 |
+
msgstr "Просмотреть"
|
965 |
+
|
966 |
+
#: wp-table-reloaded-admin.php:1059
|
967 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
968 |
+
msgstr "Здесь вы можете добавить новую таблицу. Просто введите его название, описание (необязательно) и количество строк и столбцов."
|
969 |
+
|
970 |
+
#: wp-table-reloaded-admin.php:1059
|
971 |
+
msgid "You may add, insert or delete rows and columns later."
|
972 |
+
msgstr "Вы сможете добавить, вставить или удалить строки и столбцы позже."
|
973 |
+
|
974 |
+
#: wp-table-reloaded-admin.php:1102
|
975 |
+
#, php-format
|
976 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
977 |
+
msgstr "Изменить таблицу \"%s\" (ID %s)"
|
978 |
+
|
979 |
+
#: wp-table-reloaded-admin.php:1117
|
980 |
+
msgid "Table ID"
|
981 |
+
msgstr "ID таблицы"
|
982 |
+
|
983 |
+
#: wp-table-reloaded-admin.php:1195
|
984 |
+
msgid "Row hidden"
|
985 |
+
msgstr "Строка скрыта"
|
986 |
+
|
987 |
+
#: wp-table-reloaded-admin.php:1218
|
988 |
+
#, php-format
|
989 |
+
msgid "Add %s row(s)"
|
990 |
+
msgstr "Добавить %s строку"
|
991 |
+
|
992 |
+
#: wp-table-reloaded-admin.php:1219
|
993 |
+
#: wp-table-reloaded-admin.php:1221
|
994 |
+
#: wp-table-reloaded-admin.php:1439
|
995 |
+
msgid "Add"
|
996 |
+
msgstr "Добавить"
|
997 |
+
|
998 |
+
#: wp-table-reloaded-admin.php:1220
|
999 |
+
#, php-format
|
1000 |
+
msgid "Add %s column(s)"
|
1001 |
+
msgstr "Добавить %s колонку"
|
1002 |
+
|
1003 |
+
#: wp-table-reloaded-admin.php:1232
|
1004 |
+
msgid "Column hidden"
|
1005 |
+
msgstr "Колонка скрыта"
|
1006 |
+
|
1007 |
+
#: wp-table-reloaded-admin.php:1294
|
1008 |
+
#: wp-table-reloaded-admin.php:1317
|
1009 |
+
msgid "before"
|
1010 |
+
msgstr "до"
|
1011 |
+
|
1012 |
+
#: wp-table-reloaded-admin.php:1295
|
1013 |
+
#: wp-table-reloaded-admin.php:1318
|
1014 |
+
msgid "after"
|
1015 |
+
msgstr "после"
|
1016 |
+
|
1017 |
+
#: wp-table-reloaded-admin.php:1298
|
1018 |
+
#, php-format
|
1019 |
+
msgid "Move row %s %s row %s"
|
1020 |
+
msgstr "Переместить строку %s %s строки %s"
|
1021 |
+
|
1022 |
+
#: wp-table-reloaded-admin.php:1300
|
1023 |
+
#: wp-table-reloaded-admin.php:1323
|
1024 |
+
msgid "Move"
|
1025 |
+
msgstr "Переместить"
|
1026 |
+
|
1027 |
+
#: wp-table-reloaded-admin.php:1321
|
1028 |
+
#, php-format
|
1029 |
+
msgid "Move column %s %s column %s"
|
1030 |
+
msgstr "Переместить колонку %s %s колонки %s"
|
1031 |
+
|
1032 |
+
#: wp-table-reloaded-admin.php:1386
|
1033 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1034 |
+
msgstr "Вы можете сортировать таблицу с помощью <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
1035 |
+
|
1036 |
+
#: wp-table-reloaded-admin.php:1386
|
1037 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
1038 |
+
msgstr "<small>Внимание: Вы должны включить Tablesorter в \"Настройках плагина\" и \"Use Table Headline\" должен быть включен для того чтобы это заработало!</small>"
|
1039 |
+
|
1040 |
+
#: wp-table-reloaded-admin.php:1402
|
1041 |
+
msgid "Custom Data Fields"
|
1042 |
+
msgstr "Пользовательские поля данных"
|
1043 |
+
|
1044 |
+
#: wp-table-reloaded-admin.php:1404
|
1045 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
1046 |
+
msgstr "Пользовательские поля данных могут быть использованы, чтобы добавить дополнительные метаданные для таблицы."
|
1047 |
+
|
1048 |
+
#: wp-table-reloaded-admin.php:1404
|
1049 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
1050 |
+
msgstr "Например, это может быть информация об источнике или создателе данных."
|
1051 |
+
|
1052 |
+
#: wp-table-reloaded-admin.php:1406
|
1053 |
+
#, php-format
|
1054 |
+
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>."
|
1055 |
+
msgstr "Вы можете показывать эти данные в том же порядке, как и таблицы, используя код <strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
1056 |
+
|
1057 |
+
#: wp-table-reloaded-admin.php:1412
|
1058 |
+
msgid "Field Name"
|
1059 |
+
msgstr "Имя поля"
|
1060 |
+
|
1061 |
+
#: wp-table-reloaded-admin.php:1413
|
1062 |
+
msgid "Value"
|
1063 |
+
msgstr "Значение"
|
1064 |
+
|
1065 |
+
#: wp-table-reloaded-admin.php:1427
|
1066 |
+
msgid "Delete Field"
|
1067 |
+
msgstr "Удалить Поле"
|
1068 |
+
|
1069 |
+
#: wp-table-reloaded-admin.php:1429
|
1070 |
+
msgid "View shortcode"
|
1071 |
+
msgstr "Посмотреть код"
|
1072 |
+
|
1073 |
+
#: wp-table-reloaded-admin.php:1438
|
1074 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
1075 |
+
msgstr "Для добавления новых пользовательского поля данных введите его имя (только строчные буквы, цифры, _ и -)."
|
1076 |
+
|
1077 |
+
#: wp-table-reloaded-admin.php:1439
|
1078 |
+
msgid "Custom Data Field Name"
|
1079 |
+
msgstr "Имя пользовательского поля данных"
|
1080 |
+
|
1081 |
+
#: wp-table-reloaded-admin.php:1473
|
1082 |
+
msgid "You may import a table from existing data here."
|
1083 |
+
msgstr "Здесь вы можете импортировать таблицу из имеющихся данных."
|
1084 |
+
|
1085 |
+
#: wp-table-reloaded-admin.php:1473
|
1086 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
1087 |
+
msgstr "Это может быть CSV, XML или HTML файл, который содержит определенную структуру. Пожалуйста, обратитесь к документации."
|
1088 |
+
|
1089 |
+
#: wp-table-reloaded-admin.php:1473
|
1090 |
+
msgid "You may also select the import source."
|
1091 |
+
msgstr "Вы также можете выбрать источник импорта."
|
1092 |
+
|
1093 |
+
#: wp-table-reloaded-admin.php:1491
|
1094 |
+
msgid "Add or Replace Table?"
|
1095 |
+
msgstr "Добавить или заменить таблицу?"
|
1096 |
+
|
1097 |
+
#: wp-table-reloaded-admin.php:1493
|
1098 |
+
msgid "Add as new Table"
|
1099 |
+
msgstr "Добавить в новую таблицу"
|
1100 |
+
|
1101 |
+
#: wp-table-reloaded-admin.php:1494
|
1102 |
+
msgid "Replace existing Table"
|
1103 |
+
msgstr "Заменить существующую таблицу"
|
1104 |
+
|
1105 |
+
#: wp-table-reloaded-admin.php:1498
|
1106 |
+
msgid "Select existing Table to Replace"
|
1107 |
+
msgstr "Выберите существующую таблицу для замены"
|
1108 |
+
|
1109 |
+
#: wp-table-reloaded-admin.php:1514
|
1110 |
+
msgid "Select source for import"
|
1111 |
+
msgstr "Выберите источник для импорта"
|
1112 |
+
|
1113 |
+
#: wp-table-reloaded-admin.php:1516
|
1114 |
+
msgid "File upload"
|
1115 |
+
msgstr "Загрузка файла"
|
1116 |
+
|
1117 |
+
#: wp-table-reloaded-admin.php:1517
|
1118 |
+
msgid "URL"
|
1119 |
+
msgstr "URL"
|
1120 |
+
|
1121 |
+
#: wp-table-reloaded-admin.php:1518
|
1122 |
+
msgid "Manual input"
|
1123 |
+
msgstr "Ручной ввод"
|
1124 |
+
|
1125 |
+
#: wp-table-reloaded-admin.php:1519
|
1126 |
+
msgid "File on server"
|
1127 |
+
msgstr "Файл на сервере"
|
1128 |
+
|
1129 |
+
#: wp-table-reloaded-admin.php:1527
|
1130 |
+
msgid "URL to import table from"
|
1131 |
+
msgstr "URL для импорта таблицы из"
|
1132 |
+
|
1133 |
+
#: wp-table-reloaded-admin.php:1531
|
1134 |
+
msgid "Path to file on server"
|
1135 |
+
msgstr "Путь к файлу на сервере"
|
1136 |
+
|
1137 |
+
#: wp-table-reloaded-admin.php:1637
|
1138 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
1139 |
+
msgstr "Здесь вы можете экспортировать таблицу. Просто выберите таблицу, нужный формат и разделитесь (только для CSV)."
|
1140 |
+
|
1141 |
+
#: wp-table-reloaded-admin.php:1638
|
1142 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
1143 |
+
msgstr "Вы можете выбрать загрузку файла экспорта. В противном случае он будет показан на этой странице."
|
1144 |
+
|
1145 |
+
#: wp-table-reloaded-admin.php:1639
|
1146 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
1147 |
+
msgstr "Учтите, экспортируются только данные, без опций и настроек."
|
1148 |
+
|
1149 |
+
#: wp-table-reloaded-admin.php:1712
|
1150 |
+
msgid "You may change these global options."
|
1151 |
+
msgstr "Вы можете изменить эти глобальные настойки."
|
1152 |
+
|
1153 |
+
#: wp-table-reloaded-admin.php:1713
|
1154 |
+
msgid "They will effect all tables or the general plugin behavior."
|
1155 |
+
msgstr "Они будут эффективны для всех таблиц или общего поведения плагина."
|
1156 |
+
|
1157 |
+
#: wp-table-reloaded-admin.php:1740
|
1158 |
+
#, php-format
|
1159 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
1160 |
+
msgstr "Вы можете получить лучшую производительность, если вы добавите CSS стиль в ваш \"style.css\" (в <a href=\"%s\">%s</a>)."
|
1161 |
+
|
1162 |
+
#: wp-table-reloaded-admin.php:1742
|
1163 |
+
#, php-format
|
1164 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
1165 |
+
msgstr "Еще одна возможность, вставки в CSS файл (находящийся, в папке с вашей темой) с CSS @import command: %s"
|
1166 |
+
|
1167 |
+
#: wp-table-reloaded-admin.php:1750
|
1168 |
+
msgid "Advanced Options"
|
1169 |
+
msgstr "Дополнительные параметры"
|
1170 |
+
|
1171 |
+
#: wp-table-reloaded-admin.php:1754
|
1172 |
+
msgid "Use Tablesorter Extended?"
|
1173 |
+
msgstr "Использование расширение Tablesorter?"
|
1174 |
+
|
1175 |
+
#: wp-table-reloaded-admin.php:1755
|
1176 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
1177 |
+
msgstr "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
1178 |
+
|
1179 |
+
#: wp-table-reloaded-admin.php:1759
|
1180 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
1181 |
+
msgstr "(Этот параметр не влияет на \"Ручное удаление плагина\", кнопка ниже!)"
|
1182 |
+
|
1183 |
+
#: wp-table-reloaded-admin.php:1762
|
1184 |
+
msgid "Allow donation message?"
|
1185 |
+
msgstr "Разрешить сообщение для пожертвования?"
|
1186 |
+
|
1187 |
+
#: wp-table-reloaded-admin.php:1763
|
1188 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
1189 |
+
msgstr "Да, показать сообщение о пожертвовании по истечении 30 дней с помощью плагина."
|
1190 |
+
|
1191 |
+
#: wp-table-reloaded-admin.php:1780
|
1192 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
1193 |
+
msgstr "Здесь вы можете удалить плагин. Это <strong>позволит удалить</strong> вам все таблицы, данные и настройки."
|
1194 |
+
|
1195 |
+
#: wp-table-reloaded-admin.php:1780
|
1196 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
1197 |
+
msgstr "Будьте очень осторожны и нажимайте кнопку, только если вы знаете, что вы делаете!"
|
1198 |
+
|
1199 |
+
#: wp-table-reloaded-admin.php:1794
|
1200 |
+
msgid "About WP-Table Reloaded"
|
1201 |
+
msgstr "О WP-Table Reloaded"
|
1202 |
+
|
1203 |
+
#: wp-table-reloaded-admin.php:1823
|
1204 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1205 |
+
msgstr "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1206 |
+
|
1207 |
+
#: wp-table-reloaded-admin.php:1823
|
1208 |
+
#: wp-table-reloaded-admin.php:1981
|
1209 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1210 |
+
msgstr "Если вам понравился плагин, пожалуйста <a href=\"http://tobias.baethge.com/donate/\"><strong>сделайте пожертвование</strong></a> и оцените его на <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1211 |
+
|
1212 |
+
#: wp-table-reloaded-admin.php:1835
|
1213 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1214 |
+
msgstr "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1215 |
+
|
1216 |
+
#: wp-table-reloaded-admin.php:1836
|
1217 |
+
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1218 |
+
msgstr "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1219 |
+
|
1220 |
+
#: wp-table-reloaded-admin.php:1837
|
1221 |
+
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
1222 |
+
msgstr "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
1223 |
+
|
1224 |
+
#: wp-table-reloaded-admin.php:1839
|
1225 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1226 |
+
msgstr "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1227 |
+
|
1228 |
+
#: wp-table-reloaded-admin.php:1840
|
1229 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1230 |
+
msgstr "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1231 |
+
|
1232 |
+
#: wp-table-reloaded-admin.php:1841
|
1233 |
+
msgid "Polish (thanks to Alex Kortan)"
|
1234 |
+
msgstr "Polish (thanks to Alex Kortan)"
|
1235 |
+
|
1236 |
+
#: wp-table-reloaded-admin.php:1843
|
1237 |
+
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1238 |
+
msgstr "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1239 |
+
|
1240 |
+
#: wp-table-reloaded-admin.php:1858
|
1241 |
+
msgid "Plugin installed"
|
1242 |
+
msgstr "Плагин установлен"
|
1243 |
+
|
1244 |
+
#: wp-table-reloaded-admin.php:1948
|
1245 |
+
msgid "This is the \"List Tables\" screen."
|
1246 |
+
msgstr "Это экран \"Список таблиц\""
|
1247 |
+
|
1248 |
+
#: wp-table-reloaded-admin.php:1952
|
1249 |
+
msgid "This is the \"Edit Table\" screen."
|
1250 |
+
msgstr "Это экран \"Редактирование таблиц\""
|
1251 |
+
|
1252 |
+
#: wp-table-reloaded-admin.php:1955
|
1253 |
+
msgid "This is the \"Add new Table\" screen."
|
1254 |
+
msgstr "Это экран \"Добавление таблиц\""
|
1255 |
+
|
1256 |
+
#: wp-table-reloaded-admin.php:1958
|
1257 |
+
msgid "This is the \"Import a Table\" screen."
|
1258 |
+
msgstr "Это экран \"Импорт таблиц\""
|
1259 |
+
|
1260 |
+
#: wp-table-reloaded-admin.php:1961
|
1261 |
+
msgid "This is the \"Export a Table\" screen."
|
1262 |
+
msgstr "Это экран \"Экспорт таблиц\""
|
1263 |
+
|
1264 |
+
#: wp-table-reloaded-admin.php:1964
|
1265 |
+
msgid "This is the \"Plugin Options\" screen."
|
1266 |
+
msgstr "Это экран \"Настройки плагина\""
|
1267 |
+
|
1268 |
+
#: wp-table-reloaded-admin.php:1970
|
1269 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1270 |
+
msgstr "Это экран \"О WP-Table Reloaded\""
|
1271 |
+
|
1272 |
+
#: wp-table-reloaded-admin.php:2274
|
1273 |
+
msgid "Do you really want to change the ID of the table?"
|
1274 |
+
msgstr "Вы действительно хотите изменить ID таблицы?"
|
1275 |
+
|
1276 |
+
#: wp-table-reloaded-admin.php:2275
|
1277 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1278 |
+
msgstr "Чтобы показать эту пользовательское поле данных, используйте этот код:"
|
1279 |
+
|
1280 |
+
#: wp-table-reloaded-admin.php:2276
|
1281 |
+
msgid "To show this table, use this shortcode:"
|
1282 |
+
msgstr "Чтобы показать эту таблицу, используйте этот код:"
|
1283 |
+
|
1284 |
+
#: wp-table-reloaded-admin.php:2350
|
1285 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1286 |
+
msgstr "Спасибо за использование <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1287 |
+
|
1288 |
+
#: wp-table-reloaded-admin.php:1372
|
1289 |
+
msgid "The first row of your table will use the <th> tag."
|
1290 |
+
msgstr "Первая строка Вашей таблицы будет использовать тег <th>."
|
1291 |
+
|
1292 |
+
#: wp-table-reloaded-admin.php:1376
|
1293 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
1294 |
+
msgstr "Имя таблицы будет написано над таблицей в теге <h2>."
|
1295 |
+
|
1296 |
+
#: wp-table-reloaded-admin.php:1730
|
1297 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
1298 |
+
msgstr "Да, включить и загрузить следующий CSS-фрагмент на свой сайт внутри HTML-тега <style>."
|
1299 |
+
|
1300 |
+
#: wp-table-reloaded-admin.php:2263
|
1301 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1302 |
+
msgstr "Чтобы вставить картинку, щелкните на ячейку, в которую вы хотите вставить изображение."
|
1303 |
+
|
1304 |
+
#: wp-table-reloaded-admin.php:2263
|
1305 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1306 |
+
msgstr "Открыть медиа хранилище, чтобы выбрать изображение, или вставить URL с изображением."
|
1307 |
+
|
1308 |
+
#: wp-table-reloaded-admin.php:2263
|
1309 |
+
#, php-format
|
1310 |
+
msgid "Click the \"%s\" button to insert the image."
|
1311 |
+
msgstr "Нажмите на кнопку \"%s\", чтобы вставить изображение."
|
1312 |
+
|
1313 |
+
#: wp-table-reloaded-admin.php:2263
|
1314 |
+
msgid "Insert into Post"
|
1315 |
+
msgstr "Вставить в запись"
|
1316 |
+
|
languages/wp-table-reloaded-sv_SE.mo
CHANGED
Binary file
|
languages/wp-table-reloaded-sv_SE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Table Reloaded (sv_SE)\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: ZuperZed <info@zuperzed.se>\n"
|
8 |
"Language-Team: www.zuperzed.se <info@zuperzed.se>\n"
|
@@ -17,892 +17,1228 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: D:\\Hemsida\\ZuperZed.se\\wp-content\\plugins\\wp-table-reloaded\n"
|
19 |
|
20 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
#, php-format
|
22 |
msgid "Table \"%s\" added successfully."
|
23 |
msgstr "Tabellen \"%s\" tillagd framgångsrikt."
|
24 |
|
25 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
26 |
#, php-format
|
27 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
28 |
msgstr "Tabell redigerad framgångsrikt. Denna tabell har nu ID %s. Du måste justera existerande snabbkod därefter."
|
29 |
|
30 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
31 |
#, php-format
|
32 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
33 |
msgstr "ID kunde inte ändras från %s till %s eftersom det redan finns en tabell med samma ID."
|
34 |
|
35 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
36 |
msgid "Table edited successfully."
|
37 |
msgstr "Tabell redigerad framgångsrikt."
|
38 |
|
39 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
40 |
msgid "Rows swapped successfully."
|
41 |
msgstr "Rader bytte plats framgångsrikt."
|
42 |
|
43 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
44 |
msgid "Columns swapped successfully."
|
45 |
msgstr "Kolumner bytte plats framgångsrikt."
|
46 |
|
47 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
48 |
msgid "Table sorted successfully."
|
49 |
msgstr "Tabellsortering lyckades."
|
50 |
|
51 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid "Copy of"
|
54 |
msgstr "Kopia av"
|
55 |
|
56 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
57 |
msgid "You did not select any tables!"
|
58 |
msgstr "Du har inte valt några tabeller!"
|
59 |
|
60 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
61 |
#, php-format
|
62 |
msgid "Table \"%s\" copied successfully."
|
63 |
msgstr "Tabellen \"%s\" kopierades framgångsrikt."
|
64 |
|
65 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
66 |
#, php-format
|
67 |
msgid "Table \"%s\" deleted successfully."
|
68 |
msgstr "Tabellen \"%s\" raderades framgångsrikt."
|
69 |
|
70 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
71 |
msgid "Row deleted successfully."
|
72 |
msgstr "Rad raderades framgångsrikt."
|
73 |
|
74 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
75 |
msgid "Column deleted successfully."
|
76 |
msgstr "Kolumn raderades framgångsrikt."
|
77 |
|
78 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgid "Delete failed."
|
80 |
msgstr "Radering misslyckades."
|
81 |
|
82 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
83 |
msgid "Row inserted successfully."
|
84 |
msgstr "Infoga rad lyckades."
|
85 |
|
86 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
87 |
msgid "Column inserted successfully."
|
88 |
msgstr "Infoga kolumn lyckades."
|
89 |
|
90 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
91 |
msgid "Insert failed."
|
92 |
msgstr "Infogning misslyckades."
|
93 |
|
94 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
95 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
96 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
97 |
msgid "Imported Table"
|
98 |
msgstr "Importerad Tabell"
|
99 |
|
100 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
101 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
102 |
#, php-format
|
103 |
msgid "from %s"
|
104 |
msgstr "från %s"
|
105 |
|
106 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
107 |
msgid "via form"
|
108 |
msgstr "via formulär"
|
109 |
|
110 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
111 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
112 |
msgid "Table could not be imported."
|
113 |
msgstr "Tabellen kunde inte importeras."
|
114 |
|
115 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
116 |
#, php-format
|
117 |
msgid "Table %s (%s) replaced successfully."
|
118 |
msgstr "Tabell %s (%s) ersattes framgångsrikt."
|
119 |
|
120 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
121 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
122 |
msgid "Table imported successfully."
|
123 |
msgstr "Tabellimport lyckades."
|
124 |
|
125 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
126 |
#, php-format
|
127 |
msgid "Table \"%s\" exported successfully."
|
128 |
msgstr "Tabellen \"%s\" exporterades framgångsrikt."
|
129 |
|
130 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
131 |
msgid "Options saved successfully."
|
132 |
msgstr "Inställningar sparades framgångsrikt."
|
133 |
|
134 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
135 |
msgid "WP-Table Reloaded"
|
136 |
msgstr "WP-Table Reloaded"
|
137 |
|
138 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
139 |
msgid "Plugin deactivated successfully."
|
140 |
msgstr "Tillägget inaktiverades framgångsrikt."
|
141 |
|
142 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
143 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
144 |
msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
|
145 |
|
146 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
147 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
148 |
msgid "List of Tables"
|
149 |
msgstr "Tabellista"
|
150 |
|
151 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
152 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
153 |
msgid "This is a list of all available tables."
|
154 |
msgstr "Detta är en lista över alla tillgängliga tabeller."
|
155 |
|
156 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
157 |
msgid "You may insert a table into a post or page here."
|
158 |
msgstr "Du kan infoga en tabell i ett inlägg eller en sida här."
|
159 |
|
160 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
161 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
162 |
msgstr "Klicka på \"Infoga\"länken efter önskad tabell och motsvarande snabbkod kommer att infogas i editorn (<strong>[table id=<the_table_ID> /]</strong>)."
|
163 |
|
164 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
165 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
166 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
167 |
msgid "ID"
|
168 |
msgstr "ID"
|
169 |
|
170 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
171 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
172 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
173 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
174 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
175 |
msgid "Table Name"
|
176 |
msgstr "Tabellnamn"
|
177 |
|
178 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
179 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
180 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
181 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
182 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
183 |
msgid "Description"
|
184 |
msgstr "Beskrivning"
|
185 |
|
186 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
187 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
188 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
189 |
msgid "Action"
|
190 |
msgstr "Åtgärd"
|
191 |
|
192 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
193 |
msgid "Insert"
|
194 |
msgstr "Infoga"
|
195 |
|
196 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
197 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
198 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
199 |
msgid "No tables found."
|
200 |
msgstr "Inga tabeller hittades."
|
201 |
|
202 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
msgid "You may add, edit, copy or delete tables here."
|
204 |
msgstr "Du kan lägga till, redigera, kopiera eller radera tabeller här."
|
205 |
|
206 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
207 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
208 |
msgstr "Om du vill visa en tabell i dina sidor, inlägg eller textwidgets, använd snabbkoden <strong>[table id=<the_table_ID> /]</strong> eller klicka på knappen \"Tabell\" i verktygsfältet i editorn."
|
209 |
|
210 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid "Edit"
|
212 |
msgstr "Redigera"
|
213 |
|
214 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
215 |
msgid "Copy"
|
216 |
msgstr "Kopiera"
|
217 |
|
218 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
219 |
msgid "Export"
|
220 |
msgstr "Exportera"
|
221 |
|
222 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
223 |
msgid "Delete"
|
224 |
msgstr "Radera"
|
225 |
|
226 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
227 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
msgid "Bulk actions:"
|
229 |
msgstr "Bulkåtgärder:"
|
230 |
|
231 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
232 |
msgid "Copy Tables"
|
233 |
msgstr "Kopiera tabeller"
|
234 |
|
235 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
236 |
msgid "Delete Tables"
|
237 |
msgstr "Radera tabeller"
|
238 |
|
239 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
240 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
241 |
#, php-format
|
242 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
243 |
msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
|
244 |
|
245 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
246 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
247 |
msgid "Add new Table"
|
248 |
msgstr "Lägg till tabell"
|
249 |
|
250 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
251 |
-
msgid "You can add a new table here. Just enter
|
252 |
-
msgstr "
|
|
|
|
|
|
|
|
|
253 |
|
254 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
255 |
msgid "Enter Table Name"
|
256 |
msgstr "Ange tabellnamn"
|
257 |
|
258 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
259 |
msgid "Enter Description"
|
260 |
msgstr "Ange beskrivning"
|
261 |
|
262 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
263 |
msgid "Number of Rows"
|
264 |
msgstr "Antal rader"
|
265 |
|
266 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
267 |
msgid "Number of Columns"
|
268 |
msgstr "Antal kolumner"
|
269 |
|
270 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
271 |
msgid "Add Table"
|
272 |
msgstr "Lägg till tabell"
|
273 |
|
274 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
275 |
#, php-format
|
276 |
-
msgid "Edit Table \"%s\""
|
277 |
-
msgstr "Redigera
|
278 |
|
279 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
280 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
281 |
msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
|
282 |
|
283 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
284 |
-
#, php-format
|
285 |
-
msgid "If you want to show a table in your pages, posts or text-widgets, use this shortcode: <strong>[table id=%s /]</strong>"
|
286 |
-
msgstr "Om du vill visa en tabell på dina sidor, i inlägg eller i textwidgets, använd denna snabbkod: <strong>[table id=%s /]</strong>"
|
287 |
-
|
288 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:818
|
289 |
msgid "Table Information"
|
290 |
msgstr "Tabellinformation"
|
291 |
|
292 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
293 |
msgid "Table ID"
|
294 |
msgstr "Tabell ID"
|
295 |
|
296 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
297 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
298 |
msgid "Update Changes"
|
299 |
msgstr "Spara ändringar"
|
300 |
|
301 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
302 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
303 |
msgid "Save and go back"
|
304 |
msgstr "Spara och gå tillbaka"
|
305 |
|
306 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
307 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
308 |
msgid "Cancel"
|
309 |
msgstr "Ångra"
|
310 |
|
311 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
312 |
msgid "Table Contents"
|
313 |
msgstr "Tabellinnehåll"
|
314 |
|
315 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
316 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
317 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
318 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
319 |
msgid "Hide"
|
320 |
msgstr "Dölj"
|
321 |
|
322 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
323 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
324 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
325 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
326 |
msgid "Expand"
|
327 |
msgstr "Expandera"
|
328 |
|
329 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
330 |
msgid "Insert Row"
|
331 |
msgstr "Infoga rad"
|
332 |
|
333 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
334 |
msgid "Delete Row"
|
335 |
msgstr "Radera rad"
|
336 |
|
337 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
338 |
msgid "Insert Column"
|
339 |
msgstr "Infoga kolumn"
|
340 |
|
341 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
342 |
msgid "Delete Column"
|
343 |
msgstr "Radera kolumn"
|
344 |
|
345 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
346 |
#, php-format
|
347 |
msgid "Add %s row(s)"
|
348 |
msgstr "Lägg till %s rad(er)"
|
349 |
|
350 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
351 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
352 |
msgid "Add"
|
353 |
msgstr "Lägg till"
|
354 |
|
355 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
356 |
#, php-format
|
357 |
msgid "Add %s column(s)"
|
358 |
msgstr "Lägg till %s kolumn(er)"
|
359 |
|
360 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
361 |
msgid "Data Manipulation"
|
362 |
msgstr "Datahantering"
|
363 |
|
364 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
365 |
#, php-format
|
366 |
msgid "Swap rows %s and %s"
|
367 |
msgstr "Byt plats på rader %s och %s"
|
368 |
|
369 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
370 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
371 |
msgid "Swap"
|
372 |
msgstr "Byt plats"
|
373 |
|
374 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
375 |
#, php-format
|
376 |
msgid "Swap columns %s and %s"
|
377 |
msgstr "Byt plats på kolumner %s och %s"
|
378 |
|
379 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
msgid "Insert Link"
|
381 |
msgstr "Infoga Länk"
|
382 |
|
383 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
384 |
msgid "Insert Image"
|
385 |
msgstr "Infoga Bild"
|
386 |
|
387 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
388 |
msgid "ascending"
|
389 |
msgstr "stigande"
|
390 |
|
391 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
392 |
msgid "descending"
|
393 |
msgstr "fallande"
|
394 |
|
395 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
396 |
#, php-format
|
397 |
msgid "Sort table by column %s in %s order"
|
398 |
msgstr "Sortera tabell efter kolumn %s i %s ordningsföljd"
|
399 |
|
400 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
401 |
msgid "Sort"
|
402 |
msgstr "Sortera"
|
403 |
|
404 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
405 |
msgid "Table Settings"
|
406 |
msgstr "Tabellinställningar"
|
407 |
|
408 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
409 |
msgid "These settings will only be used for this table."
|
410 |
msgstr "Dessa inställningar kommer endast användas för denna tabell."
|
411 |
|
412 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
413 |
msgid "Alternating row colors"
|
414 |
msgstr "Växlande radfärg"
|
415 |
|
416 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
417 |
msgid "Every second row will have an alternating background color."
|
418 |
msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
|
419 |
|
420 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
421 |
msgid "Use Table Headline"
|
422 |
msgstr "Använd tabellrubrik"
|
423 |
|
424 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
425 |
-
msgid "The first row of your table will use the
|
426 |
-
msgstr "Första raden i din tabell kommer använda etiketten
|
427 |
|
428 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
429 |
msgid "Print Table Name"
|
430 |
msgstr "Visa tabellnamn"
|
431 |
|
432 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
433 |
-
msgid "The Table Name will be written above the table in a
|
434 |
-
msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten
|
435 |
|
436 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
437 |
msgid "Print Table Description"
|
438 |
msgstr "Visa tabellbeskrivning"
|
439 |
|
440 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
441 |
msgid "The Table Description will be written under the table."
|
442 |
msgstr "Tabellens beskrivning kommer att visas under tabellen."
|
443 |
|
444 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
445 |
msgid "Use Tablesorter"
|
446 |
msgstr "Använd Tablesorter"
|
447 |
|
448 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
449 |
-
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>.
|
450 |
-
msgstr "Du kan
|
451 |
|
452 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
msgid "Other actions"
|
454 |
msgstr "Andra åtgärder"
|
455 |
|
456 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
457 |
msgid "Delete Table"
|
458 |
msgstr "Radera tabell"
|
459 |
|
460 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
461 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
462 |
msgid "Export Table"
|
463 |
msgstr "Exportera tabell"
|
464 |
|
465 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
466 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
467 |
msgid "Import a Table"
|
468 |
msgstr "Importera tabell"
|
469 |
|
470 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
471 |
-
msgid "You may import a table from existing data here
|
472 |
-
msgstr "
|
|
|
|
|
|
|
|
|
473 |
|
474 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
475 |
msgid "Select Import Format"
|
476 |
msgstr "Välj importformat"
|
477 |
|
478 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
479 |
msgid "Add or Replace Table?"
|
480 |
msgstr "Lägga till eller ersätta tabell?"
|
481 |
|
482 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
483 |
msgid "Add as new Table"
|
484 |
msgstr "Lägg till som ny tabell"
|
485 |
|
486 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
487 |
msgid "Replace existing Table"
|
488 |
msgstr "Ersätt existerande tabell"
|
489 |
|
490 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
491 |
msgid "Select existing Table to Replace"
|
492 |
msgstr "Välj existerande tabell som ska ersättas"
|
493 |
|
494 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
495 |
msgid "Select source for import"
|
496 |
msgstr "Välj källa för import"
|
497 |
|
498 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
499 |
msgid "File upload"
|
500 |
msgstr "Filöverföring"
|
501 |
|
502 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
503 |
msgid "URL"
|
504 |
msgstr "URL"
|
505 |
|
506 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
507 |
msgid "Manual input"
|
508 |
msgstr "Manuell inmatning"
|
509 |
|
510 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
511 |
msgid "File on server"
|
512 |
msgstr "Fil på servern"
|
513 |
|
514 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
515 |
msgid "Select File with Table to Import"
|
516 |
msgstr "Välj tabellfil som ska importeras"
|
517 |
|
518 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
519 |
msgid "URL to import table from"
|
520 |
msgstr "URL att importera tabell från"
|
521 |
|
522 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
523 |
msgid "Path to file on server"
|
524 |
msgstr "Sökväg till fil på servern"
|
525 |
|
526 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
527 |
msgid "Paste data with Table to Import"
|
528 |
msgstr "Klistra in data med tabell som ska importeras"
|
529 |
|
530 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
531 |
msgid "Import Table"
|
532 |
msgstr "Importera tabell"
|
533 |
|
534 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
535 |
msgid "Import from original wp-Table plugin"
|
536 |
msgstr "Importera från originalet wp-Table"
|
537 |
|
538 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
539 |
msgid "Import"
|
540 |
msgstr "Importera"
|
541 |
|
542 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
543 |
msgid "Import Tables"
|
544 |
msgstr "Importera tabeller"
|
545 |
|
546 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
547 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
548 |
msgstr "wp-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
|
549 |
|
550 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
551 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
552 |
msgid "Export a Table"
|
553 |
msgstr "Exportera tabell"
|
554 |
|
555 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
556 |
-
msgid "You may export a table here. Just select the table, your desired export format and
|
557 |
-
msgstr "Du kan exportera en tabell här. Välj en tabell, önskat exportformat och avgränsare (endast för CSV)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
558 |
|
559 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
560 |
msgid "Select Table to Export"
|
561 |
msgstr "Välj tabell som ska exporteras"
|
562 |
|
563 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
564 |
msgid "Select Export Format"
|
565 |
msgstr "Välj exportformat"
|
566 |
|
567 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
568 |
msgid "Select Delimiter to use"
|
569 |
msgstr "Välj avgränsare"
|
570 |
|
571 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
572 |
msgid "<small>(Only needed for CSV export.)</small>"
|
573 |
msgstr "<small>(Behövs endast för CSV export.)</small>"
|
574 |
|
575 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
576 |
msgid "Download file"
|
577 |
msgstr "Ladda ner"
|
578 |
|
579 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
580 |
msgid "Yes, I want to download the export file."
|
581 |
msgstr "Ja, jag vill ladda ner exportfilen."
|
582 |
|
583 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
584 |
msgid "General Plugin Options"
|
585 |
msgstr "Allmänna inställningar"
|
586 |
|
587 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
588 |
-
msgid "You may change these global options
|
589 |
-
msgstr "
|
590 |
|
591 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
592 |
msgid "Frontend Options"
|
593 |
msgstr "Gränssnittsalternativ"
|
594 |
|
595 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
596 |
msgid "Enable Tablesorter-JavaScript?"
|
597 |
msgstr "Aktivera Tablesorter-JavaScript?"
|
598 |
|
599 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
600 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
601 |
msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Detta kan användas för att göra tabellerna sorterbara (kan aktiveras separat för varje tabell i dess inställningar)."
|
602 |
|
603 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
604 |
msgid "Add custom CSS?"
|
605 |
msgstr "Lägg till anpassad CSS?"
|
606 |
|
607 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
608 |
-
msgid "Yes, include and load the following CSS-snippet on my site inside a
|
609 |
-
msgstr "Ja, inkludera och ladda följande CSS-sträng på min sida inuti en
|
610 |
|
611 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
612 |
msgid "Enter custom CSS"
|
613 |
msgstr "Ange anpassad CSS"
|
614 |
|
615 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
616 |
#, php-format
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
|
620 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
621 |
#, php-format
|
622 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
623 |
msgstr "Se <a href=\"%s\">tilläggets hemsida</a> för stylingexempel eller använd ett av följande: <a href=\"%s\">Exempelstil 1</a> <a href=\"%s\">Exempelstil 2</a>"
|
624 |
|
625 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
626 |
msgid "Just copy the contents of a file into the textarea."
|
627 |
msgstr "Kopiera filens innehåll och klistra in i textarean."
|
628 |
|
629 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
630 |
-
|
631 |
-
|
|
|
|
|
|
|
|
|
|
|
632 |
|
633 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
msgid "Uninstall Plugin upon Deactivation?"
|
635 |
msgstr "Avinstallera tillägget vid inaktivering?"
|
636 |
|
637 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
638 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
639 |
msgstr "Ja, avinstallera allt när tillägget inaktiveras. OBS! Du bör endast markera denna ruta precis innan du inaktiverar tillägget via WordPress tilläggssida!"
|
640 |
|
641 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
msgid "Save Options"
|
647 |
msgstr "Spara"
|
648 |
|
649 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
650 |
msgid "Manually Uninstall Plugin"
|
651 |
msgstr "Avinstallera tillägget manuellt"
|
652 |
|
653 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
654 |
-
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported
|
655 |
-
msgstr "Du kan avinstallera tillägget här. Detta <strong>kommer att radera</strong> alla tabeller, data, inställningar, etc. som hör till tillägget, inklusive alla tabeller som lagts till eller importerats
|
656 |
|
657 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
658 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
659 |
msgstr "Avinstallera WP-Table Reloaded"
|
660 |
|
661 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
662 |
-
msgid "
|
663 |
-
msgstr "
|
664 |
|
665 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
666 |
msgid "Plugin Purpose"
|
667 |
msgstr "Tilläggets ändamål"
|
668 |
|
669 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
670 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
671 |
msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress."
|
672 |
|
673 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
674 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
675 |
msgstr "Dessa tabeller kan innehålla strängar, tal och även HTML (t.ex. för att inkludera bilder eller länkar)."
|
676 |
|
677 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
678 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
679 |
msgstr "Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
|
680 |
|
681 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
682 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
683 |
msgstr "Om du vill visa dina tabeller någon annanstans i ditt tema kan du använda template tag funktionen."
|
684 |
|
685 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
686 |
msgid "Usage"
|
687 |
msgstr "Användning"
|
688 |
|
689 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
690 |
msgid "At first you should add or import a table."
|
691 |
msgstr "Du bör först lägga till eller importera en tabell."
|
692 |
|
693 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
694 |
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."
|
695 |
msgstr "Detta betyder att du antingen låter tillägget skapa en tom tabell åt dig eller att du laddar en existerande tabell från en CSV-, XML- eller HTML-fil."
|
696 |
|
697 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
698 |
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."
|
699 |
msgstr "Sedan kan du redigera din data eller ändra tabellens struktur (t.ex. genom att infoga eller radera rader och kolumner, byta plats på rader och kolumner eller sortera dem) och välja specifika tabellinställningar så som växlande radfärger eller att visa namn eller beskrivning, om du vill."
|
700 |
|
701 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
702 |
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."
|
703 |
msgstr "För att enkelt lägga till en länk eller en bild i en cell, använd tillhandahållna knappar. Du kommer tillfrågas om URL och en titel. Sedan kan du klicka i en cell och motsvarande HTML kommer att läggas till åt dig."
|
704 |
|
705 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
706 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
707 |
msgstr "För att inkludera tabellen i dina inlägg, sidor eller textwidgets, skriv snabbkoden [table id=<table-id>] i dem."
|
708 |
|
709 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
710 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
711 |
msgstr "Du kan även välja önskad tabell från en lista (klicka på knappen \"Tabell\" i verktygsfältet i editorn) och motsvarande snabbkod kommer läggas till åt dig."
|
712 |
|
713 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
714 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
715 |
msgstr "Du kan även styla din tabell med hjälp av CSS. Exempelfiler finns på tilläggets hemsida. Varje tabell har CSS-class \"wp-table-reloaded\". Varje tabell har även class \"wp-table-reloaded-<table-id>\"."
|
716 |
|
717 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
718 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
719 |
msgstr "Du kan även använda class \"column-<number>\" och \"row-<number>\" för att ställa in individuell stil för rader och kolumner. Använd detta för att exempelvis ställa in kolumnbredd och textjustering."
|
720 |
|
721 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
722 |
msgid "More Information and Documentation"
|
723 |
msgstr "Mer Information och Dokumentation"
|
724 |
|
725 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
726 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
727 |
msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a> eller på dess sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
728 |
|
729 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
730 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
731 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
732 |
msgstr "Se <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">dokumentation</a> eller ta reda på hur du får <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
733 |
|
734 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
735 |
msgid "Author and Licence"
|
736 |
msgstr "Författare och Licens"
|
737 |
|
738 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
739 |
-
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
743 |
-
|
744 |
-
|
|
|
745 |
|
746 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
747 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
748 |
msgstr "Donationer och bra betyg uppmuntrar mig att vidare utveckla tillägget och tillhandahålla oräkneliga timmar support. Valfritt belopp är uppskattat! Tack!"
|
749 |
|
750 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
751 |
msgid "Credits and Thanks"
|
752 |
msgstr "Medverkande och Tack"
|
753 |
|
754 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
755 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
756 |
msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget wp-Table,"
|
757 |
|
758 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
759 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
760 |
msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
761 |
|
762 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
763 |
msgid "the submitters of translations:"
|
764 |
msgstr "inskickade översättningar:"
|
765 |
|
766 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
767 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
768 |
msgstr "Albanska (tack till <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
769 |
|
770 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
771 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
772 |
msgstr "Brasiliansk-Portugisiska (tack till <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
773 |
|
774 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
775 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
776 |
msgstr "Tjeckiska (tack till <a href=\"http://separatista.net/\">Separatista</a>)"
|
777 |
|
778 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
779 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
780 |
msgstr "Franska (tack till <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
781 |
|
782 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
msgid "Polish (thanks to Alex Kortan)"
|
784 |
msgstr "Polska (tack till Alex Kortan)"
|
785 |
|
786 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
787 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
788 |
msgstr "Ryska (tack till <a href=\"http://wp-skins.info/\">Truper</a>)"
|
789 |
|
790 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
791 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
792 |
msgstr "Spanska (tack till <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> och <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
793 |
|
794 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
795 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
796 |
msgstr "Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
797 |
|
798 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
799 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
800 |
msgstr "Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
801 |
|
802 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
803 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
804 |
msgstr "och alla donatorer, bidragsgivare, anhängare, recensenter och användare av tillägget!"
|
805 |
|
806 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
807 |
msgid "Debug and Version Information"
|
808 |
msgstr "Debug- och Versionsinformation"
|
809 |
|
810 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
811 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
812 |
msgstr "Du använder följande version av programvaran. <strong>Var vänlig ange denna information i felrapporter.</strong>"
|
813 |
|
814 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
815 |
msgid "List Tables"
|
816 |
msgstr "Visa tabeller"
|
817 |
|
818 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
819 |
msgid "Plugin Options"
|
820 |
msgstr "Inställningar"
|
821 |
|
822 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
823 |
msgid "About the Plugin"
|
824 |
msgstr "Om tillägget"
|
825 |
|
826 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
828 |
msgstr "Mer information kan hittas på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a>."
|
829 |
|
830 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
831 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
832 |
msgstr "Vill du verkligen aktivera det här? Du bör endast göra detta precis innan avinstallation!"
|
833 |
|
834 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
835 |
msgid "URL of link to insert"
|
836 |
msgstr "URL till länken som ska infogas"
|
837 |
|
838 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
839 |
msgid "Text of link"
|
840 |
msgstr "Länkens text"
|
841 |
|
842 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
843 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
844 |
msgstr "För att infoga följande länk i en cell, klicka bara på cellen efter att denna ruta har stängts."
|
845 |
|
846 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
847 |
-
msgid "
|
848 |
-
msgstr "
|
849 |
|
850 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
851 |
-
msgid "
|
852 |
-
msgstr "
|
853 |
|
854 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
855 |
-
|
856 |
-
|
|
|
|
|
|
|
|
|
|
|
857 |
|
858 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
859 |
msgid "Do you want to copy the selected tables?"
|
860 |
msgstr "Vill du kopiera valda tabeller?"
|
861 |
|
862 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
863 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
864 |
msgstr "Valda tabeller och allt inehåll kommer raderas. Vill du verkligen radera dem?"
|
865 |
|
866 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
867 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
868 |
msgstr "Vill du verkligen importera valda tabeller från wp-Table tillägget?"
|
869 |
|
870 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
871 |
msgid "Do you want to copy this table?"
|
872 |
msgstr "Vill du kopiera denna tabell?"
|
873 |
|
874 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
875 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
876 |
msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
|
877 |
|
878 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
879 |
msgid "Do you really want to delete this row?"
|
880 |
msgstr "Vill du verkligen radera denna rad?"
|
881 |
|
882 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
883 |
msgid "Do you really want to delete this column?"
|
884 |
msgstr "Vill du verkligen radera denna kolumn?"
|
885 |
|
886 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
887 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
888 |
msgstr "Vill du verkligen importera denna tabell från wp-Table tillägget?"
|
889 |
|
890 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
891 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
892 |
msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
|
893 |
|
894 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
895 |
msgid "Are you really sure?"
|
896 |
msgstr "Är du riktigt säker?"
|
897 |
|
898 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
899 |
msgid "Do you really want to change the ID of the table?"
|
900 |
msgstr "Vill du verkligen ändra ID för denna tabell?"
|
901 |
|
902 |
-
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
903 |
msgid "Table"
|
904 |
msgstr "Tabell"
|
905 |
|
|
|
|
|
|
|
|
|
906 |
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:30
|
907 |
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:38
|
908 |
msgid "CSV - Character-Separated Values"
|
@@ -938,6 +1274,18 @@ msgstr ". (punkt)"
|
|
938 |
msgid "| (pipe)"
|
939 |
msgstr "| (pipe)"
|
940 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
#~ msgid "- or -"
|
942 |
#~ msgstr "- eller -"
|
943 |
#~ msgid "(upload will be preferred over pasting)"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Table Reloaded (sv_SE)\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-07-20 19:11+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: ZuperZed <info@zuperzed.se>\n"
|
8 |
"Language-Team: www.zuperzed.se <info@zuperzed.se>\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: D:\\Hemsida\\ZuperZed.se\\wp-content\\plugins\\wp-table-reloaded\n"
|
19 |
|
20 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:179
|
21 |
+
#, php-format
|
22 |
+
msgid "Thanks for using this plugin! You've installed WP-Table Reloaded over a month ago. 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?"
|
23 |
+
msgstr "Tack för att du använder detta tillägg! Du installerade WP-Table Reloaded för mer än en månad sedan. Om det funkar och du är nöjd med resultatet och hur det hanterar dina tabeller, är det inte värt åtminstone en dollar eller euro?"
|
24 |
+
|
25 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:180
|
26 |
+
#, php-format
|
27 |
+
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!"
|
28 |
+
msgstr "<a href=\"%s\">Donationer</a> hjälper mig att fortsätta underhålla och utveckla dessa <i>gratisprogram</i> som jag spenderat oräkneliga timmar av min fritid på! Tack!"
|
29 |
+
|
30 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:181
|
31 |
+
msgid "Sure, no problem!"
|
32 |
+
msgstr "Självklart, inga problem!"
|
33 |
+
|
34 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:182
|
35 |
+
msgid "I already donated."
|
36 |
+
msgstr "Jag har redan donerat."
|
37 |
+
|
38 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:183
|
39 |
+
msgid "No, thanks. Don't ask again."
|
40 |
+
msgstr "Nej tack. Fråga inte igen."
|
41 |
+
|
42 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:208
|
43 |
#, php-format
|
44 |
msgid "Table \"%s\" added successfully."
|
45 |
msgstr "Tabellen \"%s\" tillagd framgångsrikt."
|
46 |
|
47 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:236
|
48 |
#, php-format
|
49 |
msgid "Table edited successfully. This Table now has the ID %s. You'll need to adjust existing shortcodes accordingly."
|
50 |
msgstr "Tabell redigerad framgångsrikt. Denna tabell har nu ID %s. Du måste justera existerande snabbkod därefter."
|
51 |
|
52 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:238
|
53 |
#, php-format
|
54 |
msgid "The ID could not be changed from %s to %s, because there already is a Table with that ID."
|
55 |
msgstr "ID kunde inte ändras från %s till %s eftersom det redan finns en tabell med samma ID."
|
56 |
|
57 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:241
|
58 |
msgid "Table edited successfully."
|
59 |
msgstr "Tabell redigerad framgångsrikt."
|
60 |
|
61 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:279
|
62 |
msgid "Rows swapped successfully."
|
63 |
msgstr "Rader bytte plats framgångsrikt."
|
64 |
|
65 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:300
|
66 |
msgid "Columns swapped successfully."
|
67 |
msgstr "Kolumner bytte plats framgångsrikt."
|
68 |
|
69 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:331
|
70 |
msgid "Table sorted successfully."
|
71 |
msgstr "Tabellsortering lyckades."
|
72 |
|
73 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:381
|
74 |
+
msgid "Row moved successfully."
|
75 |
+
msgstr "Rad flyttades framgångsrikt."
|
76 |
+
|
77 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:406
|
78 |
+
msgid "Column moved successfully."
|
79 |
+
msgstr "Kolumn flyttades framgångsrikt."
|
80 |
+
|
81 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:413
|
82 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
83 |
+
msgstr "Kunde inte lägga till anpassat datafält, namn saknas."
|
84 |
+
|
85 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:418
|
86 |
+
msgid "Could not add Custom Data Field, because the name you entered is reserved for other table data."
|
87 |
+
msgstr "Kunde inte lägga till anpassat datafält, namnet du angav är reserverat för annan tabelldata."
|
88 |
+
|
89 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:424
|
90 |
+
msgid "Could not add Custom Data Field, because the name contained illegal characters."
|
91 |
+
msgstr "Kunde inte lägga till anpassat datafält, namnet innehåller otillåtna tecken."
|
92 |
+
|
93 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:428
|
94 |
+
msgid "Could not add Custom Data Field, because a Field with that name already exists."
|
95 |
+
msgstr "Kunde inte lägga till anpassat datafält, ett fält med samma namn finns redan."
|
96 |
+
|
97 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:434
|
98 |
+
msgid "Custom Data Field added successfully."
|
99 |
+
msgstr "Anpassat datafält tillagt framgångsrikt."
|
100 |
+
|
101 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:470
|
102 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:525
|
103 |
msgid "Copy of"
|
104 |
msgstr "Kopia av"
|
105 |
|
106 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:508
|
107 |
msgid "You did not select any tables!"
|
108 |
msgstr "Du har inte valt några tabeller!"
|
109 |
|
110 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:530
|
111 |
#, php-format
|
112 |
msgid "Table \"%s\" copied successfully."
|
113 |
msgstr "Tabellen \"%s\" kopierades framgångsrikt."
|
114 |
|
115 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:546
|
116 |
#, php-format
|
117 |
msgid "Table \"%s\" deleted successfully."
|
118 |
msgstr "Tabellen \"%s\" raderades framgångsrikt."
|
119 |
|
120 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:557
|
121 |
msgid "Row deleted successfully."
|
122 |
msgstr "Rad raderades framgångsrikt."
|
123 |
|
124 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:571
|
125 |
msgid "Column deleted successfully."
|
126 |
msgstr "Kolumn raderades framgångsrikt."
|
127 |
|
128 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:580
|
129 |
+
msgid "Custom Data Field deleted successfully."
|
130 |
+
msgstr "Anpassat datafält raderades framgångsrikt."
|
131 |
+
|
132 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:582
|
133 |
+
msgid "Custom Data Field could not be deleted."
|
134 |
+
msgstr "Anpassat datafält kunde inte raderas."
|
135 |
+
|
136 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:588
|
137 |
msgid "Delete failed."
|
138 |
msgstr "Radering misslyckades."
|
139 |
|
140 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:614
|
141 |
msgid "Row inserted successfully."
|
142 |
msgstr "Infoga rad lyckades."
|
143 |
|
144 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:624
|
145 |
msgid "Column inserted successfully."
|
146 |
msgstr "Infoga kolumn lyckades."
|
147 |
|
148 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:627
|
149 |
msgid "Insert failed."
|
150 |
msgstr "Infogning misslyckades."
|
151 |
|
152 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:655
|
153 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:664
|
154 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:674
|
155 |
msgid "Imported Table"
|
156 |
msgstr "Importerad Tabell"
|
157 |
|
158 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:656
|
159 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:675
|
160 |
#, php-format
|
161 |
msgid "from %s"
|
162 |
msgstr "från %s"
|
163 |
|
164 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:665
|
165 |
msgid "via form"
|
166 |
msgstr "via formulär"
|
167 |
|
168 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:685
|
169 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:716
|
170 |
msgid "Table could not be imported."
|
171 |
msgstr "Tabellen kunde inte importeras."
|
172 |
|
173 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:697
|
174 |
#, php-format
|
175 |
msgid "Table %s (%s) replaced successfully."
|
176 |
msgstr "Tabell %s (%s) ersattes framgångsrikt."
|
177 |
|
178 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:701
|
179 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:739
|
180 |
msgid "Table imported successfully."
|
181 |
msgstr "Tabellimport lyckades."
|
182 |
|
183 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:766
|
184 |
#, php-format
|
185 |
msgid "Table \"%s\" exported successfully."
|
186 |
msgstr "Tabellen \"%s\" exporterades framgångsrikt."
|
187 |
|
188 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:797
|
189 |
msgid "Options saved successfully."
|
190 |
msgstr "Inställningar sparades framgångsrikt."
|
191 |
|
192 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:815
|
193 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:958
|
194 |
msgid "WP-Table Reloaded"
|
195 |
msgstr "WP-Table Reloaded"
|
196 |
|
197 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:816
|
198 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1967
|
199 |
msgid "Plugin deactivated successfully."
|
200 |
msgstr "Tillägget inaktiverades framgångsrikt."
|
201 |
|
202 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:817
|
203 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1967
|
204 |
msgid "All tables, data and options were deleted. You may now remove the plugin's subfolder from your WordPress plugin folder."
|
205 |
msgstr "Alla tabeller, data och inställningar raderades. Du kan nu ta bort tilläggets undermapp från din Wordpress pluginmapp."
|
206 |
|
207 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:833
|
208 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:958
|
209 |
msgid "List of Tables"
|
210 |
msgstr "Tabellista"
|
211 |
|
212 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:836
|
213 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:961
|
214 |
msgid "This is a list of all available tables."
|
215 |
msgstr "Detta är en lista över alla tillgängliga tabeller."
|
216 |
|
217 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:836
|
218 |
msgid "You may insert a table into a post or page here."
|
219 |
msgstr "Du kan infoga en tabell i ett inlägg eller en sida här."
|
220 |
|
221 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:837
|
222 |
msgid "Click the \"Insert\" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>)."
|
223 |
msgstr "Klicka på \"Infoga\"länken efter önskad tabell och motsvarande snabbkod kommer att infogas i editorn (<strong>[table id=<the_table_ID> /]</strong>)."
|
224 |
|
225 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:846
|
226 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:854
|
227 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:973
|
228 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:982
|
229 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1567
|
230 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1576
|
231 |
msgid "ID"
|
232 |
msgstr "ID"
|
233 |
|
234 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:847
|
235 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:855
|
236 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:974
|
237 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:983
|
238 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1067
|
239 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1121
|
240 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1568
|
241 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1577
|
242 |
msgid "Table Name"
|
243 |
msgstr "Tabellnamn"
|
244 |
|
245 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:848
|
246 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:856
|
247 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:975
|
248 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:984
|
249 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1071
|
250 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1125
|
251 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1569
|
252 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1578
|
253 |
msgid "Description"
|
254 |
msgstr "Beskrivning"
|
255 |
|
256 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:849
|
257 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:857
|
258 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1414
|
259 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1570
|
260 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1579
|
261 |
msgid "Action"
|
262 |
msgstr "Åtgärd"
|
263 |
|
264 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:877
|
265 |
msgid "Insert"
|
266 |
msgstr "Infoga"
|
267 |
|
268 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:886
|
269 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1045
|
270 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1699
|
271 |
msgid "No tables found."
|
272 |
msgstr "Inga tabeller hittades."
|
273 |
|
274 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:906
|
275 |
+
#, php-format
|
276 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
277 |
+
msgstr "Förhandsgranskning av tabell \"%s\" (ID %s)"
|
278 |
+
|
279 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:909
|
280 |
+
msgid "This is a preview of the table data."
|
281 |
+
msgstr "Detta är en förhandsgranskning av tabellens data."
|
282 |
+
|
283 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:910
|
284 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
285 |
+
msgstr "Beroende på CSS-stil kan denna tabell se annorlunda ut på din sida!"
|
286 |
+
|
287 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:911
|
288 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1106
|
289 |
+
#, php-format
|
290 |
+
msgid "To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>."
|
291 |
+
msgstr "För att visa denna tabell på dina sidor, i inlägg eller i textwidgets, använd snabbkoden <strong>[table id=%s /]</strong>."
|
292 |
+
|
293 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:924
|
294 |
+
msgid "There is no table with this ID!"
|
295 |
+
msgstr "Det finns ingen tabell med detta ID!"
|
296 |
+
|
297 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:941
|
298 |
+
msgid "Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!"
|
299 |
+
msgstr "Tack så mycket! Din donation är mycket uppskattad. Du har just bidragit till vidare utveckling av WP-Table Reloaded!"
|
300 |
+
|
301 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:943
|
302 |
+
#, php-format
|
303 |
+
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 \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
304 |
+
msgstr "Inga problem! Jag hoppas ändå att du gillar fördelarna med WP-Table Reloaded. Om du ändrar dig kan du alltid hitta \"Donera\"-knappen på <a href=\"%s\">WP-Table Reloadeds hemsida</a>."
|
305 |
+
|
306 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:961
|
307 |
msgid "You may add, edit, copy or delete tables here."
|
308 |
msgstr "Du kan lägga till, redigera, kopiera eller radera tabeller här."
|
309 |
|
310 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:962
|
311 |
msgid "If you want to show a table in your pages, posts or text-widgets, use the shortcode <strong>[table id=<the_table_ID> /]</strong> or click the button \"Table\" in the editor toolbar."
|
312 |
msgstr "Om du vill visa en tabell i dina sidor, inlägg eller textwidgets, använd snabbkoden <strong>[table id=<the_table_ID> /]</strong> eller klicka på knappen \"Tabell\" i verktygsfältet i editorn."
|
313 |
|
314 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:976
|
315 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:985
|
316 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1130
|
317 |
+
msgid "Last Modified"
|
318 |
+
msgstr "Senast ändrad"
|
319 |
+
|
320 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:997
|
321 |
+
msgid "(no name)"
|
322 |
+
msgstr "(inget namn)"
|
323 |
+
|
324 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:998
|
325 |
+
msgid "(no description)"
|
326 |
+
msgstr "(ingen beskrivning)"
|
327 |
+
|
328 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1002
|
329 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1131
|
330 |
+
msgid "by"
|
331 |
+
msgstr "av"
|
332 |
+
|
333 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1015
|
334 |
+
#, php-format
|
335 |
+
msgid "Edit %s"
|
336 |
+
msgstr "Redigera %s"
|
337 |
+
|
338 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1017
|
339 |
msgid "Edit"
|
340 |
msgstr "Redigera"
|
341 |
|
342 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1019
|
343 |
+
msgid "Shortcode"
|
344 |
+
msgstr "Snabbkod"
|
345 |
+
|
346 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1020
|
347 |
msgid "Copy"
|
348 |
msgstr "Kopiera"
|
349 |
|
350 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1021
|
351 |
msgid "Export"
|
352 |
msgstr "Exportera"
|
353 |
|
354 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1022
|
355 |
msgid "Delete"
|
356 |
msgstr "Radera"
|
357 |
|
358 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1023
|
359 |
+
#, php-format
|
360 |
+
msgid "Preview of Table %s"
|
361 |
+
msgstr "Förhandsgranskning av Tabell %s"
|
362 |
+
|
363 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1024
|
364 |
+
msgid "Preview"
|
365 |
+
msgstr "Förhandsgranskning"
|
366 |
+
|
367 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1036
|
368 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1608
|
369 |
msgid "Bulk actions:"
|
370 |
msgstr "Bulkåtgärder:"
|
371 |
|
372 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1036
|
373 |
msgid "Copy Tables"
|
374 |
msgstr "Kopiera tabeller"
|
375 |
|
376 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1036
|
377 |
msgid "Delete Tables"
|
378 |
msgstr "Radera tabeller"
|
379 |
|
380 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1045
|
381 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1699
|
382 |
#, php-format
|
383 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
384 |
msgstr "Du kan <a href=\"%s\">lägga till</a> eller <a href=\"%s\">importera</a> en!"
|
385 |
|
386 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1055
|
387 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1902
|
388 |
msgid "Add new Table"
|
389 |
msgstr "Lägg till tabell"
|
390 |
|
391 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1059
|
392 |
+
msgid "You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns."
|
393 |
+
msgstr "Här kan du lägga till en tabell. Ange tabellens namn, en beskrivning (valfritt) och antal rader och kolumner."
|
394 |
+
|
395 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1059
|
396 |
+
msgid "You may add, insert or delete rows and columns later."
|
397 |
+
msgstr "Du kan lägga till, infoga eller radera rader och kolumner senare."
|
398 |
|
399 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1068
|
400 |
msgid "Enter Table Name"
|
401 |
msgstr "Ange tabellnamn"
|
402 |
|
403 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1072
|
404 |
msgid "Enter Description"
|
405 |
msgstr "Ange beskrivning"
|
406 |
|
407 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1075
|
408 |
msgid "Number of Rows"
|
409 |
msgstr "Antal rader"
|
410 |
|
411 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1079
|
412 |
msgid "Number of Columns"
|
413 |
msgstr "Antal kolumner"
|
414 |
|
415 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1086
|
416 |
msgid "Add Table"
|
417 |
msgstr "Lägg till tabell"
|
418 |
|
419 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1102
|
420 |
#, php-format
|
421 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
422 |
+
msgstr "Redigera Tabell \"%s\" (ID %s)"
|
423 |
|
424 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1105
|
425 |
msgid "You may edit the content of the table here. It is also possible to add or delete columns and rows."
|
426 |
msgstr "Du kan redigera tabellens innehåll här. Det är även möjligt att lägga till eller radera kolumner och rader."
|
427 |
|
428 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1113
|
|
|
|
|
|
|
|
|
|
|
429 |
msgid "Table Information"
|
430 |
msgstr "Tabellinformation"
|
431 |
|
432 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1117
|
433 |
msgid "Table ID"
|
434 |
msgstr "Tabell ID"
|
435 |
|
436 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1139
|
437 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1353
|
438 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1393
|
439 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1444
|
440 |
msgid "Update Changes"
|
441 |
msgstr "Spara ändringar"
|
442 |
|
443 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1140
|
444 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1354
|
445 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1394
|
446 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1445
|
447 |
msgid "Save and go back"
|
448 |
msgstr "Spara och gå tillbaka"
|
449 |
|
450 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1143
|
451 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1357
|
452 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1397
|
453 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1448
|
454 |
msgid "Cancel"
|
455 |
msgstr "Ångra"
|
456 |
|
457 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1149
|
458 |
msgid "Table Contents"
|
459 |
msgstr "Tabellinnehåll"
|
460 |
|
461 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1149
|
462 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1246
|
463 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1362
|
464 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1402
|
465 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1750
|
466 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1852
|
467 |
msgid "Hide"
|
468 |
msgstr "Dölj"
|
469 |
|
470 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1149
|
471 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1246
|
472 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1362
|
473 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1402
|
474 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1750
|
475 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1852
|
476 |
msgid "Expand"
|
477 |
msgstr "Expandera"
|
478 |
|
479 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1190
|
480 |
msgid "Insert Row"
|
481 |
msgstr "Infoga rad"
|
482 |
|
483 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1192
|
484 |
msgid "Delete Row"
|
485 |
msgstr "Radera rad"
|
486 |
|
487 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1195
|
488 |
+
msgid "Row hidden"
|
489 |
+
msgstr "Rad dold"
|
490 |
+
|
491 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1206
|
492 |
msgid "Insert Column"
|
493 |
msgstr "Infoga kolumn"
|
494 |
|
495 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1208
|
496 |
msgid "Delete Column"
|
497 |
msgstr "Radera kolumn"
|
498 |
|
499 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1218
|
500 |
#, php-format
|
501 |
msgid "Add %s row(s)"
|
502 |
msgstr "Lägg till %s rad(er)"
|
503 |
|
504 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1219
|
505 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1221
|
506 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1439
|
507 |
msgid "Add"
|
508 |
msgstr "Lägg till"
|
509 |
|
510 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1220
|
511 |
#, php-format
|
512 |
msgid "Add %s column(s)"
|
513 |
msgstr "Lägg till %s kolumn(er)"
|
514 |
|
515 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1232
|
516 |
+
msgid "Column hidden"
|
517 |
+
msgstr "Kolumn dold"
|
518 |
+
|
519 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1246
|
520 |
msgid "Data Manipulation"
|
521 |
msgstr "Datahantering"
|
522 |
|
523 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1260
|
524 |
#, php-format
|
525 |
msgid "Swap rows %s and %s"
|
526 |
msgstr "Byt plats på rader %s och %s"
|
527 |
|
528 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1262
|
529 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1280
|
530 |
msgid "Swap"
|
531 |
msgstr "Byt plats"
|
532 |
|
533 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1278
|
534 |
#, php-format
|
535 |
msgid "Swap columns %s and %s"
|
536 |
msgstr "Byt plats på kolumner %s och %s"
|
537 |
|
538 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1294
|
539 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1317
|
540 |
+
msgid "before"
|
541 |
+
msgstr "före"
|
542 |
+
|
543 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1295
|
544 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1318
|
545 |
+
msgid "after"
|
546 |
+
msgstr "efter"
|
547 |
+
|
548 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1298
|
549 |
+
#, php-format
|
550 |
+
msgid "Move row %s %s row %s"
|
551 |
+
msgstr "Flytta rad %s %s rad %s"
|
552 |
+
|
553 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1300
|
554 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1323
|
555 |
+
msgid "Move"
|
556 |
+
msgstr "Flytta"
|
557 |
+
|
558 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1321
|
559 |
+
#, php-format
|
560 |
+
msgid "Move column %s %s column %s"
|
561 |
+
msgstr "Flytta kolumn %s %s kolumn %s"
|
562 |
+
|
563 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1327
|
564 |
msgid "Insert Link"
|
565 |
msgstr "Infoga Länk"
|
566 |
|
567 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1328
|
568 |
msgid "Insert Image"
|
569 |
msgstr "Infoga Bild"
|
570 |
|
571 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1338
|
572 |
msgid "ascending"
|
573 |
msgstr "stigande"
|
574 |
|
575 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1339
|
576 |
msgid "descending"
|
577 |
msgstr "fallande"
|
578 |
|
579 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1342
|
580 |
#, php-format
|
581 |
msgid "Sort table by column %s in %s order"
|
582 |
msgstr "Sortera tabell efter kolumn %s i %s ordningsföljd"
|
583 |
|
584 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1345
|
585 |
msgid "Sort"
|
586 |
msgstr "Sortera"
|
587 |
|
588 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1362
|
589 |
msgid "Table Settings"
|
590 |
msgstr "Tabellinställningar"
|
591 |
|
592 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1364
|
593 |
msgid "These settings will only be used for this table."
|
594 |
msgstr "Dessa inställningar kommer endast användas för denna tabell."
|
595 |
|
596 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1367
|
597 |
msgid "Alternating row colors"
|
598 |
msgstr "Växlande radfärg"
|
599 |
|
600 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1368
|
601 |
msgid "Every second row will have an alternating background color."
|
602 |
msgstr "Varannan rad kommer att ha en alternativ bakgrundsfärg."
|
603 |
|
604 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1371
|
605 |
msgid "Use Table Headline"
|
606 |
msgstr "Använd tabellrubrik"
|
607 |
|
608 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1372
|
609 |
+
msgid "The first row of your table will use the <th> tag."
|
610 |
+
msgstr "Första raden i din tabell kommer använda etiketten <th>."
|
611 |
|
612 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1375
|
613 |
msgid "Print Table Name"
|
614 |
msgstr "Visa tabellnamn"
|
615 |
|
616 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1376
|
617 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
618 |
+
msgstr "Tabellens namn kommer att visas ovanför tabellen med etiketten <h2>."
|
619 |
|
620 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1379
|
621 |
msgid "Print Table Description"
|
622 |
msgstr "Visa tabellbeskrivning"
|
623 |
|
624 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1380
|
625 |
msgid "The Table Description will be written under the table."
|
626 |
msgstr "Tabellens beskrivning kommer att visas under tabellen."
|
627 |
|
628 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1383
|
629 |
msgid "Use Tablesorter"
|
630 |
msgstr "Använd Tablesorter"
|
631 |
|
632 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1386
|
633 |
+
msgid "You may sort a table using the <a href=\"http://www.tablesorter.com/\">Tablesorter-jQuery-Plugin</a>."
|
634 |
+
msgstr "Du kan sortera en tabell med hjälp av <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
635 |
|
636 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1386
|
637 |
+
msgid "<small>Attention: You must have Tablesorter enabled on the \"Plugin Options\" screen and the option \"Use Table Headline\" has to be enabled above for this to work!</small>"
|
638 |
+
msgstr "<small>OBS! Tablesorter måste aktiveras på \"Inställningssidan\" och \"Använd tabellrubrik\" ovan måste vara förbockat för att detta ska fungera!</small>"
|
639 |
+
|
640 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1402
|
641 |
+
msgid "Custom Data Fields"
|
642 |
+
msgstr "Anpassade Datafält"
|
643 |
+
|
644 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1404
|
645 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
646 |
+
msgstr "Anpassade datafält kan användas för att lägga till extra metadata i en tabell."
|
647 |
+
|
648 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1404
|
649 |
+
msgid "For example, this could be information about the source or the creator of the data."
|
650 |
+
msgstr "Detta kan till exempel vara information om källa eller upphovsman."
|
651 |
+
|
652 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1406
|
653 |
+
#, php-format
|
654 |
+
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>."
|
655 |
+
msgstr "Du kan visa denna data på samma sätt som tabeller genom att använda snabbkoden <strong>[table-info id=%s field=\"<fältnamn>\" /]</strong>."
|
656 |
+
|
657 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1412
|
658 |
+
msgid "Field Name"
|
659 |
+
msgstr "Fältets Namn"
|
660 |
+
|
661 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1413
|
662 |
+
msgid "Value"
|
663 |
+
msgstr "Värde"
|
664 |
+
|
665 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1427
|
666 |
+
msgid "Delete Field"
|
667 |
+
msgstr "Radera Fält"
|
668 |
+
|
669 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1429
|
670 |
+
msgid "View shortcode"
|
671 |
+
msgstr "Visa snabbkod"
|
672 |
+
|
673 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1438
|
674 |
+
msgid "To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -)."
|
675 |
+
msgstr "För att lägga till ett anpassat datafält ange dess namn (endast små bokstäver, siffror, _ och -)."
|
676 |
+
|
677 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1439
|
678 |
+
msgid "Custom Data Field Name"
|
679 |
+
msgstr "Namn för det anpassade datafältet"
|
680 |
+
|
681 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1453
|
682 |
msgid "Other actions"
|
683 |
msgstr "Andra åtgärder"
|
684 |
|
685 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1456
|
686 |
msgid "Delete Table"
|
687 |
msgstr "Radera tabell"
|
688 |
|
689 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1457
|
690 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1688
|
691 |
msgid "Export Table"
|
692 |
msgstr "Exportera tabell"
|
693 |
|
694 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1469
|
695 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1903
|
696 |
msgid "Import a Table"
|
697 |
msgstr "Importera tabell"
|
698 |
|
699 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1473
|
700 |
+
msgid "You may import a table from existing data here."
|
701 |
+
msgstr "Här kan du importera en tabell från existerande data."
|
702 |
+
|
703 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1473
|
704 |
+
msgid "This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation."
|
705 |
+
msgstr "Det kan vara en CSV, XML eller HTML-fil, den måste dock vara strukturerad på ett visst sätt. Var vänlig kolla dokumentationen."
|
706 |
|
707 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1473
|
708 |
+
msgid "You may also select the import source."
|
709 |
+
msgstr "Du kan även välja importkälla."
|
710 |
+
|
711 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1480
|
712 |
msgid "Select Import Format"
|
713 |
msgstr "Välj importformat"
|
714 |
|
715 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1491
|
716 |
msgid "Add or Replace Table?"
|
717 |
msgstr "Lägga till eller ersätta tabell?"
|
718 |
|
719 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1493
|
720 |
msgid "Add as new Table"
|
721 |
msgstr "Lägg till som ny tabell"
|
722 |
|
723 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1494
|
724 |
msgid "Replace existing Table"
|
725 |
msgstr "Ersätt existerande tabell"
|
726 |
|
727 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1498
|
728 |
msgid "Select existing Table to Replace"
|
729 |
msgstr "Välj existerande tabell som ska ersättas"
|
730 |
|
731 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1514
|
732 |
msgid "Select source for import"
|
733 |
msgstr "Välj källa för import"
|
734 |
|
735 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1516
|
736 |
msgid "File upload"
|
737 |
msgstr "Filöverföring"
|
738 |
|
739 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1517
|
740 |
msgid "URL"
|
741 |
msgstr "URL"
|
742 |
|
743 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1518
|
744 |
msgid "Manual input"
|
745 |
msgstr "Manuell inmatning"
|
746 |
|
747 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1519
|
748 |
msgid "File on server"
|
749 |
msgstr "Fil på servern"
|
750 |
|
751 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1523
|
752 |
msgid "Select File with Table to Import"
|
753 |
msgstr "Välj tabellfil som ska importeras"
|
754 |
|
755 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1527
|
756 |
msgid "URL to import table from"
|
757 |
msgstr "URL att importera tabell från"
|
758 |
|
759 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1531
|
760 |
msgid "Path to file on server"
|
761 |
msgstr "Sökväg till fil på servern"
|
762 |
|
763 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1535
|
764 |
msgid "Paste data with Table to Import"
|
765 |
msgstr "Klistra in data med tabell som ska importeras"
|
766 |
|
767 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1541
|
768 |
msgid "Import Table"
|
769 |
msgstr "Importera tabell"
|
770 |
|
771 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1554
|
772 |
msgid "Import from original wp-Table plugin"
|
773 |
msgstr "Importera från originalet wp-Table"
|
774 |
|
775 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1600
|
776 |
msgid "Import"
|
777 |
msgstr "Importera"
|
778 |
|
779 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1608
|
780 |
msgid "Import Tables"
|
781 |
msgstr "Importera tabeller"
|
782 |
|
783 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1614
|
784 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
785 |
msgstr "wp-Table av Alex Rabe verkar vara installerat men inga tabeller kunde hittas."
|
786 |
|
787 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1633
|
788 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1904
|
789 |
msgid "Export a Table"
|
790 |
msgstr "Exportera tabell"
|
791 |
|
792 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1637
|
793 |
+
msgid "You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter."
|
794 |
+
msgstr "Du kan exportera en tabell här. Välj en tabell, önskat exportformat och avgränsare (endast för CSV)."
|
795 |
+
|
796 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1638
|
797 |
+
msgid "You may opt to download the export file. Otherwise it will be shown on this page."
|
798 |
+
msgstr "Du kan välja om du vill ladda ner exportfilen. Annars kommer den att visas på denna sida."
|
799 |
+
|
800 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1639
|
801 |
+
msgid "Be aware that only the table data, but no options or settings are exported."
|
802 |
+
msgstr "Notera att inga inställningar kommer att exporteras, endast tabelldata."
|
803 |
|
804 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1647
|
805 |
msgid "Select Table to Export"
|
806 |
msgstr "Välj tabell som ska exporteras"
|
807 |
|
808 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1662
|
809 |
msgid "Select Export Format"
|
810 |
msgstr "Välj exportformat"
|
811 |
|
812 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1672
|
813 |
msgid "Select Delimiter to use"
|
814 |
msgstr "Välj avgränsare"
|
815 |
|
816 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1679
|
817 |
msgid "<small>(Only needed for CSV export.)</small>"
|
818 |
msgstr "<small>(Behövs endast för CSV export.)</small>"
|
819 |
|
820 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1682
|
821 |
msgid "Download file"
|
822 |
msgstr "Ladda ner"
|
823 |
|
824 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1683
|
825 |
msgid "Yes, I want to download the export file."
|
826 |
msgstr "Ja, jag vill ladda ner exportfilen."
|
827 |
|
828 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1708
|
829 |
msgid "General Plugin Options"
|
830 |
msgstr "Allmänna inställningar"
|
831 |
|
832 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1712
|
833 |
+
msgid "You may change these global options."
|
834 |
+
msgstr "Du kan ändra dessa globala inställningar."
|
835 |
|
836 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1713
|
837 |
+
msgid "They will effect all tables or the general plugin behavior."
|
838 |
+
msgstr "De kommer påverka alla tabeller eller tilläggets generella beteende."
|
839 |
+
|
840 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1720
|
841 |
msgid "Frontend Options"
|
842 |
msgstr "Gränssnittsalternativ"
|
843 |
|
844 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1724
|
845 |
msgid "Enable Tablesorter-JavaScript?"
|
846 |
msgstr "Aktivera Tablesorter-JavaScript?"
|
847 |
|
848 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1725
|
849 |
msgid "Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options)."
|
850 |
msgstr "Ja, aktivera <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>. Detta kan användas för att göra tabellerna sorterbara (kan aktiveras separat för varje tabell i dess inställningar)."
|
851 |
|
852 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1728
|
853 |
msgid "Add custom CSS?"
|
854 |
msgstr "Lägg till anpassad CSS?"
|
855 |
|
856 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1730
|
857 |
+
msgid "Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag."
|
858 |
+
msgstr "Ja, inkludera och ladda följande CSS-sträng på min sida inuti en <style>-HTML-tag."
|
859 |
|
860 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1735
|
861 |
msgid "Enter custom CSS"
|
862 |
msgstr "Ange anpassad CSS"
|
863 |
|
864 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1740
|
865 |
#, php-format
|
866 |
+
msgid "You might get a better website performance, if you add the CSS styling to your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
867 |
+
msgstr "Hemsidans prestanda kan förbättras om du lägger till CSS-stilen i temats \"style.css\" istället. (finns i <a href=\"%s\">%s</a>)"
|
868 |
|
869 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1741
|
870 |
#, php-format
|
871 |
msgid "See the <a href=\"%s\">plugin website</a> for styling examples or use one of the following: <a href=\"%s\">Example Style 1</a> <a href=\"%s\">Example Style 2</a>"
|
872 |
msgstr "Se <a href=\"%s\">tilläggets hemsida</a> för stylingexempel eller använd ett av följande: <a href=\"%s\">Exempelstil 1</a> <a href=\"%s\">Exempelstil 2</a>"
|
873 |
|
874 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1741
|
875 |
msgid "Just copy the contents of a file into the textarea."
|
876 |
msgstr "Kopiera filens innehåll och klistra in i textarean."
|
877 |
|
878 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1742
|
879 |
+
#, php-format
|
880 |
+
msgid "Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s"
|
881 |
+
msgstr "En annan möjlighet är att inkludera en CSS-fil (t.ex. från ditt tema) med CSS-kommandot @import: %s"
|
882 |
+
|
883 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1750
|
884 |
+
msgid "Advanced Options"
|
885 |
+
msgstr "Avancerade inställningar"
|
886 |
|
887 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1754
|
888 |
+
msgid "Use Tablesorter Extended?"
|
889 |
+
msgstr "Använd Tablesorter Extended?"
|
890 |
+
|
891 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1755
|
892 |
+
msgid "Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!)."
|
893 |
+
msgstr "Ja, aktivera Extended Tablesorter från <a href=\"http://tablesorter.openwerk.de\">Sören Krings</a> istället för originalet Tablesorter (EXPERIMENT!)."
|
894 |
+
|
895 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1758
|
896 |
msgid "Uninstall Plugin upon Deactivation?"
|
897 |
msgstr "Avinstallera tillägget vid inaktivering?"
|
898 |
|
899 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1759
|
900 |
msgid "Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!"
|
901 |
msgstr "Ja, avinstallera allt när tillägget inaktiveras. OBS! Du bör endast markera denna ruta precis innan du inaktiverar tillägget via WordPress tilläggssida!"
|
902 |
|
903 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1759
|
904 |
+
msgid "(This setting does not influence the \"Manually Uninstall Plugin\" button below!)"
|
905 |
+
msgstr "(Denna inställning påverkar inte \"Avinstallera tillägget manuellt\"-knappen nedan!)"
|
906 |
|
907 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1762
|
908 |
+
msgid "Allow donation message?"
|
909 |
+
msgstr "Tillåt donationsmeddelande?"
|
910 |
+
|
911 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1763
|
912 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
913 |
+
msgstr "Ja, visa donationsmeddelandet efter att ha använt tillägget i 30 dagar."
|
914 |
+
|
915 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1772
|
916 |
msgid "Save Options"
|
917 |
msgstr "Spara"
|
918 |
|
919 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1778
|
920 |
msgid "Manually Uninstall Plugin"
|
921 |
msgstr "Avinstallera tillägget manuellt"
|
922 |
|
923 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1780
|
924 |
+
msgid "You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported."
|
925 |
+
msgstr "Du kan avinstallera tillägget här. Detta <strong>kommer att radera</strong> alla tabeller, data, inställningar, etc. som hör till tillägget, inklusive alla tabeller som lagts till eller importerats."
|
926 |
|
927 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1780
|
928 |
+
msgid "Be very careful with this and only click the button if you know what you are doing!"
|
929 |
+
msgstr "Var väldigt försiktig med detta och klicka endast om du vet vad du gör!"
|
930 |
+
|
931 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1783
|
932 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
933 |
msgstr "Avinstallera WP-Table Reloaded"
|
934 |
|
935 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1794
|
936 |
+
msgid "About WP-Table Reloaded"
|
937 |
+
msgstr "Om WP-Table Reloaded"
|
938 |
|
939 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1800
|
940 |
msgid "Plugin Purpose"
|
941 |
msgstr "Tilläggets ändamål"
|
942 |
|
943 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1802
|
944 |
msgid "This plugin allows you to create and manage tables in the admin-area of WordPress."
|
945 |
msgstr "Med detta tillägg kan du skapa och hantera tabeller i adminpanelen i WordPress."
|
946 |
|
947 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1802
|
948 |
msgid "Those tables may contain strings, numbers and even HTML (e.g. to include images or links)."
|
949 |
msgstr "Dessa tabeller kan innehålla strängar, tal och även HTML (t.ex. för att inkludera bilder eller länkar)."
|
950 |
|
951 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1802
|
952 |
msgid "You can then show the tables in your posts, on your pages or in text widgets by using a shortcode."
|
953 |
msgstr "Du kan sedan visa dem i dina inlägg, på dina sidor eller i textwidgets genom att använda en snabbkod."
|
954 |
|
955 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1802
|
956 |
msgid "If you want to show your tables anywhere else in your theme, you can use a template tag function."
|
957 |
msgstr "Om du vill visa dina tabeller någon annanstans i ditt tema kan du använda template tag funktionen."
|
958 |
|
959 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1807
|
960 |
msgid "Usage"
|
961 |
msgstr "Användning"
|
962 |
|
963 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
964 |
msgid "At first you should add or import a table."
|
965 |
msgstr "Du bör först lägga till eller importera en tabell."
|
966 |
|
967 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
968 |
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."
|
969 |
msgstr "Detta betyder att du antingen låter tillägget skapa en tom tabell åt dig eller att du laddar en existerande tabell från en CSV-, XML- eller HTML-fil."
|
970 |
|
971 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
972 |
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."
|
973 |
msgstr "Sedan kan du redigera din data eller ändra tabellens struktur (t.ex. genom att infoga eller radera rader och kolumner, byta plats på rader och kolumner eller sortera dem) och välja specifika tabellinställningar så som växlande radfärger eller att visa namn eller beskrivning, om du vill."
|
974 |
|
975 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
976 |
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."
|
977 |
msgstr "För att enkelt lägga till en länk eller en bild i en cell, använd tillhandahållna knappar. Du kommer tillfrågas om URL och en titel. Sedan kan du klicka i en cell och motsvarande HTML kommer att läggas till åt dig."
|
978 |
|
979 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
980 |
msgid "To include the table into your posts, pages or text widgets, write the shortcode [table id=<table-id>] into them."
|
981 |
msgstr "För att inkludera tabellen i dina inlägg, sidor eller textwidgets, skriv snabbkoden [table id=<table-id>] i dem."
|
982 |
|
983 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
984 |
msgid "You can also select the desired table from a list (after clicking the button \"Table\" in the editor toolbar) and the corresponding shortcode will be added for you."
|
985 |
msgstr "Du kan även välja önskad tabell från en lista (klicka på knappen \"Tabell\" i verktygsfältet i editorn) och motsvarande snabbkod kommer läggas till åt dig."
|
986 |
|
987 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
988 |
msgid "You may also style your table via CSS. Example files are provided on the plugin website. Every table has the CSS class \"wp-table-reloaded\". Each table also has the class \"wp-table-reloaded-<table-id>\"."
|
989 |
msgstr "Du kan även styla din tabell med hjälp av CSS. Exempelfiler finns på tilläggets hemsida. Varje tabell har CSS-class \"wp-table-reloaded\". Varje tabell har även class \"wp-table-reloaded-<table-id>\"."
|
990 |
|
991 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1809
|
992 |
msgid "You can also use the classes \"column-<number>\" and \"row-<number>\" to style rows and columns individually. Use this to style columns width and text alignment for example."
|
993 |
msgstr "Du kan även använda class \"column-<number>\" och \"row-<number>\" för att ställa in individuell stil för rader och kolumner. Använd detta för att exempelvis ställa in kolumnbredd och textjustering."
|
994 |
|
995 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1814
|
996 |
msgid "More Information and Documentation"
|
997 |
msgstr "Mer Information och Dokumentation"
|
998 |
|
999 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1816
|
1000 |
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/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1001 |
msgstr "Mer information hittar du på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a> eller på dess sida i <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1002 |
|
1003 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1816
|
1004 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1980
|
1005 |
msgid "See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">documentation</a> or find out how to get <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
1006 |
msgstr "Se <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/\">dokumentation</a> eller ta reda på hur du får <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/\">support</a>."
|
1007 |
|
1008 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1821
|
1009 |
msgid "Author and Licence"
|
1010 |
msgstr "Författare och Licens"
|
1011 |
|
1012 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1823
|
1013 |
+
msgid "This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1014 |
+
msgstr "Tillägget är skrivet av <a href=\"http://tobias.baethge.com/\">Tobias Bäthge</a>. Det är licensierat som Gratis Programvara under GPL 2."
|
1015 |
|
1016 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1823
|
1017 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1981
|
1018 |
+
msgid "If you like the plugin, please consider <a href=\"http://tobias.baethge.com/donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1019 |
+
msgstr "Om du gillar detta tillägg, var vänlig överväg <a href=\"http://tobias.baethge.com/donate/\"><strong>en donation</strong></a> och betygsätt tillägget på <a href=\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin Directory</a>."
|
1020 |
|
1021 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1823
|
1022 |
msgid "Donations and good ratings encourage me to further develop the plugin and to provide countless hours of support. Any amount is appreciated! Thanks!"
|
1023 |
msgstr "Donationer och bra betyg uppmuntrar mig att vidare utveckla tillägget och tillhandahålla oräkneliga timmar support. Valfritt belopp är uppskattat! Tack!"
|
1024 |
|
1025 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1828
|
1026 |
msgid "Credits and Thanks"
|
1027 |
msgstr "Medverkande och Tack"
|
1028 |
|
1029 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1831
|
1030 |
msgid "Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for the original wp-Table plugin,"
|
1031 |
msgstr "Tack till <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> skaparen av originaltillägget wp-Table,"
|
1032 |
|
1033 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1832
|
1034 |
msgid "Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
1035 |
msgstr "Christian Bach för <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery plugin</a>,"
|
1036 |
|
1037 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1833
|
1038 |
msgid "the submitters of translations:"
|
1039 |
msgstr "inskickade översättningar:"
|
1040 |
|
1041 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1834
|
1042 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
1043 |
msgstr "Albanska (tack till <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
1044 |
|
1045 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1835
|
1046 |
+
msgid "Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1047 |
+
msgstr "Vitryska (tack till <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1048 |
+
|
1049 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1836
|
1050 |
msgid "Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1051 |
msgstr "Brasiliansk-Portugisiska (tack till <a href=\"http://www.pensarics.com/\">Rics</a>)"
|
1052 |
|
1053 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1837
|
1054 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
1055 |
msgstr "Tjeckiska (tack till <a href=\"http://separatista.net/\">Separatista</a>)"
|
1056 |
|
1057 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1838
|
1058 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
1059 |
msgstr "Franska (tack till <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
1060 |
|
1061 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1839
|
1062 |
+
msgid "Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1063 |
+
msgstr "Italienska (tack till <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1064 |
+
|
1065 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1840
|
1066 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1067 |
+
msgstr "Japanska (tack till <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1068 |
+
|
1069 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1841
|
1070 |
msgid "Polish (thanks to Alex Kortan)"
|
1071 |
msgstr "Polska (tack till Alex Kortan)"
|
1072 |
|
1073 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1842
|
1074 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
1075 |
msgstr "Ryska (tack till <a href=\"http://wp-skins.info/\">Truper</a>)"
|
1076 |
|
1077 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1843
|
1078 |
msgid "Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1079 |
msgstr "Spanska (tack till <a href=\"http://theindependentproject.com/\">Alejandro Urrutia</a> och <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1080 |
|
1081 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1844
|
1082 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
1083 |
msgstr "Svenska (tack till <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
1084 |
|
1085 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1845
|
1086 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
1087 |
msgstr "Turkiska (tack till <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
1088 |
|
1089 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1846
|
1090 |
msgid "and to all donors, contributors, supporters, reviewers and users of the plugin!"
|
1091 |
msgstr "och alla donatorer, bidragsgivare, anhängare, recensenter och användare av tillägget!"
|
1092 |
|
1093 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1852
|
1094 |
msgid "Debug and Version Information"
|
1095 |
msgstr "Debug- och Versionsinformation"
|
1096 |
|
1097 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1855
|
1098 |
msgid "You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>"
|
1099 |
msgstr "Du använder följande version av programvaran. <strong>Var vänlig ange denna information i felrapporter.</strong>"
|
1100 |
|
1101 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1858
|
1102 |
+
msgid "Plugin installed"
|
1103 |
+
msgstr "Tillägget installerades"
|
1104 |
+
|
1105 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1901
|
1106 |
msgid "List Tables"
|
1107 |
msgstr "Visa tabeller"
|
1108 |
|
1109 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1906
|
1110 |
msgid "Plugin Options"
|
1111 |
msgstr "Inställningar"
|
1112 |
|
1113 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1907
|
1114 |
msgid "About the Plugin"
|
1115 |
msgstr "Om tillägget"
|
1116 |
|
1117 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1948
|
1118 |
+
msgid "This is the \"List Tables\" screen."
|
1119 |
+
msgstr "\"Tabellförteckning\""
|
1120 |
+
|
1121 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1952
|
1122 |
+
msgid "This is the \"Edit Table\" screen."
|
1123 |
+
msgstr "\"Redigera Tabell\""
|
1124 |
+
|
1125 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1955
|
1126 |
+
msgid "This is the \"Add new Table\" screen."
|
1127 |
+
msgstr "\"Lägg till Tabell\""
|
1128 |
+
|
1129 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1958
|
1130 |
+
msgid "This is the \"Import a Table\" screen."
|
1131 |
+
msgstr "\"Importera Tabell\""
|
1132 |
+
|
1133 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1961
|
1134 |
+
msgid "This is the \"Export a Table\" screen."
|
1135 |
+
msgstr "\"Exportera Tabell\""
|
1136 |
+
|
1137 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1964
|
1138 |
+
msgid "This is the \"Plugin Options\" screen."
|
1139 |
+
msgstr "\"Inställningar\""
|
1140 |
+
|
1141 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1970
|
1142 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1143 |
+
msgstr "\"Om WP-Table Reloaded\""
|
1144 |
+
|
1145 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:1979
|
1146 |
msgid "More information can be found on the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
1147 |
msgstr "Mer information kan hittas på <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">tilläggets hemsida</a>."
|
1148 |
|
1149 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2259
|
1150 |
msgid "Do you really want to activate this? You should only do that right before uninstallation!"
|
1151 |
msgstr "Vill du verkligen aktivera det här? Du bör endast göra detta precis innan avinstallation!"
|
1152 |
|
1153 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2260
|
1154 |
msgid "URL of link to insert"
|
1155 |
msgstr "URL till länken som ska infogas"
|
1156 |
|
1157 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2261
|
1158 |
msgid "Text of link"
|
1159 |
msgstr "Länkens text"
|
1160 |
|
1161 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2262
|
1162 |
msgid "To insert the following link into a cell, just click the cell after closing this dialog."
|
1163 |
msgstr "För att infoga följande länk i en cell, klicka bara på cellen efter att denna ruta har stängts."
|
1164 |
|
1165 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2263
|
1166 |
+
msgid "To insert an image, click the cell into which you want to insert the image."
|
1167 |
+
msgstr "För att infoga en bild klicka på cellen där du vill infoga bilden."
|
1168 |
|
1169 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2263
|
1170 |
+
msgid "The Media Library will open, from which you can select the desired image or insert the image URL."
|
1171 |
+
msgstr "Mediebiblioteket kommer öppnas, därifrån kan du välja önskad bild eller infoga bildens URL."
|
1172 |
|
1173 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2263
|
1174 |
+
#, php-format
|
1175 |
+
msgid "Click the \"%s\" button to insert the image."
|
1176 |
+
msgstr "Klicka på \"%s\"knappen för att infoga bilden."
|
1177 |
+
|
1178 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2263
|
1179 |
+
msgid "Insert into Post"
|
1180 |
+
msgstr "Infoga i ett inlägg"
|
1181 |
|
1182 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2264
|
1183 |
msgid "Do you want to copy the selected tables?"
|
1184 |
msgstr "Vill du kopiera valda tabeller?"
|
1185 |
|
1186 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2265
|
1187 |
msgid "The selected tables and all content will be erased. Do you really want to delete them?"
|
1188 |
msgstr "Valda tabeller och allt inehåll kommer raderas. Vill du verkligen radera dem?"
|
1189 |
|
1190 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2266
|
1191 |
msgid "Do you really want to import the selected tables from the wp-Table plugin?"
|
1192 |
msgstr "Vill du verkligen importera valda tabeller från wp-Table tillägget?"
|
1193 |
|
1194 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2267
|
1195 |
msgid "Do you want to copy this table?"
|
1196 |
msgstr "Vill du kopiera denna tabell?"
|
1197 |
|
1198 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2268
|
1199 |
msgid "The complete table and all content will be erased. Do you really want to delete it?"
|
1200 |
msgstr "Tabellen och dess inehåll kommer raderas. Vill du verkligen radera den?"
|
1201 |
|
1202 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2269
|
1203 |
msgid "Do you really want to delete this row?"
|
1204 |
msgstr "Vill du verkligen radera denna rad?"
|
1205 |
|
1206 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2270
|
1207 |
msgid "Do you really want to delete this column?"
|
1208 |
msgstr "Vill du verkligen radera denna kolumn?"
|
1209 |
|
1210 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2271
|
1211 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
1212 |
msgstr "Vill du verkligen importera denna tabell från wp-Table tillägget?"
|
1213 |
|
1214 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2272
|
1215 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
1216 |
msgstr "Vill du verkligen avinstallera tillägget och radera ALL data?"
|
1217 |
|
1218 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2273
|
1219 |
msgid "Are you really sure?"
|
1220 |
msgstr "Är du riktigt säker?"
|
1221 |
|
1222 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2274
|
1223 |
msgid "Do you really want to change the ID of the table?"
|
1224 |
msgstr "Vill du verkligen ändra ID för denna tabell?"
|
1225 |
|
1226 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2275
|
1227 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1228 |
+
msgstr "För att visa detta anpassade datafält, använd snabbkoden:"
|
1229 |
+
|
1230 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2276
|
1231 |
+
msgid "To show this table, use this shortcode:"
|
1232 |
+
msgstr "För att visa denna tabell, använd snabbkoden:"
|
1233 |
+
|
1234 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2318
|
1235 |
msgid "Table"
|
1236 |
msgstr "Tabell"
|
1237 |
|
1238 |
+
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/wp-table-reloaded-admin.php:2350
|
1239 |
+
msgid "Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1240 |
+
msgstr "Tack för att du använder <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/\">WP-Table Reloaded</a>."
|
1241 |
+
|
1242 |
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-export.class.php:30
|
1243 |
#: D:\Hemsida\ZuperZed.se\wp-content\plugins\wp-table-reloaded/php/wp-table-reloaded-import.class.php:38
|
1244 |
msgid "CSV - Character-Separated Values"
|
1274 |
msgid "| (pipe)"
|
1275 |
msgstr "| (pipe)"
|
1276 |
|
1277 |
+
#~ msgid "URL of image to insert"
|
1278 |
+
#~ msgstr "URL till bilden som ska infogas"
|
1279 |
+
#~ msgid ""alt" text of the image"
|
1280 |
+
#~ msgstr ""alt" bildens text"
|
1281 |
+
#~ msgid ""
|
1282 |
+
#~ "To insert the following image into a cell, just click the cell after "
|
1283 |
+
#~ "closing this dialog."
|
1284 |
+
#~ msgstr ""
|
1285 |
+
#~ "För att infoga foljande bild i en cell, klicka bara på cellen efter att "
|
1286 |
+
#~ "denna ruta har stängts."
|
1287 |
+
#~ msgid "Information about the plugin"
|
1288 |
+
#~ msgstr "Information om tillägget"
|
1289 |
#~ msgid "- or -"
|
1290 |
#~ msgstr "- eller -"
|
1291 |
#~ msgid "(upload will be preferred over pasting)"
|
languages/wp-table-reloaded.pot
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
11 |
-
"POT-Creation-Date: 2009-
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -52,645 +52,895 @@ msgstr ""
|
|
52 |
msgid "| (pipe)"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
#, php-format
|
57 |
msgid "Table \"%s\" added successfully."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: wp-table-reloaded-admin.php:
|
61 |
#, php-format
|
62 |
msgid ""
|
63 |
"Table edited successfully. This Table now has the ID %s. You'll need to "
|
64 |
"adjust existing shortcodes accordingly."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: wp-table-reloaded-admin.php:
|
68 |
#, php-format
|
69 |
msgid ""
|
70 |
"The ID could not be changed from %s to %s, because there already is a Table "
|
71 |
"with that ID."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: wp-table-reloaded-admin.php:
|
75 |
msgid "Table edited successfully."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: wp-table-reloaded-admin.php:
|
79 |
msgid "Rows swapped successfully."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: wp-table-reloaded-admin.php:
|
83 |
msgid "Columns swapped successfully."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: wp-table-reloaded-admin.php:
|
87 |
msgid "Table sorted successfully."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: wp-table-reloaded-admin.php:
|
91 |
msgid "Row added successfully."
|
92 |
msgid_plural "Rows added successfully."
|
93 |
msgstr[0] ""
|
94 |
msgstr[1] ""
|
95 |
|
96 |
-
#: wp-table-reloaded-admin.php:
|
97 |
msgid "Column added successfully."
|
98 |
msgid_plural "Columns added successfully."
|
99 |
msgstr[0] ""
|
100 |
msgstr[1] ""
|
101 |
|
102 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
msgid "Copy of"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: wp-table-reloaded-admin.php:
|
107 |
msgid "Table copied successfully."
|
108 |
msgid_plural "Tables copied successfully."
|
109 |
msgstr[0] ""
|
110 |
msgstr[1] ""
|
111 |
|
112 |
-
#: wp-table-reloaded-admin.php:
|
113 |
msgid "Table deleted successfully."
|
114 |
msgid_plural "Tables deleted successfully."
|
115 |
msgstr[0] ""
|
116 |
msgstr[1] ""
|
117 |
|
118 |
-
#: wp-table-reloaded-admin.php:
|
119 |
-
#: wp-table-reloaded-admin.php:
|
120 |
msgid "Table imported successfully."
|
121 |
msgid_plural "Tables imported successfully."
|
122 |
msgstr[0] ""
|
123 |
msgstr[1] ""
|
124 |
|
125 |
-
#: wp-table-reloaded-admin.php:
|
126 |
msgid "You did not select any tables!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: wp-table-reloaded-admin.php:
|
130 |
#, php-format
|
131 |
msgid "Table \"%s\" copied successfully."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: wp-table-reloaded-admin.php:
|
135 |
#, php-format
|
136 |
msgid "Table \"%s\" deleted successfully."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: wp-table-reloaded-admin.php:
|
140 |
msgid "Row deleted successfully."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: wp-table-reloaded-admin.php:
|
144 |
msgid "Column deleted successfully."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "Delete failed."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: wp-table-reloaded-admin.php:
|
152 |
msgid "Row inserted successfully."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: wp-table-reloaded-admin.php:
|
156 |
msgid "Column inserted successfully."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: wp-table-reloaded-admin.php:
|
160 |
msgid "Insert failed."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: wp-table-reloaded-admin.php:
|
164 |
-
#: wp-table-reloaded-admin.php:
|
165 |
msgid "Imported Table"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: wp-table-reloaded-admin.php:
|
169 |
#, php-format
|
170 |
msgid "from %s"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: wp-table-reloaded-admin.php:
|
174 |
msgid "via form"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: wp-table-reloaded-admin.php:
|
178 |
msgid "Table could not be imported."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: wp-table-reloaded-admin.php:
|
182 |
#, php-format
|
183 |
msgid "Table %s (%s) replaced successfully."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: wp-table-reloaded-admin.php:
|
187 |
#, php-format
|
188 |
msgid "Table \"%s\" exported successfully."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: wp-table-reloaded-admin.php:
|
192 |
msgid "Options saved successfully."
|
193 |
msgstr ""
|
194 |
|
195 |
#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
|
196 |
#. Plugin Name of an extension
|
197 |
-
#: wp-table-reloaded-admin.php:
|
198 |
msgid "WP-Table Reloaded"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: wp-table-reloaded-admin.php:
|
202 |
msgid "Plugin deactivated successfully."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: wp-table-reloaded-admin.php:
|
206 |
msgid ""
|
207 |
"All tables, data and options were deleted. You may now remove the plugin's "
|
208 |
"subfolder from your WordPress plugin folder."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: wp-table-reloaded-admin.php:
|
212 |
msgid "List of Tables"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: wp-table-reloaded-admin.php:
|
216 |
msgid "This is a list of all available tables."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: wp-table-reloaded-admin.php:
|
220 |
msgid "You may insert a table into a post or page here."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: wp-table-reloaded-admin.php:
|
224 |
msgid ""
|
225 |
"Click the \"Insert\" link after the desired table and the corresponding "
|
226 |
"shortcode will be inserted into the editor (<strong>[table id=<"
|
227 |
"the_table_ID> /]</strong>)."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: wp-table-reloaded-admin.php:
|
231 |
-
#: wp-table-reloaded-admin.php:
|
|
|
232 |
msgid "ID"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: wp-table-reloaded-admin.php:
|
236 |
-
#: wp-table-reloaded-admin.php:
|
237 |
-
#: wp-table-reloaded-admin.php:
|
|
|
238 |
msgid "Table Name"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: wp-table-reloaded-admin.php:
|
242 |
-
#: wp-table-reloaded-admin.php:
|
243 |
-
#: wp-table-reloaded-admin.php:
|
|
|
244 |
msgid "Description"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: wp-table-reloaded-admin.php:
|
248 |
-
#: wp-table-reloaded-admin.php:
|
|
|
249 |
msgid "Action"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: wp-table-reloaded-admin.php:
|
253 |
msgid "Insert"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: wp-table-reloaded-admin.php:
|
257 |
-
#: wp-table-reloaded-admin.php:
|
258 |
msgid "No tables found."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
msgid "You may add, edit, copy or delete tables here."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: wp-table-reloaded-admin.php:
|
266 |
msgid ""
|
267 |
"If you want to show a table in your pages, posts or text-widgets, use the "
|
268 |
"shortcode <strong>[table id=<the_table_ID> /]</strong> or click the "
|
269 |
"button \"Table\" in the editor toolbar."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "Edit"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
277 |
msgid "Copy"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: wp-table-reloaded-admin.php:
|
281 |
msgid "Export"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: wp-table-reloaded-admin.php:
|
285 |
msgid "Delete"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
msgid "Bulk actions:"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: wp-table-reloaded-admin.php:
|
293 |
msgid "Copy Tables"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: wp-table-reloaded-admin.php:
|
297 |
msgid "Delete Tables"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: wp-table-reloaded-admin.php:
|
301 |
#, php-format
|
302 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: wp-table-reloaded-admin.php:
|
306 |
msgid "Add new Table"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: wp-table-reloaded-admin.php:
|
310 |
msgid ""
|
311 |
-
"You can add a new table here. Just enter
|
312 |
-
"and the number of rows and columns
|
313 |
-
"and columns later."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
317 |
msgid "Enter Table Name"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: wp-table-reloaded-admin.php:
|
321 |
msgid "Enter Description"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: wp-table-reloaded-admin.php:
|
325 |
msgid "Number of Rows"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: wp-table-reloaded-admin.php:
|
329 |
msgid "Number of Columns"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: wp-table-reloaded-admin.php:
|
333 |
msgid "Add Table"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: wp-table-reloaded-admin.php:
|
337 |
#, php-format
|
338 |
-
msgid "Edit Table \"%s\""
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: wp-table-reloaded-admin.php:
|
342 |
msgid ""
|
343 |
"You may edit the content of the table here. It is also possible to add or "
|
344 |
"delete columns and rows."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: wp-table-reloaded-admin.php:
|
348 |
-
#, php-format
|
349 |
-
msgid ""
|
350 |
-
"If you want to show a table in your pages, posts or text-widgets, use this "
|
351 |
-
"shortcode: <strong>[table id=%s /]</strong>"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: wp-table-reloaded-admin.php:818
|
355 |
msgid "Table Information"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: wp-table-reloaded-admin.php:
|
359 |
msgid "Table ID"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: wp-table-reloaded-admin.php:
|
|
|
363 |
msgid "Update Changes"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: wp-table-reloaded-admin.php:
|
|
|
367 |
msgid "Save and go back"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: wp-table-reloaded-admin.php:
|
|
|
371 |
msgid "Cancel"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: wp-table-reloaded-admin.php:
|
375 |
msgid "Table Contents"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: wp-table-reloaded-admin.php:
|
379 |
-
#: wp-table-reloaded-admin.php:
|
|
|
380 |
msgid "Hide"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: wp-table-reloaded-admin.php:
|
384 |
-
#: wp-table-reloaded-admin.php:
|
|
|
385 |
msgid "Expand"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: wp-table-reloaded-admin.php:
|
389 |
msgid "Insert Row"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: wp-table-reloaded-admin.php:
|
393 |
msgid "Delete Row"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
397 |
msgid "Insert Column"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: wp-table-reloaded-admin.php:
|
401 |
msgid "Delete Column"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: wp-table-reloaded-admin.php:
|
405 |
#, php-format
|
406 |
msgid "Add %s row(s)"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: wp-table-reloaded-admin.php:
|
|
|
410 |
msgid "Add"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: wp-table-reloaded-admin.php:
|
414 |
#, php-format
|
415 |
msgid "Add %s column(s)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
419 |
msgid "Data Manipulation"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: wp-table-reloaded-admin.php:
|
423 |
#, php-format
|
424 |
msgid "Swap rows %s and %s"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: wp-table-reloaded-admin.php:
|
428 |
msgid "Swap"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: wp-table-reloaded-admin.php:
|
432 |
#, php-format
|
433 |
msgid "Swap columns %s and %s"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
msgid "Insert Link"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: wp-table-reloaded-admin.php:
|
441 |
msgid "Insert Image"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: wp-table-reloaded-admin.php:
|
445 |
msgid "ascending"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: wp-table-reloaded-admin.php:
|
449 |
msgid "descending"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: wp-table-reloaded-admin.php:
|
453 |
#, php-format
|
454 |
msgid "Sort table by column %s in %s order"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: wp-table-reloaded-admin.php:
|
458 |
msgid "Sort"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: wp-table-reloaded-admin.php:
|
462 |
msgid "Table Settings"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: wp-table-reloaded-admin.php:
|
466 |
msgid "These settings will only be used for this table."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: wp-table-reloaded-admin.php:
|
470 |
msgid "Alternating row colors"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: wp-table-reloaded-admin.php:
|
474 |
msgid "Every second row will have an alternating background color."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: wp-table-reloaded-admin.php:
|
478 |
msgid "Use Table Headline"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: wp-table-reloaded-admin.php:
|
482 |
-
msgid "The first row of your table will use the
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: wp-table-reloaded-admin.php:
|
486 |
msgid "Print Table Name"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: wp-table-reloaded-admin.php:
|
490 |
-
msgid "The Table Name will be written above the table in a
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: wp-table-reloaded-admin.php:
|
494 |
msgid "Print Table Description"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: wp-table-reloaded-admin.php:
|
498 |
msgid "The Table Description will be written under the table."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: wp-table-reloaded-admin.php:
|
502 |
msgid "Use Tablesorter"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: wp-table-reloaded-admin.php:
|
506 |
msgid ""
|
507 |
"You may sort a table using the <a href=\"http://www.tablesorter.com/"
|
508 |
-
"\">Tablesorter-jQuery-Plugin</a>.
|
509 |
-
|
510 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
msgid "Other actions"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: wp-table-reloaded-admin.php:
|
518 |
msgid "Delete Table"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: wp-table-reloaded-admin.php:
|
522 |
msgid "Export Table"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: wp-table-reloaded-admin.php:
|
526 |
msgid "Import a Table"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
530 |
msgid ""
|
531 |
-
"
|
532 |
-
"
|
533 |
-
"
|
|
|
|
|
|
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: wp-table-reloaded-admin.php:
|
537 |
msgid "Select Import Format"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: wp-table-reloaded-admin.php:
|
541 |
msgid "Add or Replace Table?"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: wp-table-reloaded-admin.php:
|
545 |
msgid "Add as new Table"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: wp-table-reloaded-admin.php:
|
549 |
msgid "Replace existing Table"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: wp-table-reloaded-admin.php:
|
553 |
msgid "Select existing Table to Replace"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: wp-table-reloaded-admin.php:
|
557 |
msgid "Select source for import"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: wp-table-reloaded-admin.php:
|
561 |
msgid "File upload"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: wp-table-reloaded-admin.php:
|
565 |
msgid "URL"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: wp-table-reloaded-admin.php:
|
569 |
msgid "Manual input"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: wp-table-reloaded-admin.php:
|
573 |
msgid "File on server"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: wp-table-reloaded-admin.php:
|
577 |
msgid "Select File with Table to Import"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: wp-table-reloaded-admin.php:
|
581 |
msgid "URL to import table from"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: wp-table-reloaded-admin.php:
|
585 |
msgid "Path to file on server"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: wp-table-reloaded-admin.php:
|
589 |
msgid "Paste data with Table to Import"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: wp-table-reloaded-admin.php:
|
593 |
msgid "Import Table"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: wp-table-reloaded-admin.php:
|
597 |
msgid "Import from original wp-Table plugin"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: wp-table-reloaded-admin.php:
|
601 |
msgid "Import"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: wp-table-reloaded-admin.php:
|
605 |
msgid "Import Tables"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: wp-table-reloaded-admin.php:
|
609 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: wp-table-reloaded-admin.php:
|
613 |
msgid "Export a Table"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: wp-table-reloaded-admin.php:
|
617 |
msgid ""
|
618 |
"You may export a table here. Just select the table, your desired export "
|
619 |
-
"format and
|
620 |
-
|
|
|
|
|
|
|
|
|
|
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
624 |
msgid "Select Table to Export"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: wp-table-reloaded-admin.php:
|
628 |
msgid "Select Export Format"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: wp-table-reloaded-admin.php:
|
632 |
msgid "Select Delimiter to use"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: wp-table-reloaded-admin.php:
|
636 |
msgid "<small>(Only needed for CSV export.)</small>"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: wp-table-reloaded-admin.php:
|
640 |
msgid "Download file"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: wp-table-reloaded-admin.php:
|
644 |
msgid "Yes, I want to download the export file."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: wp-table-reloaded-admin.php:
|
648 |
msgid "General Plugin Options"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: wp-table-reloaded-admin.php:
|
652 |
-
msgid ""
|
653 |
-
|
654 |
-
|
|
|
|
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: wp-table-reloaded-admin.php:
|
658 |
msgid "Frontend Options"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: wp-table-reloaded-admin.php:
|
662 |
msgid "Enable Tablesorter-JavaScript?"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: wp-table-reloaded-admin.php:
|
666 |
msgid ""
|
667 |
"Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery "
|
668 |
"plugin</a>. This can be used to make tables sortable (can be activated for "
|
669 |
"each table separately in its options)."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: wp-table-reloaded-admin.php:
|
673 |
msgid "Add custom CSS?"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: wp-table-reloaded-admin.php:
|
677 |
msgid ""
|
678 |
-
"Yes, include and load the following CSS-snippet on my site inside a
|
679 |
-
"HTML-tag."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: wp-table-reloaded-admin.php:
|
683 |
msgid "Enter custom CSS"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: wp-table-reloaded-admin.php:
|
687 |
#, php-format
|
688 |
msgid ""
|
689 |
-
"
|
690 |
-
"your theme's \"style.css\"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: wp-table-reloaded-admin.php:
|
694 |
#, php-format
|
695 |
msgid ""
|
696 |
"See the <a href=\"%s\">plugin website</a> for styling examples or use one of "
|
@@ -698,98 +948,129 @@ msgid ""
|
|
698 |
"Style 2</a>"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: wp-table-reloaded-admin.php:
|
702 |
msgid "Just copy the contents of a file into the textarea."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: wp-table-reloaded-admin.php:
|
706 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: wp-table-reloaded-admin.php:
|
710 |
msgid "Uninstall Plugin upon Deactivation?"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: wp-table-reloaded-admin.php:
|
714 |
msgid ""
|
715 |
"Yes, uninstall everything when the plugin is deactivated. Attention: You "
|
716 |
"should only enable this checkbox directly before deactivating the plugin "
|
717 |
"from the WordPress plugins page!"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: wp-table-reloaded-admin.php:
|
721 |
msgid ""
|
722 |
-
"
|
723 |
-
"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
727 |
msgid "Save Options"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: wp-table-reloaded-admin.php:
|
731 |
msgid "Manually Uninstall Plugin"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: wp-table-reloaded-admin.php:
|
735 |
msgid ""
|
736 |
"You may uninstall the plugin here. This <strong>will delete</strong> all "
|
737 |
"tables, data, options, etc., that belong to the plugin, including all tables "
|
738 |
-
"you added or imported
|
739 |
-
"button if you know what you are doing!"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: wp-table-reloaded-admin.php:
|
747 |
-
msgid "
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: wp-table-reloaded-admin.php:
|
751 |
msgid "Plugin Purpose"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: wp-table-reloaded-admin.php:
|
755 |
msgid ""
|
756 |
"This plugin allows you to create and manage tables in the admin-area of "
|
757 |
"WordPress."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: wp-table-reloaded-admin.php:
|
761 |
msgid ""
|
762 |
"Those tables may contain strings, numbers and even HTML (e.g. to include "
|
763 |
"images or links)."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: wp-table-reloaded-admin.php:
|
767 |
msgid ""
|
768 |
"You can then show the tables in your posts, on your pages or in text widgets "
|
769 |
"by using a shortcode."
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: wp-table-reloaded-admin.php:
|
773 |
msgid ""
|
774 |
"If you want to show your tables anywhere else in your theme, you can use a "
|
775 |
"template tag function."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: wp-table-reloaded-admin.php:
|
779 |
msgid "Usage"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: wp-table-reloaded-admin.php:
|
783 |
msgid "At first you should add or import a table."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: wp-table-reloaded-admin.php:
|
787 |
msgid ""
|
788 |
"This means that you either let the plugin create an empty table for you or "
|
789 |
"that you load an existing table from either a CSV, XML or HTML file."
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: wp-table-reloaded-admin.php:
|
793 |
msgid ""
|
794 |
"Then you can edit your data or change the structure of your table (e.g. by "
|
795 |
"inserting or deleting rows or columns, swaping rows or columns or sorting "
|
@@ -797,45 +1078,45 @@ msgid ""
|
|
797 |
"whether to print the name or description, if you want."
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: wp-table-reloaded-admin.php:
|
801 |
msgid ""
|
802 |
"To easily add a link or an image to a cell, use the provided buttons. Those "
|
803 |
"will ask you for the URL and a title. Then you can click into a cell and the "
|
804 |
"corresponding HTML will be added to it for you."
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: wp-table-reloaded-admin.php:
|
808 |
msgid ""
|
809 |
"To include the table into your posts, pages or text widgets, write the "
|
810 |
"shortcode [table id=<table-id>] into them."
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: wp-table-reloaded-admin.php:
|
814 |
msgid ""
|
815 |
"You can also select the desired table from a list (after clicking the button "
|
816 |
"\"Table\" in the editor toolbar) and the corresponding shortcode will be "
|
817 |
"added for you."
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: wp-table-reloaded-admin.php:
|
821 |
msgid ""
|
822 |
"You may also style your table via CSS. Example files are provided on the "
|
823 |
"plugin website. Every table has the CSS class \"wp-table-reloaded\". Each "
|
824 |
"table also has the class \"wp-table-reloaded-<table-id>\"."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: wp-table-reloaded-admin.php:
|
828 |
msgid ""
|
829 |
"You can also use the classes \"column-<number>\" and \"row-<"
|
830 |
"number>\" to style rows and columns individually. Use this to style "
|
831 |
"columns width and text alignment for example."
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: wp-table-reloaded-admin.php:
|
835 |
msgid "More Information and Documentation"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: wp-table-reloaded-admin.php:
|
839 |
msgid ""
|
840 |
"More information can be found on the <a href=\"http://tobias.baethge.com/"
|
841 |
"wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on "
|
@@ -843,7 +1124,7 @@ msgid ""
|
|
843 |
"reloaded/\">WordPress Plugin Directory</a>."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: wp-table-reloaded-admin.php:
|
847 |
msgid ""
|
848 |
"See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
|
849 |
"reloaded-english/documentation/\">documentation</a> or find out how to get "
|
@@ -851,211 +1132,277 @@ msgid ""
|
|
851 |
"english/support/\">support</a>."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: wp-table-reloaded-admin.php:
|
855 |
msgid "Author and Licence"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: wp-table-reloaded-admin.php:
|
859 |
msgid ""
|
860 |
"This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
|
861 |
-
"Bäthge</a>. It is
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: wp-table-reloaded-admin.php:
|
865 |
msgid ""
|
866 |
"If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
|
867 |
-
"
|
868 |
-
"
|
869 |
-
"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: wp-table-reloaded-admin.php:
|
873 |
msgid ""
|
874 |
"Donations and good ratings encourage me to further develop the plugin and to "
|
875 |
"provide countless hours of support. Any amount is appreciated! Thanks!"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: wp-table-reloaded-admin.php:
|
879 |
msgid "Credits and Thanks"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: wp-table-reloaded-admin.php:
|
883 |
msgid ""
|
884 |
"Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
|
885 |
"the original wp-Table plugin,"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: wp-table-reloaded-admin.php:
|
889 |
msgid ""
|
890 |
"Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter "
|
891 |
"jQuery plugin</a>,"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: wp-table-reloaded-admin.php:
|
895 |
msgid "the submitters of translations:"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: wp-table-reloaded-admin.php:
|
899 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
903 |
msgid ""
|
904 |
"Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</"
|
905 |
"a>)"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: wp-table-reloaded-admin.php:
|
909 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: wp-table-reloaded-admin.php:
|
913 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
917 |
msgid "Polish (thanks to Alex Kortan)"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: wp-table-reloaded-admin.php:
|
921 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: wp-table-reloaded-admin.php:
|
925 |
msgid ""
|
926 |
"Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
|
927 |
"Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: wp-table-reloaded-admin.php:
|
931 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: wp-table-reloaded-admin.php:
|
935 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: wp-table-reloaded-admin.php:
|
939 |
msgid ""
|
940 |
"and to all donors, contributors, supporters, reviewers and users of the "
|
941 |
"plugin!"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: wp-table-reloaded-admin.php:
|
945 |
msgid "Debug and Version Information"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: wp-table-reloaded-admin.php:
|
949 |
msgid ""
|
950 |
"You are using the following versions of the software. <strong>Please provide "
|
951 |
"this information in bug reports.</strong>"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
955 |
msgid "List Tables"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: wp-table-reloaded-admin.php:
|
959 |
msgid "Plugin Options"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: wp-table-reloaded-admin.php:
|
963 |
msgid "About the Plugin"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
967 |
msgid ""
|
968 |
"More information can be found on the <a href=\"http://tobias.baethge.com/"
|
969 |
"wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: wp-table-reloaded-admin.php:
|
973 |
msgid ""
|
974 |
"Do you really want to activate this? You should only do that right before "
|
975 |
"uninstallation!"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: wp-table-reloaded-admin.php:
|
979 |
msgid "URL of link to insert"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: wp-table-reloaded-admin.php:
|
983 |
msgid "Text of link"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: wp-table-reloaded-admin.php:
|
987 |
msgid ""
|
988 |
"To insert the following link into a cell, just click the cell after closing "
|
989 |
"this dialog."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: wp-table-reloaded-admin.php:
|
993 |
-
msgid "
|
|
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: wp-table-reloaded-admin.php:
|
997 |
-
msgid "
|
|
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: wp-table-reloaded-admin.php:
|
1001 |
-
|
1002 |
-
"
|
1003 |
-
|
|
|
|
|
|
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: wp-table-reloaded-admin.php:
|
1007 |
msgid "Do you want to copy the selected tables?"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: wp-table-reloaded-admin.php:
|
1011 |
msgid ""
|
1012 |
"The selected tables and all content will be erased. Do you really want to "
|
1013 |
"delete them?"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: wp-table-reloaded-admin.php:
|
1017 |
msgid ""
|
1018 |
"Do you really want to import the selected tables from the wp-Table plugin?"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: wp-table-reloaded-admin.php:
|
1022 |
msgid "Do you want to copy this table?"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: wp-table-reloaded-admin.php:
|
1026 |
msgid ""
|
1027 |
"The complete table and all content will be erased. Do you really want to "
|
1028 |
"delete it?"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: wp-table-reloaded-admin.php:
|
1032 |
msgid "Do you really want to delete this row?"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: wp-table-reloaded-admin.php:
|
1036 |
msgid "Do you really want to delete this column?"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: wp-table-reloaded-admin.php:
|
1040 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: wp-table-reloaded-admin.php:
|
1044 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: wp-table-reloaded-admin.php:
|
1048 |
msgid "Are you really sure?"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: wp-table-reloaded-admin.php:
|
1052 |
msgid "Do you really want to change the ID of the table?"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: wp-table-reloaded-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgid "Table"
|
1057 |
msgstr ""
|
1058 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1059 |
#. Plugin URI of an extension
|
1060 |
msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
1061 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-table-reloaded\n"
|
11 |
+
"POT-Creation-Date: 2009-07-31 07:31+0000\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
52 |
msgid "| (pipe)"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: wp-table-reloaded-admin.php:184
|
56 |
+
#, php-format
|
57 |
+
msgid ""
|
58 |
+
"Thanks for using this plugin! You've installed WP-Table Reloaded over a "
|
59 |
+
"month ago. If it works and you are satisfied with the results of managing "
|
60 |
+
"your %s tables, isn't it worth at least one dollar or euro?"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: wp-table-reloaded-admin.php:185
|
64 |
+
#, php-format
|
65 |
+
msgid ""
|
66 |
+
"<a href=\"%s\">Donations</a> help me to continue support and development of "
|
67 |
+
"this <i>free</i> software - things for which I spend countless hours of my "
|
68 |
+
"free time! Thank you!"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: wp-table-reloaded-admin.php:186
|
72 |
+
msgid "Sure, no problem!"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: wp-table-reloaded-admin.php:187
|
76 |
+
msgid "I already donated."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: wp-table-reloaded-admin.php:188
|
80 |
+
msgid "No, thanks. Don't ask again."
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: wp-table-reloaded-admin.php:213
|
84 |
#, php-format
|
85 |
msgid "Table \"%s\" added successfully."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: wp-table-reloaded-admin.php:241
|
89 |
#, php-format
|
90 |
msgid ""
|
91 |
"Table edited successfully. This Table now has the ID %s. You'll need to "
|
92 |
"adjust existing shortcodes accordingly."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: wp-table-reloaded-admin.php:243
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"The ID could not be changed from %s to %s, because there already is a Table "
|
99 |
"with that ID."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: wp-table-reloaded-admin.php:246
|
103 |
msgid "Table edited successfully."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: wp-table-reloaded-admin.php:284
|
107 |
msgid "Rows swapped successfully."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: wp-table-reloaded-admin.php:305
|
111 |
msgid "Columns swapped successfully."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: wp-table-reloaded-admin.php:336
|
115 |
msgid "Table sorted successfully."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: wp-table-reloaded-admin.php:351
|
119 |
msgid "Row added successfully."
|
120 |
msgid_plural "Rows added successfully."
|
121 |
msgstr[0] ""
|
122 |
msgstr[1] ""
|
123 |
|
124 |
+
#: wp-table-reloaded-admin.php:365
|
125 |
msgid "Column added successfully."
|
126 |
msgid_plural "Columns added successfully."
|
127 |
msgstr[0] ""
|
128 |
msgstr[1] ""
|
129 |
|
130 |
+
#: wp-table-reloaded-admin.php:386
|
131 |
+
msgid "Row moved successfully."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: wp-table-reloaded-admin.php:411
|
135 |
+
msgid "Column moved successfully."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: wp-table-reloaded-admin.php:418
|
139 |
+
msgid "Could not add Custom Data Field, because you did not enter a name."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: wp-table-reloaded-admin.php:423
|
143 |
+
msgid ""
|
144 |
+
"Could not add Custom Data Field, because the name you entered is reserved "
|
145 |
+
"for other table data."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: wp-table-reloaded-admin.php:429
|
149 |
+
msgid ""
|
150 |
+
"Could not add Custom Data Field, because the name contained illegal "
|
151 |
+
"characters."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: wp-table-reloaded-admin.php:433
|
155 |
+
msgid ""
|
156 |
+
"Could not add Custom Data Field, because a Field with that name already "
|
157 |
+
"exists."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: wp-table-reloaded-admin.php:439
|
161 |
+
msgid "Custom Data Field added successfully."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: wp-table-reloaded-admin.php:475 wp-table-reloaded-admin.php:530
|
165 |
msgid "Copy of"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: wp-table-reloaded-admin.php:479
|
169 |
msgid "Table copied successfully."
|
170 |
msgid_plural "Tables copied successfully."
|
171 |
msgstr[0] ""
|
172 |
msgstr[1] ""
|
173 |
|
174 |
+
#: wp-table-reloaded-admin.php:485
|
175 |
msgid "Table deleted successfully."
|
176 |
msgid_plural "Tables deleted successfully."
|
177 |
msgstr[0] ""
|
178 |
msgstr[1] ""
|
179 |
|
180 |
+
#: wp-table-reloaded-admin.php:506 wp-table-reloaded-admin.php:706
|
181 |
+
#: wp-table-reloaded-admin.php:744
|
182 |
msgid "Table imported successfully."
|
183 |
msgid_plural "Tables imported successfully."
|
184 |
msgstr[0] ""
|
185 |
msgstr[1] ""
|
186 |
|
187 |
+
#: wp-table-reloaded-admin.php:513
|
188 |
msgid "You did not select any tables!"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: wp-table-reloaded-admin.php:535
|
192 |
#, php-format
|
193 |
msgid "Table \"%s\" copied successfully."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: wp-table-reloaded-admin.php:551
|
197 |
#, php-format
|
198 |
msgid "Table \"%s\" deleted successfully."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: wp-table-reloaded-admin.php:562
|
202 |
msgid "Row deleted successfully."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: wp-table-reloaded-admin.php:576
|
206 |
msgid "Column deleted successfully."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: wp-table-reloaded-admin.php:585
|
210 |
+
msgid "Custom Data Field deleted successfully."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: wp-table-reloaded-admin.php:587
|
214 |
+
msgid "Custom Data Field could not be deleted."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: wp-table-reloaded-admin.php:593
|
218 |
msgid "Delete failed."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: wp-table-reloaded-admin.php:619
|
222 |
msgid "Row inserted successfully."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: wp-table-reloaded-admin.php:629
|
226 |
msgid "Column inserted successfully."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: wp-table-reloaded-admin.php:632
|
230 |
msgid "Insert failed."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: wp-table-reloaded-admin.php:660 wp-table-reloaded-admin.php:669
|
234 |
+
#: wp-table-reloaded-admin.php:679
|
235 |
msgid "Imported Table"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: wp-table-reloaded-admin.php:661 wp-table-reloaded-admin.php:680
|
239 |
#, php-format
|
240 |
msgid "from %s"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: wp-table-reloaded-admin.php:670
|
244 |
msgid "via form"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: wp-table-reloaded-admin.php:690 wp-table-reloaded-admin.php:721
|
248 |
msgid "Table could not be imported."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: wp-table-reloaded-admin.php:702
|
252 |
#, php-format
|
253 |
msgid "Table %s (%s) replaced successfully."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: wp-table-reloaded-admin.php:771
|
257 |
#, php-format
|
258 |
msgid "Table \"%s\" exported successfully."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: wp-table-reloaded-admin.php:802
|
262 |
msgid "Options saved successfully."
|
263 |
msgstr ""
|
264 |
|
265 |
#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
|
266 |
#. Plugin Name of an extension
|
267 |
+
#: wp-table-reloaded-admin.php:820 wp-table-reloaded-admin.php:971
|
268 |
msgid "WP-Table Reloaded"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: wp-table-reloaded-admin.php:821 wp-table-reloaded-admin.php:1980
|
272 |
msgid "Plugin deactivated successfully."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: wp-table-reloaded-admin.php:822 wp-table-reloaded-admin.php:1980
|
276 |
msgid ""
|
277 |
"All tables, data and options were deleted. You may now remove the plugin's "
|
278 |
"subfolder from your WordPress plugin folder."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: wp-table-reloaded-admin.php:838 wp-table-reloaded-admin.php:971
|
282 |
msgid "List of Tables"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: wp-table-reloaded-admin.php:841 wp-table-reloaded-admin.php:974
|
286 |
msgid "This is a list of all available tables."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: wp-table-reloaded-admin.php:841
|
290 |
msgid "You may insert a table into a post or page here."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: wp-table-reloaded-admin.php:842
|
294 |
msgid ""
|
295 |
"Click the \"Insert\" link after the desired table and the corresponding "
|
296 |
"shortcode will be inserted into the editor (<strong>[table id=<"
|
297 |
"the_table_ID> /]</strong>)."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: wp-table-reloaded-admin.php:851 wp-table-reloaded-admin.php:859
|
301 |
+
#: wp-table-reloaded-admin.php:986 wp-table-reloaded-admin.php:995
|
302 |
+
#: wp-table-reloaded-admin.php:1580 wp-table-reloaded-admin.php:1589
|
303 |
msgid "ID"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: wp-table-reloaded-admin.php:852 wp-table-reloaded-admin.php:860
|
307 |
+
#: wp-table-reloaded-admin.php:987 wp-table-reloaded-admin.php:996
|
308 |
+
#: wp-table-reloaded-admin.php:1080 wp-table-reloaded-admin.php:1134
|
309 |
+
#: wp-table-reloaded-admin.php:1581 wp-table-reloaded-admin.php:1590
|
310 |
msgid "Table Name"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: wp-table-reloaded-admin.php:853 wp-table-reloaded-admin.php:861
|
314 |
+
#: wp-table-reloaded-admin.php:988 wp-table-reloaded-admin.php:997
|
315 |
+
#: wp-table-reloaded-admin.php:1084 wp-table-reloaded-admin.php:1138
|
316 |
+
#: wp-table-reloaded-admin.php:1582 wp-table-reloaded-admin.php:1591
|
317 |
msgid "Description"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: wp-table-reloaded-admin.php:854 wp-table-reloaded-admin.php:862
|
321 |
+
#: wp-table-reloaded-admin.php:1427 wp-table-reloaded-admin.php:1583
|
322 |
+
#: wp-table-reloaded-admin.php:1592
|
323 |
msgid "Action"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: wp-table-reloaded-admin.php:882
|
327 |
msgid "Insert"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: wp-table-reloaded-admin.php:891 wp-table-reloaded-admin.php:1058
|
331 |
+
#: wp-table-reloaded-admin.php:1712
|
332 |
msgid "No tables found."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: wp-table-reloaded-admin.php:911
|
336 |
+
#, php-format
|
337 |
+
msgid "Preview of Table \"%s\" (ID %s)"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: wp-table-reloaded-admin.php:914
|
341 |
+
msgid "This is a preview of the table data."
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: wp-table-reloaded-admin.php:915
|
345 |
+
msgid "Because of CSS styling, the table might look different on your page!"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: wp-table-reloaded-admin.php:916 wp-table-reloaded-admin.php:1119
|
349 |
+
#, php-format
|
350 |
+
msgid ""
|
351 |
+
"To show this table in your pages, posts or text-widgets, use the shortcode "
|
352 |
+
"<strong>[table id=%s /]</strong>."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: wp-table-reloaded-admin.php:929
|
356 |
+
msgid "There is no table with this ID!"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: wp-table-reloaded-admin.php:954
|
360 |
+
msgid ""
|
361 |
+
"Thank you very much! Your donation is highly appreciated. You just "
|
362 |
+
"contributed to the further development of WP-Table Reloaded!"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: wp-table-reloaded-admin.php:956
|
366 |
+
#, php-format
|
367 |
+
msgid ""
|
368 |
+
"No problem! I still hope you enjoy the benefits that WP-Table Reloaded "
|
369 |
+
"brings to you. If you should want to change your mind, you'll always find "
|
370 |
+
"the \"Donate\" button on the <a href=\"%s\">WP-Table Reloaded website</a>."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: wp-table-reloaded-admin.php:974
|
374 |
msgid "You may add, edit, copy or delete tables here."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: wp-table-reloaded-admin.php:975
|
378 |
msgid ""
|
379 |
"If you want to show a table in your pages, posts or text-widgets, use the "
|
380 |
"shortcode <strong>[table id=<the_table_ID> /]</strong> or click the "
|
381 |
"button \"Table\" in the editor toolbar."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: wp-table-reloaded-admin.php:989 wp-table-reloaded-admin.php:998
|
385 |
+
#: wp-table-reloaded-admin.php:1143
|
386 |
+
msgid "Last Modified"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: wp-table-reloaded-admin.php:1010
|
390 |
+
msgid "(no name)"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: wp-table-reloaded-admin.php:1011
|
394 |
+
msgid "(no description)"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: wp-table-reloaded-admin.php:1015 wp-table-reloaded-admin.php:1144
|
398 |
+
msgid "by"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: wp-table-reloaded-admin.php:1028
|
402 |
+
#, php-format
|
403 |
+
msgid "Edit %s"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: wp-table-reloaded-admin.php:1030
|
407 |
msgid "Edit"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: wp-table-reloaded-admin.php:1032
|
411 |
+
msgid "Shortcode"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: wp-table-reloaded-admin.php:1033
|
415 |
msgid "Copy"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: wp-table-reloaded-admin.php:1034
|
419 |
msgid "Export"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: wp-table-reloaded-admin.php:1035
|
423 |
msgid "Delete"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: wp-table-reloaded-admin.php:1036
|
427 |
+
#, php-format
|
428 |
+
msgid "Preview of Table %s"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: wp-table-reloaded-admin.php:1037
|
432 |
+
msgid "Preview"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: wp-table-reloaded-admin.php:1049 wp-table-reloaded-admin.php:1621
|
436 |
msgid "Bulk actions:"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: wp-table-reloaded-admin.php:1049
|
440 |
msgid "Copy Tables"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: wp-table-reloaded-admin.php:1049
|
444 |
msgid "Delete Tables"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: wp-table-reloaded-admin.php:1058 wp-table-reloaded-admin.php:1712
|
448 |
#, php-format
|
449 |
msgid "You might <a href=\"%s\">add</a> or <a href=\"%s\">import</a> one!"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: wp-table-reloaded-admin.php:1068 wp-table-reloaded-admin.php:1915
|
453 |
msgid "Add new Table"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: wp-table-reloaded-admin.php:1072
|
457 |
msgid ""
|
458 |
+
"You can add a new table here. Just enter its name, a description (optional) "
|
459 |
+
"and the number of rows and columns."
|
|
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: wp-table-reloaded-admin.php:1072
|
463 |
+
msgid "You may add, insert or delete rows and columns later."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: wp-table-reloaded-admin.php:1081
|
467 |
msgid "Enter Table Name"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: wp-table-reloaded-admin.php:1085
|
471 |
msgid "Enter Description"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: wp-table-reloaded-admin.php:1088
|
475 |
msgid "Number of Rows"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: wp-table-reloaded-admin.php:1092
|
479 |
msgid "Number of Columns"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: wp-table-reloaded-admin.php:1099
|
483 |
msgid "Add Table"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: wp-table-reloaded-admin.php:1115
|
487 |
#, php-format
|
488 |
+
msgid "Edit Table \"%s\" (ID %s)"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: wp-table-reloaded-admin.php:1118
|
492 |
msgid ""
|
493 |
"You may edit the content of the table here. It is also possible to add or "
|
494 |
"delete columns and rows."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: wp-table-reloaded-admin.php:1126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
msgid "Table Information"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: wp-table-reloaded-admin.php:1130
|
502 |
msgid "Table ID"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: wp-table-reloaded-admin.php:1152 wp-table-reloaded-admin.php:1366
|
506 |
+
#: wp-table-reloaded-admin.php:1406 wp-table-reloaded-admin.php:1457
|
507 |
msgid "Update Changes"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: wp-table-reloaded-admin.php:1153 wp-table-reloaded-admin.php:1367
|
511 |
+
#: wp-table-reloaded-admin.php:1407 wp-table-reloaded-admin.php:1458
|
512 |
msgid "Save and go back"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: wp-table-reloaded-admin.php:1156 wp-table-reloaded-admin.php:1370
|
516 |
+
#: wp-table-reloaded-admin.php:1410 wp-table-reloaded-admin.php:1461
|
517 |
msgid "Cancel"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: wp-table-reloaded-admin.php:1162
|
521 |
msgid "Table Contents"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: wp-table-reloaded-admin.php:1162 wp-table-reloaded-admin.php:1259
|
525 |
+
#: wp-table-reloaded-admin.php:1375 wp-table-reloaded-admin.php:1415
|
526 |
+
#: wp-table-reloaded-admin.php:1763 wp-table-reloaded-admin.php:1865
|
527 |
msgid "Hide"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: wp-table-reloaded-admin.php:1162 wp-table-reloaded-admin.php:1259
|
531 |
+
#: wp-table-reloaded-admin.php:1375 wp-table-reloaded-admin.php:1415
|
532 |
+
#: wp-table-reloaded-admin.php:1763 wp-table-reloaded-admin.php:1865
|
533 |
msgid "Expand"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: wp-table-reloaded-admin.php:1203
|
537 |
msgid "Insert Row"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: wp-table-reloaded-admin.php:1205
|
541 |
msgid "Delete Row"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: wp-table-reloaded-admin.php:1208
|
545 |
+
msgid "Row hidden"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: wp-table-reloaded-admin.php:1219
|
549 |
msgid "Insert Column"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: wp-table-reloaded-admin.php:1221
|
553 |
msgid "Delete Column"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: wp-table-reloaded-admin.php:1231
|
557 |
#, php-format
|
558 |
msgid "Add %s row(s)"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: wp-table-reloaded-admin.php:1232 wp-table-reloaded-admin.php:1234
|
562 |
+
#: wp-table-reloaded-admin.php:1452
|
563 |
msgid "Add"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: wp-table-reloaded-admin.php:1233
|
567 |
#, php-format
|
568 |
msgid "Add %s column(s)"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: wp-table-reloaded-admin.php:1245
|
572 |
+
msgid "Column hidden"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: wp-table-reloaded-admin.php:1259
|
576 |
msgid "Data Manipulation"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: wp-table-reloaded-admin.php:1273
|
580 |
#, php-format
|
581 |
msgid "Swap rows %s and %s"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: wp-table-reloaded-admin.php:1275 wp-table-reloaded-admin.php:1293
|
585 |
msgid "Swap"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: wp-table-reloaded-admin.php:1291
|
589 |
#, php-format
|
590 |
msgid "Swap columns %s and %s"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: wp-table-reloaded-admin.php:1307 wp-table-reloaded-admin.php:1330
|
594 |
+
msgid "before"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: wp-table-reloaded-admin.php:1308 wp-table-reloaded-admin.php:1331
|
598 |
+
msgid "after"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: wp-table-reloaded-admin.php:1311
|
602 |
+
#, php-format
|
603 |
+
msgid "Move row %s %s row %s"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: wp-table-reloaded-admin.php:1313 wp-table-reloaded-admin.php:1336
|
607 |
+
msgid "Move"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: wp-table-reloaded-admin.php:1334
|
611 |
+
#, php-format
|
612 |
+
msgid "Move column %s %s column %s"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: wp-table-reloaded-admin.php:1340
|
616 |
msgid "Insert Link"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: wp-table-reloaded-admin.php:1341
|
620 |
msgid "Insert Image"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: wp-table-reloaded-admin.php:1351
|
624 |
msgid "ascending"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: wp-table-reloaded-admin.php:1352
|
628 |
msgid "descending"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: wp-table-reloaded-admin.php:1355
|
632 |
#, php-format
|
633 |
msgid "Sort table by column %s in %s order"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: wp-table-reloaded-admin.php:1358
|
637 |
msgid "Sort"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: wp-table-reloaded-admin.php:1375
|
641 |
msgid "Table Settings"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: wp-table-reloaded-admin.php:1377
|
645 |
msgid "These settings will only be used for this table."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: wp-table-reloaded-admin.php:1380
|
649 |
msgid "Alternating row colors"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: wp-table-reloaded-admin.php:1381
|
653 |
msgid "Every second row will have an alternating background color."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: wp-table-reloaded-admin.php:1384
|
657 |
msgid "Use Table Headline"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: wp-table-reloaded-admin.php:1385
|
661 |
+
msgid "The first row of your table will use the <th> tag."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: wp-table-reloaded-admin.php:1388
|
665 |
msgid "Print Table Name"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: wp-table-reloaded-admin.php:1389
|
669 |
+
msgid "The Table Name will be written above the table in a <h2> tag."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: wp-table-reloaded-admin.php:1392
|
673 |
msgid "Print Table Description"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: wp-table-reloaded-admin.php:1393
|
677 |
msgid "The Table Description will be written under the table."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: wp-table-reloaded-admin.php:1396
|
681 |
msgid "Use Tablesorter"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: wp-table-reloaded-admin.php:1399
|
685 |
msgid ""
|
686 |
"You may sort a table using the <a href=\"http://www.tablesorter.com/"
|
687 |
+
"\">Tablesorter-jQuery-Plugin</a>."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: wp-table-reloaded-admin.php:1399
|
691 |
+
msgid ""
|
692 |
+
"<small>Attention: You must have Tablesorter enabled on the \"Plugin Options"
|
693 |
+
"\" screen and the option \"Use Table Headline\" has to be enabled above for "
|
694 |
+
"this to work!</small>"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: wp-table-reloaded-admin.php:1415
|
698 |
+
msgid "Custom Data Fields"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: wp-table-reloaded-admin.php:1417
|
702 |
+
msgid "Custom Data Fields can be used to add extra metadata to a table."
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: wp-table-reloaded-admin.php:1417
|
706 |
+
msgid ""
|
707 |
+
"For example, this could be information about the source or the creator of "
|
708 |
+
"the data."
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: wp-table-reloaded-admin.php:1419
|
712 |
+
#, php-format
|
713 |
+
msgid ""
|
714 |
+
"You can show this data in the same way as tables by using the shortcode "
|
715 |
+
"<strong>[table-info id=%s field=\"<field-name>\" /]</strong>."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: wp-table-reloaded-admin.php:1425
|
719 |
+
msgid "Field Name"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: wp-table-reloaded-admin.php:1426
|
723 |
+
msgid "Value"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: wp-table-reloaded-admin.php:1440
|
727 |
+
msgid "Delete Field"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: wp-table-reloaded-admin.php:1442
|
731 |
+
msgid "View shortcode"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: wp-table-reloaded-admin.php:1451
|
735 |
+
msgid ""
|
736 |
+
"To add a new Custom Data Field, enter its name (only lowercase letters, "
|
737 |
+
"numbers, _ and -)."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: wp-table-reloaded-admin.php:1452
|
741 |
+
msgid "Custom Data Field Name"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: wp-table-reloaded-admin.php:1466
|
745 |
msgid "Other actions"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: wp-table-reloaded-admin.php:1469
|
749 |
msgid "Delete Table"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: wp-table-reloaded-admin.php:1470 wp-table-reloaded-admin.php:1701
|
753 |
msgid "Export Table"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: wp-table-reloaded-admin.php:1482 wp-table-reloaded-admin.php:1916
|
757 |
msgid "Import a Table"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: wp-table-reloaded-admin.php:1486
|
761 |
+
msgid "You may import a table from existing data here."
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: wp-table-reloaded-admin.php:1486
|
765 |
msgid ""
|
766 |
+
"This may be a CSV, XML or HTML file, which need a certain structure though. "
|
767 |
+
"Please consult the documentation."
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: wp-table-reloaded-admin.php:1486
|
771 |
+
msgid "You may also select the import source."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: wp-table-reloaded-admin.php:1493
|
775 |
msgid "Select Import Format"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: wp-table-reloaded-admin.php:1504
|
779 |
msgid "Add or Replace Table?"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: wp-table-reloaded-admin.php:1506
|
783 |
msgid "Add as new Table"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: wp-table-reloaded-admin.php:1507
|
787 |
msgid "Replace existing Table"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: wp-table-reloaded-admin.php:1511
|
791 |
msgid "Select existing Table to Replace"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: wp-table-reloaded-admin.php:1527
|
795 |
msgid "Select source for import"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: wp-table-reloaded-admin.php:1529
|
799 |
msgid "File upload"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: wp-table-reloaded-admin.php:1530
|
803 |
msgid "URL"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: wp-table-reloaded-admin.php:1531
|
807 |
msgid "Manual input"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: wp-table-reloaded-admin.php:1532
|
811 |
msgid "File on server"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: wp-table-reloaded-admin.php:1536
|
815 |
msgid "Select File with Table to Import"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: wp-table-reloaded-admin.php:1540
|
819 |
msgid "URL to import table from"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: wp-table-reloaded-admin.php:1544
|
823 |
msgid "Path to file on server"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: wp-table-reloaded-admin.php:1548
|
827 |
msgid "Paste data with Table to Import"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: wp-table-reloaded-admin.php:1554
|
831 |
msgid "Import Table"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: wp-table-reloaded-admin.php:1567
|
835 |
msgid "Import from original wp-Table plugin"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: wp-table-reloaded-admin.php:1613
|
839 |
msgid "Import"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: wp-table-reloaded-admin.php:1621
|
843 |
msgid "Import Tables"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: wp-table-reloaded-admin.php:1627
|
847 |
msgid "wp-Table by Alex Rabe seems to be installed, but no tables were found."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: wp-table-reloaded-admin.php:1646 wp-table-reloaded-admin.php:1917
|
851 |
msgid "Export a Table"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: wp-table-reloaded-admin.php:1650
|
855 |
msgid ""
|
856 |
"You may export a table here. Just select the table, your desired export "
|
857 |
+
"format and (for CSV only) a delimiter."
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: wp-table-reloaded-admin.php:1651
|
861 |
+
msgid ""
|
862 |
+
"You may opt to download the export file. Otherwise it will be shown on this "
|
863 |
+
"page."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: wp-table-reloaded-admin.php:1652
|
867 |
+
msgid ""
|
868 |
+
"Be aware that only the table data, but no options or settings are exported."
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: wp-table-reloaded-admin.php:1660
|
872 |
msgid "Select Table to Export"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: wp-table-reloaded-admin.php:1675
|
876 |
msgid "Select Export Format"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: wp-table-reloaded-admin.php:1685
|
880 |
msgid "Select Delimiter to use"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: wp-table-reloaded-admin.php:1692
|
884 |
msgid "<small>(Only needed for CSV export.)</small>"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: wp-table-reloaded-admin.php:1695
|
888 |
msgid "Download file"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: wp-table-reloaded-admin.php:1696
|
892 |
msgid "Yes, I want to download the export file."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: wp-table-reloaded-admin.php:1721
|
896 |
msgid "General Plugin Options"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: wp-table-reloaded-admin.php:1725
|
900 |
+
msgid "You may change these global options."
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: wp-table-reloaded-admin.php:1726
|
904 |
+
msgid "They will effect all tables or the general plugin behavior."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: wp-table-reloaded-admin.php:1733
|
908 |
msgid "Frontend Options"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: wp-table-reloaded-admin.php:1737
|
912 |
msgid "Enable Tablesorter-JavaScript?"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: wp-table-reloaded-admin.php:1738
|
916 |
msgid ""
|
917 |
"Yes, enable the <a href=\"http://www.tablesorter.com/\">Tablesorter jQuery "
|
918 |
"plugin</a>. This can be used to make tables sortable (can be activated for "
|
919 |
"each table separately in its options)."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: wp-table-reloaded-admin.php:1741
|
923 |
msgid "Add custom CSS?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: wp-table-reloaded-admin.php:1743
|
927 |
msgid ""
|
928 |
+
"Yes, include and load the following CSS-snippet on my site inside a <"
|
929 |
+
"style>-HTML-tag."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: wp-table-reloaded-admin.php:1748
|
933 |
msgid "Enter custom CSS"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: wp-table-reloaded-admin.php:1753
|
937 |
#, php-format
|
938 |
msgid ""
|
939 |
+
"You might get a better website performance, if you add the CSS styling to "
|
940 |
+
"your theme's \"style.css\" (located at <a href=\"%s\">%s</a>) instead."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: wp-table-reloaded-admin.php:1754
|
944 |
#, php-format
|
945 |
msgid ""
|
946 |
"See the <a href=\"%s\">plugin website</a> for styling examples or use one of "
|
948 |
"Style 2</a>"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: wp-table-reloaded-admin.php:1754
|
952 |
msgid "Just copy the contents of a file into the textarea."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: wp-table-reloaded-admin.php:1755
|
956 |
+
#, php-format
|
957 |
+
msgid ""
|
958 |
+
"Another possibility is, to include a CSS file (e.g. from your theme folder) "
|
959 |
+
"with the CSS @import command: %s"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: wp-table-reloaded-admin.php:1763
|
963 |
+
msgid "Advanced Options"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: wp-table-reloaded-admin.php:1767
|
967 |
+
msgid "Use Tablesorter Extended?"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: wp-table-reloaded-admin.php:1768
|
971 |
+
msgid ""
|
972 |
+
"Yes, use Extended Tablesorter from <a href=\"http://tablesorter.openwerk.de"
|
973 |
+
"\">Sören Krings</a> instead of original Tablesorter script "
|
974 |
+
"(EXPERIMENTAL FEATURE!)."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: wp-table-reloaded-admin.php:1771
|
978 |
msgid "Uninstall Plugin upon Deactivation?"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: wp-table-reloaded-admin.php:1772
|
982 |
msgid ""
|
983 |
"Yes, uninstall everything when the plugin is deactivated. Attention: You "
|
984 |
"should only enable this checkbox directly before deactivating the plugin "
|
985 |
"from the WordPress plugins page!"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: wp-table-reloaded-admin.php:1772
|
989 |
msgid ""
|
990 |
+
"(This setting does not influence the \"Manually Uninstall Plugin\" button "
|
991 |
+
"below!)"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: wp-table-reloaded-admin.php:1775
|
995 |
+
msgid "Allow donation message?"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: wp-table-reloaded-admin.php:1776
|
999 |
+
msgid "Yes, show a donation message after 30 days of using the plugin."
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: wp-table-reloaded-admin.php:1785
|
1003 |
msgid "Save Options"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: wp-table-reloaded-admin.php:1791
|
1007 |
msgid "Manually Uninstall Plugin"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: wp-table-reloaded-admin.php:1793
|
1011 |
msgid ""
|
1012 |
"You may uninstall the plugin here. This <strong>will delete</strong> all "
|
1013 |
"tables, data, options, etc., that belong to the plugin, including all tables "
|
1014 |
+
"you added or imported."
|
|
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: wp-table-reloaded-admin.php:1793
|
1018 |
+
msgid ""
|
1019 |
+
"Be very careful with this and only click the button if you know what you are "
|
1020 |
+
"doing!"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: wp-table-reloaded-admin.php:1796
|
1024 |
msgid "Uninstall Plugin WP-Table Reloaded"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: wp-table-reloaded-admin.php:1807
|
1028 |
+
msgid "About WP-Table Reloaded"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: wp-table-reloaded-admin.php:1813
|
1032 |
msgid "Plugin Purpose"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: wp-table-reloaded-admin.php:1815
|
1036 |
msgid ""
|
1037 |
"This plugin allows you to create and manage tables in the admin-area of "
|
1038 |
"WordPress."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: wp-table-reloaded-admin.php:1815
|
1042 |
msgid ""
|
1043 |
"Those tables may contain strings, numbers and even HTML (e.g. to include "
|
1044 |
"images or links)."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: wp-table-reloaded-admin.php:1815
|
1048 |
msgid ""
|
1049 |
"You can then show the tables in your posts, on your pages or in text widgets "
|
1050 |
"by using a shortcode."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: wp-table-reloaded-admin.php:1815
|
1054 |
msgid ""
|
1055 |
"If you want to show your tables anywhere else in your theme, you can use a "
|
1056 |
"template tag function."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: wp-table-reloaded-admin.php:1820
|
1060 |
msgid "Usage"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: wp-table-reloaded-admin.php:1822
|
1064 |
msgid "At first you should add or import a table."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: wp-table-reloaded-admin.php:1822
|
1068 |
msgid ""
|
1069 |
"This means that you either let the plugin create an empty table for you or "
|
1070 |
"that you load an existing table from either a CSV, XML or HTML file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: wp-table-reloaded-admin.php:1822
|
1074 |
msgid ""
|
1075 |
"Then you can edit your data or change the structure of your table (e.g. by "
|
1076 |
"inserting or deleting rows or columns, swaping rows or columns or sorting "
|
1078 |
"whether to print the name or description, if you want."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: wp-table-reloaded-admin.php:1822
|
1082 |
msgid ""
|
1083 |
"To easily add a link or an image to a cell, use the provided buttons. Those "
|
1084 |
"will ask you for the URL and a title. Then you can click into a cell and the "
|
1085 |
"corresponding HTML will be added to it for you."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: wp-table-reloaded-admin.php:1822
|
1089 |
msgid ""
|
1090 |
"To include the table into your posts, pages or text widgets, write the "
|
1091 |
"shortcode [table id=<table-id>] into them."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: wp-table-reloaded-admin.php:1822
|
1095 |
msgid ""
|
1096 |
"You can also select the desired table from a list (after clicking the button "
|
1097 |
"\"Table\" in the editor toolbar) and the corresponding shortcode will be "
|
1098 |
"added for you."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: wp-table-reloaded-admin.php:1822
|
1102 |
msgid ""
|
1103 |
"You may also style your table via CSS. Example files are provided on the "
|
1104 |
"plugin website. Every table has the CSS class \"wp-table-reloaded\". Each "
|
1105 |
"table also has the class \"wp-table-reloaded-<table-id>\"."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: wp-table-reloaded-admin.php:1822
|
1109 |
msgid ""
|
1110 |
"You can also use the classes \"column-<number>\" and \"row-<"
|
1111 |
"number>\" to style rows and columns individually. Use this to style "
|
1112 |
"columns width and text alignment for example."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: wp-table-reloaded-admin.php:1827
|
1116 |
msgid "More Information and Documentation"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: wp-table-reloaded-admin.php:1829
|
1120 |
msgid ""
|
1121 |
"More information can be found on the <a href=\"http://tobias.baethge.com/"
|
1122 |
"wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a> or on "
|
1124 |
"reloaded/\">WordPress Plugin Directory</a>."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: wp-table-reloaded-admin.php:1829 wp-table-reloaded-admin.php:1993
|
1128 |
msgid ""
|
1129 |
"See the <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-table-"
|
1130 |
"reloaded-english/documentation/\">documentation</a> or find out how to get "
|
1132 |
"english/support/\">support</a>."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: wp-table-reloaded-admin.php:1834
|
1136 |
msgid "Author and Licence"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: wp-table-reloaded-admin.php:1836
|
1140 |
msgid ""
|
1141 |
"This plugin was written by <a href=\"http://tobias.baethge.com/\">Tobias "
|
1142 |
+
"Bäthge</a>. It is licensed as Free Software under GPL 2."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: wp-table-reloaded-admin.php:1836 wp-table-reloaded-admin.php:1994
|
1146 |
msgid ""
|
1147 |
"If you like the plugin, please consider <a href=\"http://tobias.baethge.com/"
|
1148 |
+
"donate/\"><strong>a donation</strong></a> and rate the plugin in the <a href="
|
1149 |
+
"\"http://wordpress.org/extend/plugins/wp-table-reloaded/\">WordPress Plugin "
|
1150 |
+
"Directory</a>."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: wp-table-reloaded-admin.php:1836
|
1154 |
msgid ""
|
1155 |
"Donations and good ratings encourage me to further develop the plugin and to "
|
1156 |
"provide countless hours of support. Any amount is appreciated! Thanks!"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: wp-table-reloaded-admin.php:1841
|
1160 |
msgid "Credits and Thanks"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: wp-table-reloaded-admin.php:1844
|
1164 |
msgid ""
|
1165 |
"Thanks go to <a href=\"http://alexrabe.boelinger.com/\">Alex Rabe</a> for "
|
1166 |
"the original wp-Table plugin,"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: wp-table-reloaded-admin.php:1845
|
1170 |
msgid ""
|
1171 |
"Christian Bach for the <a href=\"http://www.tablesorter.com/\">Tablesorter "
|
1172 |
"jQuery plugin</a>,"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: wp-table-reloaded-admin.php:1846
|
1176 |
msgid "the submitters of translations:"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: wp-table-reloaded-admin.php:1847
|
1180 |
msgid "Albanian (thanks to <a href=\"http://www.romeolab.com/\">Romeo</a>)"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: wp-table-reloaded-admin.php:1848
|
1184 |
+
msgid ""
|
1185 |
+
"Belorussian (thanks to <a href=\"http://www.fatcow.com/\">Marcis Gasuns</a>)"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: wp-table-reloaded-admin.php:1849
|
1189 |
msgid ""
|
1190 |
"Brazilian Portugues (thanks to <a href=\"http://www.pensarics.com/\">Rics</"
|
1191 |
"a>)"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: wp-table-reloaded-admin.php:1850
|
1195 |
msgid "Czech (thanks to <a href=\"http://separatista.net/\">Separatista</a>)"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: wp-table-reloaded-admin.php:1851
|
1199 |
msgid "French (thanks to <a href=\"http://ultratrailer.net/\">Yin-Yin</a>)"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: wp-table-reloaded-admin.php:1852
|
1203 |
+
msgid ""
|
1204 |
+
"Italian (thanks to <a href=\"http://www.scrical.it/\">Gabriella Mazzon</a>)"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: wp-table-reloaded-admin.php:1853
|
1208 |
+
msgid "Japanese (thanks to <a href=\"http://www.u-1.net/\">Yuuichi</a>)"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: wp-table-reloaded-admin.php:1854
|
1212 |
msgid "Polish (thanks to Alex Kortan)"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: wp-table-reloaded-admin.php:1855
|
1216 |
msgid "Russian (thanks to <a href=\"http://wp-skins.info/\">Truper</a>)"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: wp-table-reloaded-admin.php:1856
|
1220 |
msgid ""
|
1221 |
"Spanish (thanks to <a href=\"http://theindependentproject.com/\">Alejandro "
|
1222 |
"Urrutia</a> and <a href=\"http://halles.cl/\">Matias Halles</a>)"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: wp-table-reloaded-admin.php:1857
|
1226 |
msgid "Swedish (thanks to <a href=\"http://www.zuperzed.se/\">ZuperZed</a>)"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: wp-table-reloaded-admin.php:1858
|
1230 |
msgid "Turkish (thanks to <a href=\"http://www.wpuzmani.com/\">Semih</a>)"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: wp-table-reloaded-admin.php:1859
|
1234 |
msgid ""
|
1235 |
"and to all donors, contributors, supporters, reviewers and users of the "
|
1236 |
"plugin!"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: wp-table-reloaded-admin.php:1865
|
1240 |
msgid "Debug and Version Information"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: wp-table-reloaded-admin.php:1868
|
1244 |
msgid ""
|
1245 |
"You are using the following versions of the software. <strong>Please provide "
|
1246 |
"this information in bug reports.</strong>"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: wp-table-reloaded-admin.php:1871
|
1250 |
+
msgid "Plugin installed"
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: wp-table-reloaded-admin.php:1914
|
1254 |
msgid "List Tables"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: wp-table-reloaded-admin.php:1919
|
1258 |
msgid "Plugin Options"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: wp-table-reloaded-admin.php:1920
|
1262 |
msgid "About the Plugin"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: wp-table-reloaded-admin.php:1961
|
1266 |
+
msgid "This is the \"List Tables\" screen."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: wp-table-reloaded-admin.php:1965
|
1270 |
+
msgid "This is the \"Edit Table\" screen."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: wp-table-reloaded-admin.php:1968
|
1274 |
+
msgid "This is the \"Add new Table\" screen."
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: wp-table-reloaded-admin.php:1971
|
1278 |
+
msgid "This is the \"Import a Table\" screen."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: wp-table-reloaded-admin.php:1974
|
1282 |
+
msgid "This is the \"Export a Table\" screen."
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: wp-table-reloaded-admin.php:1977
|
1286 |
+
msgid "This is the \"Plugin Options\" screen."
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: wp-table-reloaded-admin.php:1983
|
1290 |
+
msgid "This is the \"About WP-Table Reloaded\" screen."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: wp-table-reloaded-admin.php:1992
|
1294 |
msgid ""
|
1295 |
"More information can be found on the <a href=\"http://tobias.baethge.com/"
|
1296 |
"wordpress-plugins/wp-table-reloaded-english/\">plugin's website</a>."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: wp-table-reloaded-admin.php:2315
|
1300 |
msgid ""
|
1301 |
"Do you really want to activate this? You should only do that right before "
|
1302 |
"uninstallation!"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: wp-table-reloaded-admin.php:2316
|
1306 |
msgid "URL of link to insert"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: wp-table-reloaded-admin.php:2317
|
1310 |
msgid "Text of link"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: wp-table-reloaded-admin.php:2318
|
1314 |
msgid ""
|
1315 |
"To insert the following link into a cell, just click the cell after closing "
|
1316 |
"this dialog."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: wp-table-reloaded-admin.php:2319
|
1320 |
+
msgid ""
|
1321 |
+
"To insert an image, click the cell into which you want to insert the image."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: wp-table-reloaded-admin.php:2319
|
1325 |
+
msgid ""
|
1326 |
+
"The Media Library will open, from which you can select the desired image or "
|
1327 |
+
"insert the image URL."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: wp-table-reloaded-admin.php:2319
|
1331 |
+
#, php-format
|
1332 |
+
msgid "Click the \"%s\" button to insert the image."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: wp-table-reloaded-admin.php:2319
|
1336 |
+
msgid "Insert into Post"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: wp-table-reloaded-admin.php:2320
|
1340 |
msgid "Do you want to copy the selected tables?"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: wp-table-reloaded-admin.php:2321
|
1344 |
msgid ""
|
1345 |
"The selected tables and all content will be erased. Do you really want to "
|
1346 |
"delete them?"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: wp-table-reloaded-admin.php:2322
|
1350 |
msgid ""
|
1351 |
"Do you really want to import the selected tables from the wp-Table plugin?"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: wp-table-reloaded-admin.php:2323
|
1355 |
msgid "Do you want to copy this table?"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: wp-table-reloaded-admin.php:2324
|
1359 |
msgid ""
|
1360 |
"The complete table and all content will be erased. Do you really want to "
|
1361 |
"delete it?"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: wp-table-reloaded-admin.php:2325
|
1365 |
msgid "Do you really want to delete this row?"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: wp-table-reloaded-admin.php:2326
|
1369 |
msgid "Do you really want to delete this column?"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: wp-table-reloaded-admin.php:2327
|
1373 |
msgid "Do you really want to import this table from the wp-Table plugin?"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: wp-table-reloaded-admin.php:2328
|
1377 |
msgid "Do you really want to uninstall the plugin and delete ALL data?"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: wp-table-reloaded-admin.php:2329
|
1381 |
msgid "Are you really sure?"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: wp-table-reloaded-admin.php:2330
|
1385 |
msgid "Do you really want to change the ID of the table?"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: wp-table-reloaded-admin.php:2331
|
1389 |
+
msgid "To show this Custom Data Field, use this shortcode:"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: wp-table-reloaded-admin.php:2332
|
1393 |
+
msgid "To show this table, use this shortcode:"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: wp-table-reloaded-admin.php:2373
|
1397 |
msgid "Table"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: wp-table-reloaded-admin.php:2421
|
1401 |
+
msgid ""
|
1402 |
+
"Thank you for using <a href=\"http://tobias.baethge.com/wordpress-plugins/wp-"
|
1403 |
+
"table-reloaded-english/\">WP-Table Reloaded</a>."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
#. Plugin URI of an extension
|
1407 |
msgid "http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/"
|
1408 |
msgstr ""
|
php/arraysort.class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
File Name: WP-Table Reloaded - array sort Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
|
6 |
-
Version: 1.
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
*/
|
@@ -30,12 +30,8 @@ class arraysort {
|
|
30 |
{
|
31 |
if ( -1 == $this->column )
|
32 |
return 0;
|
33 |
-
|
34 |
-
if ( $a[ $this->column ] == $b[ $this->column ] )
|
35 |
-
return 0;
|
36 |
|
37 |
-
return ( $a[ $this->column ]
|
38 |
-
// return strcmp( $a[ $this->column ], $b[ $this->column ] ); // doesn't work for integer columns obviously
|
39 |
}
|
40 |
|
41 |
function sort() {
|
3 |
File Name: WP-Table Reloaded - array sort Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
|
6 |
+
Version: 1.4
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
*/
|
30 |
{
|
31 |
if ( -1 == $this->column )
|
32 |
return 0;
|
|
|
|
|
|
|
33 |
|
34 |
+
return strnatcasecmp( $a[ $this->column ], $b[ $this->column ] );
|
|
|
35 |
}
|
36 |
|
37 |
function sort() {
|
php/index.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
3 |
+
?>
|
php/parsecsv.class.php
CHANGED
@@ -540,8 +540,9 @@ class parseCSV {
|
|
540 |
$file = null;
|
541 |
if ( $input === null ) {
|
542 |
$file = $this->file;
|
543 |
-
|
544 |
-
|
|
|
545 |
} else {
|
546 |
$data = $input;
|
547 |
}
|
@@ -550,7 +551,8 @@ class parseCSV {
|
|
550 |
if ( preg_match('/\.php$/i', $file) && preg_match('/<\?.*?\?>(.*)/ims', $data, $strip) ) {
|
551 |
$data = ltrim($strip[1]);
|
552 |
}
|
553 |
-
|
|
|
554 |
if ( substr($data, -1) != "\n" ) $data .= "\n";
|
555 |
$this->file_data = &$data;
|
556 |
return true;
|
540 |
$file = null;
|
541 |
if ( $input === null ) {
|
542 |
$file = $this->file;
|
543 |
+
// don't needed for us, as we only pass data not file names
|
544 |
+
//} elseif ( file_exists($input) ) {
|
545 |
+
// $file = $input;
|
546 |
} else {
|
547 |
$data = $input;
|
548 |
}
|
551 |
if ( preg_match('/\.php$/i', $file) && preg_match('/<\?.*?\?>(.*)/ims', $data, $strip) ) {
|
552 |
$data = ltrim($strip[1]);
|
553 |
}
|
554 |
+
// added @ to suppress error messages if iconv is missing
|
555 |
+
if ( $this->convert_encoding ) $data = @iconv($this->input_encoding, $this->output_encoding, $data);
|
556 |
if ( substr($data, -1) != "\n" ) $data .= "\n";
|
557 |
$this->file_data = &$data;
|
558 |
return true;
|
php/wp-table-reloaded-export.class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
File Name: WP-Table Reloaded - Export Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
|
6 |
-
Version: 1.
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
*/
|
@@ -12,7 +12,7 @@ Author URI: http://tobias.baethge.com/
|
|
12 |
class WP_Table_Reloaded_Export {
|
13 |
|
14 |
// ###################################################################################################################
|
15 |
-
var $export_class_version = '1.
|
16 |
|
17 |
var $export_formats = array();
|
18 |
var $delimiters = array();
|
@@ -60,7 +60,7 @@ class WP_Table_Reloaded_Export {
|
|
60 |
break;
|
61 |
case 'xml':
|
62 |
if ( 0 < $rows && 0 < $cols) {
|
63 |
-
$output .= "<?xml version=\"1.0\" encoding=\"
|
64 |
$output .= "<table>\n";
|
65 |
foreach ( $data as $row_idx => $row ) {
|
66 |
$output .= "\t<row>\n";
|
3 |
File Name: WP-Table Reloaded - Export Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
|
6 |
+
Version: 1.4
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
*/
|
12 |
class WP_Table_Reloaded_Export {
|
13 |
|
14 |
// ###################################################################################################################
|
15 |
+
var $export_class_version = '1.4';
|
16 |
|
17 |
var $export_formats = array();
|
18 |
var $delimiters = array();
|
60 |
break;
|
61 |
case 'xml':
|
62 |
if ( 0 < $rows && 0 < $cols) {
|
63 |
+
$output .= "<?xml version=\"1.0\" encoding=\"" . get_option('blog_charset') . "\"?>\n";
|
64 |
$output .= "<table>\n";
|
65 |
foreach ( $data as $row_idx => $row ) {
|
66 |
$output .= "\t<row>\n";
|
php/wp-table-reloaded-import.class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
File Name: WP-Table Reloaded - Import Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
|
6 |
-
Version: 1.
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
*/
|
@@ -12,7 +12,7 @@ Author URI: http://tobias.baethge.com/
|
|
12 |
class WP_Table_Reloaded_Import {
|
13 |
|
14 |
// ###################################################################################################################
|
15 |
-
var $import_class_version = '1.
|
16 |
|
17 |
// possible import formats
|
18 |
var $import_formats = array();
|
@@ -61,6 +61,9 @@ class WP_Table_Reloaded_Import {
|
|
61 |
default:
|
62 |
$this->imported_table = array();
|
63 |
}
|
|
|
|
|
|
|
64 |
}
|
65 |
|
66 |
// ###################################################################################################################
|
@@ -79,11 +82,26 @@ class WP_Table_Reloaded_Import {
|
|
79 |
$temp_data = file_get_contents( $this->tempname );
|
80 |
break;
|
81 |
default:
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
}
|
84 |
|
85 |
$parseCSV->heading = false; // means: treat first row like all others
|
86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
$parseCSV->load_data( $temp_data );
|
88 |
$parseCSV->auto(); // let parsecsv do its magic (determine delimiter and parse the data)
|
89 |
|
@@ -99,10 +117,27 @@ class WP_Table_Reloaded_Import {
|
|
99 |
|
100 |
$simpleXML = $this->create_class_instance( 'simplexml', 'simplexml.class.php' );
|
101 |
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
// extract table from html, pattern: <table> (with eventually class, id, ...
|
108 |
// . means any charactery (except newline),
|
@@ -155,10 +190,21 @@ class WP_Table_Reloaded_Import {
|
|
155 |
|
156 |
$simpleXML = $this->create_class_instance( 'simplexml', 'simplexml.class.php' );
|
157 |
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
if ( false == is_array( $temp_data ) || false == isset( $temp_data['row'] ) || empty( $temp_data['row'] ) ) {
|
164 |
$this->imported_table = array();
|
@@ -230,6 +276,8 @@ class WP_Table_Reloaded_Import {
|
|
230 |
function pad_array_to_max_cols( $array_to_pad ){
|
231 |
$rows = count( $array_to_pad );
|
232 |
$max_columns = $this->count_max_columns( $array_to_pad );
|
|
|
|
|
233 |
// array_map wants arrays as additional parameters (so we create one with the max_cols to pad to and one with the value to use (empty string)
|
234 |
$max_columns_array = array_fill( 1, $rows, $max_columns );
|
235 |
$pad_values_array = array_fill( 1, $rows, '' );
|
@@ -241,19 +289,14 @@ class WP_Table_Reloaded_Import {
|
|
241 |
function count_max_columns( $array ){
|
242 |
$max_cols = 0 ;
|
243 |
if ( is_array( $array ) && 0 < count( $array ) ) {
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
}
|
249 |
return $max_cols;
|
250 |
}
|
251 |
|
252 |
-
// ###################################################################################################################
|
253 |
-
function add_slashes( $array ) {
|
254 |
-
return array_map( 'addslashes', $array );
|
255 |
-
}
|
256 |
-
|
257 |
// ###################################################################################################################
|
258 |
function get_table_meta() {
|
259 |
$table['name'] = $this->filename;
|
@@ -266,8 +309,25 @@ class WP_Table_Reloaded_Import {
|
|
266 |
function create_class_instance( $class, $file) {
|
267 |
if ( !class_exists( $class ) ) {
|
268 |
include_once ( WP_TABLE_RELOADED_ABSPATH . 'php/' . $file );
|
269 |
-
|
270 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
}
|
272 |
}
|
273 |
|
3 |
File Name: WP-Table Reloaded - Import Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: This plugin allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts or on your pages by using a shortcode. The plugin is greatly influenced by the plugin "wp-Table" by Alex Rabe, but was completely rewritten and uses the state-of-the-art WordPress techniques which makes it faster and lighter than the original plugin.
|
6 |
+
Version: 1.4
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
*/
|
12 |
class WP_Table_Reloaded_Import {
|
13 |
|
14 |
// ###################################################################################################################
|
15 |
+
var $import_class_version = '1.4';
|
16 |
|
17 |
// possible import formats
|
18 |
var $import_formats = array();
|
61 |
default:
|
62 |
$this->imported_table = array();
|
63 |
}
|
64 |
+
|
65 |
+
$this->fix_table_encoding();
|
66 |
+
|
67 |
}
|
68 |
|
69 |
// ###################################################################################################################
|
82 |
$temp_data = file_get_contents( $this->tempname );
|
83 |
break;
|
84 |
default:
|
85 |
+
// this should never happen
|
86 |
+
$this->imported_table = array();
|
87 |
+
$this->error = true;
|
88 |
+
return;
|
89 |
+
}
|
90 |
+
|
91 |
+
if ( empty( $temp_data ) ) {
|
92 |
+
$this->imported_table = array();
|
93 |
+
$this->error = true;
|
94 |
+
return;
|
95 |
}
|
96 |
|
97 |
$parseCSV->heading = false; // means: treat first row like all others
|
98 |
+
|
99 |
+
// different things have worked, but don't always
|
100 |
+
// none of the following: 1 of 3
|
101 |
+
//$parseCSV->encoding( 'ISO-8859-1', 'ISO-8859-1//IGNORE' ); // might need to play with this a little or offer an option // 1 of 3
|
102 |
+
//$parseCSV->encoding( 'ISO-8859-1', 'UTF-8//IGNORE' ); // might need to play with this a little or offer an option // 0 of 3
|
103 |
+
//$parseCSV->encoding( 'ISO-8859-1', 'UTF-8' ); // might need to play with this a little or offer an option // 0 of 3
|
104 |
+
//$parseCSV->encoding( 'Windows-1252', 'UTF-8//IGNORE' ); // might need to play with this a little or offer an option // 1 of 3
|
105 |
$parseCSV->load_data( $temp_data );
|
106 |
$parseCSV->auto(); // let parsecsv do its magic (determine delimiter and parse the data)
|
107 |
|
117 |
|
118 |
$simpleXML = $this->create_class_instance( 'simplexml', 'simplexml.class.php' );
|
119 |
|
120 |
+
switch ( $this->import_from ) {
|
121 |
+
case 'form-field':
|
122 |
+
case 'url':
|
123 |
+
$temp_data = $this->import_data;
|
124 |
+
break;
|
125 |
+
case 'file-upload':
|
126 |
+
case 'server':
|
127 |
+
$temp_data = file_get_contents( $this->tempname );
|
128 |
+
break;
|
129 |
+
default:
|
130 |
+
// this should never happen
|
131 |
+
$this->imported_table = array();
|
132 |
+
$this->error = true;
|
133 |
+
return;
|
134 |
+
}
|
135 |
+
|
136 |
+
if ( empty( $temp_data ) ) {
|
137 |
+
$this->imported_table = array();
|
138 |
+
$this->error = true;
|
139 |
+
return;
|
140 |
+
}
|
141 |
|
142 |
// extract table from html, pattern: <table> (with eventually class, id, ...
|
143 |
// . means any charactery (except newline),
|
190 |
|
191 |
$simpleXML = $this->create_class_instance( 'simplexml', 'simplexml.class.php' );
|
192 |
|
193 |
+
switch ( $this->import_from ) {
|
194 |
+
case 'form-field':
|
195 |
+
case 'url':
|
196 |
+
$temp_data = $simpleXML->xml_load_string( $this->import_data, 'array' );
|
197 |
+
break;
|
198 |
+
case 'file-upload':
|
199 |
+
case 'server':
|
200 |
+
$temp_data = $simpleXML->xml_load_file( $this->tempname, 'array' );
|
201 |
+
break;
|
202 |
+
default:
|
203 |
+
// this should never happen
|
204 |
+
$this->imported_table = array();
|
205 |
+
$this->error = true;
|
206 |
+
return;
|
207 |
+
}
|
208 |
|
209 |
if ( false == is_array( $temp_data ) || false == isset( $temp_data['row'] ) || empty( $temp_data['row'] ) ) {
|
210 |
$this->imported_table = array();
|
276 |
function pad_array_to_max_cols( $array_to_pad ){
|
277 |
$rows = count( $array_to_pad );
|
278 |
$max_columns = $this->count_max_columns( $array_to_pad );
|
279 |
+
$rows = ( 0 < $rows ) ? $rows : 1;
|
280 |
+
$max_columns = ( 0 < $max_columns ) ? $max_columns : 1;
|
281 |
// array_map wants arrays as additional parameters (so we create one with the max_cols to pad to and one with the value to use (empty string)
|
282 |
$max_columns_array = array_fill( 1, $rows, $max_columns );
|
283 |
$pad_values_array = array_fill( 1, $rows, '' );
|
289 |
function count_max_columns( $array ){
|
290 |
$max_cols = 0 ;
|
291 |
if ( is_array( $array ) && 0 < count( $array ) ) {
|
292 |
+
foreach ( $array as $row_idx => $row ) {
|
293 |
+
$cols = count( $row );
|
294 |
+
$max_cols = ( $cols > $max_cols ) ? $cols : $max_cols;
|
295 |
+
}
|
296 |
}
|
297 |
return $max_cols;
|
298 |
}
|
299 |
|
|
|
|
|
|
|
|
|
|
|
300 |
// ###################################################################################################################
|
301 |
function get_table_meta() {
|
302 |
$table['name'] = $this->filename;
|
309 |
function create_class_instance( $class, $file) {
|
310 |
if ( !class_exists( $class ) ) {
|
311 |
include_once ( WP_TABLE_RELOADED_ABSPATH . 'php/' . $file );
|
312 |
+
return new $class;
|
313 |
+
}
|
314 |
+
}
|
315 |
+
|
316 |
+
// ###################################################################################################################
|
317 |
+
// fixes the encoding to UTF-8
|
318 |
+
function fix_encoding( $string ) {
|
319 |
+
return ( 'UTF-8' == mb_detect_encoding( $string ) && mb_check_encoding( $string, 'UTF-8' ) ) ? $string : utf8_encode( $string );
|
320 |
+
}
|
321 |
+
|
322 |
+
// ###################################################################################################################
|
323 |
+
// fixes the encoding to UTF-8
|
324 |
+
function fix_table_encoding() {
|
325 |
+
$data = $this->imported_table['data'];
|
326 |
+
if ( is_array( $data ) && 0 < count( $data ) ) {
|
327 |
+
foreach ( $data as $row_idx => $row ) {
|
328 |
+
$data[$row_idx] = array_map( array( &$this, 'fix_encoding' ), $row );
|
329 |
+
}
|
330 |
+
$this->imported_table['data'] = $data;
|
331 |
}
|
332 |
}
|
333 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WP-Table Reloaded ===
|
2 |
Contributors: TobiasBg
|
3 |
Donate link: http://tobias.baethge.com/donate/
|
4 |
-
Tags: html,table,editor,csv,import,export,excel,widget,admin,sidebar
|
5 |
-
Requires at least: 2.
|
6 |
-
Tested up to: 2.8
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
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. 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.
|
10 |
|
@@ -17,14 +17,14 @@ The plugin is a completely rewritten and extended version of Alex Rabe's "wp-Tab
|
|
17 |
= More information =
|
18 |
Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
|
19 |
|
20 |
-
If you like this plugin, please rate it here in the WordPress Plugin Directory or make a donation. Thank you!
|
21 |
|
22 |
= Informationen auf Deutsch =
|
23 |
Dieses Plugin erlaubt die Verwaltung von Tabellen in WordPress.
|
24 |
|
25 |
Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/
|
26 |
|
27 |
-
Wenn
|
28 |
|
29 |
== Screenshots ==
|
30 |
|
@@ -37,11 +37,11 @@ Wenn die das Plugin gefällt, bewerte es bitte hier im WordPress Plugin Dire
|
|
37 |
|
38 |
== Installation ==
|
39 |
|
40 |
-
The easiest way
|
41 |
|
42 |
Manual Installation works just as for most other WordPress plugins:
|
43 |
|
44 |
-
1. Extract the zip file and just drop the folder "wp-table-reloaded" into the wp-content/plugins/ directory of your WordPress installation.
|
45 |
|
46 |
1. Activate the Plugin "WP-Table Reloaded" on your "Plugins" page.
|
47 |
|
@@ -51,7 +51,6 @@ Manual Installation works just as for most other WordPress plugins:
|
|
51 |
|
52 |
1. You might want to add styling features via your blog's theme's CSS file (probably style.css) or via the option in the "Plugin Options" screen, where you can enter your CSS directly.
|
53 |
|
54 |
-
|
55 |
== Frequently Asked Questions ==
|
56 |
|
57 |
= Can I use wp-Table and WP-Table Reloaded together? =
|
@@ -63,19 +62,19 @@ If WP-Table Reloaded finds the wp-Table database tables, it can import the found
|
|
63 |
|
64 |
If you find a bug or have a feature request, please don�t hesitate to tell me about it.
|
65 |
You would help a lot if you could add an issue ticket in the [issue tracker on Google Code](http://code.google.com/p/wp-table-reloaded/).
|
66 |
-
|
67 |
|
68 |
For other help or support questions (especially with CSS), please use the [WordPress Support Forums](http://wordpress.org/support/). Please [open a new topic](http://wordpress.org/tags/wp-table-reloaded?forum_id=10#postform) there (with the tag "wp-table-reloaded") and email me a link to the thread (or post it as a comment on the plugin website). Thank you!
|
69 |
You may also make feature requests using this method! Don't be shy!
|
70 |
|
71 |
= Requirements? =
|
72 |
|
73 |
-
In short: WordPress 2.
|
74 |
|
75 |
= Languages and Localization? =
|
76 |
|
77 |
The plugin currently includes the following languages:
|
78 |
-
Albanian, Belorussian, Brazilian Portuguese, Czech, English, French, German, Polish, Russian, Spanish, Swedish and Turkish.
|
79 |
|
80 |
I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en/) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
|
81 |
There is also a .pot-file available to use in the "languages" subfolder.
|
@@ -93,7 +92,7 @@ Everything should be self-explaining there.
|
|
93 |
|
94 |
To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=<the-id> /] to your post/page/text-widget, where <the-id> is the ID of your table (can be found on the left side of the "List tables" screen.)
|
95 |
|
96 |
-
After that you might want to change the style of the table. You can do this either by adding CSS to your theme's CSS stylesheet (probably style.css) or by entering it into the box on the "Plugin Options" screen.
|
97 |
You may also add certain features (like table-sorting, alternating row colors, print name and/or description, ...) by checking the appropriate options in the "Edit table" screen.
|
98 |
|
99 |
== Acknowledgements ==
|
@@ -107,10 +106,24 @@ Thanks to every donor, supporter and bug reporter!
|
|
107 |
|
108 |
This plugin is Free Software, released under the GPL version 2.
|
109 |
You may use it free of charge for any purposes.
|
110 |
-
I kindly ask you for link somewhere on your website http://tobias.baethge.com/. This is not required!
|
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
= Version 1.3 =
|
115 |
* fixed bug with shortcode in text widgets for WP 2.8
|
116 |
* added Brazilian Portuguese language file
|
1 |
=== WP-Table Reloaded ===
|
2 |
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: 2.6
|
6 |
+
Tested up to: 2.8.3
|
7 |
+
Stable tag: 1.4
|
8 |
|
9 |
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. 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.
|
10 |
|
17 |
= More information =
|
18 |
Please see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ .
|
19 |
|
20 |
+
If you like this plugin, please rate it here in the WordPress Plugin Directory or make a [donation](http://tobias.baethge.com/donate/). Thank you!
|
21 |
|
22 |
= Informationen auf Deutsch =
|
23 |
Dieses Plugin erlaubt die Verwaltung von Tabellen in WordPress.
|
24 |
|
25 |
Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/
|
26 |
|
27 |
+
Wenn dir das Plugin gefällt, bewerte es bitte hier im WordPress Plugin Directory oder [spende](http://tobias.baethge.com/donate/). Danke!
|
28 |
|
29 |
== Screenshots ==
|
30 |
|
37 |
|
38 |
== Installation ==
|
39 |
|
40 |
+
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).
|
41 |
|
42 |
Manual Installation works just as for most other WordPress plugins:
|
43 |
|
44 |
+
1. Download and Extract the zip file and just drop the folder "wp-table-reloaded" into the wp-content/plugins/ directory of your WordPress installation.
|
45 |
|
46 |
1. Activate the Plugin "WP-Table Reloaded" on your "Plugins" page.
|
47 |
|
51 |
|
52 |
1. You might want to add styling features via your blog's theme's CSS file (probably style.css) or via the option in the "Plugin Options" screen, where you can enter your CSS directly.
|
53 |
|
|
|
54 |
== Frequently Asked Questions ==
|
55 |
|
56 |
= Can I use wp-Table and WP-Table Reloaded together? =
|
62 |
|
63 |
If you find a bug or have a feature request, please don�t hesitate to tell me about it.
|
64 |
You would help a lot if you could add an issue ticket in the [issue tracker on Google Code](http://code.google.com/p/wp-table-reloaded/).
|
65 |
+
Feature requests may also posted in the comments on the plugin website.
|
66 |
|
67 |
For other help or support questions (especially with CSS), please use the [WordPress Support Forums](http://wordpress.org/support/). Please [open a new topic](http://wordpress.org/tags/wp-table-reloaded?forum_id=10#postform) there (with the tag "wp-table-reloaded") and email me a link to the thread (or post it as a comment on the plugin website). Thank you!
|
68 |
You may also make feature requests using this method! Don't be shy!
|
69 |
|
70 |
= Requirements? =
|
71 |
|
72 |
+
In short: WordPress 2.6 or higher
|
73 |
|
74 |
= Languages and Localization? =
|
75 |
|
76 |
The plugin currently includes the following languages:
|
77 |
+
Albanian, Belorussian, Brazilian Portuguese, Czech, English, French, German, Italian, Japanese, Polish, Russian, Spanish, Swedish and Turkish.
|
78 |
|
79 |
I'd really appreciate it, if you would translate the plugin into your language! Using Heiko Rabe's WordPress plugin [Codestyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en/) that really is as easy as pie. Just install the plugin, add your language, create the .po-file, translate the strings in the comfortable editor and create the .mo-file. It will automatically be saved in WP-Table Reloaded's plugin folder. If you send me the .mo- and .po-file, I will gladly include them into future plugin releases.
|
80 |
There is also a .pot-file available to use in the "languages" subfolder.
|
92 |
|
93 |
To show one of your tables in a post, on a page or in a text widget, just include the shortcode [table id=<the-id> /] to your post/page/text-widget, where <the-id> is the ID of your table (can be found on the left side of the "List tables" screen.)
|
94 |
|
95 |
+
After that you might want to change the style of the table. You can do this either by adding CSS to your theme's CSS stylesheet (probably style.css) or by entering it into the box on the "Plugin Options" screen. There are two example styles available on the [plugin website](http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/#usage)
|
96 |
You may also add certain features (like table-sorting, alternating row colors, print name and/or description, ...) by checking the appropriate options in the "Edit table" screen.
|
97 |
|
98 |
== Acknowledgements ==
|
106 |
|
107 |
This plugin is Free Software, released under the GPL version 2.
|
108 |
You may use it free of charge for any purposes.
|
109 |
+
I kindly ask you for link somewhere on your website to http://tobias.baethge.com/. This is not required!
|
110 |
+
I'm also happy about [donations](http://tobias.baethge.com/donate/) or something from [my wishlist](http://tobias.baethge.com/wishlist)! Thanks!
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= Version 1.4 =
|
115 |
+
* restyled "List of Tables" to suit WP 2.7/2.8 layout, list now sortable
|
116 |
+
* added Table and shortcode Preview in the backend
|
117 |
+
* "Insert Image" now allows inserting images from the WP Media Library
|
118 |
+
* added possibility to show/hide rows/columns with checkboxes in the backend
|
119 |
+
* textarea for cell data now grows when focussed
|
120 |
+
* added "Custom Data Fields" to be able to store table meta data, accessible with a shortcode
|
121 |
+
* added "Last edited" (time and user) information
|
122 |
+
* fixed many minor bugs, errors and glitches (improved HTML validation)
|
123 |
+
* optimized and restructured big parts of the code
|
124 |
+
* dropped support for WordPress 2.5
|
125 |
+
* added Italian and Japanese language files
|
126 |
+
|
127 |
= Version 1.3 =
|
128 |
* fixed bug with shortcode in text widgets for WP 2.8
|
129 |
* added Brazilian Portuguese language file
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|
screenshot-4.png
CHANGED
Binary file
|
screenshot-5.png
CHANGED
Binary file
|
screenshot-6.png
CHANGED
Binary file
|
wp-table-reloaded-admin.php
CHANGED
@@ -3,9 +3,10 @@
|
|
3 |
File Name: WP-Table Reloaded - Admin Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: 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.
|
6 |
-
Version: 1.
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
|
|
9 |
*/
|
10 |
|
11 |
define( 'WP_TABLE_RELOADED_TEXTDOMAIN', 'wp-table-reloaded' );
|
@@ -13,9 +14,10 @@ define( 'WP_TABLE_RELOADED_TEXTDOMAIN', 'wp-table-reloaded' );
|
|
13 |
class WP_Table_Reloaded_Admin {
|
14 |
|
15 |
// ###################################################################################################################
|
16 |
-
var $plugin_version = '1.
|
17 |
// nonce for security of links/forms, try to prevent "CSRF"
|
18 |
var $nonce_base = 'wp-table-reloaded-nonce';
|
|
|
19 |
// names for the options which are stored in the WP database
|
20 |
var $optionname = array(
|
21 |
'tables' => 'wp_table_reloaded_tables',
|
@@ -23,41 +25,54 @@ class WP_Table_Reloaded_Admin {
|
|
23 |
'table' => 'wp_table_reloaded_data'
|
24 |
);
|
25 |
// allowed actions in this class
|
26 |
-
var $allowed_actions = array( 'list', 'add', 'edit', 'bulk_edit', 'copy', 'delete', 'insert', 'import', 'export', 'options', 'uninstall', 'info' ); // 'ajax_list', but handled separatly
|
|
|
|
|
27 |
|
28 |
// init vars
|
29 |
var $tables = array();
|
30 |
var $options = array();
|
31 |
|
32 |
-
// default values, could be different in future plugin
|
33 |
var $default_options = array(
|
34 |
'installed_version' => '0',
|
35 |
'uninstall_upon_deactivation' => false,
|
36 |
'enable_tablesorter' => true,
|
|
|
37 |
'use_custom_css' => true,
|
38 |
-
'custom_css' => '
|
|
|
|
|
|
|
39 |
'last_id' => 0
|
40 |
);
|
41 |
var $default_tables = array();
|
42 |
var $default_table = array(
|
43 |
'id' => 0,
|
44 |
'data' => array( 0 => array( 0 => '' ) ),
|
45 |
-
'name' => '
|
46 |
-
'description' => '
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
'options' => array(
|
48 |
'alternating_row_colors' => true,
|
49 |
'first_row_th' => true,
|
50 |
'print_name' => false,
|
51 |
'print_description' => false,
|
52 |
'use_tablesorter' => true
|
53 |
-
)
|
|
|
54 |
);
|
55 |
|
56 |
// class instances
|
57 |
var $export_instance;
|
58 |
var $import_instance;
|
59 |
|
60 |
-
//
|
61 |
var $hook = '';
|
62 |
|
63 |
// ###################################################################################################################
|
@@ -66,33 +81,52 @@ class WP_Table_Reloaded_Admin {
|
|
66 |
// init plugin (means: load plugin options and existing tables)
|
67 |
$this->init_plugin();
|
68 |
|
69 |
-
|
|
|
|
|
70 |
|
71 |
-
//
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
|
76 |
// have to check for possible export file download request this early,
|
77 |
// because otherwise http-headers will be sent by WP before we can send download headers
|
78 |
-
if ( isset( $_POST['
|
79 |
-
|
|
|
|
|
80 |
}
|
81 |
-
|
82 |
// have to check for possible call by editor button to show list of tables
|
83 |
-
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
}
|
86 |
}
|
87 |
|
88 |
// ###################################################################################################################
|
89 |
// add page, and what happens when page is loaded or shown
|
90 |
function add_manage_page() {
|
91 |
-
$min_needed_capability = 'publish_posts'; // user needs at least this capability to
|
92 |
-
$this->hook = add_management_page( 'WP-Table Reloaded', 'WP-Table Reloaded', $min_needed_capability,
|
93 |
add_action( 'load-' . $this->hook, array( &$this, 'load_manage_page' ) );
|
94 |
}
|
95 |
-
|
96 |
// ###################################################################################################################
|
97 |
// only load the scripts, stylesheets and language by hook, if this admin page will be shown
|
98 |
// all of this will be done before the page is shown by show_manage_page()
|
@@ -102,22 +136,35 @@ class WP_Table_Reloaded_Admin {
|
|
102 |
add_action( 'admin_footer', array( &$this, 'add_manage_page_js' ) ); // can be put in footer, jQuery will be loaded anyway
|
103 |
$this->add_manage_page_css();
|
104 |
|
|
|
|
|
|
|
105 |
// init language support
|
106 |
$this->init_language_support();
|
107 |
-
|
108 |
-
if ( true == function_exists( 'add_contextual_help' ) ) // then WP version is >= 2.7
|
109 |
-
add_contextual_help( $this->hook, $this->get_contextual_help_string() );
|
110 |
-
}
|
111 |
|
112 |
-
// ###################################################################################################################
|
113 |
-
function show_manage_page() {
|
114 |
// get and check action parameter from passed variables
|
115 |
$action = ( isset( $_REQUEST['action'] ) && !empty( $_REQUEST['action'] ) ) ? $_REQUEST['action'] : 'list';
|
116 |
// check if action is in allowed actions and if method is callable, if yes, call it
|
117 |
-
if ( in_array( $action, $this->allowed_actions )
|
118 |
-
|
119 |
-
|
120 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
}
|
122 |
|
123 |
// ###################################################################################################################
|
@@ -128,7 +175,19 @@ class WP_Table_Reloaded_Admin {
|
|
128 |
|
129 |
// ###################################################################################################################
|
130 |
// list all tables
|
131 |
-
function do_action_list()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
$this->print_list_tables_form();
|
133 |
}
|
134 |
|
@@ -144,12 +203,14 @@ class WP_Table_Reloaded_Admin {
|
|
144 |
|
145 |
$table['id'] = $this->get_new_table_id();
|
146 |
$table['data'] = $this->create_empty_table( $rows, $cols );
|
|
|
|
|
147 |
$table['name'] = $_POST['table']['name'];
|
148 |
$table['description'] = $_POST['table']['description'];
|
149 |
|
150 |
$this->save_table( $table );
|
151 |
|
152 |
-
$this->
|
153 |
$this->print_edit_table_form( $table['id'] );
|
154 |
} else {
|
155 |
$this->print_add_table_form();
|
@@ -184,11 +245,24 @@ class WP_Table_Reloaded_Admin {
|
|
184 |
} else {
|
185 |
$message = __( 'Table edited successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
186 |
}
|
|
|
187 |
$table['options']['alternating_row_colors'] = isset( $_POST['table']['options']['alternating_row_colors'] );
|
188 |
$table['options']['first_row_th'] = isset( $_POST['table']['options']['first_row_th'] );
|
189 |
$table['options']['print_name'] = isset( $_POST['table']['options']['print_name'] );
|
190 |
$table['options']['print_description'] = isset( $_POST['table']['options']['print_description'] );
|
191 |
$table['options']['use_tablesorter'] = isset( $_POST['table']['options']['use_tablesorter'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
$this->save_table( $table );
|
193 |
break;
|
194 |
case 'swap_rows':
|
@@ -198,11 +272,13 @@ class WP_Table_Reloaded_Admin {
|
|
198 |
$table = $this->load_table( $table_id );
|
199 |
$rows = count( $table['data'] );
|
200 |
// swap rows $row_id1 and $row_id2
|
201 |
-
if ( ( 1 < $rows ) && ( -1 < $row_id1 ) && ( -1 < $row_id2 ) ) {
|
202 |
$temp_row = $table['data'][$row_id1];
|
203 |
$table['data'][$row_id1] = $table['data'][$row_id2];
|
204 |
$table['data'][$row_id2] = $temp_row;
|
205 |
-
|
|
|
|
|
206 |
}
|
207 |
$this->save_table( $table );
|
208 |
$message = __( 'Rows swapped successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
@@ -215,13 +291,15 @@ class WP_Table_Reloaded_Admin {
|
|
215 |
$rows = count( $table['data'] );
|
216 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
217 |
// swap rows $col_id1 and $col_id2
|
218 |
-
if ( ( 1 < $cols ) && ( -1 < $col_id1 ) && ( -1 < $col_id2 ) ) {
|
219 |
-
|
220 |
$temp_col = $table['data'][$row_idx][$col_id1];
|
221 |
$table['data'][$row_idx][$col_id1] = $table['data'][$row_idx][$col_id2];
|
222 |
$table['data'][$row_idx][$col_id2] = $temp_col;
|
223 |
}
|
224 |
-
|
|
|
|
|
225 |
}
|
226 |
$this->save_table( $table );
|
227 |
$message = __( 'Columns swapped successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
@@ -229,57 +307,149 @@ class WP_Table_Reloaded_Admin {
|
|
229 |
case 'sort':
|
230 |
$table_id = $_POST['table']['id'];
|
231 |
$column = ( isset( $_POST['sort']['col'] ) ) ? $_POST['sort']['col'] : -1;
|
232 |
-
$sort_order= ( isset( $_POST['sort']['order'] ) ) ? $_POST['sort']['order'] : 'ASC';
|
233 |
$table = $this->load_table( $table_id );
|
234 |
$rows = count( $table['data'] );
|
|
|
235 |
// sort array for $column in $sort_order
|
236 |
if ( ( 1 < $rows ) && ( -1 < $column ) ) {
|
|
|
|
|
|
|
|
|
|
|
237 |
$sortarray = $this->create_class_instance( 'arraysort', 'arraysort.class.php' );
|
238 |
$sortarray->input_array = $table['data'];
|
239 |
$sortarray->column = $column;
|
240 |
$sortarray->order = $sort_order;
|
241 |
$sortarray->sort();
|
242 |
$table['data'] = $sortarray->sorted_array;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
}
|
244 |
$this->save_table( $table );
|
245 |
$message = __( 'Table sorted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
246 |
break;
|
247 |
case 'insert_rows':
|
248 |
$table_id = $_POST['table']['id'];
|
249 |
-
$number = ( isset( $_POST['insert']['row']['number'] ) && ( 0 <
|
250 |
$row_id = $_POST['insert']['row']['id'];
|
251 |
$table = $this->load_table( $table_id );
|
252 |
$rows = count( $table['data'] );
|
253 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
254 |
// init new empty row (with all columns) and insert it before row with key $row_id
|
255 |
$new_rows = $this->create_empty_table( $number, $cols, '' );
|
|
|
256 |
array_splice( $table['data'], $row_id, 0, $new_rows );
|
|
|
257 |
$this->save_table( $table );
|
258 |
$message = __ngettext( 'Row added successfully.', 'Rows added successfully.', $number, WP_TABLE_RELOADED_TEXTDOMAIN );
|
259 |
break;
|
260 |
case 'insert_cols':
|
261 |
$table_id = $_POST['table']['id'];
|
262 |
-
$number = ( isset( $_POST['insert']['col']['number'] ) && ( 0 <
|
263 |
$col_id = $_POST['insert']['col']['id'];
|
264 |
$table = $this->load_table( $table_id );
|
265 |
-
// init new empty row (with all columns) and insert it before row with key $
|
266 |
-
$
|
|
|
267 |
foreach ( $table['data'] as $row_idx => $row )
|
268 |
-
array_splice( $table['data'][$row_idx], $col_id, 0, $
|
|
|
269 |
$this->save_table( $table );
|
270 |
$message = __ngettext( 'Column added successfully.', 'Columns added successfully.', $number, WP_TABLE_RELOADED_TEXTDOMAIN );
|
271 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
default:
|
273 |
$this->do_action_list();
|
|
|
274 |
}
|
275 |
|
276 |
-
$this->
|
277 |
if ( 'save_back' == $subaction ) {
|
278 |
$this->do_action_list();
|
279 |
} else {
|
280 |
$this->print_edit_table_form( $table['id'] );
|
281 |
}
|
282 |
-
} elseif ( isset( $_GET['table_id'] ) ) {
|
283 |
$this->print_edit_table_form( $_GET['table_id'] );
|
284 |
} else {
|
285 |
$this->do_action_list();
|
@@ -322,6 +492,14 @@ class WP_Table_Reloaded_Admin {
|
|
322 |
$this->import_instance->import_table();
|
323 |
$imported_table = $this->import_instance->imported_table;
|
324 |
$table = array_merge( $this->default_table, $imported_table );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
$table['id'] = $this->get_new_table_id();
|
326 |
$this->save_table( $table );
|
327 |
}
|
@@ -334,7 +512,7 @@ class WP_Table_Reloaded_Admin {
|
|
334 |
} else {
|
335 |
$message = __( 'You did not select any tables!', WP_TABLE_RELOADED_TEXTDOMAIN );
|
336 |
}
|
337 |
-
$this->
|
338 |
}
|
339 |
$this->do_action_list();
|
340 |
}
|
@@ -354,7 +532,7 @@ class WP_Table_Reloaded_Admin {
|
|
354 |
|
355 |
$this->save_table( $new_table );
|
356 |
|
357 |
-
$this->
|
358 |
}
|
359 |
$this->do_action_list();
|
360 |
}
|
@@ -370,7 +548,7 @@ class WP_Table_Reloaded_Admin {
|
|
370 |
switch( $_GET['item'] ) {
|
371 |
case 'table':
|
372 |
$this->delete_table( $table_id );
|
373 |
-
$this->
|
374 |
$this->do_action_list();
|
375 |
break;
|
376 |
case 'row':
|
@@ -379,8 +557,9 @@ class WP_Table_Reloaded_Admin {
|
|
379 |
// delete row with key $row_id, if there are at least 2 rows
|
380 |
if ( ( 1 < $rows ) && ( -1 < $row_id ) ) {
|
381 |
array_splice( $table['data'], $row_id, 1 );
|
|
|
382 |
$this->save_table( $table );
|
383 |
-
$this->
|
384 |
}
|
385 |
$this->print_edit_table_form( $table_id );
|
386 |
break;
|
@@ -392,13 +571,26 @@ class WP_Table_Reloaded_Admin {
|
|
392 |
if ( ( 1 < $cols ) && ( -1 < $col_id ) ) {
|
393 |
foreach ( $table['data'] as $row_idx => $row )
|
394 |
array_splice( $table['data'][$row_idx], $col_id, 1 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
$this->save_table( $table );
|
396 |
-
$
|
|
|
|
|
397 |
}
|
|
|
398 |
$this->print_edit_table_form( $table_id );
|
399 |
break;
|
400 |
default:
|
401 |
-
$this->
|
402 |
$this->do_action_list();
|
403 |
} // end switch
|
404 |
} else {
|
@@ -422,6 +614,7 @@ class WP_Table_Reloaded_Admin {
|
|
422 |
// init new empty row (with all columns) and insert it before row with key $row_id
|
423 |
$new_row = array( array_fill( 0, $cols, '' ) );
|
424 |
array_splice( $table['data'], $row_id, 0, $new_row );
|
|
|
425 |
$this->save_table( $table );
|
426 |
$message = __( 'Row inserted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
427 |
break;
|
@@ -431,13 +624,14 @@ class WP_Table_Reloaded_Admin {
|
|
431 |
$new_col = '';
|
432 |
foreach ( $table['data'] as $row_idx => $row )
|
433 |
array_splice( $table['data'][$row_idx], $col_id, 0, $new_col );
|
|
|
434 |
$this->save_table( $table );
|
435 |
$message = __( 'Column inserted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
436 |
break;
|
437 |
default:
|
438 |
$message = __( 'Insert failed.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
439 |
}
|
440 |
-
$this->
|
441 |
$this->print_edit_table_form( $table_id );
|
442 |
} else {
|
443 |
$this->do_action_list();
|
@@ -486,15 +680,16 @@ class WP_Table_Reloaded_Admin {
|
|
486 |
$this->import_instance->mimetype = sprintf( __( 'from %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $_POST['import_url'] );
|
487 |
$this->import_instance->import_from = 'url';
|
488 |
$url = clean_url( $_POST['import_url'] );
|
489 |
-
$
|
|
|
490 |
$this->import_instance->import_format = $_POST['import_format'];
|
491 |
$this->import_instance->import_table();
|
492 |
$error = $this->import_instance->error;
|
493 |
$imported_table = $this->import_instance->imported_table;
|
494 |
} else { // no valid data submitted
|
495 |
-
$this->
|
496 |
$this->print_import_table_form();
|
497 |
-
|
498 |
}
|
499 |
|
500 |
$table = array_merge( $this->default_table, $imported_table );
|
@@ -511,16 +706,22 @@ class WP_Table_Reloaded_Admin {
|
|
511 |
$success_message = sprintf( __( 'Table imported successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
512 |
}
|
513 |
|
514 |
-
$
|
|
|
|
|
|
|
|
|
|
|
515 |
|
516 |
if ( false == $error ) {
|
517 |
-
$this->
|
|
|
518 |
$this->print_edit_table_form( $table['id'] );
|
519 |
} else {
|
520 |
-
$this->
|
521 |
$this->print_import_table_form();
|
522 |
}
|
523 |
-
} elseif (
|
524 |
check_admin_referer( $this->get_nonce( 'import' ) );
|
525 |
|
526 |
// do import
|
@@ -531,11 +732,16 @@ class WP_Table_Reloaded_Admin {
|
|
531 |
|
532 |
$table = array_merge( $this->default_table, $imported_table );
|
533 |
|
|
|
|
|
|
|
|
|
|
|
534 |
$table['id'] = $this->get_new_table_id();
|
535 |
|
536 |
$this->save_table( $table );
|
537 |
|
538 |
-
$this->
|
539 |
$this->print_edit_table_form( $table['id'] );
|
540 |
} else {
|
541 |
$this->print_import_table_form();
|
@@ -556,17 +762,18 @@ class WP_Table_Reloaded_Admin {
|
|
556 |
$this->export_instance->export_table();
|
557 |
$exported_table = $this->export_instance->exported_table;
|
558 |
|
559 |
-
if ( isset( $_POST['
|
560 |
$filename = $table_to_export['id'] . '-' . $table_to_export['name'] . '-' . date('Y-m-d') . '.' . $_POST['export_format'];
|
561 |
$this->prepare_download( $filename, strlen( $exported_table ), 'text/' . $_POST['export_format'] );
|
562 |
echo $exported_table;
|
563 |
exit;
|
564 |
} else {
|
565 |
-
$this->
|
566 |
$this->print_export_table_form( $_POST['table_id'], $exported_table );
|
567 |
}
|
568 |
} else {
|
569 |
-
$
|
|
|
570 |
}
|
571 |
}
|
572 |
|
@@ -580,6 +787,8 @@ class WP_Table_Reloaded_Admin {
|
|
580 |
// checkboxes: option value is defined by whether option isset (e.g. was checked) or not
|
581 |
$this->options['uninstall_upon_deactivation'] = isset( $new_options['uninstall_upon_deactivation'] );
|
582 |
$this->options['enable_tablesorter'] = isset( $new_options['enable_tablesorter'] );
|
|
|
|
|
583 |
$this->options['use_custom_css'] = isset( $new_options['use_custom_css'] );
|
584 |
// clean up CSS style input (if user enclosed it into <style...></style>
|
585 |
if ( isset( $new_options['custom_css'] ) ) {
|
@@ -590,7 +799,7 @@ class WP_Table_Reloaded_Admin {
|
|
590 |
|
591 |
$this->update_options();
|
592 |
|
593 |
-
$this->
|
594 |
}
|
595 |
$this->print_plugin_options_form();
|
596 |
}
|
@@ -606,11 +815,11 @@ class WP_Table_Reloaded_Admin {
|
|
606 |
$plugin = WP_TABLE_RELOADED_BASENAME;
|
607 |
deactivate_plugins( $plugin );
|
608 |
if ( false !== get_option( 'recently_activated', false ) )
|
609 |
-
update_option( 'recently_activated', array( $plugin => time()) + (array)get_option( 'recently_activated' ) );
|
610 |
|
611 |
$this->print_page_header( __( 'WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
612 |
-
$this->
|
613 |
-
echo "<p>" . __(
|
614 |
$this->print_page_footer();
|
615 |
}
|
616 |
|
@@ -628,13 +837,15 @@ class WP_Table_Reloaded_Admin {
|
|
628 |
|
629 |
$this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
630 |
?>
|
631 |
-
<div style="clear:both;"><p
|
632 |
-
|
|
|
|
|
633 |
<?php
|
634 |
if ( 0 < count( $this->tables ) ) {
|
635 |
?>
|
636 |
<div style="clear:both;">
|
637 |
-
<table class="widefat"
|
638 |
<thead>
|
639 |
<tr>
|
640 |
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
@@ -643,12 +854,20 @@ class WP_Table_Reloaded_Admin {
|
|
643 |
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
644 |
</tr>
|
645 |
</thead>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
<tbody>
|
647 |
<?php
|
648 |
$bg_style_index = 0;
|
649 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
650 |
$bg_style_index++;
|
651 |
-
$bg_style = (
|
652 |
|
653 |
// get name and description to show in list
|
654 |
$table = $this->load_table( $id );
|
@@ -677,6 +896,69 @@ class WP_Table_Reloaded_Admin {
|
|
677 |
exit;
|
678 |
}
|
679 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
// ###################################################################################################################
|
681 |
// ########################################## ####################################################
|
682 |
// ########################################## Print Forms ####################################################
|
@@ -686,7 +968,7 @@ class WP_Table_Reloaded_Admin {
|
|
686 |
// ###################################################################################################################
|
687 |
// list all tables
|
688 |
function print_list_tables_form() {
|
689 |
-
$this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
690 |
$this->print_submenu_navigation( 'list' );
|
691 |
?>
|
692 |
<div style="clear:both;"><p><?php _e( 'This is a list of all available tables.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You may add, edit, copy or delete tables here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br />
|
@@ -697,43 +979,66 @@ class WP_Table_Reloaded_Admin {
|
|
697 |
<div style="clear:both;">
|
698 |
<form method="post" action="<?php echo $this->get_action_url(); ?>">
|
699 |
<?php wp_nonce_field( $this->get_nonce( 'bulk_edit' ) ); ?>
|
700 |
-
<table class="widefat">
|
701 |
<thead>
|
702 |
<tr>
|
703 |
<th class="check-column" scope="col"><input type="checkbox" /></th>
|
704 |
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
705 |
<th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
706 |
<th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
707 |
-
<th scope="col"><?php _e( '
|
708 |
</tr>
|
709 |
</thead>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
710 |
<?php
|
711 |
-
echo "<tbody>\n";
|
712 |
$bg_style_index = 0;
|
713 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
714 |
$bg_style_index++;
|
715 |
-
$bg_style = (
|
716 |
|
717 |
// get name and description to show in list
|
718 |
$table = $this->load_table( $id );
|
719 |
-
$name = $this->safe_output( $table['name'] );
|
720 |
-
$description = $this->safe_output( $table['description'] );
|
|
|
|
|
|
|
|
|
721 |
unset( $table );
|
722 |
|
723 |
$edit_url = $this->get_action_url( array( 'action' => 'edit', 'table_id' => $id ), false );
|
724 |
$copy_url = $this->get_action_url( array( 'action' => 'copy', 'table_id' => $id ), true );
|
725 |
$export_url = $this->get_action_url( array( 'action' => 'export', 'table_id' => $id ), false );
|
726 |
$delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $id, 'item' => 'table' ), true );
|
727 |
-
|
728 |
-
|
729 |
-
echo "
|
730 |
-
echo "<th scope=\"row\"
|
731 |
-
echo "<
|
732 |
-
echo "<td
|
733 |
-
echo "<
|
|
|
|
|
|
|
|
|
734 |
echo "<a class=\"copy_table_link\" href=\"{$copy_url}\">" . __( 'Copy', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
|
735 |
echo "<a href=\"{$export_url}\">" . __( 'Export', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
|
736 |
-
echo "<a class=\"delete_table_link
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
echo "</tr>\n";
|
738 |
|
739 |
}
|
@@ -753,8 +1058,10 @@ class WP_Table_Reloaded_Admin {
|
|
753 |
echo "<div style=\"clear:both;\"><p>" . __( 'No tables found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . '<br/>' . sprintf( __( 'You might <a href="%s">add</a> or <a href="%s">import</a> one!', WP_TABLE_RELOADED_TEXTDOMAIN ), $add_url, $import_url ) . "</p></div>";
|
754 |
}
|
755 |
$this->print_page_footer();
|
|
|
|
|
756 |
}
|
757 |
-
|
758 |
// ###################################################################################################################
|
759 |
function print_add_table_form() {
|
760 |
// Begin Add Table Form
|
@@ -762,28 +1069,28 @@ class WP_Table_Reloaded_Admin {
|
|
762 |
$this->print_submenu_navigation( 'add' );
|
763 |
?>
|
764 |
<div style="clear:both;">
|
765 |
-
<p><?php _e( 'You can add a new table here. Just enter
|
766 |
</div>
|
767 |
<div style="clear:both;">
|
768 |
<form method="post" action="<?php echo $this->get_action_url(); ?>">
|
769 |
<?php wp_nonce_field( $this->get_nonce( 'add' ) ); ?>
|
770 |
|
771 |
-
<table class="wp-table-reloaded-options">
|
772 |
<tr valign="top">
|
773 |
-
<th scope="row"><label for="
|
774 |
-
<td><input type="text" name="table[name]" value="<?php _e( 'Enter Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" style="width:
|
775 |
</tr>
|
776 |
<tr valign="top">
|
777 |
-
<th scope="row"><label for="
|
778 |
-
<td><textarea name="table[description]" id="
|
779 |
</tr>
|
780 |
<tr valign="top">
|
781 |
-
<th scope="row"><label for="
|
782 |
-
<td><input type="text" name="table[rows]" id="
|
783 |
</tr>
|
784 |
<tr valign="top">
|
785 |
-
<th scope="row"><label for="
|
786 |
-
<td><input type="text" name="table[cols]" id="
|
787 |
</tr>
|
788 |
</table>
|
789 |
|
@@ -800,36 +1107,43 @@ class WP_Table_Reloaded_Admin {
|
|
800 |
|
801 |
// ###################################################################################################################
|
802 |
function print_edit_table_form( $table_id ) {
|
803 |
-
|
804 |
$table = $this->load_table( $table_id );
|
805 |
|
806 |
$rows = count( $table['data'] );
|
807 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
808 |
|
809 |
-
$this->print_page_header( sprintf( __( 'Edit Table "%s"', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] )
|
810 |
$this->print_submenu_navigation( 'edit' );
|
811 |
?>
|
812 |
<div style="clear:both;"><p><?php _e( 'You may edit the content of the table here. It is also possible to add or delete columns and rows.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br />
|
813 |
-
<?php echo sprintf( __( '
|
814 |
<form method="post" action="<?php echo $this->get_action_url(); ?>">
|
815 |
<?php wp_nonce_field( $this->get_nonce( 'edit' ) ); ?>
|
|
|
|
|
816 |
|
817 |
<div class="postbox">
|
818 |
<h3 class="hndle"><span><?php _e( 'Table Information', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
819 |
<div class="inside">
|
820 |
-
<table class="wp-table-reloaded-
|
821 |
<tr valign="top">
|
822 |
<th scope="row"><label for="table_id"><?php _e( 'Table ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
823 |
-
<td><input type="text" name="table_id" id="table_id" value="<?php echo $this->safe_output( $table['id'] ); ?>" style="width:
|
824 |
</tr>
|
825 |
<tr valign="top">
|
826 |
-
<th scope="row"><label for="
|
827 |
-
<td><input type="text" name="table[name]" id="
|
828 |
</tr>
|
829 |
<tr valign="top">
|
830 |
-
<th scope="row"><label for="
|
831 |
-
<td><textarea name="table[description]" id="
|
832 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
</table>
|
834 |
</div>
|
835 |
</div>
|
@@ -848,86 +1162,115 @@ class WP_Table_Reloaded_Admin {
|
|
848 |
<h3 class="hndle"><span><?php _e( 'Table Contents', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
849 |
<div class="inside">
|
850 |
<table class="widefat" style="width:auto;" id="table_contents">
|
|
|
|
|
|
|
|
|
|
|
|
|
851 |
<thead>
|
852 |
<tr>
|
853 |
-
<th> </th>
|
854 |
-
<?php
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
?>
|
859 |
-
<th> </th>
|
860 |
</tr>
|
861 |
</thead>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
862 |
<tbody>
|
863 |
<?php
|
864 |
foreach ( $table['data'] as $row_idx => $table_row ) {
|
865 |
echo "<tr>\n";
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
echo "
|
880 |
-
|
|
|
|
|
|
|
881 |
}
|
882 |
-
|
883 |
-
|
884 |
echo "<tr>\n";
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
|
895 |
// add rows/columns buttons
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
906 |
echo "</tr>";
|
907 |
?>
|
908 |
</tbody>
|
909 |
</table>
|
910 |
</div>
|
911 |
</div>
|
912 |
-
<?php } //endif ?>
|
913 |
-
<div class="postbox">
|
914 |
-
<h3 class="hndle"><span><?php _e( 'Data Manipulation', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
915 |
-
<div class="inside">
|
916 |
-
<table class="wp-table-reloaded-data-manipulation"><tr><td>
|
917 |
-
<?php if ( 1 < $rows ) { // swap rows form
|
918 |
|
|
|
|
|
|
|
|
|
|
|
|
|
919 |
$row1_select = '<select name="swap[row][1]">';
|
920 |
-
foreach ( $table['data'] as $row_idx => $table_row )
|
921 |
-
$row1_select .= "<option value=\"{$row_idx}\">" . ( $row_idx + 1 ) . "</option>";
|
922 |
-
$row1_select .= '</select>';
|
923 |
-
|
924 |
$row2_select = '<select name="swap[row][2]">';
|
925 |
-
foreach ( $table['data'] as $row_idx => $table_row )
|
926 |
-
|
|
|
|
|
|
|
927 |
$row2_select .= '</select>';
|
928 |
|
929 |
echo sprintf( __( 'Swap rows %s and %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $row1_select, $row2_select );
|
930 |
-
|
931 |
?>
|
932 |
<input type="submit" name="submit[swap_rows]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
933 |
<?php } // end if form swap rows ?>
|
@@ -935,26 +1278,68 @@ class WP_Table_Reloaded_Admin {
|
|
935 |
<?php if ( 1 < $cols ) { // swap cols form ?>
|
936 |
<br/>
|
937 |
<?php
|
938 |
-
|
939 |
$col1_select = '<select name="swap[col][1]">';
|
940 |
-
foreach ( $table['data'][0] as $col_idx => $cell_content )
|
941 |
-
$col1_select .= "<option value=\"{$col_idx}\">" . ( chr( ord( 'A' ) + $col_idx ) ) . "</option>";
|
942 |
-
$col1_select .= '</select>';
|
943 |
-
|
944 |
$col2_select = '<select name="swap[col][2]">';
|
945 |
-
foreach ( $table['data'][0] as $col_idx => $cell_content )
|
946 |
-
$
|
|
|
|
|
|
|
|
|
947 |
$col2_select .= '</select>';
|
948 |
|
949 |
echo sprintf( __( 'Swap columns %s and %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $col1_select, $col2_select );
|
950 |
-
|
951 |
?>
|
952 |
<input type="submit" name="submit[swap_cols]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
953 |
<?php } // end if form swap cols ?>
|
954 |
-
</td><td>
|
955 |
-
|
956 |
-
|
957 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
958 |
<?php if ( 1 < $rows ) { // sort form
|
959 |
|
960 |
$col_select = '<select name="sort[col]">';
|
@@ -972,13 +1357,20 @@ class WP_Table_Reloaded_Admin {
|
|
972 |
?>
|
973 |
<input type="submit" name="submit[sort]" class="button-primary" value="<?php _e( 'Sort', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
974 |
<?php } // end if sort form ?>
|
975 |
-
</td>
|
976 |
-
</
|
977 |
-
</table>
|
978 |
</div>
|
979 |
</div>
|
980 |
-
|
981 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
982 |
<div class="postbox">
|
983 |
<h3 class="hndle"><span><?php _e( 'Table Settings', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
984 |
<div class="inside">
|
@@ -986,47 +1378,102 @@ class WP_Table_Reloaded_Admin {
|
|
986 |
<table class="wp-table-reloaded-options">
|
987 |
<tr valign="top">
|
988 |
<th scope="row"><?php _e( 'Alternating row colors', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
989 |
-
<td><input type="checkbox" name="table[options][alternating_row_colors]" id="
|
990 |
</tr>
|
991 |
-
<tr valign="top"
|
992 |
<th scope="row"><?php _e( 'Use Table Headline', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
993 |
-
<td><input type="checkbox" name="table[options][first_row_th]" id="
|
994 |
</tr>
|
995 |
<tr valign="top">
|
996 |
<th scope="row"><?php _e( 'Print Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
997 |
-
<td><input type="checkbox" name="table[options][print_name]" id="
|
998 |
</tr>
|
999 |
<tr valign="top">
|
1000 |
<th scope="row"><?php _e( 'Print Table Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1001 |
-
<td><input type="checkbox" name="table[options][print_description]" id="
|
1002 |
</tr>
|
1003 |
<tr valign="top" id="options_use_tablesorter">
|
1004 |
<th scope="row"><?php _e( 'Use Tablesorter', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1005 |
-
<td
|
|
|
|
|
1006 |
</tr>
|
1007 |
</table>
|
1008 |
</div>
|
1009 |
</div>
|
1010 |
-
|
1011 |
-
<input type="hidden" name="table[id]" value="<?php echo $table['id']; ?>" />
|
1012 |
-
<input type="hidden" name="action" value="edit" />
|
1013 |
<p class="submit">
|
1014 |
<input type="submit" name="submit[update]" class="button-primary" value="<?php _e( 'Update Changes', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1015 |
<input type="submit" name="submit[save_back]" class="button-primary" value="<?php _e( 'Save and go back', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1016 |
<?php
|
1017 |
$list_url = $this->get_action_url( array( 'action' => 'list' ) );
|
1018 |
echo " <a class=\"button-primary\" href=\"{$list_url}\">" . __( 'Cancel', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1019 |
-
|
1020 |
-
echo '<br/><br/>' . __( 'Other actions', WP_TABLE_RELOADED_TEXTDOMAIN ) . ':';
|
1021 |
-
$delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'table' ), true );
|
1022 |
-
$export_url = $this->get_action_url( array( 'action' => 'export', 'table_id' => $table['id'] ), false );
|
1023 |
-
echo " <a class=\"button-secondary delete_table_link\" href=\"{$delete_url}\">" . __( 'Delete Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1024 |
-
echo " <a class=\"button-secondary\" href=\"{$export_url}\">" . __( 'Export Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1025 |
?>
|
1026 |
</p>
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1030 |
}
|
1031 |
|
1032 |
// ###################################################################################################################
|
@@ -1036,7 +1483,7 @@ class WP_Table_Reloaded_Admin {
|
|
1036 |
$this->print_submenu_navigation( 'import' );
|
1037 |
?>
|
1038 |
<div style="clear:both;">
|
1039 |
-
<p><?php _e( 'You may import a table from existing data here
|
1040 |
</div>
|
1041 |
<div style="clear:both;">
|
1042 |
<form method="post" enctype="multipart/form-data" action="<?php echo $this->get_action_url(); ?>">
|
@@ -1048,15 +1495,16 @@ class WP_Table_Reloaded_Admin {
|
|
1048 |
<?php
|
1049 |
$import_formats = $this->import_instance->import_formats;
|
1050 |
foreach ( $import_formats as $import_format => $longname )
|
1051 |
-
echo "<option value=\"{$import_format}\">{$longname}</option
|
1052 |
?>
|
1053 |
</select></td>
|
1054 |
</tr>
|
|
|
1055 |
<tr valign="top" class="tr-import-addreplace">
|
1056 |
-
<th scope="row"
|
1057 |
<td>
|
1058 |
-
<input name="import_addreplace" id="import_addreplace_add" type="radio" value="add" <?php echo ( '
|
1059 |
-
<input name="import_addreplace" id="import_addreplace_replace" type="radio" value="replace" <?php echo ( 'replace' == $_POST['
|
1060 |
</td>
|
1061 |
</tr>
|
1062 |
<tr valign="top" class="tr-import-addreplace-table">
|
@@ -1069,37 +1517,34 @@ class WP_Table_Reloaded_Admin {
|
|
1069 |
$name = $this->safe_output( $table['name'] );
|
1070 |
//$description = $this->safe_output( $table['description'] );
|
1071 |
unset( $table );
|
1072 |
-
echo "<option" . ( ( $id == $_POST['
|
1073 |
}
|
1074 |
?>
|
1075 |
</select></td>
|
1076 |
</tr>
|
|
|
1077 |
<tr valign="top" class="tr-import-from">
|
1078 |
-
<th scope="row"
|
1079 |
<td>
|
1080 |
-
<input name="import_from" id="import_from_file" type="radio" value="file-upload" <?php echo ( (
|
1081 |
-
|
1082 |
-
<input name="import_from" id="
|
1083 |
-
|
1084 |
-
<input name="import_from" id="import_from_field" type="radio" value="form-field" <?php echo ( 'form-field' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_field"><?php _e( 'Manual input', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1085 |
-
<input name="import_from" id="import_from_server" type="radio" value="server" <?php echo ( 'server' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_server"><?php _e( 'File on server', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1086 |
</td>
|
1087 |
</tr>
|
1088 |
-
<tr valign="top" class="tr-import-file">
|
1089 |
<th scope="row"><label for="import_file"><?php _e( 'Select File with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1090 |
<td><input name="import_file" id="import_file" type="file" /></td>
|
1091 |
</tr>
|
1092 |
-
<?php if ( version_compare( '2.7', $wp_version, '>=') ) { ?>
|
1093 |
<tr valign="top" class="tr-import-url">
|
1094 |
<th scope="row"><label for="import_url"><?php _e( 'URL to import table from', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1095 |
<td><input type="text" name="import_url" id="import_url" style="width:400px;" value="<?php echo ( isset( $_POST['import_url'] ) ) ? $_POST['import_url'] : 'http://' ; ?>" /></td>
|
1096 |
</tr>
|
1097 |
-
<?php } ?>
|
1098 |
<tr valign="top" class="tr-import-server">
|
1099 |
<th scope="row"><label for="import_server"><?php _e( 'Path to file on server', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1100 |
<td><input type="text" name="import_server" id="import_server" style="width:400px;" value="<?php echo ( isset( $_POST['import_server'] ) ) ? $_POST['import_server'] : '' ; ?>" /></td>
|
1101 |
</tr>
|
1102 |
-
<tr valign="top" class="tr-import-field">
|
1103 |
<th scope="row" style="vertical-align:top;"><label for="import_data"><?php _e( 'Paste data with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1104 |
<td><textarea name="import_data" id="import_data" rows="15" cols="40" style="width:600px;height:300px;"></textarea></td>
|
1105 |
</tr>
|
@@ -1138,12 +1583,21 @@ class WP_Table_Reloaded_Admin {
|
|
1138 |
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1139 |
</tr>
|
1140 |
</thead>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
<?php
|
1142 |
echo "<tbody>\n";
|
1143 |
$bg_style_index = 0;
|
1144 |
foreach ( $tables as $table ) {
|
1145 |
$bg_style_index++;
|
1146 |
-
$bg_style = (
|
1147 |
|
1148 |
$table_id = $table->table_aid;
|
1149 |
$name = $table->table_name;
|
@@ -1176,7 +1630,7 @@ class WP_Table_Reloaded_Admin {
|
|
1176 |
</div>
|
1177 |
<?php
|
1178 |
} else {
|
1179 |
-
// one of the wp-Table tables was not found in database, so nothing to show here
|
1180 |
}
|
1181 |
$this->print_page_footer();
|
1182 |
}
|
@@ -1193,7 +1647,9 @@ class WP_Table_Reloaded_Admin {
|
|
1193 |
$this->print_submenu_navigation( 'export' );
|
1194 |
?>
|
1195 |
<div style="clear:both;">
|
1196 |
-
<p><?php _e( 'You may export a table here. Just select the table, your desired export format and
|
|
|
|
|
1197 |
</div>
|
1198 |
<?php if( 0 < count( $this->tables ) ) { ?>
|
1199 |
<div style="clear:both;">
|
@@ -1221,7 +1677,7 @@ class WP_Table_Reloaded_Admin {
|
|
1221 |
<?php
|
1222 |
$export_formats = $this->export_instance->export_formats;
|
1223 |
foreach ( $export_formats as $export_format => $longname )
|
1224 |
-
echo "<option" . ( ( $export_format == $_POST['export_format'] ) ? ' selected="selected"': '' ) . " value=\"{$export_format}\">{$longname}</option>";
|
1225 |
?>
|
1226 |
</select></td>
|
1227 |
</tr>
|
@@ -1231,13 +1687,13 @@ class WP_Table_Reloaded_Admin {
|
|
1231 |
<?php
|
1232 |
$delimiters = $this->export_instance->delimiters;
|
1233 |
foreach ( $delimiters as $delimiter => $longname )
|
1234 |
-
echo "<option" . ( ( $delimiter == $_POST['delimiter'] ) ? ' selected="selected"': '' ) . " value=\"{$delimiter}\">{$longname}</option>";
|
1235 |
?>
|
1236 |
</select> <?php _e( '<small>(Only needed for CSV export.)</small>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></td>
|
1237 |
</tr>
|
1238 |
<tr valign="top">
|
1239 |
<th scope="row"><?php _e( 'Download file', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1240 |
-
<td><input type="checkbox" name="
|
1241 |
</tr>
|
1242 |
</table>
|
1243 |
<input type="hidden" name="action" value="export" />
|
@@ -1266,7 +1722,8 @@ class WP_Table_Reloaded_Admin {
|
|
1266 |
$this->print_submenu_navigation( 'options' );
|
1267 |
?>
|
1268 |
<div style="clear:both;">
|
1269 |
-
<p><?php _e( 'You may change these global options
|
|
|
1270 |
</div>
|
1271 |
|
1272 |
<div style="clear:both;">
|
@@ -1278,40 +1735,51 @@ class WP_Table_Reloaded_Admin {
|
|
1278 |
<table class="wp-table-reloaded-options">
|
1279 |
<tr valign="top">
|
1280 |
<th scope="row"><?php _e( 'Enable Tablesorter-JavaScript?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1281 |
-
<td><input type="checkbox" name="options[enable_tablesorter]" id="
|
1282 |
</tr>
|
1283 |
-
<tr valign="top"
|
1284 |
<th scope="row"><?php _e( 'Add custom CSS?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1285 |
-
<td><input type="checkbox" name="options[use_custom_css]" id="
|
1286 |
-
<?php _e( 'Yes, include and load the following CSS-snippet on my site inside a
|
1287 |
</label></td>
|
1288 |
</tr>
|
1289 |
<tr valign="top">
|
1290 |
<th scope="row"> </th>
|
1291 |
<td><label for="options_custom_css"><?php _e( 'Enter custom CSS', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label><br/>
|
1292 |
-
<textarea name="options[custom_css]" id="options_custom_css" rows="15" cols="40" style="width:600px;height:300px;"<?php echo ( false == $this->options['use_custom_css'] ) ? ' disabled="disabled"': '' ; ?>><?php echo $this->safe_output( $this->options[custom_css] ); ?></textarea><br/><br/>
|
1293 |
-
<?php
|
1294 |
-
|
|
|
|
|
|
|
|
|
1295 |
</td>
|
1296 |
</tr>
|
1297 |
</table>
|
1298 |
</div>
|
1299 |
</div>
|
1300 |
|
1301 |
-
<div class="postbox">
|
1302 |
-
<h3 class="hndle"><span><?php _e( '
|
1303 |
<div class="inside">
|
1304 |
<table class="wp-table-reloaded-options">
|
1305 |
-
<tr valign="top"
|
|
|
|
|
|
|
|
|
1306 |
<th scope="row"><?php _e( 'Uninstall Plugin upon Deactivation?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1307 |
-
<td><input type="checkbox" name="options[uninstall_upon_deactivation]" id="
|
|
|
|
|
|
|
|
|
1308 |
</tr>
|
1309 |
</table>
|
1310 |
</div>
|
1311 |
</div>
|
1312 |
|
1313 |
-
<input type="hidden" name="options[
|
1314 |
-
<input type="hidden" name="options[last_id]" value="<?php echo $this->options['last_id']; ?>" />
|
1315 |
<input type="hidden" name="action" value="options" />
|
1316 |
<p class="submit">
|
1317 |
<input type="submit" name="submit[form]" class="button-primary" value="<?php _e( 'Save Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
@@ -1322,7 +1790,7 @@ class WP_Table_Reloaded_Admin {
|
|
1322 |
|
1323 |
<h2><?php _e( 'Manually Uninstall Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
|
1324 |
<div style="clear:both;">
|
1325 |
-
<p><?php _e( 'You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported
|
1326 |
<?php
|
1327 |
$uninstall_url = $this->get_action_url( array( 'action' => 'uninstall' ), true );
|
1328 |
echo " <a class=\"button-secondary delete uninstall_plugin_link\" href=\"{$uninstall_url}\">" . __( 'Uninstall Plugin WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
@@ -1336,7 +1804,7 @@ class WP_Table_Reloaded_Admin {
|
|
1336 |
// ###################################################################################################################
|
1337 |
function print_plugin_info_form() {
|
1338 |
// Begin Add Table Form
|
1339 |
-
$this->print_page_header( __( '
|
1340 |
$this->print_submenu_navigation( 'info' );
|
1341 |
?>
|
1342 |
|
@@ -1365,7 +1833,7 @@ class WP_Table_Reloaded_Admin {
|
|
1365 |
<div class="postbox">
|
1366 |
<h3 class="hndle"><span><?php _e( 'Author and Licence', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
1367 |
<div class="inside">
|
1368 |
-
<p><?php _e( 'This plugin was written by <a href="http://tobias.baethge.com/">Tobias Bäthge</a>. It is
|
1369 |
</div>
|
1370 |
</div>
|
1371 |
|
@@ -1381,6 +1849,8 @@ class WP_Table_Reloaded_Admin {
|
|
1381 |
<br/>· <?php _e( 'Brazilian Portugues (thanks to <a href="http://www.pensarics.com/">Rics</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1382 |
<br/>· <?php _e( 'Czech (thanks to <a href="http://separatista.net/">Separatista</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1383 |
<br/>· <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
|
|
|
|
1384 |
<br/>· <?php _e( 'Polish (thanks to Alex Kortan)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1385 |
<br/>· <?php _e( 'Russian (thanks to <a href="http://wp-skins.info/">Truper</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1386 |
<br/>· <?php _e( 'Spanish (thanks to <a href="http://theindependentproject.com/">Alejandro Urrutia</a> and <a href="http://halles.cl/">Matias Halles</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
@@ -1398,6 +1868,7 @@ class WP_Table_Reloaded_Admin {
|
|
1398 |
<?php _e( 'You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
1399 |
<br/>· WP-Table Reloaded (DB): <?php echo $this->options['installed_version']; ?>
|
1400 |
<br/>· WP-Table Reloaded (Script): <?php echo $this->plugin_version; ?>
|
|
|
1401 |
<br/>· WordPress: <?php echo $GLOBALS['wp_version']; ?>
|
1402 |
<br/>· PHP: <?php echo phpversion(); ?>
|
1403 |
<br/>· mySQL (Server): <?php echo mysql_get_server_info(); ?>
|
@@ -1418,16 +1889,16 @@ class WP_Table_Reloaded_Admin {
|
|
1418 |
// ###################################################################################################################
|
1419 |
|
1420 |
// ###################################################################################################################
|
1421 |
-
function
|
1422 |
echo "<div id='message' class='updated fade'><p><strong>{$text}</strong></p></div>";
|
1423 |
}
|
1424 |
|
1425 |
// ###################################################################################################################
|
1426 |
function print_page_header( $text = 'WP-Table Reloaded' ) {
|
1427 |
echo <<<TEXT
|
1428 |
-
<div class=
|
1429 |
<h2>{$text}</h2>
|
1430 |
-
<div id=
|
1431 |
TEXT;
|
1432 |
}
|
1433 |
|
@@ -1440,26 +1911,95 @@ TEXT;
|
|
1440 |
function print_submenu_navigation( $action ) {
|
1441 |
?>
|
1442 |
<ul class="subsubsub">
|
1443 |
-
<li><a <?php if ( 'list' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'list' ) ); ?>"><?php _e( 'List Tables', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1444 |
-
<li><a <?php if ( 'add' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'add' ) ); ?>"><?php _e( 'Add new Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1445 |
-
<li><a <?php if ( 'import' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'import' ) ); ?>"><?php _e( 'Import a Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1446 |
-
<li><a <?php if ( 'export' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'export' ) ); ?>"><?php _e( 'Export a Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a></li>
|
1447 |
<li> </li>
|
1448 |
-
<li><a <?php if ( 'options' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'options' ) ); ?>"><?php _e( 'Plugin Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1449 |
-
<li><a <?php if ( 'info' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'info' ) ); ?>"><?php _e( 'About the Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a></li>
|
1450 |
</ul>
|
1451 |
<br class="clear" />
|
1452 |
<?php
|
1453 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1454 |
|
1455 |
// ###################################################################################################################
|
1456 |
-
|
1457 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1458 |
}
|
1459 |
|
1460 |
// ###################################################################################################################
|
1461 |
function safe_output( $string ) {
|
1462 |
-
|
|
|
1463 |
}
|
1464 |
|
1465 |
// ###################################################################################################################
|
@@ -1504,6 +2044,11 @@ TEXT;
|
|
1504 |
// ###################################################################################################################
|
1505 |
function save_table( $table ) {
|
1506 |
if ( 0 < $table['id'] ) {
|
|
|
|
|
|
|
|
|
|
|
1507 |
$this->tables[ $table['id'] ] = ( isset( $this->tables[ $table['id'] ] ) ) ? $this->tables[ $table['id'] ] : $this->optionname['table'] . '_' . $table['id'];
|
1508 |
update_option( $this->tables[ $table['id'] ], $table );
|
1509 |
$this->update_tables();
|
@@ -1540,6 +2085,18 @@ TEXT;
|
|
1540 |
//header( 'Content-type: ' . $filetype. '; charset=' . get_option('blog_charset') );
|
1541 |
}
|
1542 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1543 |
// ###################################################################################################################
|
1544 |
// ######################################### ####################################################
|
1545 |
// ######################################### URL Support ####################################################
|
@@ -1554,7 +2111,7 @@ TEXT;
|
|
1554 |
// ###################################################################################################################
|
1555 |
function get_action_url( $params = array(), $add_nonce = false ) {
|
1556 |
$default_params = array(
|
1557 |
-
'page' => $
|
1558 |
'action' => false,
|
1559 |
'item' => false
|
1560 |
);
|
@@ -1562,6 +2119,7 @@ TEXT;
|
|
1562 |
|
1563 |
$action_url = add_query_arg( $url_params, $_SERVER['PHP_SELF'] );
|
1564 |
$action_url = ( true == $add_nonce ) ? wp_nonce_url( $action_url, $this->get_nonce( $url_params['action'], $url_params['item'] ) ) : $action_url;
|
|
|
1565 |
return $action_url;
|
1566 |
}
|
1567 |
|
@@ -1572,12 +2130,10 @@ TEXT;
|
|
1572 |
// ###################################################################################################################
|
1573 |
|
1574 |
// ###################################################################################################################
|
1575 |
-
function create_class_instance( $class, $file ) {
|
1576 |
-
if ( !class_exists( $class ) )
|
1577 |
-
include_once ( WP_TABLE_RELOADED_ABSPATH . '
|
1578 |
-
|
1579 |
-
return new $class;
|
1580 |
-
}
|
1581 |
}
|
1582 |
|
1583 |
// ###################################################################################################################
|
@@ -1624,6 +2180,49 @@ TEXT;
|
|
1624 |
function plugin_install() {
|
1625 |
$this->options = $this->default_options;
|
1626 |
$this->options['installed_version'] = $this->plugin_version;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1627 |
$this->update_options();
|
1628 |
$this->tables = $this->default_tables;
|
1629 |
$this->update_tables();
|
@@ -1636,16 +2235,20 @@ TEXT;
|
|
1636 |
$this->options = get_option( $this->optionname['options'] );
|
1637 |
$new_options = array();
|
1638 |
|
|
|
|
|
|
|
1639 |
// 2a. step: add/delete new/deprecated options by overwriting new ones with existing ones, if existant
|
1640 |
foreach ( $this->default_options as $key => $value )
|
1641 |
-
$new_options[ $key ] = (
|
1642 |
|
1643 |
// 2b., take care of css
|
1644 |
-
$new_options['use_custom_css'] = (
|
1645 |
|
1646 |
-
// 3. step: update installed version number
|
1647 |
$new_options['installed_version'] = $this->plugin_version;
|
1648 |
-
|
|
|
1649 |
// 4. step: save the new options
|
1650 |
$this->options = $new_options;
|
1651 |
$this->update_options();
|
@@ -1655,38 +2258,65 @@ TEXT;
|
|
1655 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
1656 |
$table = $this->load_table( $id );
|
1657 |
|
1658 |
-
|
1659 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1660 |
|
1661 |
-
foreach ( $
|
1662 |
-
$new_table['options'][ $key ] = (
|
1663 |
|
1664 |
$this->save_table( $new_table );
|
1665 |
}
|
1666 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1667 |
|
1668 |
// ###################################################################################################################
|
1669 |
// initialize i18n support, load textdomain
|
1670 |
function init_language_support() {
|
1671 |
$language_directory = basename( dirname( __FILE__ ) ) . '/languages';
|
1672 |
-
load_plugin_textdomain( WP_TABLE_RELOADED_TEXTDOMAIN,
|
1673 |
}
|
1674 |
|
1675 |
// ###################################################################################################################
|
1676 |
// enqueue javascript-file, with some jQuery stuff
|
1677 |
function add_manage_page_js() {
|
1678 |
-
$
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
|
|
1683 |
'str_UninstallCheckboxActivation' => __( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1684 |
'str_DataManipulationLinkInsertURL' => __( 'URL of link to insert', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1685 |
'str_DataManipulationLinkInsertText' => __( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1686 |
'str_DataManipulationLinkInsertExplain' => __( 'To insert the following link into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1687 |
-
'
|
1688 |
-
'str_DataManipulationImageInsertAlt' => __( "''alt'' text of the image", WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1689 |
-
'str_DataManipulationImageInsertExplain' => __( 'To insert the following image into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1690 |
'str_BulkCopyTablesLink' => __( 'Do you want to copy the selected tables?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1691 |
'str_BulkDeleteTablesLink' => __( 'The selected tables and all content will be erased. Do you really want to delete them?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1692 |
'str_BulkImportwpTableTablesLink' => __( 'Do you really want to import the selected tables from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
@@ -1697,29 +2327,20 @@ TEXT;
|
|
1697 |
'str_ImportwpTableLink' => __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1698 |
'str_UninstallPluginLink_1' => __( 'Do you really want to uninstall the plugin and delete ALL data?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1699 |
'str_UninstallPluginLink_2' => __( 'Are you really sure?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1700 |
-
'str_ChangeTableID' => __( 'Do you really want to change the ID of the table?', WP_TABLE_RELOADED_TEXTDOMAIN )
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
|
|
|
|
1704 |
}
|
1705 |
|
1706 |
// ###################################################################################################################
|
1707 |
// enqueue css-stylesheet-file for admin, if it exists
|
1708 |
function add_manage_page_css() {
|
1709 |
-
$
|
1710 |
-
|
1711 |
-
|
1712 |
-
wp_enqueue_style( 'wp-table-reloaded-admin-css', WP_TABLE_RELOADED_URL . 'admin/' . $cssfile, array(), $this->plugin_version );
|
1713 |
-
else
|
1714 |
-
add_action( 'admin_head', array( &$this, 'print_admin_style' ) );
|
1715 |
-
}
|
1716 |
-
}
|
1717 |
-
|
1718 |
-
// ###################################################################################################################
|
1719 |
-
// print our style in wp-admin-head (only needed for WP < 2.6)
|
1720 |
-
function print_admin_style() {
|
1721 |
-
$cssfile = 'admin-style.css';
|
1722 |
-
echo "<link rel='stylesheet' href='" . WP_TABLE_RELOADED_URL . 'admin/' . $cssfile . "' type='text/css' media='' />\n";
|
1723 |
}
|
1724 |
|
1725 |
// ###################################################################################################################
|
@@ -1727,6 +2348,7 @@ TEXT;
|
|
1727 |
function add_editor_button() {
|
1728 |
if ( 0 < count( $this->tables ) ) {
|
1729 |
$this->init_language_support();
|
|
|
1730 |
add_action( 'admin_footer', array( &$this, 'add_editor_button_js' ) );
|
1731 |
}
|
1732 |
}
|
@@ -1735,24 +2357,71 @@ TEXT;
|
|
1735 |
// print out the JS in the admin footer
|
1736 |
function add_editor_button_js() {
|
1737 |
$params = array(
|
1738 |
-
'page' =>
|
1739 |
'action' => 'ajax_list'
|
1740 |
);
|
1741 |
-
$ajax_url = add_query_arg( $params,
|
1742 |
$ajax_url = wp_nonce_url( $ajax_url, $this->get_nonce( $params['action'], false ) );
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
|
|
|
|
1749 |
'str_EditorButtonCaption' => __( 'Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
1750 |
-
'str_EditorButtonAjaxURL' => $ajax_url
|
1751 |
-
|
1752 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1753 |
}
|
1754 |
}
|
1755 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1756 |
} // class WP_Table_Reloaded_Admin
|
1757 |
|
1758 |
?>
|
3 |
File Name: WP-Table Reloaded - Admin Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: 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.
|
6 |
+
Version: 1.4
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
+
Donate URI: http://tobias.baethge.com/donate/
|
10 |
*/
|
11 |
|
12 |
define( 'WP_TABLE_RELOADED_TEXTDOMAIN', 'wp-table-reloaded' );
|
14 |
class WP_Table_Reloaded_Admin {
|
15 |
|
16 |
// ###################################################################################################################
|
17 |
+
var $plugin_version = '1.4';
|
18 |
// nonce for security of links/forms, try to prevent "CSRF"
|
19 |
var $nonce_base = 'wp-table-reloaded-nonce';
|
20 |
+
var $page_slug = 'wp_table_reloaded';
|
21 |
// names for the options which are stored in the WP database
|
22 |
var $optionname = array(
|
23 |
'tables' => 'wp_table_reloaded_tables',
|
25 |
'table' => 'wp_table_reloaded_data'
|
26 |
);
|
27 |
// allowed actions in this class
|
28 |
+
var $allowed_actions = array( 'list', 'add', 'edit', 'bulk_edit', 'copy', 'delete', 'insert', 'import', 'export', 'options', 'uninstall', 'info', 'hide_donate_nag' ); // 'ajax_list', 'ajax_preview', but handled separatly
|
29 |
+
// current action, populated in load_manage_page
|
30 |
+
var $action = 'list';
|
31 |
|
32 |
// init vars
|
33 |
var $tables = array();
|
34 |
var $options = array();
|
35 |
|
36 |
+
// default values, could be different in future plugin versions
|
37 |
var $default_options = array(
|
38 |
'installed_version' => '0',
|
39 |
'uninstall_upon_deactivation' => false,
|
40 |
'enable_tablesorter' => true,
|
41 |
+
'use_tablesorter_extended' => false,
|
42 |
'use_custom_css' => true,
|
43 |
+
'custom_css' => '',
|
44 |
+
'install_time' => 0,
|
45 |
+
'show_donate_nag' => true,
|
46 |
+
'update_message' => array(),
|
47 |
'last_id' => 0
|
48 |
);
|
49 |
var $default_tables = array();
|
50 |
var $default_table = array(
|
51 |
'id' => 0,
|
52 |
'data' => array( 0 => array( 0 => '' ) ),
|
53 |
+
'name' => '',
|
54 |
+
'description' => '',
|
55 |
+
'last_modified' => '0000-00-00 00:00:00',
|
56 |
+
'last_editor_id' => '',
|
57 |
+
'visibility' => array(
|
58 |
+
'rows' => array(),
|
59 |
+
'columns' => array()
|
60 |
+
),
|
61 |
'options' => array(
|
62 |
'alternating_row_colors' => true,
|
63 |
'first_row_th' => true,
|
64 |
'print_name' => false,
|
65 |
'print_description' => false,
|
66 |
'use_tablesorter' => true
|
67 |
+
),
|
68 |
+
'custom_fields' => array()
|
69 |
);
|
70 |
|
71 |
// class instances
|
72 |
var $export_instance;
|
73 |
var $import_instance;
|
74 |
|
75 |
+
// temporary variables
|
76 |
var $hook = '';
|
77 |
|
78 |
// ###################################################################################################################
|
81 |
// init plugin (means: load plugin options and existing tables)
|
82 |
$this->init_plugin();
|
83 |
|
84 |
+
// init variables to check whether we do valid AJAX
|
85 |
+
$doing_ajax = defined( 'DOING_AJAX' ) ? DOING_AJAX : false;
|
86 |
+
$valid_ajax_call = ( isset( $_GET['page'] ) && $this->page_slug == $_GET['page'] ) ? true : false;
|
87 |
|
88 |
+
// real WP AJAX actions (other AJAX calls can not be done like this, because they are GET-requests)
|
89 |
+
if ( $doing_ajax ) {
|
90 |
+
add_action( 'wp_ajax_delete-wp-table-reloaded-table', array( &$this, 'do_action_ajax_delete_table') );
|
91 |
+
}
|
92 |
|
93 |
// have to check for possible export file download request this early,
|
94 |
// because otherwise http-headers will be sent by WP before we can send download headers
|
95 |
+
if ( !$doing_ajax && $valid_ajax_call && isset( $_POST['download_export_file'] ) && 'true' == $_POST['download_export_file'] ) {
|
96 |
+
// can be done in plugins_loaded, as no language support is needed
|
97 |
+
add_action( 'plugins_loaded', array( &$this, 'do_action_export' ) );
|
98 |
+
$doing_ajax = true;
|
99 |
}
|
|
|
100 |
// have to check for possible call by editor button to show list of tables
|
101 |
+
// and possible call to show Table preview in a thickbox on "List tables" screen
|
102 |
+
if ( !$doing_ajax && $valid_ajax_call && isset( $_GET['action'] ) && ( 'ajax_list' == $_GET['action'] || 'ajax_preview' == $_GET['action'] ) ) {
|
103 |
+
// can not be done earlier, because we need language support
|
104 |
+
add_action( 'init', array( &$this, 'do_action_' . $_GET['action'] ) );
|
105 |
+
$doing_ajax = true;
|
106 |
+
}
|
107 |
+
|
108 |
+
// if we are not doing AJAX, we call the main plugin handler
|
109 |
+
if ( !$doing_ajax ) {
|
110 |
+
add_action( 'admin_menu', array( &$this, 'add_manage_page' ) );
|
111 |
+
|
112 |
+
// add JS to add button to editor on these pages
|
113 |
+
$pages_with_editor_button = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php' );
|
114 |
+
foreach ( $pages_with_editor_button as $page )
|
115 |
+
add_action( 'load-' . $page, array( &$this, 'add_editor_button' ) );
|
116 |
+
|
117 |
+
// add remote message, if update available
|
118 |
+
add_action( 'in_plugin_update_message-' . WP_TABLE_RELOADED_BASENAME, array( &$this, 'plugin_update_message' ), 10, 2 );
|
119 |
}
|
120 |
}
|
121 |
|
122 |
// ###################################################################################################################
|
123 |
// add page, and what happens when page is loaded or shown
|
124 |
function add_manage_page() {
|
125 |
+
$min_needed_capability = 'publish_posts'; // user needs at least this capability to view WP-Table Reloaded config page
|
126 |
+
$this->hook = add_management_page( 'WP-Table Reloaded', 'WP-Table Reloaded', $min_needed_capability, $this->page_slug, array( &$this, 'show_manage_page' ) );
|
127 |
add_action( 'load-' . $this->hook, array( &$this, 'load_manage_page' ) );
|
128 |
}
|
129 |
+
|
130 |
// ###################################################################################################################
|
131 |
// only load the scripts, stylesheets and language by hook, if this admin page will be shown
|
132 |
// all of this will be done before the page is shown by show_manage_page()
|
136 |
add_action( 'admin_footer', array( &$this, 'add_manage_page_js' ) ); // can be put in footer, jQuery will be loaded anyway
|
137 |
$this->add_manage_page_css();
|
138 |
|
139 |
+
// show admin footer message (only on pages of WP-Table Reloaded)
|
140 |
+
add_filter( 'admin_footer_text', array (&$this, 'add_admin_footer_text') );
|
141 |
+
|
142 |
// init language support
|
143 |
$this->init_language_support();
|
|
|
|
|
|
|
|
|
144 |
|
|
|
|
|
145 |
// get and check action parameter from passed variables
|
146 |
$action = ( isset( $_REQUEST['action'] ) && !empty( $_REQUEST['action'] ) ) ? $_REQUEST['action'] : 'list';
|
147 |
// check if action is in allowed actions and if method is callable, if yes, call it
|
148 |
+
if ( in_array( $action, $this->allowed_actions ) )
|
149 |
+
$this->action = $action;
|
150 |
+
|
151 |
+
// need thickbox to be able to show table in iframe on certain action pages (but not all)
|
152 |
+
$thickbox_actions = array ( 'list', 'edit', 'copy', 'delete', 'bulk_edit', 'hide_donate_nag' ); // those all show the "List of tables"
|
153 |
+
if ( in_array( $action, $thickbox_actions ) ) {
|
154 |
+
add_thickbox();
|
155 |
+
wp_enqueue_script( 'media-upload' ); // for resizing the thickbox
|
156 |
+
}
|
157 |
+
|
158 |
+
// after get_action, because needs action parameter
|
159 |
+
if ( function_exists( 'add_contextual_help' ) ) // then WP version is >= 2.7
|
160 |
+
add_contextual_help( $this->hook, $this->get_contextual_help_string( $this->action ) );
|
161 |
+
}
|
162 |
+
|
163 |
+
// ###################################################################################################################
|
164 |
+
function show_manage_page() {
|
165 |
+
// call approriate action, $this->action is populated in load_manage_page
|
166 |
+
if( is_callable( array( &$this, 'do_action_' . $this->action ) ) )
|
167 |
+
call_user_func( array( &$this, 'do_action_' . $this->action ) );
|
168 |
}
|
169 |
|
170 |
// ###################################################################################################################
|
175 |
|
176 |
// ###################################################################################################################
|
177 |
// list all tables
|
178 |
+
function do_action_list() {
|
179 |
+
if ( true == $this->may_print_donate_nag() ) {
|
180 |
+
$donate_url = 'http://tobias.baethge.com/donate-message/';
|
181 |
+
$donated_true_url = $this->get_action_url( array( 'action' => 'hide_donate_nag', 'user_donated' => true ), true );
|
182 |
+
$donated_false_url = $this->get_action_url( array( 'action' => 'hide_donate_nag', 'user_donated' => false ), true );
|
183 |
+
$this->print_header_message(
|
184 |
+
sprintf( __( 'Thanks for using this plugin! You\'ve installed WP-Table Reloaded over a month ago. 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?', WP_TABLE_RELOADED_TEXTDOMAIN ), count( $this->tables ) ) . '<br/><br/>' .
|
185 |
+
sprintf( __( '<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!', WP_TABLE_RELOADED_TEXTDOMAIN ), $donate_url ) . '<br/><br/>' .
|
186 |
+
sprintf( '<a href="%s" target="_blank">%s</a>', $donate_url, __( 'Sure, no problem!', WP_TABLE_RELOADED_TEXTDOMAIN ) ) . ' · ' .
|
187 |
+
sprintf( '<a href="%s" style="font-weight:normal;">%s</a>', $donated_true_url, __( 'I already donated.', WP_TABLE_RELOADED_TEXTDOMAIN ) ) . ' · ' .
|
188 |
+
sprintf( '<a href="%s" style="font-weight:normal;">%s</a>', $donated_false_url, __( 'No, thanks. Don\'t ask again.', WP_TABLE_RELOADED_TEXTDOMAIN ) )
|
189 |
+
);
|
190 |
+
}
|
191 |
$this->print_list_tables_form();
|
192 |
}
|
193 |
|
203 |
|
204 |
$table['id'] = $this->get_new_table_id();
|
205 |
$table['data'] = $this->create_empty_table( $rows, $cols );
|
206 |
+
$table['visibility']['rows'] = array_fill( 0, $rows, false );
|
207 |
+
$table['visibility']['columns'] = array_fill( 0, $cols, false );
|
208 |
$table['name'] = $_POST['table']['name'];
|
209 |
$table['description'] = $_POST['table']['description'];
|
210 |
|
211 |
$this->save_table( $table );
|
212 |
|
213 |
+
$this->print_header_message( sprintf( __( 'Table "%s" added successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
|
214 |
$this->print_edit_table_form( $table['id'] );
|
215 |
} else {
|
216 |
$this->print_add_table_form();
|
245 |
} else {
|
246 |
$message = __( 'Table edited successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
247 |
}
|
248 |
+
// save table options (checkboxes!)
|
249 |
$table['options']['alternating_row_colors'] = isset( $_POST['table']['options']['alternating_row_colors'] );
|
250 |
$table['options']['first_row_th'] = isset( $_POST['table']['options']['first_row_th'] );
|
251 |
$table['options']['print_name'] = isset( $_POST['table']['options']['print_name'] );
|
252 |
$table['options']['print_description'] = isset( $_POST['table']['options']['print_description'] );
|
253 |
$table['options']['use_tablesorter'] = isset( $_POST['table']['options']['use_tablesorter'] );
|
254 |
+
|
255 |
+
// save visibility settings (checkboxes!)
|
256 |
+
foreach ( $table['data'] as $row_idx => $row )
|
257 |
+
$table['visibility']['rows'][$row_idx] = isset( $_POST['table']['visibility']['rows'][$row_idx] );
|
258 |
+
ksort( $table['visibility']['rows'], SORT_NUMERIC );
|
259 |
+
foreach ( $table['data'][0] as $col_idx => $col )
|
260 |
+
$table['visibility']['columns'][$col_idx] = isset( $_POST['table']['visibility']['columns'][$col_idx] );
|
261 |
+
ksort( $table['visibility']['columns'], SORT_NUMERIC );
|
262 |
+
|
263 |
+
if ( isset( $table['custom_fields'] ) && !empty( $table['custom_fields'] ) )
|
264 |
+
uksort( $table['custom_fields'], 'strnatcasecmp' ); // sort the keys naturally
|
265 |
+
|
266 |
$this->save_table( $table );
|
267 |
break;
|
268 |
case 'swap_rows':
|
272 |
$table = $this->load_table( $table_id );
|
273 |
$rows = count( $table['data'] );
|
274 |
// swap rows $row_id1 and $row_id2
|
275 |
+
if ( ( 1 < $rows ) && ( -1 < $row_id1 ) && ( -1 < $row_id2 ) && ( $row_id1 != $row_id2 ) ) {
|
276 |
$temp_row = $table['data'][$row_id1];
|
277 |
$table['data'][$row_id1] = $table['data'][$row_id2];
|
278 |
$table['data'][$row_id2] = $temp_row;
|
279 |
+
$temp_visibility = $table['visibility']['rows'][$row_id1];
|
280 |
+
$table['visibility']['rows'][$row_id1] = $table['visibility']['rows'][$row_id2];
|
281 |
+
$table['visibility']['rows'][$row_id2] = $temp_visibility;
|
282 |
}
|
283 |
$this->save_table( $table );
|
284 |
$message = __( 'Rows swapped successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
291 |
$rows = count( $table['data'] );
|
292 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
293 |
// swap rows $col_id1 and $col_id2
|
294 |
+
if ( ( 1 < $cols ) && ( -1 < $col_id1 ) && ( -1 < $col_id2 ) && ( $col_id1 != $col_id2 )) {
|
295 |
+
foreach ( $table['data'] as $row_idx => $row ) {
|
296 |
$temp_col = $table['data'][$row_idx][$col_id1];
|
297 |
$table['data'][$row_idx][$col_id1] = $table['data'][$row_idx][$col_id2];
|
298 |
$table['data'][$row_idx][$col_id2] = $temp_col;
|
299 |
}
|
300 |
+
$temp_visibility = $table['visibility']['columns'][$col_id1];
|
301 |
+
$table['visibility']['columns'][$col_id1] = $table['visibility']['columns'][$col_id2];
|
302 |
+
$table['visibility']['columns'][$col_id2] = $temp_visibility;
|
303 |
}
|
304 |
$this->save_table( $table );
|
305 |
$message = __( 'Columns swapped successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
307 |
case 'sort':
|
308 |
$table_id = $_POST['table']['id'];
|
309 |
$column = ( isset( $_POST['sort']['col'] ) ) ? $_POST['sort']['col'] : -1;
|
310 |
+
$sort_order = ( isset( $_POST['sort']['order'] ) ) ? $_POST['sort']['order'] : 'ASC';
|
311 |
$table = $this->load_table( $table_id );
|
312 |
$rows = count( $table['data'] );
|
313 |
+
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
314 |
// sort array for $column in $sort_order
|
315 |
if ( ( 1 < $rows ) && ( -1 < $column ) ) {
|
316 |
+
|
317 |
+
// for sorting: temporarily store row visibility in data, so that it gets sorted, too
|
318 |
+
foreach ( $table['data'] as $row_idx => $row )
|
319 |
+
array_splice( $table['data'][$row_idx], $cols, 0, $table['visibility']['rows'][$row_idx] );
|
320 |
+
|
321 |
$sortarray = $this->create_class_instance( 'arraysort', 'arraysort.class.php' );
|
322 |
$sortarray->input_array = $table['data'];
|
323 |
$sortarray->column = $column;
|
324 |
$sortarray->order = $sort_order;
|
325 |
$sortarray->sort();
|
326 |
$table['data'] = $sortarray->sorted_array;
|
327 |
+
|
328 |
+
// then restore row visibility from sorted data and remove temporary column
|
329 |
+
foreach ( $table['data'] as $row_idx => $row ) {
|
330 |
+
$table['visibility']['rows'][$row_idx] = $table['data'][$row_idx][$cols];
|
331 |
+
array_splice( $table['data'][$row_idx], $cols, 1 );
|
332 |
+
}
|
333 |
+
|
334 |
}
|
335 |
$this->save_table( $table );
|
336 |
$message = __( 'Table sorted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
337 |
break;
|
338 |
case 'insert_rows':
|
339 |
$table_id = $_POST['table']['id'];
|
340 |
+
$number = ( isset( $_POST['insert']['row']['number'] ) && ( 0 < $_POST['insert']['row']['number'] ) ) ? $_POST['insert']['row']['number'] : 1;
|
341 |
$row_id = $_POST['insert']['row']['id'];
|
342 |
$table = $this->load_table( $table_id );
|
343 |
$rows = count( $table['data'] );
|
344 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
345 |
// init new empty row (with all columns) and insert it before row with key $row_id
|
346 |
$new_rows = $this->create_empty_table( $number, $cols, '' );
|
347 |
+
$new_rows_visibility = array_fill( 0, $number, false );
|
348 |
array_splice( $table['data'], $row_id, 0, $new_rows );
|
349 |
+
array_splice( $table['visibility']['rows'], $row_id, 0, $new_rows_visibility );
|
350 |
$this->save_table( $table );
|
351 |
$message = __ngettext( 'Row added successfully.', 'Rows added successfully.', $number, WP_TABLE_RELOADED_TEXTDOMAIN );
|
352 |
break;
|
353 |
case 'insert_cols':
|
354 |
$table_id = $_POST['table']['id'];
|
355 |
+
$number = ( isset( $_POST['insert']['col']['number'] ) && ( 0 < $_POST['insert']['col']['number'] ) ) ? $_POST['insert']['col']['number'] : 1;
|
356 |
$col_id = $_POST['insert']['col']['id'];
|
357 |
$table = $this->load_table( $table_id );
|
358 |
+
// init new empty row (with all columns) and insert it before row with key $col_id
|
359 |
+
$new_cols = array_fill( 0, $number, '' );
|
360 |
+
$new_cols_visibility = array_fill( 0, $number, false );
|
361 |
foreach ( $table['data'] as $row_idx => $row )
|
362 |
+
array_splice( $table['data'][$row_idx], $col_id, 0, $new_cols );
|
363 |
+
array_splice( $table['visibility']['columns'], $col_id, 0, $new_cols_visibility );
|
364 |
$this->save_table( $table );
|
365 |
$message = __ngettext( 'Column added successfully.', 'Columns added successfully.', $number, WP_TABLE_RELOADED_TEXTDOMAIN );
|
366 |
break;
|
367 |
+
case 'move_row':
|
368 |
+
$table_id = $_POST['table']['id'];
|
369 |
+
$row_id1 = ( isset( $_POST['move']['row'][1] ) ) ? $_POST['move']['row'][1] : -1;
|
370 |
+
$row_id2 = ( isset( $_POST['move']['row'][2] ) ) ? $_POST['move']['row'][2] : -1;
|
371 |
+
$move_where = ( isset( $_POST['move']['where'] ) ) ? $_POST['move']['where'] : 'before';
|
372 |
+
if ( 'after' == $move_where )
|
373 |
+
$row_id2 = $row_id2 + 1; // move after is the same as move before the next row
|
374 |
+
$table = $this->load_table( $table_id );
|
375 |
+
$rows = count( $table['data'] );
|
376 |
+
// move row $row_id1 before/after $row_id2
|
377 |
+
if ( ( 1 < $rows ) && ( -1 < $row_id1 ) && ( -1 < $row_id2 ) && ( $row_id1 != $row_id2 ) ) {
|
378 |
+
$temp_row = array( $table['data'][$row_id1] );
|
379 |
+
unset( $table['data'][$row_id1] );
|
380 |
+
array_splice( $table['data'], $row_id2, 0, $temp_row );
|
381 |
+
$temp_visibility = $table['visibility']['rows'][$row_id1];
|
382 |
+
unset( $table['visibility']['rows'][$row_id1] );
|
383 |
+
array_splice( $table['visibility']['rows'], $row_id2, 0, $temp_visibility );
|
384 |
+
}
|
385 |
+
$this->save_table( $table );
|
386 |
+
$message = __( 'Row moved successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
387 |
+
break;
|
388 |
+
case 'move_col':
|
389 |
+
$table_id = $_POST['table']['id'];
|
390 |
+
$col_id1 = ( isset( $_POST['move']['col'][1] ) ) ? $_POST['move']['col'][1] : -1;
|
391 |
+
$col_id2 = ( isset( $_POST['move']['col'][2] ) ) ? $_POST['move']['col'][2] : -1;
|
392 |
+
$move_where = ( isset( $_POST['move']['where'] ) ) ? $_POST['move']['where'] : 'before';
|
393 |
+
if ( 'after' == $move_where )
|
394 |
+
$col_id2 = $col_id2 + 1; // move after is the same as move before the next row
|
395 |
+
$table = $this->load_table( $table_id );
|
396 |
+
$rows = count( $table['data'] );
|
397 |
+
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
398 |
+
// move col $col_id1 before/after $col_id2
|
399 |
+
if ( ( 1 < $cols ) && ( -1 < $col_id1 ) && ( -1 < $col_id2 ) && ( $col_id1 != $col_id2 ) ) {
|
400 |
+
foreach ( $table['data'] as $row_idx => $row ) {
|
401 |
+
$temp_col = $table['data'][$row_idx][$col_id1];
|
402 |
+
unset( $table['data'][$row_idx][$col_id1] );
|
403 |
+
array_splice( $table['data'][$row_idx], $col_id2, 0, $temp_col );
|
404 |
+
|
405 |
+
}
|
406 |
+
$temp_visibility = $table['visibility']['columns'][$col_id1];
|
407 |
+
unset( $table['visibility']['columns'][$col_id1] );
|
408 |
+
array_splice( $table['visibility']['columns'], $col_id2, 0, $temp_visibility );
|
409 |
+
}
|
410 |
+
$this->save_table( $table );
|
411 |
+
$message = __( 'Column moved successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
412 |
+
break;
|
413 |
+
case 'insert_cf':
|
414 |
+
$table_id = $_POST['table']['id'];
|
415 |
+
$table = $this->load_table( $table_id );
|
416 |
+
$name = ( isset( $_POST['insert']['custom_field'] ) ) ? $_POST['insert']['custom_field'] : '';
|
417 |
+
if ( empty( $name ) ) {
|
418 |
+
$message = __( 'Could not add Custom Data Field, because you did not enter a name.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
419 |
+
break;
|
420 |
+
}
|
421 |
+
$reserved_names = array( 'name', 'description', 'last_modified', 'last_editor' );
|
422 |
+
if ( in_array( $name, $reserved_names ) ) {
|
423 |
+
$message = __( 'Could not add Custom Data Field, because the name you entered is reserved for other table data.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
424 |
+
break;
|
425 |
+
}
|
426 |
+
// Name can only contain lowercase letters, numbers, _ and - (like permalink slugs)
|
427 |
+
$clean_name = sanitize_title_with_dashes( $name );
|
428 |
+
if ( $name != $clean_name ) {
|
429 |
+
$message = __( 'Could not add Custom Data Field, because the name contained illegal characters.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
430 |
+
break;
|
431 |
+
}
|
432 |
+
if ( isset( $table['custom_fields'][$name] ) ) {
|
433 |
+
$message = __( 'Could not add Custom Data Field, because a Field with that name already exists.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
434 |
+
break;
|
435 |
+
}
|
436 |
+
$table['custom_fields'][$name] = '';
|
437 |
+
uksort( $table['custom_fields'], 'strnatcasecmp' ); // sort the keys naturally
|
438 |
+
$this->save_table( $table );
|
439 |
+
$message = __( 'Custom Data Field added successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
440 |
+
break;
|
441 |
default:
|
442 |
$this->do_action_list();
|
443 |
+
return;
|
444 |
}
|
445 |
|
446 |
+
$this->print_header_message( $message );
|
447 |
if ( 'save_back' == $subaction ) {
|
448 |
$this->do_action_list();
|
449 |
} else {
|
450 |
$this->print_edit_table_form( $table['id'] );
|
451 |
}
|
452 |
+
} elseif ( isset( $_GET['table_id'] ) && $this->table_exists( $_GET['table_id'] ) ) {
|
453 |
$this->print_edit_table_form( $_GET['table_id'] );
|
454 |
} else {
|
455 |
$this->do_action_list();
|
492 |
$this->import_instance->import_table();
|
493 |
$imported_table = $this->import_instance->imported_table;
|
494 |
$table = array_merge( $this->default_table, $imported_table );
|
495 |
+
|
496 |
+
$rows = count( $table['data'] );
|
497 |
+
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
498 |
+
$rows = ( 0 < $rows ) ? $rows : 1;
|
499 |
+
$cols = ( 0 < $cols ) ? $cols : 1;
|
500 |
+
$table['visibility']['rows'] = array_fill( 0, $rows, false );
|
501 |
+
$table['visibility']['columns'] = array_fill( 0, $cols, false );
|
502 |
+
|
503 |
$table['id'] = $this->get_new_table_id();
|
504 |
$this->save_table( $table );
|
505 |
}
|
512 |
} else {
|
513 |
$message = __( 'You did not select any tables!', WP_TABLE_RELOADED_TEXTDOMAIN );
|
514 |
}
|
515 |
+
$this->print_header_message( $message );
|
516 |
}
|
517 |
$this->do_action_list();
|
518 |
}
|
532 |
|
533 |
$this->save_table( $new_table );
|
534 |
|
535 |
+
$this->print_header_message( sprintf( __( 'Table "%s" copied successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $new_table['name'] ) ) );
|
536 |
}
|
537 |
$this->do_action_list();
|
538 |
}
|
548 |
switch( $_GET['item'] ) {
|
549 |
case 'table':
|
550 |
$this->delete_table( $table_id );
|
551 |
+
$this->print_header_message( sprintf( __( 'Table "%s" deleted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ) ) );
|
552 |
$this->do_action_list();
|
553 |
break;
|
554 |
case 'row':
|
557 |
// delete row with key $row_id, if there are at least 2 rows
|
558 |
if ( ( 1 < $rows ) && ( -1 < $row_id ) ) {
|
559 |
array_splice( $table['data'], $row_id, 1 );
|
560 |
+
array_splice( $table['visibility']['rows'], $row_id, 1 );
|
561 |
$this->save_table( $table );
|
562 |
+
$this->print_header_message( __( 'Row deleted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
563 |
}
|
564 |
$this->print_edit_table_form( $table_id );
|
565 |
break;
|
571 |
if ( ( 1 < $cols ) && ( -1 < $col_id ) ) {
|
572 |
foreach ( $table['data'] as $row_idx => $row )
|
573 |
array_splice( $table['data'][$row_idx], $col_id, 1 );
|
574 |
+
array_splice( $table['visibility']['columns'], $col_id, 1 );
|
575 |
+
$this->save_table( $table );
|
576 |
+
$this->print_header_message( __( 'Column deleted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
577 |
+
}
|
578 |
+
$this->print_edit_table_form( $table_id );
|
579 |
+
break;
|
580 |
+
case 'custom_field':
|
581 |
+
$name = ( isset( $_GET['element_id'] ) ) ? $_GET['element_id'] : '';
|
582 |
+
if ( !empty( $name ) && isset( $table['custom_fields'][$name] ) ) {
|
583 |
+
unset( $table['custom_fields'][$name] );
|
584 |
$this->save_table( $table );
|
585 |
+
$message = __( 'Custom Data Field deleted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
586 |
+
} else {
|
587 |
+
$message = __( 'Custom Data Field could not be deleted.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
588 |
}
|
589 |
+
$this->print_header_message( $message );
|
590 |
$this->print_edit_table_form( $table_id );
|
591 |
break;
|
592 |
default:
|
593 |
+
$this->print_header_message( __( 'Delete failed.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
594 |
$this->do_action_list();
|
595 |
} // end switch
|
596 |
} else {
|
614 |
// init new empty row (with all columns) and insert it before row with key $row_id
|
615 |
$new_row = array( array_fill( 0, $cols, '' ) );
|
616 |
array_splice( $table['data'], $row_id, 0, $new_row );
|
617 |
+
array_splice( $table['visibility']['rows'], $row_id, 0, false );
|
618 |
$this->save_table( $table );
|
619 |
$message = __( 'Row inserted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
620 |
break;
|
624 |
$new_col = '';
|
625 |
foreach ( $table['data'] as $row_idx => $row )
|
626 |
array_splice( $table['data'][$row_idx], $col_id, 0, $new_col );
|
627 |
+
array_splice( $table['visibility']['columns'], $col_id, 0, false );
|
628 |
$this->save_table( $table );
|
629 |
$message = __( 'Column inserted successfully.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
630 |
break;
|
631 |
default:
|
632 |
$message = __( 'Insert failed.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
633 |
}
|
634 |
+
$this->print_header_message( $message );
|
635 |
$this->print_edit_table_form( $table_id );
|
636 |
} else {
|
637 |
$this->do_action_list();
|
680 |
$this->import_instance->mimetype = sprintf( __( 'from %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $_POST['import_url'] );
|
681 |
$this->import_instance->import_from = 'url';
|
682 |
$url = clean_url( $_POST['import_url'] );
|
683 |
+
$temp_data = wp_remote_fopen( $url );
|
684 |
+
$this->import_instance->import_data = ( false !== $temp_data ) ? $temp_data : '';
|
685 |
$this->import_instance->import_format = $_POST['import_format'];
|
686 |
$this->import_instance->import_table();
|
687 |
$error = $this->import_instance->error;
|
688 |
$imported_table = $this->import_instance->imported_table;
|
689 |
} else { // no valid data submitted
|
690 |
+
$this->print_header_message( __( 'Table could not be imported.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
691 |
$this->print_import_table_form();
|
692 |
+
return;
|
693 |
}
|
694 |
|
695 |
$table = array_merge( $this->default_table, $imported_table );
|
706 |
$success_message = sprintf( __( 'Table imported successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
707 |
}
|
708 |
|
709 |
+
$rows = count( $table['data'] );
|
710 |
+
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
711 |
+
$rows = ( 0 < $rows ) ? $rows : 1;
|
712 |
+
$cols = ( 0 < $cols ) ? $cols : 1;
|
713 |
+
$table['visibility']['rows'] = array_fill( 0, $rows, false );
|
714 |
+
$table['visibility']['columns'] = array_fill( 0, $cols, false );
|
715 |
|
716 |
if ( false == $error ) {
|
717 |
+
$this->save_table( $table );
|
718 |
+
$this->print_header_message( $success_message );
|
719 |
$this->print_edit_table_form( $table['id'] );
|
720 |
} else {
|
721 |
+
$this->print_header_message( __( 'Table could not be imported.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
722 |
$this->print_import_table_form();
|
723 |
}
|
724 |
+
} elseif ( isset( $_GET['import_format'] ) && 'wp_table' == $_GET['import_format'] && isset( $_GET['wp_table_id'] ) ) {
|
725 |
check_admin_referer( $this->get_nonce( 'import' ) );
|
726 |
|
727 |
// do import
|
732 |
|
733 |
$table = array_merge( $this->default_table, $imported_table );
|
734 |
|
735 |
+
$rows = count( $table['data'] );
|
736 |
+
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
737 |
+
$table['visibility']['rows'] = array_fill( 0, $rows, false );
|
738 |
+
$table['visibility']['columns'] = array_fill( 0, $cols, false );
|
739 |
+
|
740 |
$table['id'] = $this->get_new_table_id();
|
741 |
|
742 |
$this->save_table( $table );
|
743 |
|
744 |
+
$this->print_header_message( __( 'Table imported successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
745 |
$this->print_edit_table_form( $table['id'] );
|
746 |
} else {
|
747 |
$this->print_import_table_form();
|
762 |
$this->export_instance->export_table();
|
763 |
$exported_table = $this->export_instance->exported_table;
|
764 |
|
765 |
+
if ( isset( $_POST['download_export_file'] ) && 'true' == $_POST['download_export_file'] ) {
|
766 |
$filename = $table_to_export['id'] . '-' . $table_to_export['name'] . '-' . date('Y-m-d') . '.' . $_POST['export_format'];
|
767 |
$this->prepare_download( $filename, strlen( $exported_table ), 'text/' . $_POST['export_format'] );
|
768 |
echo $exported_table;
|
769 |
exit;
|
770 |
} else {
|
771 |
+
$this->print_header_message( sprintf( __( 'Table "%s" exported successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table_to_export['name'] ) ) );
|
772 |
$this->print_export_table_form( $_POST['table_id'], $exported_table );
|
773 |
}
|
774 |
} else {
|
775 |
+
$table_id = isset( $_REQUEST['table_id'] ) ? $_REQUEST['table_id'] : 0;
|
776 |
+
$this->print_export_table_form( $table_id );
|
777 |
}
|
778 |
}
|
779 |
|
787 |
// checkboxes: option value is defined by whether option isset (e.g. was checked) or not
|
788 |
$this->options['uninstall_upon_deactivation'] = isset( $new_options['uninstall_upon_deactivation'] );
|
789 |
$this->options['enable_tablesorter'] = isset( $new_options['enable_tablesorter'] );
|
790 |
+
$this->options['use_tablesorter_extended'] = isset( $new_options['use_tablesorter_extended'] );
|
791 |
+
$this->options['show_donate_nag'] = isset( $new_options['show_donate_nag'] );
|
792 |
$this->options['use_custom_css'] = isset( $new_options['use_custom_css'] );
|
793 |
// clean up CSS style input (if user enclosed it into <style...></style>
|
794 |
if ( isset( $new_options['custom_css'] ) ) {
|
799 |
|
800 |
$this->update_options();
|
801 |
|
802 |
+
$this->print_header_message( __( 'Options saved successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
803 |
}
|
804 |
$this->print_plugin_options_form();
|
805 |
}
|
815 |
$plugin = WP_TABLE_RELOADED_BASENAME;
|
816 |
deactivate_plugins( $plugin );
|
817 |
if ( false !== get_option( 'recently_activated', false ) )
|
818 |
+
update_option( 'recently_activated', array( $plugin => time() ) + (array)get_option( 'recently_activated' ) );
|
819 |
|
820 |
$this->print_page_header( __( 'WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
821 |
+
$this->print_header_message( __( 'Plugin deactivated successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
822 |
+
echo "<p>" . __( 'All tables, data and options were deleted. You may now remove the plugin\'s subfolder from your WordPress plugin folder.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</p>";
|
823 |
$this->print_page_footer();
|
824 |
}
|
825 |
|
837 |
|
838 |
$this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
839 |
?>
|
840 |
+
<div style="clear:both;"><p>
|
841 |
+
<?php _e( 'This is a list of all available tables.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You may insert a table into a post or page here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br />
|
842 |
+
<?php _e( 'Click the "Insert" link after the desired table and the corresponding shortcode will be inserted into the editor (<strong>[table id=<the_table_ID> /]</strong>).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
843 |
+
</p></div>
|
844 |
<?php
|
845 |
if ( 0 < count( $this->tables ) ) {
|
846 |
?>
|
847 |
<div style="clear:both;">
|
848 |
+
<table class="widefat">
|
849 |
<thead>
|
850 |
<tr>
|
851 |
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
854 |
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
855 |
</tr>
|
856 |
</thead>
|
857 |
+
<tfoot>
|
858 |
+
<tr>
|
859 |
+
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
860 |
+
<th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
861 |
+
<th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
862 |
+
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
863 |
+
</tr>
|
864 |
+
</tfoot>
|
865 |
<tbody>
|
866 |
<?php
|
867 |
$bg_style_index = 0;
|
868 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
869 |
$bg_style_index++;
|
870 |
+
$bg_style = ( 1 == ($bg_style_index % 2) ) ? ' class="alternate"' : '';
|
871 |
|
872 |
// get name and description to show in list
|
873 |
$table = $this->load_table( $id );
|
896 |
exit;
|
897 |
}
|
898 |
|
899 |
+
// ###################################################################################################################
|
900 |
+
function do_action_ajax_preview() {
|
901 |
+
check_admin_referer( $this->get_nonce( 'ajax_preview' ) );
|
902 |
+
|
903 |
+
// init language support
|
904 |
+
$this->init_language_support();
|
905 |
+
|
906 |
+
$table_id = ( isset( $_GET['table_id'] ) && 0 < $_GET['table_id'] ) ? $_GET['table_id'] : 0;
|
907 |
+
|
908 |
+
if ( $this->table_exists( $table_id ) ) {
|
909 |
+
$table = $this->load_table( $_GET['table_id'] );
|
910 |
+
|
911 |
+
$this->print_page_header( sprintf( __( 'Preview of Table "%s" (ID %s)', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ), $this->safe_output( $table['id'] ) ) );
|
912 |
+
?>
|
913 |
+
<div style="clear:both;"><p>
|
914 |
+
<?php _e( 'This is a preview of the table data.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
915 |
+
<?php _e( 'Because of CSS styling, the table might look different on your page!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
916 |
+
<?php echo sprintf( __( 'To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['id'] ) ); ?>
|
917 |
+
</p></div>
|
918 |
+
<div style="clear:both;">
|
919 |
+
<?php
|
920 |
+
$WP_Table_Reloaded_Frontend = $this->create_class_instance( 'WP_Table_Reloaded_Frontend', 'wp-table-reloaded-frontend.php', '' );
|
921 |
+
$atts = array( 'id' => $_GET['table_id'] );
|
922 |
+
echo $WP_Table_Reloaded_Frontend->handle_content_shortcode_table( $atts );
|
923 |
+
?>
|
924 |
+
</div>
|
925 |
+
<?php
|
926 |
+
$this->print_page_footer();
|
927 |
+
} else {
|
928 |
+
?>
|
929 |
+
<div style="clear:both;"><p style="width:97%;"><?php _e( 'There is no table with this ID!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p></div>
|
930 |
+
<?php
|
931 |
+
}
|
932 |
+
|
933 |
+
// necessary to stop page building here!
|
934 |
+
exit;
|
935 |
+
}
|
936 |
+
|
937 |
+
// ###################################################################################################################
|
938 |
+
function do_action_ajax_delete_table() {
|
939 |
+
check_ajax_referer( $this->get_nonce( 'delete', 'table' ) );
|
940 |
+
$table_id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
|
941 |
+
$this->delete_table( $table_id );
|
942 |
+
die('1');
|
943 |
+
}
|
944 |
+
|
945 |
+
// ###################################################################################################################
|
946 |
+
// user donated
|
947 |
+
function do_action_hide_donate_nag() {
|
948 |
+
check_admin_referer( $this->get_nonce( 'hide_donate_nag' ) );
|
949 |
+
|
950 |
+
$this->options['show_donate_nag'] = false;
|
951 |
+
$this->update_options();
|
952 |
+
|
953 |
+
if ( isset( $_GET['user_donated'] ) && true == $_GET['user_donated'] ) {
|
954 |
+
$this->print_header_message( __( 'Thank you very much! Your donation is highly appreciated. You just contributed to the further development of WP-Table Reloaded!', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
955 |
+
} else {
|
956 |
+
$this->print_header_message( sprintf( __( '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 "Donate" button on the <a href="%s">WP-Table Reloaded website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/donate-message/' ) );
|
957 |
+
}
|
958 |
+
|
959 |
+
$this->print_list_tables_form();
|
960 |
+
}
|
961 |
+
|
962 |
// ###################################################################################################################
|
963 |
// ########################################## ####################################################
|
964 |
// ########################################## Print Forms ####################################################
|
968 |
// ###################################################################################################################
|
969 |
// list all tables
|
970 |
function print_list_tables_form() {
|
971 |
+
$this->print_page_header( __( 'List of Tables', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ‹ ' . __( 'WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
972 |
$this->print_submenu_navigation( 'list' );
|
973 |
?>
|
974 |
<div style="clear:both;"><p><?php _e( 'This is a list of all available tables.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You may add, edit, copy or delete tables here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br />
|
979 |
<div style="clear:both;">
|
980 |
<form method="post" action="<?php echo $this->get_action_url(); ?>">
|
981 |
<?php wp_nonce_field( $this->get_nonce( 'bulk_edit' ) ); ?>
|
982 |
+
<table class="widefat" id="wp-table-reloaded-list">
|
983 |
<thead>
|
984 |
<tr>
|
985 |
<th class="check-column" scope="col"><input type="checkbox" /></th>
|
986 |
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
987 |
<th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
988 |
<th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
989 |
+
<th scope="col"><?php _e( 'Last Modified', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
990 |
</tr>
|
991 |
</thead>
|
992 |
+
<tfoot>
|
993 |
+
<tr>
|
994 |
+
<th class="check-column" scope="col"><input type="checkbox" /></th>
|
995 |
+
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
996 |
+
<th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
997 |
+
<th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
998 |
+
<th scope="col"><?php _e( 'Last Modified', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
999 |
+
</tr>
|
1000 |
+
</tfoot>
|
1001 |
<?php
|
1002 |
+
echo "<tbody id=\"the-list\" class=\"list:wp-table-reloaded-table\">\n";
|
1003 |
$bg_style_index = 0;
|
1004 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
1005 |
$bg_style_index++;
|
1006 |
+
$bg_style = ( 1 == ($bg_style_index % 2) ) ? ' class="even"' : ' class="odd"';
|
1007 |
|
1008 |
// get name and description to show in list
|
1009 |
$table = $this->load_table( $id );
|
1010 |
+
$name = ( !empty( $table['name'] ) ) ? $this->safe_output( $table['name'] ) : __( '(no name)', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1011 |
+
$description = ( !empty( $table['description'] ) ) ? $this->safe_output( $table['description'] ) : __( '(no description)', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1012 |
+
$last_modified = $this->format_datetime( $table['last_modified'] );
|
1013 |
+
$last_editor = $this->get_last_editor( $table['last_editor_id'] );
|
1014 |
+
if ( !empty( $last_editor ) )
|
1015 |
+
$last_editor = __( 'by', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ' . $last_editor;
|
1016 |
unset( $table );
|
1017 |
|
1018 |
$edit_url = $this->get_action_url( array( 'action' => 'edit', 'table_id' => $id ), false );
|
1019 |
$copy_url = $this->get_action_url( array( 'action' => 'copy', 'table_id' => $id ), true );
|
1020 |
$export_url = $this->get_action_url( array( 'action' => 'export', 'table_id' => $id ), false );
|
1021 |
$delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $id, 'item' => 'table' ), true );
|
1022 |
+
$preview_url = $this->get_action_url( array( 'action' => 'ajax_preview', 'table_id' => $id ), true );
|
1023 |
+
|
1024 |
+
echo "<tr id=\"wp-table-reloaded-table-{$id}\" {$bg_style}>\n";
|
1025 |
+
echo "\t<th class=\"check-column no-wrap\" scope=\"row\"><input type=\"checkbox\" name=\"tables[]\" value=\"{$id}\" /></th>\n";
|
1026 |
+
echo "\t<th scope=\"row\" class=\"no-wrap table-id\">{$id}</th>\n";
|
1027 |
+
echo "\t<td>\n";
|
1028 |
+
echo "\t\t<a title=\"" . sprintf( __( 'Edit %s', WP_TABLE_RELOADED_TEXTDOMAIN ), ""{$name}"" ) . "\" class=\"row-title\" href=\"{$edit_url}\">{$name}</a>\n";
|
1029 |
+
echo "\t\t<div class=\"row-actions no-wrap\">";
|
1030 |
+
echo "<a href=\"{$edit_url}\">" . __( 'Edit', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
|
1031 |
+
$shortcode = "[table id={$id} /]";
|
1032 |
+
echo "<a href=\"javascript:void(0);\" class=\"table_shortcode_link\" title=\"{$shortcode}\">" . __( 'Shortcode', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
|
1033 |
echo "<a class=\"copy_table_link\" href=\"{$copy_url}\">" . __( 'Copy', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
|
1034 |
echo "<a href=\"{$export_url}\">" . __( 'Export', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>" . " | ";
|
1035 |
+
echo "<span class=\"delete\"><a class=\"delete:the-list:wp-table-reloaded-table-{$id} delete_table_link\" href=\"{$delete_url}\">" . __( 'Delete', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a></span>" . " | ";
|
1036 |
+
$preview_title = sprintf( __( 'Preview of Table %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $id );
|
1037 |
+
echo "<a class=\"thickbox\" href=\"{$preview_url}\" title=\"{$preview_title}\">" . __( 'Preview', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1038 |
+
echo "</div>\n";
|
1039 |
+
echo "\t</td>\n";
|
1040 |
+
echo "\t<td>{$description}</td>\n";
|
1041 |
+
echo "\t<td class=\"no-wrap\">{$last_modified}<br/>{$last_editor}</td>\n";
|
1042 |
echo "</tr>\n";
|
1043 |
|
1044 |
}
|
1058 |
echo "<div style=\"clear:both;\"><p>" . __( 'No tables found.', WP_TABLE_RELOADED_TEXTDOMAIN ) . '<br/>' . sprintf( __( 'You might <a href="%s">add</a> or <a href="%s">import</a> one!', WP_TABLE_RELOADED_TEXTDOMAIN ), $add_url, $import_url ) . "</p></div>";
|
1059 |
}
|
1060 |
$this->print_page_footer();
|
1061 |
+
// add tablesorter script
|
1062 |
+
add_action( 'admin_footer', array( &$this, 'output_tablesorter_js' ) );
|
1063 |
}
|
1064 |
+
|
1065 |
// ###################################################################################################################
|
1066 |
function print_add_table_form() {
|
1067 |
// Begin Add Table Form
|
1069 |
$this->print_submenu_navigation( 'add' );
|
1070 |
?>
|
1071 |
<div style="clear:both;">
|
1072 |
+
<p><?php _e( 'You can add a new table here. Just enter its name, a description (optional) and the number of rows and columns.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( 'You may add, insert or delete rows and columns later.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
1073 |
</div>
|
1074 |
<div style="clear:both;">
|
1075 |
<form method="post" action="<?php echo $this->get_action_url(); ?>">
|
1076 |
<?php wp_nonce_field( $this->get_nonce( 'add' ) ); ?>
|
1077 |
|
1078 |
+
<table class="wp-table-reloaded-options wp-table-reloaded-newtable">
|
1079 |
<tr valign="top">
|
1080 |
+
<th scope="row"><label for="table_name"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1081 |
+
<td><input type="text" name="table[name]" id="table_name" class="focus-blur-change" value="<?php _e( 'Enter Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" style="width:100%;" title="<?php _e( 'Enter Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" /></td>
|
1082 |
</tr>
|
1083 |
<tr valign="top">
|
1084 |
+
<th scope="row"><label for="table_description"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1085 |
+
<td><textarea name="table[description]" id="table_description" class="focus-blur-change" rows="15" cols="40" style="width:100%;height:85px;" title="<?php _e( 'Enter Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>"><?php _e( 'Enter Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></textarea></td>
|
1086 |
</tr>
|
1087 |
<tr valign="top">
|
1088 |
+
<th scope="row"><label for="table_rows"><?php _e( 'Number of Rows', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1089 |
+
<td><input type="text" name="table[rows]" id="table_rows" value="5" /></td>
|
1090 |
</tr>
|
1091 |
<tr valign="top">
|
1092 |
+
<th scope="row"><label for="table_cols"><?php _e( 'Number of Columns', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1093 |
+
<td><input type="text" name="table[cols]" id="table_cols" value="5" /></td>
|
1094 |
</tr>
|
1095 |
</table>
|
1096 |
|
1107 |
|
1108 |
// ###################################################################################################################
|
1109 |
function print_edit_table_form( $table_id ) {
|
|
|
1110 |
$table = $this->load_table( $table_id );
|
1111 |
|
1112 |
$rows = count( $table['data'] );
|
1113 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
1114 |
|
1115 |
+
$this->print_page_header( sprintf( __( 'Edit Table "%s" (ID %s)', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table['name'] ), $this->safe_output( $table['id'] ) ) );
|
1116 |
$this->print_submenu_navigation( 'edit' );
|
1117 |
?>
|
1118 |
<div style="clear:both;"><p><?php _e( 'You may edit the content of the table here. It is also possible to add or delete columns and rows.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br />
|
1119 |
+
<?php echo sprintf( __( 'To show this table in your pages, posts or text-widgets, use the shortcode <strong>[table id=%s /]</strong>.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table_id ) ); ?></p></div>
|
1120 |
<form method="post" action="<?php echo $this->get_action_url(); ?>">
|
1121 |
<?php wp_nonce_field( $this->get_nonce( 'edit' ) ); ?>
|
1122 |
+
<input type="hidden" name="table[id]" value="<?php echo $table['id']; ?>" />
|
1123 |
+
<input type="hidden" name="action" value="edit" />
|
1124 |
|
1125 |
<div class="postbox">
|
1126 |
<h3 class="hndle"><span><?php _e( 'Table Information', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
1127 |
<div class="inside">
|
1128 |
+
<table class="wp-table-reloaded-table-information">
|
1129 |
<tr valign="top">
|
1130 |
<th scope="row"><label for="table_id"><?php _e( 'Table ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1131 |
+
<td><input type="text" name="table_id" id="table_id" value="<?php echo $this->safe_output( $table['id'] ); ?>" style="width:80px" /></td>
|
1132 |
</tr>
|
1133 |
<tr valign="top">
|
1134 |
+
<th scope="row"><label for="table_name"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1135 |
+
<td><input type="text" name="table[name]" id="table_name" value="<?php echo $this->safe_output( $table['name'] ); ?>" /></td>
|
1136 |
</tr>
|
1137 |
<tr valign="top">
|
1138 |
+
<th scope="row"><label for="table_description"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1139 |
+
<td><textarea name="table[description]" id="table_description" rows="15" cols="40" style="height:84px;"><?php echo $this->safe_output( $table['description'] ); ?></textarea></td>
|
1140 |
</tr>
|
1141 |
+
<?php if ( !empty( $table['last_editor_id'] ) ) { ?>
|
1142 |
+
<tr valign="top">
|
1143 |
+
<th scope="row"><?php _e( 'Last Modified', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1144 |
+
<td><?php echo $this->format_datetime( $table['last_modified'] ); ?> <?php _e( 'by', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php echo $this->get_last_editor( $table['last_editor_id'] ); ?></td>
|
1145 |
+
</tr>
|
1146 |
+
<?php } ?>
|
1147 |
</table>
|
1148 |
</div>
|
1149 |
</div>
|
1162 |
<h3 class="hndle"><span><?php _e( 'Table Contents', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
1163 |
<div class="inside">
|
1164 |
<table class="widefat" style="width:auto;" id="table_contents">
|
1165 |
+
<?php
|
1166 |
+
// Table Header (Columns get a Letter between A and A+$cols-1)
|
1167 |
+
$cols_output = '';
|
1168 |
+
foreach ( range( 'A', chr( ord( 'A' ) + $cols - 1 ) ) as $letter )
|
1169 |
+
$cols_output .= "<th scope=\"col\">".$letter."</th>";
|
1170 |
+
?>
|
1171 |
<thead>
|
1172 |
<tr>
|
1173 |
+
<th scope="col"> </th>
|
1174 |
+
<?php echo $cols_output; ?>
|
1175 |
+
<th scope="col"> </th>
|
1176 |
+
<th class="check-column" scope="col"><input type="checkbox" style="display:none;" /></th><?php // "display:none;" because JS checks wrong index otherwise ?>
|
1177 |
+
<th scope="col"> </th>
|
|
|
|
|
1178 |
</tr>
|
1179 |
</thead>
|
1180 |
+
<tfoot>
|
1181 |
+
<tr>
|
1182 |
+
<th scope="col"> </th>
|
1183 |
+
<?php echo $cols_output; ?>
|
1184 |
+
<th scope="col"> </th>
|
1185 |
+
<th scope="col"> </th>
|
1186 |
+
<th scope="col"> </th>
|
1187 |
+
</tr>
|
1188 |
+
</tfoot>
|
1189 |
<tbody>
|
1190 |
<?php
|
1191 |
foreach ( $table['data'] as $row_idx => $table_row ) {
|
1192 |
echo "<tr>\n";
|
1193 |
+
// Table Header (Rows get a Number between 1 and $rows)
|
1194 |
+
$output_idx = $row_idx + 1;
|
1195 |
+
echo "\t<th scope=\"row\">{$output_idx}</th>\n";
|
1196 |
+
foreach ( $table_row as $col_idx => $cell_content ) {
|
1197 |
+
$cell_content = $this->safe_output( $cell_content );
|
1198 |
+
$cell_name = "table[data][{$row_idx}][{$col_idx}]";
|
1199 |
+
echo "\t<td><textarea rows=\"1\" cols=\"20\" name=\"{$cell_name}\" class=\"edit_row_{$row_idx} edit_col_{$col_idx}\">{$cell_content}</textarea></td>\n";
|
1200 |
+
}
|
1201 |
+
$insert_row_url = $this->get_action_url( array( 'action' => 'insert', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
|
1202 |
+
$delete_row_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'row', 'element_id' => $row_idx ), true );
|
1203 |
+
echo "\t<td><a href=\"{$insert_row_url}\">" . __( 'Insert Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
|
1204 |
+
if ( 1 < $rows ) // don't show delete link for last and only row
|
1205 |
+
echo " | <a class=\"delete_row_link\" href=\"{$delete_row_url}\">".__( 'Delete Row', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
|
1206 |
+
echo "</td>\n";
|
1207 |
+
$checked = ( isset( $table['visibility']['rows'][$col_idx] ) && true == $table['visibility']['rows'][$row_idx] ) ? 'checked="checked" ': '' ;
|
1208 |
+
echo "\t<td class=\"check-column\"><input type=\"checkbox\" name=\"table[visibility][rows][{$row_idx}]\" id=\"edit_row_{$row_idx}\" value=\"true\" {$checked}/> <label for=\"edit_row_{$row_idx}\">" . __( 'Row hidden', WP_TABLE_RELOADED_TEXTDOMAIN ) ."</label></td>\n";
|
1209 |
+
echo "\t<th scope=\"row\">{$output_idx}</th>\n";
|
1210 |
+
echo "</tr>";
|
1211 |
}
|
1212 |
+
|
1213 |
+
// ACTION links
|
1214 |
echo "<tr>\n";
|
1215 |
+
echo "\t<th scope=\"row\"> </th>\n";
|
1216 |
+
foreach ( $table['data'][0] as $col_idx => $cell_content ) {
|
1217 |
+
$insert_col_url = $this->get_action_url( array( 'action' => 'insert', 'table_id' => $table['id'], 'item' => 'col', 'element_id' => $col_idx ), true );
|
1218 |
+
$delete_col_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'col', 'element_id' => $col_idx ), true );
|
1219 |
+
echo "\t<td><a href=\"{$insert_col_url}\">" . __( 'Insert Column', WP_TABLE_RELOADED_TEXTDOMAIN )."</a>";
|
1220 |
+
if ( 1 < $cols ) // don't show delete link for last and only column
|
1221 |
+
echo " | <a class=\"delete_column_link\" href=\"{$delete_col_url}\">" . __('Delete Column', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1222 |
+
echo "</td>\n";
|
1223 |
+
}
|
1224 |
|
1225 |
// add rows/columns buttons
|
1226 |
+
echo "\t<td><input type=\"hidden\" name=\"insert[row][id]\" value=\"{$rows}\" /><input type=\"hidden\" name=\"insert[col][id]\" value=\"{$cols}\" />";
|
1227 |
+
|
1228 |
+
$row_insert = '<input type="text" name="insert[row][number]" value="1" style="width:30px" />';
|
1229 |
+
$col_insert = '<input type="text" name="insert[col][number]" value="1" style="width:30px" />';
|
1230 |
+
?>
|
1231 |
+
<?php echo sprintf( __( 'Add %s row(s)', WP_TABLE_RELOADED_TEXTDOMAIN ), $row_insert ); ?>
|
1232 |
+
<input type="submit" name="submit[insert_rows]" class="button-primary" value="<?php _e( 'Add', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" /><br/>
|
1233 |
+
<?php echo sprintf( __( 'Add %s column(s)', WP_TABLE_RELOADED_TEXTDOMAIN ), $col_insert ); ?>
|
1234 |
+
<input type="submit" name="submit[insert_cols]" class="button-primary" value="<?php _e( 'Add', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" /></td>
|
1235 |
+
<?php
|
1236 |
+
echo "\t<td> </td>\n";
|
1237 |
+
echo "\t<th scope=\"row\"> </th>\n";
|
1238 |
+
echo "</tr>";
|
1239 |
+
|
1240 |
+
// hide checkboxes
|
1241 |
+
echo "<tr class=\"hide-columns\">\n";
|
1242 |
+
echo "\t<th scope=\"row\"> </th>\n";
|
1243 |
+
foreach ( $table['data'][0] as $col_idx => $cell_content ) {
|
1244 |
+
$checked = ( isset( $table['visibility']['columns'][$col_idx] ) && true == $table['visibility']['columns'][$col_idx] ) ? 'checked="checked" ': '' ;
|
1245 |
+
echo "\t<td class=\"check-column\"><input type=\"checkbox\" name=\"table[visibility][columns][{$col_idx}]\" id=\"edit_col_{$col_idx}\" value=\"true\" {$checked}/> <label for=\"edit_col_{$col_idx}\">" . __( 'Column hidden', WP_TABLE_RELOADED_TEXTDOMAIN ) ."</label></td>";
|
1246 |
+
}
|
1247 |
+
echo "\t<td> </td>";
|
1248 |
+
echo "\t<td> </td>";
|
1249 |
+
echo "\t<th scope=\"row\"> </th>\n";
|
1250 |
echo "</tr>";
|
1251 |
?>
|
1252 |
</tbody>
|
1253 |
</table>
|
1254 |
</div>
|
1255 |
</div>
|
1256 |
+
<?php } //endif 0 < $rows/$cols ?>
|
|
|
|
|
|
|
|
|
|
|
1257 |
|
1258 |
+
<div class="postbox">
|
1259 |
+
<h3 class="hndle"><span><?php _e( 'Data Manipulation', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
1260 |
+
<div class="inside">
|
1261 |
+
<table class="wp-table-reloaded-data-manipulation widefat">
|
1262 |
+
<tr><td>
|
1263 |
+
<?php if ( 1 < $rows ) { // swap rows form
|
1264 |
$row1_select = '<select name="swap[row][1]">';
|
|
|
|
|
|
|
|
|
1265 |
$row2_select = '<select name="swap[row][2]">';
|
1266 |
+
foreach ( $table['data'] as $row_idx => $table_row ) {
|
1267 |
+
$row1_select .= "<option value=\"{$row_idx}\">" . ( $row_idx + 1 ) . "</option>";
|
1268 |
+
$row2_select .= "<option value=\"{$row_idx}\">" . ( $row_idx + 1 ) . "</option>";
|
1269 |
+
}
|
1270 |
+
$row1_select .= '</select>';
|
1271 |
$row2_select .= '</select>';
|
1272 |
|
1273 |
echo sprintf( __( 'Swap rows %s and %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $row1_select, $row2_select );
|
|
|
1274 |
?>
|
1275 |
<input type="submit" name="submit[swap_rows]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1276 |
<?php } // end if form swap rows ?>
|
1278 |
<?php if ( 1 < $cols ) { // swap cols form ?>
|
1279 |
<br/>
|
1280 |
<?php
|
|
|
1281 |
$col1_select = '<select name="swap[col][1]">';
|
|
|
|
|
|
|
|
|
1282 |
$col2_select = '<select name="swap[col][2]">';
|
1283 |
+
foreach ( $table['data'][0] as $col_idx => $cell_content ) {
|
1284 |
+
$col_letter = chr( ord( 'A' ) + $col_idx );
|
1285 |
+
$col1_select .= "<option value=\"{$col_idx}\">{$col_letter}</option>";
|
1286 |
+
$col2_select .= "<option value=\"{$col_idx}\">{$col_letter}</option>";
|
1287 |
+
}
|
1288 |
+
$col1_select .= '</select>';
|
1289 |
$col2_select .= '</select>';
|
1290 |
|
1291 |
echo sprintf( __( 'Swap columns %s and %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $col1_select, $col2_select );
|
|
|
1292 |
?>
|
1293 |
<input type="submit" name="submit[swap_cols]" class="button-primary" value="<?php _e( 'Swap', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1294 |
<?php } // end if form swap cols ?>
|
1295 |
+
</td><td>
|
1296 |
+
<?php if ( 1 < $rows ) { // move row form
|
1297 |
+
$row1_select = '<select name="move[row][1]">';
|
1298 |
+
$row2_select = '<select name="move[row][2]">';
|
1299 |
+
foreach ( $table['data'] as $row_idx => $table_row ) {
|
1300 |
+
$row1_select .= "<option value=\"{$row_idx}\">" . ( $row_idx + 1 ) . "</option>";
|
1301 |
+
$row2_select .= "<option value=\"{$row_idx}\">" . ( $row_idx + 1 ) . "</option>";
|
1302 |
+
}
|
1303 |
+
$row1_select .= '</select>';
|
1304 |
+
$row2_select .= '</select>';
|
1305 |
+
|
1306 |
+
$move_where_select = '<select name="move[where]">';
|
1307 |
+
$move_where_select .= "<option value=\"before\">" . __( 'before', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</option>";
|
1308 |
+
$move_where_select .= "<option value=\"after\">" . __( 'after', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</option>";
|
1309 |
+
$move_where_select .= '</select>';
|
1310 |
+
|
1311 |
+
echo sprintf( __( 'Move row %s %s row %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $row1_select, $move_where_select, $row2_select );
|
1312 |
+
?>
|
1313 |
+
<input type="submit" name="submit[move_row]" class="button-primary" value="<?php _e( 'Move', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1314 |
+
<?php } // end if form move row ?>
|
1315 |
+
|
1316 |
+
<?php if ( 1 < $cols ) { // move col form ?>
|
1317 |
+
<br/>
|
1318 |
+
<?php
|
1319 |
+
$col1_select = '<select name="move[col][1]">';
|
1320 |
+
$col2_select = '<select name="move[col][2]">';
|
1321 |
+
foreach ( $table['data'][0] as $col_idx => $cell_content ) {
|
1322 |
+
$col_letter = chr( ord( 'A' ) + $col_idx );
|
1323 |
+
$col1_select .= "<option value=\"{$col_idx}\">{$col_letter}</option>";
|
1324 |
+
$col2_select .= "<option value=\"{$col_idx}\">{$col_letter}</option>";
|
1325 |
+
}
|
1326 |
+
$col1_select .= '</select>';
|
1327 |
+
$col2_select .= '</select>';
|
1328 |
+
|
1329 |
+
$move_where_select = '<select name="move[where]">';
|
1330 |
+
$move_where_select .= "<option value=\"before\">" . __( 'before', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</option>";
|
1331 |
+
$move_where_select .= "<option value=\"after\">" . __( 'after', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</option>";
|
1332 |
+
$move_where_select .= '</select>';
|
1333 |
+
|
1334 |
+
echo sprintf( __( 'Move column %s %s column %s', WP_TABLE_RELOADED_TEXTDOMAIN ), $col1_select, $move_where_select, $col2_select );
|
1335 |
+
?>
|
1336 |
+
<input type="submit" name="submit[move_col]" class="button-primary" value="<?php _e( 'Move', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1337 |
+
<?php } // end if form move col ?>
|
1338 |
+
</td></tr>
|
1339 |
+
<tr><td>
|
1340 |
+
<a id="a-insert-link" class="button-primary" href="javascript:void(0);"><?php _e( 'Insert Link', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
|
1341 |
+
<a id="a-insert-image" href="media-upload.php?type=image&tab=library&TB_iframe=true" class="thickbox button-primary" title="<?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" onclick="javascript:return false;"><?php _e( 'Insert Image', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a>
|
1342 |
+
</td><td>
|
1343 |
<?php if ( 1 < $rows ) { // sort form
|
1344 |
|
1345 |
$col_select = '<select name="sort[col]">';
|
1357 |
?>
|
1358 |
<input type="submit" name="submit[sort]" class="button-primary" value="<?php _e( 'Sort', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1359 |
<?php } // end if sort form ?>
|
1360 |
+
</td></tr>
|
1361 |
+
</table>
|
|
|
1362 |
</div>
|
1363 |
</div>
|
1364 |
+
|
1365 |
+
<p class="submit">
|
1366 |
+
<input type="submit" name="submit[update]" class="button-primary" value="<?php _e( 'Update Changes', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1367 |
+
<input type="submit" name="submit[save_back]" class="button-primary" value="<?php _e( 'Save and go back', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1368 |
+
<?php
|
1369 |
+
$list_url = $this->get_action_url( array( 'action' => 'list' ) );
|
1370 |
+
echo " <a class=\"button-primary\" href=\"{$list_url}\">" . __( 'Cancel', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1371 |
+
?>
|
1372 |
+
</p>
|
1373 |
+
|
1374 |
<div class="postbox">
|
1375 |
<h3 class="hndle"><span><?php _e( 'Table Settings', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
1376 |
<div class="inside">
|
1378 |
<table class="wp-table-reloaded-options">
|
1379 |
<tr valign="top">
|
1380 |
<th scope="row"><?php _e( 'Alternating row colors', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1381 |
+
<td><input type="checkbox" name="table[options][alternating_row_colors]" id="table_options_alternating_row_colors"<?php echo ( true == $table['options']['alternating_row_colors'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="table_options_alternating_row_colors"><?php _e( 'Every second row will have an alternating background color.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1382 |
</tr>
|
1383 |
+
<tr valign="top">
|
1384 |
<th scope="row"><?php _e( 'Use Table Headline', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1385 |
+
<td><input type="checkbox" name="table[options][first_row_th]" id="table_options_first_row_th"<?php echo ( true == $table['options']['first_row_th'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="table_options_first_row_th"><?php _e( 'The first row of your table will use the <th> tag.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1386 |
</tr>
|
1387 |
<tr valign="top">
|
1388 |
<th scope="row"><?php _e( 'Print Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1389 |
+
<td><input type="checkbox" name="table[options][print_name]" id="table_options_print_name"<?php echo ( true == $table['options']['print_name'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="table_options_print_name"><?php _e( 'The Table Name will be written above the table in a <h2> tag.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1390 |
</tr>
|
1391 |
<tr valign="top">
|
1392 |
<th scope="row"><?php _e( 'Print Table Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1393 |
+
<td><input type="checkbox" name="table[options][print_description]" id="table_options_print_description"<?php echo ( true == $table['options']['print_description'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="table_options_print_description"><?php _e( 'The Table Description will be written under the table.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1394 |
</tr>
|
1395 |
<tr valign="top" id="options_use_tablesorter">
|
1396 |
<th scope="row"><?php _e( 'Use Tablesorter', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1397 |
+
<td>
|
1398 |
+
<input type="hidden" id="tablesorter_enabled" value="<?php echo $this->options['enable_tablesorter']; ?>" />
|
1399 |
+
<input type="checkbox" name="table[options][use_tablesorter]" id="table_options_use_tablesorter"<?php echo ( true == $table['options']['use_tablesorter'] ) ? ' checked="checked"': '' ; ?><?php echo ( false == $this->options['enable_tablesorter'] || false == $table['options']['first_row_th'] ) ? ' disabled="disabled"': '' ; ?> value="true" /> <label for="table_options_use_tablesorter"><?php _e( 'You may sort a table using the <a href="http://www.tablesorter.com/">Tablesorter-jQuery-Plugin</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/> <?php _e( '<small>Attention: You must have Tablesorter enabled on the "Plugin Options" screen and the option "Use Table Headline" has to be enabled above for this to work!</small>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1400 |
</tr>
|
1401 |
</table>
|
1402 |
</div>
|
1403 |
</div>
|
1404 |
+
|
|
|
|
|
1405 |
<p class="submit">
|
1406 |
<input type="submit" name="submit[update]" class="button-primary" value="<?php _e( 'Update Changes', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1407 |
<input type="submit" name="submit[save_back]" class="button-primary" value="<?php _e( 'Save and go back', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1408 |
<?php
|
1409 |
$list_url = $this->get_action_url( array( 'action' => 'list' ) );
|
1410 |
echo " <a class=\"button-primary\" href=\"{$list_url}\">" . __( 'Cancel', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
|
|
|
|
|
|
|
|
|
|
|
|
1411 |
?>
|
1412 |
</p>
|
1413 |
+
|
1414 |
+
<div class="postbox">
|
1415 |
+
<h3 class="hndle"><span><?php _e( 'Custom Data Fields', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
1416 |
+
<div class="inside">
|
1417 |
+
<?php _e( 'Custom Data Fields can be used to add extra metadata to a table.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'For example, this could be information about the source or the creator of the data.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1418 |
+
<br/>
|
1419 |
+
<?php echo sprintf( __( 'You can show this data in the same way as tables by using the shortcode <strong>[table-info id=%s field="<field-name>" /]</strong>.', WP_TABLE_RELOADED_TEXTDOMAIN ), $this->safe_output( $table_id ) ); ?>
|
1420 |
+
<br/><br/>
|
1421 |
+
<?php if ( isset( $table['custom_fields'] ) && !empty( $table['custom_fields'] ) ) { ?>
|
1422 |
+
<table class="widefat" style="width:100%" id="table_custom_fields">
|
1423 |
+
<thead>
|
1424 |
+
<tr>
|
1425 |
+
<th scope="col"><?php _e( 'Field Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1426 |
+
<th scope="col"><?php _e( 'Value', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1427 |
+
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1428 |
+
</tr>
|
1429 |
+
</thead>
|
1430 |
+
<tbody>
|
1431 |
+
<?php
|
1432 |
+
foreach ( $table['custom_fields'] as $name => $value ) {
|
1433 |
+
$name = $this->safe_output( $name );
|
1434 |
+
$value = $this->safe_output( $value );
|
1435 |
+
echo "<tr>\n";
|
1436 |
+
echo "\t<td style=\"width:10%;\">{$name}</td>\n";
|
1437 |
+
echo "\t<td style=\"width:75%;\"><textarea rows=\"1\" cols=\"20\" name=\"table[custom_fields][{$name}]\" style=\"width:90%\">{$value}</textarea></td>\n";
|
1438 |
+
$delete_cf_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'custom_field', 'element_id' => $name ), true );
|
1439 |
+
echo "\t<td style=\"width:15%;min-width:200px;\">";
|
1440 |
+
echo "<a href=\"{$delete_cf_url}\">" . __( 'Delete Field', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1441 |
+
$shortcode = "[table-info id=" . $this->safe_output( $table_id ) . " field="{$name}" /]";
|
1442 |
+
echo " | <a href=\"javascript:void(0);\" class=\"cf_shortcode_link\" title=\"{$shortcode}\">" . __( 'View shortcode', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1443 |
+
echo "</td>\n";
|
1444 |
+
echo "</tr>";
|
1445 |
+
}
|
1446 |
+
?>
|
1447 |
+
</tbody>
|
1448 |
+
</table>
|
1449 |
+
<br/>
|
1450 |
+
<?php } // endif custom_fields ?>
|
1451 |
+
<?php _e( 'To add a new Custom Data Field, enter its name (only lowercase letters, numbers, _ and -).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
1452 |
+
<?php _e( 'Custom Data Field Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>: <input type="text" id="insert_custom_field_name" name="insert[custom_field]" value="" style="width:300px" /> <input type="submit" name="submit[insert_cf]" class="button-primary" value="<?php _e( 'Add', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1453 |
+
</div>
|
1454 |
+
</div>
|
1455 |
+
|
1456 |
+
<p class="submit">
|
1457 |
+
<input type="submit" name="submit[update]" class="button-primary" value="<?php _e( 'Update Changes', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1458 |
+
<input type="submit" name="submit[save_back]" class="button-primary" value="<?php _e( 'Save and go back', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1459 |
+
<?php
|
1460 |
+
$list_url = $this->get_action_url( array( 'action' => 'list' ) );
|
1461 |
+
echo " <a class=\"button-primary\" href=\"{$list_url}\">" . __( 'Cancel', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1462 |
+
?>
|
1463 |
+
</p>
|
1464 |
+
|
1465 |
+
<p>
|
1466 |
+
<?php echo __( 'Other actions', WP_TABLE_RELOADED_TEXTDOMAIN ) . ':';
|
1467 |
+
$delete_url = $this->get_action_url( array( 'action' => 'delete', 'table_id' => $table['id'], 'item' => 'table' ), true );
|
1468 |
+
$export_url = $this->get_action_url( array( 'action' => 'export', 'table_id' => $table['id'] ), false );
|
1469 |
+
echo " <a class=\"button-secondary delete_table_link\" href=\"{$delete_url}\">" . __( 'Delete Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1470 |
+
echo " <a class=\"button-secondary\" href=\"{$export_url}\">" . __( 'Export Table', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1471 |
+
?>
|
1472 |
+
</p>
|
1473 |
+
|
1474 |
+
</form>
|
1475 |
+
<?php
|
1476 |
+
$this->print_page_footer();
|
1477 |
}
|
1478 |
|
1479 |
// ###################################################################################################################
|
1483 |
$this->print_submenu_navigation( 'import' );
|
1484 |
?>
|
1485 |
<div style="clear:both;">
|
1486 |
+
<p><?php _e( 'You may import a table from existing data here.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( 'This may be a CSV, XML or HTML file, which need a certain structure though. Please consult the documentation.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?> <?php _e( 'You may also select the import source.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
1487 |
</div>
|
1488 |
<div style="clear:both;">
|
1489 |
<form method="post" enctype="multipart/form-data" action="<?php echo $this->get_action_url(); ?>">
|
1495 |
<?php
|
1496 |
$import_formats = $this->import_instance->import_formats;
|
1497 |
foreach ( $import_formats as $import_format => $longname )
|
1498 |
+
echo "<option" . ( isset( $_POST['import_format'] ) && ( $import_format == $_POST['import_format'] ) ? ' selected="selected"': '' ) . " value=\"{$import_format}\">{$longname}</option>\n";
|
1499 |
?>
|
1500 |
</select></td>
|
1501 |
</tr>
|
1502 |
+
<?php if( 0 < count( $this->tables ) ) { ?>
|
1503 |
<tr valign="top" class="tr-import-addreplace">
|
1504 |
+
<th scope="row"><?php _e( 'Add or Replace Table?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1505 |
<td>
|
1506 |
+
<input name="import_addreplace" id="import_addreplace_add" type="radio" value="add" <?php echo ( isset( $_POST['import_addreplace'] ) && 'add' != $_POST['import_addreplace'] ) ? '' : 'checked="checked" ' ; ?>/> <label for="import_addreplace_add"><?php _e( 'Add as new Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1507 |
+
<input name="import_addreplace" id="import_addreplace_replace" type="radio" value="replace" <?php echo ( isset( $_POST['import_addreplace'] ) && 'replace' == $_POST['import_addreplace'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_addreplace_replace"><?php _e( 'Replace existing Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1508 |
</td>
|
1509 |
</tr>
|
1510 |
<tr valign="top" class="tr-import-addreplace-table">
|
1517 |
$name = $this->safe_output( $table['name'] );
|
1518 |
//$description = $this->safe_output( $table['description'] );
|
1519 |
unset( $table );
|
1520 |
+
echo "<option" . ( isset( $_POST['import_addreplace_table'] ) && ( $id == $_POST['import_addreplace_table'] ) ? ' selected="selected"': '' ) . " value=\"{$id}\">{$name} (ID {$id})</option>";
|
1521 |
}
|
1522 |
?>
|
1523 |
</select></td>
|
1524 |
</tr>
|
1525 |
+
<?php } ?>
|
1526 |
<tr valign="top" class="tr-import-from">
|
1527 |
+
<th scope="row"><?php _e( 'Select source for import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1528 |
<td>
|
1529 |
+
<input name="import_from" id="import_from_file" type="radio" value="file-upload" <?php echo ( isset( $_POST['import_from'] ) && 'file-upload' != $_POST['import_from'] ) ? '' : 'checked="checked" ' ; ?>/> <label for="import_from_file"><?php _e( 'File upload', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1530 |
+
<input name="import_from" id="import_from_url" type="radio" value="url" <?php echo ( isset( $_POST['import_from'] ) && 'url' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_url"><?php _e( 'URL', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1531 |
+
<input name="import_from" id="import_from_field" type="radio" value="form-field" <?php echo ( isset( $_POST['import_from'] ) && 'form-field' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_field"><?php _e( 'Manual input', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
1532 |
+
<input name="import_from" id="import_from_server" type="radio" value="server" <?php echo ( isset( $_POST['import_from'] ) && 'server' == $_POST['import_from'] ) ? 'checked="checked" ': '' ; ?>/> <label for="import_from_server"><?php _e( 'File on server', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label>
|
|
|
|
|
1533 |
</td>
|
1534 |
</tr>
|
1535 |
+
<tr valign="top" class="tr-import-file-upload">
|
1536 |
<th scope="row"><label for="import_file"><?php _e( 'Select File with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1537 |
<td><input name="import_file" id="import_file" type="file" /></td>
|
1538 |
</tr>
|
|
|
1539 |
<tr valign="top" class="tr-import-url">
|
1540 |
<th scope="row"><label for="import_url"><?php _e( 'URL to import table from', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1541 |
<td><input type="text" name="import_url" id="import_url" style="width:400px;" value="<?php echo ( isset( $_POST['import_url'] ) ) ? $_POST['import_url'] : 'http://' ; ?>" /></td>
|
1542 |
</tr>
|
|
|
1543 |
<tr valign="top" class="tr-import-server">
|
1544 |
<th scope="row"><label for="import_server"><?php _e( 'Path to file on server', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1545 |
<td><input type="text" name="import_server" id="import_server" style="width:400px;" value="<?php echo ( isset( $_POST['import_server'] ) ) ? $_POST['import_server'] : '' ; ?>" /></td>
|
1546 |
</tr>
|
1547 |
+
<tr valign="top" class="tr-import-form-field">
|
1548 |
<th scope="row" style="vertical-align:top;"><label for="import_data"><?php _e( 'Paste data with Table to Import', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label></th>
|
1549 |
<td><textarea name="import_data" id="import_data" rows="15" cols="40" style="width:600px;height:300px;"></textarea></td>
|
1550 |
</tr>
|
1583 |
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1584 |
</tr>
|
1585 |
</thead>
|
1586 |
+
<tfoot>
|
1587 |
+
<tr>
|
1588 |
+
<th class="check-column" scope="col"><input type="checkbox" /></th>
|
1589 |
+
<th scope="col"><?php _e( 'ID', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1590 |
+
<th scope="col"><?php _e( 'Table Name', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1591 |
+
<th scope="col"><?php _e( 'Description', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1592 |
+
<th scope="col"><?php _e( 'Action', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></th>
|
1593 |
+
</tr>
|
1594 |
+
</tfoot>
|
1595 |
<?php
|
1596 |
echo "<tbody>\n";
|
1597 |
$bg_style_index = 0;
|
1598 |
foreach ( $tables as $table ) {
|
1599 |
$bg_style_index++;
|
1600 |
+
$bg_style = ( 1 == ($bg_style_index % 2) ) ? ' class="alternate"' : '';
|
1601 |
|
1602 |
$table_id = $table->table_aid;
|
1603 |
$name = $table->table_name;
|
1630 |
</div>
|
1631 |
<?php
|
1632 |
} else {
|
1633 |
+
// at least one of the wp-Table tables was *not* found in database, so nothing to show here
|
1634 |
}
|
1635 |
$this->print_page_footer();
|
1636 |
}
|
1647 |
$this->print_submenu_navigation( 'export' );
|
1648 |
?>
|
1649 |
<div style="clear:both;">
|
1650 |
+
<p><?php _e( 'You may export a table here. Just select the table, your desired export format and (for CSV only) a delimiter.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
1651 |
+
<?php _e( 'You may opt to download the export file. Otherwise it will be shown on this page.', WP_TABLE_RELOADED_TEXTDOMAIN ); echo ' '; ?>
|
1652 |
+
<?php _e( 'Be aware that only the table data, but no options or settings are exported.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
1653 |
</div>
|
1654 |
<?php if( 0 < count( $this->tables ) ) { ?>
|
1655 |
<div style="clear:both;">
|
1677 |
<?php
|
1678 |
$export_formats = $this->export_instance->export_formats;
|
1679 |
foreach ( $export_formats as $export_format => $longname )
|
1680 |
+
echo "<option" . ( ( isset( $_POST['export_format'] ) && $export_format == $_POST['export_format'] ) ? ' selected="selected"': '' ) . " value=\"{$export_format}\">{$longname}</option>";
|
1681 |
?>
|
1682 |
</select></td>
|
1683 |
</tr>
|
1687 |
<?php
|
1688 |
$delimiters = $this->export_instance->delimiters;
|
1689 |
foreach ( $delimiters as $delimiter => $longname )
|
1690 |
+
echo "<option" . ( ( isset( $_POST['delimiter'] ) && $delimiter == $_POST['delimiter'] ) ? ' selected="selected"': '' ) . " value=\"{$delimiter}\">{$longname}</option>";
|
1691 |
?>
|
1692 |
</select> <?php _e( '<small>(Only needed for CSV export.)</small>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></td>
|
1693 |
</tr>
|
1694 |
<tr valign="top">
|
1695 |
<th scope="row"><?php _e( 'Download file', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1696 |
+
<td><input type="checkbox" name="download_export_file" id="download_export_file" value="true"<?php echo ( isset( $_POST['submit'] ) && !isset( $_POST['download_export_file'] ) ) ? '' : ' checked="checked"'; ?> /> <label for="download_export_file"><?php _e( 'Yes, I want to download the export file.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1697 |
</tr>
|
1698 |
</table>
|
1699 |
<input type="hidden" name="action" value="export" />
|
1722 |
$this->print_submenu_navigation( 'options' );
|
1723 |
?>
|
1724 |
<div style="clear:both;">
|
1725 |
+
<p><?php _e( 'You may change these global options.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
1726 |
+
<?php _e( 'They will effect all tables or the general plugin behavior.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
1727 |
</div>
|
1728 |
|
1729 |
<div style="clear:both;">
|
1735 |
<table class="wp-table-reloaded-options">
|
1736 |
<tr valign="top">
|
1737 |
<th scope="row"><?php _e( 'Enable Tablesorter-JavaScript?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1738 |
+
<td><input type="checkbox" name="options[enable_tablesorter]" id="options_enable_tablesorter"<?php echo ( true == $this->options['enable_tablesorter'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="options_enable_tablesorter"><?php _e( 'Yes, enable the <a href="http://www.tablesorter.com/">Tablesorter jQuery plugin</a>. This can be used to make tables sortable (can be activated for each table separately in its options).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></label></td>
|
1739 |
</tr>
|
1740 |
+
<tr valign="top">
|
1741 |
<th scope="row"><?php _e( 'Add custom CSS?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1742 |
+
<td><input type="checkbox" name="options[use_custom_css]" id="options_use_custom_css"<?php echo ( true == $this->options['use_custom_css'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="options_use_custom_css">
|
1743 |
+
<?php _e( 'Yes, include and load the following CSS-snippet on my site inside a <style>-HTML-tag.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1744 |
</label></td>
|
1745 |
</tr>
|
1746 |
<tr valign="top">
|
1747 |
<th scope="row"> </th>
|
1748 |
<td><label for="options_custom_css"><?php _e( 'Enter custom CSS', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</label><br/>
|
1749 |
+
<textarea name="options[custom_css]" id="options_custom_css" rows="15" cols="40" style="width:600px;height:300px;"<?php echo ( false == $this->options['use_custom_css'] ) ? ' disabled="disabled"': '' ; ?>><?php echo $this->safe_output( $this->options['custom_css'] ); ?></textarea><br/><br/>
|
1750 |
+
<?php
|
1751 |
+
$stylesheet = '/themes/' . get_stylesheet() . '/style.css';
|
1752 |
+
$editor_uri = 'theme-editor.php?file=' . $stylesheet;
|
1753 |
+
echo sprintf( __( 'You might get a better website performance, if you add the CSS styling to your theme\'s "style.css" (located at <a href="%s">%s</a>) instead.', WP_TABLE_RELOADED_TEXTDOMAIN ), $editor_uri, $stylesheet ); ?><br/>
|
1754 |
+
<?php echo sprintf( __( 'See the <a href="%s">plugin website</a> for styling examples or use one of the following: <a href="%s">Example Style 1</a> <a href="%s">Example Style 2</a>', WP_TABLE_RELOADED_TEXTDOMAIN ), 'http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/', 'http://tobias.baethge.com/download/plugins/additional/example-style-1.css', 'http://tobias.baethge.com/download/plugins/additional/example-style-2.css' ); ?><br/><?php _e( 'Just copy the contents of a file into the textarea.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
1755 |
+
<?php echo sprintf( __( 'Another possibility is, to include a CSS file (e.g. from your theme folder) with the CSS @import command: %s', WP_TABLE_RELOADED_TEXTDOMAIN ), '<code>@import url( "YOUR-CSS-FILE.css" ) screen, print;</code>' ); ?>
|
1756 |
</td>
|
1757 |
</tr>
|
1758 |
</table>
|
1759 |
</div>
|
1760 |
</div>
|
1761 |
|
1762 |
+
<div class="postbox closed">
|
1763 |
+
<h3 class="hndle"><span><?php _e( 'Advanced Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span><span class="hide_link"><small><?php _e( 'Hide', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span><span class="expand_link"><small><?php _e( 'Expand', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></span></h3>
|
1764 |
<div class="inside">
|
1765 |
<table class="wp-table-reloaded-options">
|
1766 |
+
<tr valign="top">
|
1767 |
+
<th scope="row"><?php _e( 'Use Tablesorter Extended?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1768 |
+
<td><input type="checkbox" name="options[use_tablesorter_extended]" id="options_use_tablesorter_extended"<?php echo ( true == $this->options['use_tablesorter_extended'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="options_use_tablesorter_extended"><small><?php _e( 'Yes, use Extended Tablesorter from <a href="http://tablesorter.openwerk.de">Sören Krings</a> instead of original Tablesorter script (EXPERIMENTAL FEATURE!).', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></label></td>
|
1769 |
+
</tr>
|
1770 |
+
<tr valign="top">
|
1771 |
<th scope="row"><?php _e( 'Uninstall Plugin upon Deactivation?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1772 |
+
<td><input type="checkbox" name="options[uninstall_upon_deactivation]" id="options_uninstall_upon_deactivation"<?php echo ( true == $this->options['uninstall_upon_deactivation'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="options_uninstall_upon_deactivation"><small><?php _e( 'Yes, uninstall everything when the plugin is deactivated. Attention: You should only enable this checkbox directly before deactivating the plugin from the WordPress plugins page!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/> <?php _e( '(This setting does not influence the "Manually Uninstall Plugin" button below!)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></label></td>
|
1773 |
+
</tr>
|
1774 |
+
<tr valign="top">
|
1775 |
+
<th scope="row"><?php _e( 'Allow donation message?', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>:</th>
|
1776 |
+
<td><input type="checkbox" name="options[show_donate_nag]" id="options_show_donate_nag"<?php echo ( true == $this->options['show_donate_nag'] ) ? ' checked="checked"': '' ; ?> value="true" /> <label for="options_show_donate_nag"><small><?php _e( 'Yes, show a donation message after 30 days of using the plugin.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></small></label></td>
|
1777 |
</tr>
|
1778 |
</table>
|
1779 |
</div>
|
1780 |
</div>
|
1781 |
|
1782 |
+
<input type="hidden" name="options[submit]" value="true" /><?php // need this, so that options get saved ?>
|
|
|
1783 |
<input type="hidden" name="action" value="options" />
|
1784 |
<p class="submit">
|
1785 |
<input type="submit" name="submit[form]" class="button-primary" value="<?php _e( 'Save Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>" />
|
1790 |
|
1791 |
<h2><?php _e( 'Manually Uninstall Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></h2>
|
1792 |
<div style="clear:both;">
|
1793 |
+
<p><?php _e( 'You may uninstall the plugin here. This <strong>will delete</strong> all tables, data, options, etc., that belong to the plugin, including all tables you added or imported.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( 'Be very careful with this and only click the button if you know what you are doing!', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></p>
|
1794 |
<?php
|
1795 |
$uninstall_url = $this->get_action_url( array( 'action' => 'uninstall' ), true );
|
1796 |
echo " <a class=\"button-secondary delete uninstall_plugin_link\" href=\"{$uninstall_url}\">" . __( 'Uninstall Plugin WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) . "</a>";
|
1804 |
// ###################################################################################################################
|
1805 |
function print_plugin_info_form() {
|
1806 |
// Begin Add Table Form
|
1807 |
+
$this->print_page_header( __( 'About WP-Table Reloaded', WP_TABLE_RELOADED_TEXTDOMAIN ) );
|
1808 |
$this->print_submenu_navigation( 'info' );
|
1809 |
?>
|
1810 |
|
1833 |
<div class="postbox">
|
1834 |
<h3 class="hndle"><span><?php _e( 'Author and Licence', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></span></h3>
|
1835 |
<div class="inside">
|
1836 |
+
<p><?php _e( 'This plugin was written by <a href="http://tobias.baethge.com/">Tobias Bäthge</a>. It is licensed as Free Software under GPL 2.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/><?php _e( 'If you like the plugin, please consider <a href="http://tobias.baethge.com/donate/"><strong>a donation</strong></a> and rate the plugin in the <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><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>
|
1837 |
</div>
|
1838 |
</div>
|
1839 |
|
1849 |
<br/>· <?php _e( 'Brazilian Portugues (thanks to <a href="http://www.pensarics.com/">Rics</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1850 |
<br/>· <?php _e( 'Czech (thanks to <a href="http://separatista.net/">Separatista</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1851 |
<br/>· <?php _e( 'French (thanks to <a href="http://ultratrailer.net/">Yin-Yin</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1852 |
+
<br/>· <?php _e( 'Italian (thanks to <a href="http://www.scrical.it/">Gabriella Mazzon</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1853 |
+
<br/>· <?php _e( 'Japanese (thanks to <a href="http://www.u-1.net/">Yuuichi</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1854 |
<br/>· <?php _e( 'Polish (thanks to Alex Kortan)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1855 |
<br/>· <?php _e( 'Russian (thanks to <a href="http://wp-skins.info/">Truper</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1856 |
<br/>· <?php _e( 'Spanish (thanks to <a href="http://theindependentproject.com/">Alejandro Urrutia</a> and <a href="http://halles.cl/">Matias Halles</a>)', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>
|
1868 |
<?php _e( 'You are using the following versions of the software. <strong>Please provide this information in bug reports.</strong>', WP_TABLE_RELOADED_TEXTDOMAIN ); ?><br/>
|
1869 |
<br/>· WP-Table Reloaded (DB): <?php echo $this->options['installed_version']; ?>
|
1870 |
<br/>· WP-Table Reloaded (Script): <?php echo $this->plugin_version; ?>
|
1871 |
+
<br/>· <?php _e( 'Plugin installed', WP_TABLE_RELOADED_TEXTDOMAIN ); ?>: <?php echo date( 'Y/m/d H:i:s', $this->options['install_time'] ); ?>
|
1872 |
<br/>· WordPress: <?php echo $GLOBALS['wp_version']; ?>
|
1873 |
<br/>· PHP: <?php echo phpversion(); ?>
|
1874 |
<br/>· mySQL (Server): <?php echo mysql_get_server_info(); ?>
|
1889 |
// ###################################################################################################################
|
1890 |
|
1891 |
// ###################################################################################################################
|
1892 |
+
function print_header_message( $text ) {
|
1893 |
echo "<div id='message' class='updated fade'><p><strong>{$text}</strong></p></div>";
|
1894 |
}
|
1895 |
|
1896 |
// ###################################################################################################################
|
1897 |
function print_page_header( $text = 'WP-Table Reloaded' ) {
|
1898 |
echo <<<TEXT
|
1899 |
+
<div class="wrap">
|
1900 |
<h2>{$text}</h2>
|
1901 |
+
<div id="poststuff">
|
1902 |
TEXT;
|
1903 |
}
|
1904 |
|
1911 |
function print_submenu_navigation( $action ) {
|
1912 |
?>
|
1913 |
<ul class="subsubsub">
|
1914 |
+
<li><a <?php if ( 'list' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'list' ), false ); ?>"><?php _e( 'List Tables', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1915 |
+
<li><a <?php if ( 'add' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'add' ), false ); ?>"><?php _e( 'Add new Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1916 |
+
<li><a <?php if ( 'import' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'import' ), false ); ?>"><?php _e( 'Import a Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1917 |
+
<li><a <?php if ( 'export' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'export' ), false ); ?>"><?php _e( 'Export a Table', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a></li>
|
1918 |
<li> </li>
|
1919 |
+
<li><a <?php if ( 'options' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'options' ), false ); ?>"><?php _e( 'Plugin Options', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a> | </li>
|
1920 |
+
<li><a <?php if ( 'info' == $action ) echo 'class="current" '; ?>href="<?php echo $this->get_action_url( array( 'action' => 'info' ), false ); ?>"><?php _e( 'About the Plugin', WP_TABLE_RELOADED_TEXTDOMAIN ); ?></a></li>
|
1921 |
</ul>
|
1922 |
<br class="clear" />
|
1923 |
<?php
|
1924 |
}
|
1925 |
+
|
1926 |
+
// ###################################################################################################################
|
1927 |
+
function may_print_donate_nag() {
|
1928 |
+
if ( false == $this->options['show_donate_nag'] )
|
1929 |
+
return false;
|
1930 |
+
|
1931 |
+
// how long has the plugin been installed?
|
1932 |
+
$secs = time() - $this->options['install_time'];
|
1933 |
+
$days = floor( $secs / (60*60*24) );
|
1934 |
+
return ( $days >= 30 ) ? true : false;
|
1935 |
+
}
|
1936 |
|
1937 |
// ###################################################################################################################
|
1938 |
+
// for each $action an approriate message will be shown
|
1939 |
+
function get_contextual_help_string( $action ) {
|
1940 |
+
// certain $actions need different help string, because different screen is actually shown
|
1941 |
+
|
1942 |
+
// problem: delete -> edit/list 'table' == $_GET['item'] -> list
|
1943 |
+
if ( 'delete' == $action && 'table' == $_GET['item'] )
|
1944 |
+
$action = 'list';
|
1945 |
+
// problem: edit+save -> list 'table' == $_GET['item'] -> list
|
1946 |
+
if ( 'edit' == $action && isset( $_POST['submit']['save_back'] ) )
|
1947 |
+
$action = 'list';
|
1948 |
+
// problem: import -> edit $_REQUEST['import_format'] -> edit
|
1949 |
+
if ( 'import' == $action && isset( $_REQUEST['import_format'] ) )
|
1950 |
+
$action = 'edit';
|
1951 |
+
// problem: add -> edit $_POST['table'] ) -> edit
|
1952 |
+
if ( 'add' == $action && isset( $_POST['table'] ) )
|
1953 |
+
$action = 'edit';
|
1954 |
+
// a few problems remain: import fails will show edit
|
1955 |
+
|
1956 |
+
switch( $action ) {
|
1957 |
+
case 'copy':
|
1958 |
+
case 'bulk_edit':
|
1959 |
+
case 'hide_donate_nag':
|
1960 |
+
case 'list':
|
1961 |
+
$help = __( 'This is the "List Tables" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1962 |
+
break;
|
1963 |
+
case 'insert':
|
1964 |
+
case 'edit':
|
1965 |
+
$help = __( 'This is the "Edit Table" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1966 |
+
break;
|
1967 |
+
case 'add':
|
1968 |
+
$help = __( 'This is the "Add new Table" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1969 |
+
break;
|
1970 |
+
case 'import':
|
1971 |
+
$help = __( 'This is the "Import a Table" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1972 |
+
break;
|
1973 |
+
case 'export':
|
1974 |
+
$help = __( 'This is the "Export a Table" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1975 |
+
break;
|
1976 |
+
case 'options':
|
1977 |
+
$help = __( 'This is the "Plugin Options" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1978 |
+
break;
|
1979 |
+
case 'uninstall':
|
1980 |
+
$help = __( 'Plugin deactivated successfully.', WP_TABLE_RELOADED_TEXTDOMAIN ) . ' ' . __( 'All tables, data and options were deleted. You may now remove the plugin\'s subfolder from your WordPress plugin folder.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1981 |
+
break;
|
1982 |
+
case 'info':
|
1983 |
+
$help = __( 'This is the "About WP-Table Reloaded" screen.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1984 |
+
break;
|
1985 |
+
// case 'ajax_list': // not needed, no contextual_help here
|
1986 |
+
// case 'ajax_preview': // not needed, no contextual_help here
|
1987 |
+
default:
|
1988 |
+
$help = '';
|
1989 |
+
break;
|
1990 |
+
}
|
1991 |
+
|
1992 |
+
$help .= '<br/><br/>' . __( 'More information can be found on the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/">plugin\'s website</a>.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1993 |
+
$help .= ' ' . __( 'See the <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/">documentation</a> or find out how to get <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/">support</a>.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1994 |
+
$help .= '<br/>' . __( 'If you like the plugin, please consider <a href="http://tobias.baethge.com/donate/"><strong>a donation</strong></a> and rate the plugin in the <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/">WordPress Plugin Directory</a>.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
1995 |
+
|
1996 |
+
return $help;
|
1997 |
}
|
1998 |
|
1999 |
// ###################################################################################################################
|
2000 |
function safe_output( $string ) {
|
2001 |
+
$string = stripslashes( $string ); // because $string is add_slashed before WP stores it in DB
|
2002 |
+
return wp_specialchars( $string, ENT_QUOTES, false, true );
|
2003 |
}
|
2004 |
|
2005 |
// ###################################################################################################################
|
2044 |
// ###################################################################################################################
|
2045 |
function save_table( $table ) {
|
2046 |
if ( 0 < $table['id'] ) {
|
2047 |
+
// update last changes data
|
2048 |
+
$table['last_modified'] = current_time('mysql');
|
2049 |
+
$user = wp_get_current_user();
|
2050 |
+
$table['last_editor_id'] = $user->ID;
|
2051 |
+
|
2052 |
$this->tables[ $table['id'] ] = ( isset( $this->tables[ $table['id'] ] ) ) ? $this->tables[ $table['id'] ] : $this->optionname['table'] . '_' . $table['id'];
|
2053 |
update_option( $this->tables[ $table['id'] ], $table );
|
2054 |
$this->update_tables();
|
2085 |
//header( 'Content-type: ' . $filetype. '; charset=' . get_option('blog_charset') );
|
2086 |
}
|
2087 |
|
2088 |
+
// ###################################################################################################################
|
2089 |
+
function format_datetime( $last_modified ) {
|
2090 |
+
return mysql2date( get_option('date_format'), $last_modified ) . ' ' . mysql2date( get_option('time_format'), $last_modified );
|
2091 |
+
}
|
2092 |
+
|
2093 |
+
// ###################################################################################################################
|
2094 |
+
function get_last_editor( $last_editor_id ) {
|
2095 |
+
$user = get_userdata( $last_editor_id );
|
2096 |
+
$nickname = ( isset( $user->nickname ) ) ? $user->nickname : '';
|
2097 |
+
return $nickname;
|
2098 |
+
}
|
2099 |
+
|
2100 |
// ###################################################################################################################
|
2101 |
// ######################################### ####################################################
|
2102 |
// ######################################### URL Support ####################################################
|
2111 |
// ###################################################################################################################
|
2112 |
function get_action_url( $params = array(), $add_nonce = false ) {
|
2113 |
$default_params = array(
|
2114 |
+
'page' => $this->page_slug,
|
2115 |
'action' => false,
|
2116 |
'item' => false
|
2117 |
);
|
2119 |
|
2120 |
$action_url = add_query_arg( $url_params, $_SERVER['PHP_SELF'] );
|
2121 |
$action_url = ( true == $add_nonce ) ? wp_nonce_url( $action_url, $this->get_nonce( $url_params['action'], $url_params['item'] ) ) : $action_url;
|
2122 |
+
$action_url = clean_url( $action_url );
|
2123 |
return $action_url;
|
2124 |
}
|
2125 |
|
2130 |
// ###################################################################################################################
|
2131 |
|
2132 |
// ###################################################################################################################
|
2133 |
+
function create_class_instance( $class, $file, $folder = 'php' ) {
|
2134 |
+
if ( !class_exists( $class ) )
|
2135 |
+
include_once ( WP_TABLE_RELOADED_ABSPATH . $folder . '/' . $file );
|
2136 |
+
return new $class;
|
|
|
|
|
2137 |
}
|
2138 |
|
2139 |
// ###################################################################################################################
|
2180 |
function plugin_install() {
|
2181 |
$this->options = $this->default_options;
|
2182 |
$this->options['installed_version'] = $this->plugin_version;
|
2183 |
+
$this->options['install_time'] = time();
|
2184 |
+
$image_path = WP_TABLE_RELOADED_URL . 'img';
|
2185 |
+
$this->options['custom_css'] = <<<CSS
|
2186 |
+
.wp-table-reloaded {
|
2187 |
+
background-color:#CDCDCD;
|
2188 |
+
margin:10px 0px 15px 0px;
|
2189 |
+
font-size:8pt;
|
2190 |
+
width:100%;
|
2191 |
+
text-align:left;
|
2192 |
+
}
|
2193 |
+
.wp-table-reloaded th {
|
2194 |
+
background-color:#E6EEEE;
|
2195 |
+
border:1px solid #FFFFFF;
|
2196 |
+
padding:4px;
|
2197 |
+
}
|
2198 |
+
.wp-table-reloaded td {
|
2199 |
+
color:#3D3D3D;
|
2200 |
+
padding:4px;
|
2201 |
+
background-color:#FFFFFF;
|
2202 |
+
vertical-align:top;
|
2203 |
+
}
|
2204 |
+
.wp-table-reloaded .even td {
|
2205 |
+
background-color:#FFFFFF;
|
2206 |
+
}
|
2207 |
+
.wp-table-reloaded .odd td{
|
2208 |
+
background-color:#F0F0F6;
|
2209 |
+
}
|
2210 |
+
.wp-table-reloaded .header {
|
2211 |
+
background-image:url({$image_path}/bg.gif);
|
2212 |
+
background-repeat:no-repeat;
|
2213 |
+
background-position:center right;
|
2214 |
+
cursor:pointer;
|
2215 |
+
}
|
2216 |
+
.wp-table-reloaded .headerSortUp {
|
2217 |
+
background-color:#8DBDD8;
|
2218 |
+
background-image:url({$image_path}/asc.gif);
|
2219 |
+
}
|
2220 |
+
|
2221 |
+
.wp-table-reloaded .headerSortDown {
|
2222 |
+
background-color:#8DBDD8;
|
2223 |
+
background-image:url({$image_path}/desc.gif);
|
2224 |
+
}
|
2225 |
+
CSS;
|
2226 |
$this->update_options();
|
2227 |
$this->tables = $this->default_tables;
|
2228 |
$this->update_tables();
|
2235 |
$this->options = get_option( $this->optionname['options'] );
|
2236 |
$new_options = array();
|
2237 |
|
2238 |
+
// 1b. step: update new default options before possibly adding them
|
2239 |
+
$this->default_options['install_time'] = time();
|
2240 |
+
|
2241 |
// 2a. step: add/delete new/deprecated options by overwriting new ones with existing ones, if existant
|
2242 |
foreach ( $this->default_options as $key => $value )
|
2243 |
+
$new_options[ $key ] = ( isset( $this->options[ $key ] ) ) ? $this->options[ $key ] : $this->default_options[ $key ] ;
|
2244 |
|
2245 |
// 2b., take care of css
|
2246 |
+
$new_options['use_custom_css'] = ( !isset( $this->options['use_custom_css'] ) && isset( $this->options['use_global_css'] ) ) ? $this->options['use_global_css'] : $this->options['use_custom_css'];
|
2247 |
|
2248 |
+
// 3. step: update installed version number/empty update message cache
|
2249 |
$new_options['installed_version'] = $this->plugin_version;
|
2250 |
+
$new_options['update_message'] = array();
|
2251 |
+
|
2252 |
// 4. step: save the new options
|
2253 |
$this->options = $new_options;
|
2254 |
$this->update_options();
|
2258 |
foreach ( $this->tables as $id => $tableoptionname ) {
|
2259 |
$table = $this->load_table( $id );
|
2260 |
|
2261 |
+
$temp_table = $this->default_table;
|
2262 |
+
|
2263 |
+
// if table doesn't have visibility information, it gets them
|
2264 |
+
$rows = count( $table['data'] );
|
2265 |
+
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
2266 |
+
$temp_table['visibility']['rows'] = array_fill( 0, $rows, false );
|
2267 |
+
$temp_table['visibility']['columns'] = array_fill( 0, $cols, false );
|
2268 |
+
|
2269 |
+
foreach ( $temp_table as $key => $value )
|
2270 |
+
$new_table[ $key ] = ( isset( $table[ $key ] ) ) ? $table[ $key ] : $temp_table[ $key ] ;
|
2271 |
|
2272 |
+
foreach ( $temp_table['options'] as $key => $value )
|
2273 |
+
$new_table['options'][ $key ] = ( isset( $table['options'][ $key ] ) ) ? $table['options'][ $key ] : $temp_table['options'][ $key ] ;
|
2274 |
|
2275 |
$this->save_table( $new_table );
|
2276 |
}
|
2277 |
}
|
2278 |
+
|
2279 |
+
// ###################################################################################################################
|
2280 |
+
// get remote plugin update message and show it right under the "upgrade automatically" message
|
2281 |
+
// $current and $new are passed by the do_action call and contain respective plugin version information
|
2282 |
+
function plugin_update_message( $current, $new ) {
|
2283 |
+
if ( !isset( $this->options['update_message'][$new->new_version] ) || empty( $this->options['update_message'][$new->new_version] ) ) {
|
2284 |
+
$message_text = '';
|
2285 |
+
$update_message = wp_remote_fopen( "http://tobias.baethge.com/dev/plugin/update/wp-table-reloaded/{$current['Version']}/{$new->new_version}/" );
|
2286 |
+
if ( false !== $update_message ) {
|
2287 |
+
if ( 1 == preg_match( '/<info>(.*?)<\/info>/is', $update_message, $matches ) )
|
2288 |
+
$message_text = $matches[1];
|
2289 |
+
}
|
2290 |
+
$this->options['update_message'][$new->new_version] = $message_text;
|
2291 |
+
$this->update_options();
|
2292 |
+
}
|
2293 |
+
|
2294 |
+
$message = $this->options['update_message'][$new->new_version];
|
2295 |
+
if ( !empty( $message ) )
|
2296 |
+
echo '<br />' . $this->safe_output( $message );
|
2297 |
+
}
|
2298 |
|
2299 |
// ###################################################################################################################
|
2300 |
// initialize i18n support, load textdomain
|
2301 |
function init_language_support() {
|
2302 |
$language_directory = basename( dirname( __FILE__ ) ) . '/languages';
|
2303 |
+
load_plugin_textdomain( WP_TABLE_RELOADED_TEXTDOMAIN, false, $language_directory );
|
2304 |
}
|
2305 |
|
2306 |
// ###################################################################################################################
|
2307 |
// enqueue javascript-file, with some jQuery stuff
|
2308 |
function add_manage_page_js() {
|
2309 |
+
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '.dev' : '';
|
2310 |
+
$jsfile = "admin-script{$suffix}.js";
|
2311 |
+
|
2312 |
+
wp_register_script( 'wp-table-reloaded-admin-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery' ), $this->plugin_version );
|
2313 |
+
// add all strings to translate here
|
2314 |
+
wp_localize_script( 'wp-table-reloaded-admin-js', 'WP_Table_Reloaded_Admin', array(
|
2315 |
'str_UninstallCheckboxActivation' => __( 'Do you really want to activate this? You should only do that right before uninstallation!', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2316 |
'str_DataManipulationLinkInsertURL' => __( 'URL of link to insert', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2317 |
'str_DataManipulationLinkInsertText' => __( 'Text of link', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2318 |
'str_DataManipulationLinkInsertExplain' => __( 'To insert the following link into a cell, just click the cell after closing this dialog.', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2319 |
+
'str_DataManipulationImageInsertThickbox' => __( 'To insert an image, click the cell into which you want to insert the image.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "\n" . __( 'The Media Library will open, from which you can select the desired image or insert the image URL.', WP_TABLE_RELOADED_TEXTDOMAIN ) . "\n" . sprintf( __( 'Click the "%s" button to insert the image.', WP_TABLE_RELOADED_TEXTDOMAIN ), attribute_escape( __('Insert into Post') ) ),
|
|
|
|
|
2320 |
'str_BulkCopyTablesLink' => __( 'Do you want to copy the selected tables?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2321 |
'str_BulkDeleteTablesLink' => __( 'The selected tables and all content will be erased. Do you really want to delete them?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2322 |
'str_BulkImportwpTableTablesLink' => __( 'Do you really want to import the selected tables from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2327 |
'str_ImportwpTableLink' => __( 'Do you really want to import this table from the wp-Table plugin?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2328 |
'str_UninstallPluginLink_1' => __( 'Do you really want to uninstall the plugin and delete ALL data?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2329 |
'str_UninstallPluginLink_2' => __( 'Are you really sure?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2330 |
+
'str_ChangeTableID' => __( 'Do you really want to change the ID of the table?', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2331 |
+
'str_CFShortcodeMessage' => __( 'To show this Custom Data Field, use this shortcode:', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2332 |
+
'str_TableShortcodeMessage' => __( 'To show this table, use this shortcode:', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2333 |
+
'l10n_print_after' => 'try{convertEntities(WP_Table_Reloaded_Admin);}catch(e){};'
|
2334 |
+
) );
|
2335 |
+
wp_print_scripts( 'wp-table-reloaded-admin-js' );
|
2336 |
}
|
2337 |
|
2338 |
// ###################################################################################################################
|
2339 |
// enqueue css-stylesheet-file for admin, if it exists
|
2340 |
function add_manage_page_css() {
|
2341 |
+
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '.dev' : '';
|
2342 |
+
$cssfile = "admin-style{$suffix}.css";
|
2343 |
+
wp_enqueue_style( 'wp-table-reloaded-admin-css', WP_TABLE_RELOADED_URL . 'admin/' . $cssfile, array(), $this->plugin_version );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2344 |
}
|
2345 |
|
2346 |
// ###################################################################################################################
|
2348 |
function add_editor_button() {
|
2349 |
if ( 0 < count( $this->tables ) ) {
|
2350 |
$this->init_language_support();
|
2351 |
+
add_thickbox(); // we need thickbox to show the list
|
2352 |
add_action( 'admin_footer', array( &$this, 'add_editor_button_js' ) );
|
2353 |
}
|
2354 |
}
|
2357 |
// print out the JS in the admin footer
|
2358 |
function add_editor_button_js() {
|
2359 |
$params = array(
|
2360 |
+
'page' => $this->page_slug,
|
2361 |
'action' => 'ajax_list'
|
2362 |
);
|
2363 |
+
$ajax_url = add_query_arg( $params, 'tools.php' );
|
2364 |
$ajax_url = wp_nonce_url( $ajax_url, $this->get_nonce( $params['action'], false ) );
|
2365 |
+
$ajax_url = clean_url( $ajax_url );
|
2366 |
+
|
2367 |
+
// currently doing this by hand in the footer, as footer-scripts are only available since WP 2.8
|
2368 |
+
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '.dev' : '';
|
2369 |
+
$jsfile = "admin-editor-buttons-script{$suffix}.js";
|
2370 |
+
wp_register_script( 'wp-table-reloaded-admin-editor-buttons-js', WP_TABLE_RELOADED_URL . 'admin/' . $jsfile, array( 'jquery', 'thickbox' ), $this->plugin_version );
|
2371 |
+
// add all strings to translate here
|
2372 |
+
wp_localize_script( 'wp-table-reloaded-admin-editor-buttons-js', 'WP_Table_Reloaded_Admin', array(
|
2373 |
'str_EditorButtonCaption' => __( 'Table', WP_TABLE_RELOADED_TEXTDOMAIN ),
|
2374 |
+
'str_EditorButtonAjaxURL' => $ajax_url,
|
2375 |
+
'l10n_print_after' => 'try{convertEntities(WP_Table_Reloaded_Admin);}catch(e){};'
|
2376 |
+
) );
|
2377 |
+
wp_print_scripts( 'wp-table-reloaded-admin-editor-buttons-js' );
|
2378 |
+
}
|
2379 |
+
|
2380 |
+
// ###################################################################################################################
|
2381 |
+
// output tablesorter execution js for all tables in wp_footer
|
2382 |
+
function output_tablesorter_js() {
|
2383 |
+
if ( 0 < count( $this->tables ) ) {
|
2384 |
+
|
2385 |
+
$wpList = '';
|
2386 |
+
if ( version_compare( $GLOBALS['wp_version'], '2.7alpha', '>=') ) {
|
2387 |
+
wp_print_scripts( 'wp-lists' ); // for AJAX on list of tables
|
2388 |
+
$wpList = <<<WPLIST
|
2389 |
+
|
2390 |
+
var delBefore;
|
2391 |
+
delBefore = function(s) {
|
2392 |
+
return confirm( WP_Table_Reloaded_Admin.str_DeleteTableLink ) ? s : false;
|
2393 |
+
}
|
2394 |
+
$('#the-list').wpList( { alt: 'even', delBefore: delBefore } );
|
2395 |
+
$('.delete a[class^="delete"]').click(function(){return false;});
|
2396 |
+
|
2397 |
+
WPLIST;
|
2398 |
+
}
|
2399 |
+
|
2400 |
+
wp_register_script( 'wp-table-reloaded-tablesorter-js', WP_TABLE_RELOADED_URL . 'js/jquery.tablesorter.min.js', array( 'jquery' ) );
|
2401 |
+
wp_print_scripts( 'wp-table-reloaded-tablesorter-js' );
|
2402 |
+
|
2403 |
+
echo <<<JSSCRIPT
|
2404 |
+
<script type="text/javascript">
|
2405 |
+
/* <![CDATA[ */
|
2406 |
+
jQuery(document).ready(function($){
|
2407 |
+
|
2408 |
+
$('#wp-table-reloaded-list').tablesorter({widgets: ['zebra'], headers: {0: {sorter: false},4: {sorter: false}}})
|
2409 |
+
.find('.header').append(' <span> </span>');
|
2410 |
+
{$wpList}
|
2411 |
+
});
|
2412 |
+
/* ]]> */
|
2413 |
+
</script>
|
2414 |
+
JSSCRIPT;
|
2415 |
}
|
2416 |
}
|
2417 |
|
2418 |
+
// ###################################################################################################################
|
2419 |
+
// add admin footer text
|
2420 |
+
function add_admin_footer_text( $content ) {
|
2421 |
+
$content .= ' | ' . __( 'Thank you for using <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/">WP-Table Reloaded</a>.', WP_TABLE_RELOADED_TEXTDOMAIN );
|
2422 |
+
return $content;
|
2423 |
+
}
|
2424 |
+
|
2425 |
} // class WP_Table_Reloaded_Admin
|
2426 |
|
2427 |
?>
|
wp-table-reloaded-frontend.php
CHANGED
@@ -3,9 +3,10 @@
|
|
3 |
File Name: WP-Table Reloaded - Frontend Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: 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.
|
6 |
-
Version: 1.
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
|
|
9 |
*/
|
10 |
|
11 |
class WP_Table_Reloaded_Frontend {
|
@@ -20,8 +21,10 @@ class WP_Table_Reloaded_Frontend {
|
|
20 |
'options' => 'wp_table_reloaded_options',
|
21 |
'table' => 'wp_table_reloaded_data'
|
22 |
);
|
23 |
-
|
24 |
-
|
|
|
|
|
25 |
var $shown_tables = array();
|
26 |
var $tablesorter_tables = array();
|
27 |
|
@@ -35,8 +38,12 @@ class WP_Table_Reloaded_Frontend {
|
|
35 |
return '';
|
36 |
|
37 |
// front-end function, shortcode for the_content, manual filter for widget_text
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
40 |
|
41 |
// if tablesorter enabled (globally) include javascript
|
42 |
if ( true == $this->options['enable_tablesorter'] ) {
|
@@ -49,9 +56,53 @@ class WP_Table_Reloaded_Frontend {
|
|
49 |
add_action( 'wp_head', array( &$this, 'add_custom_css' ) );
|
50 |
}
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
// ###################################################################################################################
|
53 |
// handle [table id=<the_table_id> /] in the_content()
|
54 |
-
function
|
55 |
// parse shortcode attributs, only allow those specified
|
56 |
$default_atts = array(
|
57 |
'id' => 0,
|
@@ -61,26 +112,54 @@ class WP_Table_Reloaded_Frontend {
|
|
61 |
'print_name' => -1,
|
62 |
'print_description' => -1,
|
63 |
'use_tablesorter' => -1,
|
64 |
-
'row_offset' => 1,
|
65 |
-
'row_count' => null
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
);
|
67 |
$atts = shortcode_atts( $default_atts, $atts );
|
68 |
|
69 |
// check if table exists
|
70 |
$table_id = $atts['id'];
|
71 |
if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->table_exists( $table_id ) )
|
72 |
-
return "[table
|
73 |
|
74 |
// explode from string to array
|
75 |
$atts['column_widths'] = explode( '|', $atts['column_widths'] );
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
$table = $this->load_table( $table_id );
|
78 |
|
|
|
|
|
|
|
|
|
79 |
// determine options to use (if set in shortcode, use those, otherwise use options from "Edit Table" screen)
|
80 |
$output_options = array();
|
81 |
foreach ( $atts as $key => $value ) {
|
82 |
// have to check this, because strings 'true' or 'false' are not recognized as boolean!
|
83 |
-
if (
|
|
|
|
|
84 |
$output_options[ $key ] = true;
|
85 |
elseif ( 'false' == strtolower( $value ) )
|
86 |
$output_options[ $key ] = false;
|
@@ -98,15 +177,27 @@ class WP_Table_Reloaded_Frontend {
|
|
98 |
|
99 |
return $output;
|
100 |
}
|
101 |
-
|
102 |
// ###################################################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
// handle [table id=<the_table_id> /] in widget texts
|
104 |
-
function
|
105 |
// pattern to search for in widget text (only our plugin's shortcode!)
|
106 |
if ( version_compare( $GLOBALS['wp_version'], '2.8alpha', '>=') ) {
|
107 |
-
$pattern = '(.?)\[(' . preg_quote( $this->
|
108 |
} else {
|
109 |
-
$pattern = '\[(' . preg_quote( $this->
|
110 |
}
|
111 |
// search for it, if found, handle as if it were a shortcode
|
112 |
return preg_replace_callback( '/'.$pattern.'/s', 'do_shortcode_tag', $text );
|
@@ -133,11 +224,35 @@ class WP_Table_Reloaded_Frontend {
|
|
133 |
$cssclasses = implode( ' ', $cssclasses );
|
134 |
|
135 |
// if row_offset or row_count were given, we cut that part from the table and show just that
|
|
|
136 |
if ( null === $output_options['row_count'] )
|
137 |
$table['data'] = array_slice( $table['data'], $output_options['row_offset'] - 1 ); // -1 because we start from 1
|
138 |
else
|
139 |
$table['data'] = array_slice( $table['data'], $output_options['row_offset'] - 1, $output_options['row_count'] ); // -1 because we start from 1
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
$rows = count( $table['data'] );
|
142 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
143 |
|
@@ -151,7 +266,7 @@ class WP_Table_Reloaded_Frontend {
|
|
151 |
if ( true == $output_options['print_name'] )
|
152 |
$output .= '<h2 class="wp-table-reloaded-table-name">' . $this->safe_output( $table['name'] ) . "</h2>\n";
|
153 |
|
154 |
-
$output .= "<table id=\"{$output_options['html_id']}\" class=\"{$cssclasses}\" cellspacing=\"
|
155 |
|
156 |
foreach( $table['data'] as $row_idx => $row ) {
|
157 |
if ( true == $output_options['alternating_row_colors'] )
|
@@ -215,9 +330,23 @@ class WP_Table_Reloaded_Frontend {
|
|
215 |
|
216 |
// ###################################################################################################################
|
217 |
function safe_output( $string ) {
|
|
|
|
|
|
|
218 |
return nl2br( stripslashes( $string ) );
|
219 |
}
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
// ###################################################################################################################
|
222 |
// enqueue jquery-js-file
|
223 |
function add_head_jquery_js() {
|
@@ -245,7 +374,10 @@ CSSSTYLE;
|
|
245 |
// ###################################################################################################################
|
246 |
// output tablesorter execution js for all tables in wp_footer
|
247 |
function output_tablesorter_js() {
|
248 |
-
$
|
|
|
|
|
|
|
249 |
|
250 |
if ( 0 < count( $this->tablesorter_tables ) && file_exists( WP_TABLE_RELOADED_ABSPATH . 'js/' . $jsfile ) ) {
|
251 |
|
3 |
File Name: WP-Table Reloaded - Frontend Class (see main file wp-table-reloaded.php)
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
Description: 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.
|
6 |
+
Version: 1.4
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
+
Donate URI: http://tobias.baethge.com/donate/
|
10 |
*/
|
11 |
|
12 |
class WP_Table_Reloaded_Frontend {
|
21 |
'options' => 'wp_table_reloaded_options',
|
22 |
'table' => 'wp_table_reloaded_data'
|
23 |
);
|
24 |
+
// shortcodes
|
25 |
+
var $shortcode_table = 'table';
|
26 |
+
var $shortcode_table_info = 'table-info';
|
27 |
+
|
28 |
var $shown_tables = array();
|
29 |
var $tablesorter_tables = array();
|
30 |
|
38 |
return '';
|
39 |
|
40 |
// front-end function, shortcode for the_content, manual filter for widget_text
|
41 |
+
// shortcode "table-info" needs to be declared before "table"! Otherwise it will not be recognized!
|
42 |
+
add_shortcode( $this->shortcode_table_info, array( &$this, 'handle_content_shortcode_table_info' ) );
|
43 |
+
add_shortcode( $this->shortcode_table, array( &$this, 'handle_content_shortcode_table' ) );
|
44 |
+
|
45 |
+
add_filter( 'widget_text', array( &$this, 'handle_widget_filter_table_info' ) );
|
46 |
+
add_filter( 'widget_text', array( &$this, 'handle_widget_filter_table' ) );
|
47 |
|
48 |
// if tablesorter enabled (globally) include javascript
|
49 |
if ( true == $this->options['enable_tablesorter'] ) {
|
56 |
add_action( 'wp_head', array( &$this, 'add_custom_css' ) );
|
57 |
}
|
58 |
|
59 |
+
// ###################################################################################################################
|
60 |
+
// handle [table-info id=<the_table_id> field=<name> /] in the_content()
|
61 |
+
function handle_content_shortcode_table_info( $atts ) {
|
62 |
+
|
63 |
+
// parse shortcode attributs, only allow those specified
|
64 |
+
$default_atts = array(
|
65 |
+
'id' => 0,
|
66 |
+
'field' => '',
|
67 |
+
'format' => ''
|
68 |
+
);
|
69 |
+
$atts = shortcode_atts( $default_atts, $atts );
|
70 |
+
|
71 |
+
// check if table exists
|
72 |
+
$table_id = $atts['id'];
|
73 |
+
if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->table_exists( $table_id ) )
|
74 |
+
return "[table \"{$table_id}\" not found /]<br />\n";
|
75 |
+
|
76 |
+
$field = $atts['field'];
|
77 |
+
$format = $atts['format'];
|
78 |
+
|
79 |
+
$table = $this->load_table( $table_id );
|
80 |
+
|
81 |
+
switch ( $field ) {
|
82 |
+
case 'name':
|
83 |
+
case 'description':
|
84 |
+
$output = $table[ $field ];
|
85 |
+
break;
|
86 |
+
case 'last_modified':
|
87 |
+
$output = ( 'raw' == $format ) ? $table['last_modified'] : $this->format_datetime( $table['last_modified'] );
|
88 |
+
break;
|
89 |
+
case 'last_editor':
|
90 |
+
$output = $this->get_last_editor( $table['last_editor_id'] );
|
91 |
+
break;
|
92 |
+
default:
|
93 |
+
if ( isset( $table['custom_fields'][ $field ] ) ) {
|
94 |
+
$output = $table['custom_fields'][ $field ];
|
95 |
+
} else {
|
96 |
+
$output = "[table-info field "{$field}" not found in table {$table_id} /]<br />\n";
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
return $output;
|
101 |
+
}
|
102 |
+
|
103 |
// ###################################################################################################################
|
104 |
// handle [table id=<the_table_id> /] in the_content()
|
105 |
+
function handle_content_shortcode_table( $atts ) {
|
106 |
// parse shortcode attributs, only allow those specified
|
107 |
$default_atts = array(
|
108 |
'id' => 0,
|
112 |
'print_name' => -1,
|
113 |
'print_description' => -1,
|
114 |
'use_tablesorter' => -1,
|
115 |
+
'row_offset' => 1, // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
116 |
+
'row_count' => null, // ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
117 |
+
'show_rows' => '',
|
118 |
+
'show_columns' => '',
|
119 |
+
'hide_rows' => '',
|
120 |
+
'hide_columns' => '',
|
121 |
+
'cellspacing' => 1,
|
122 |
+
'cellpadding' => 0,
|
123 |
+
'border' => 0
|
124 |
+
|
125 |
);
|
126 |
$atts = shortcode_atts( $default_atts, $atts );
|
127 |
|
128 |
// check if table exists
|
129 |
$table_id = $atts['id'];
|
130 |
if ( !is_numeric( $table_id ) || 1 > $table_id || false == $this->table_exists( $table_id ) )
|
131 |
+
return "[table "{$table_id}" not found /]<br />\n";
|
132 |
|
133 |
// explode from string to array
|
134 |
$atts['column_widths'] = explode( '|', $atts['column_widths'] );
|
135 |
|
136 |
+
// rows/columns are indexed from 0 internally
|
137 |
+
$atts['show_rows'] = ( !empty( $atts['show_rows'] ) ) ? explode( ',', $atts['show_rows'] ) : array();
|
138 |
+
foreach ( $atts['show_rows'] as $key => $value )
|
139 |
+
$atts['show_rows'][$key] = (string) ( $value - 1 );
|
140 |
+
$atts['show_columns'] = ( !empty( $atts['show_columns'] ) ) ? explode( ',', $atts['show_columns'] ) : array();
|
141 |
+
foreach ( $atts['show_columns'] as $key => $value )
|
142 |
+
$atts['show_columns'][$key] = (string) ( $value - 1 );
|
143 |
+
$atts['hide_rows'] = ( !empty( $atts['hide_rows'] ) ) ? explode( ',', $atts['hide_rows'] ) : array();
|
144 |
+
foreach ( $atts['hide_rows'] as $key => $value )
|
145 |
+
$atts['hide_rows'][$key] = (string) ( $value - 1 );
|
146 |
+
$atts['hide_columns'] = ( !empty( $atts['hide_columns'] ) ) ? explode( ',', $atts['hide_columns'] ) : array();
|
147 |
+
foreach ( $atts['hide_columns'] as $key => $value )
|
148 |
+
$atts['hide_columns'][$key] = (string) ( $value - 1 );
|
149 |
+
|
150 |
$table = $this->load_table( $table_id );
|
151 |
|
152 |
+
// check for table data
|
153 |
+
if ( !isset( $table['data'] ) || empty( $table['data'] ) )
|
154 |
+
return "[table "{$table_id}" seems to be empty /]<br />\n";
|
155 |
+
|
156 |
// determine options to use (if set in shortcode, use those, otherwise use options from "Edit Table" screen)
|
157 |
$output_options = array();
|
158 |
foreach ( $atts as $key => $value ) {
|
159 |
// have to check this, because strings 'true' or 'false' are not recognized as boolean!
|
160 |
+
if ( is_array( $value ) )
|
161 |
+
$output_options[ $key ] = $value;
|
162 |
+
elseif ( 'true' == strtolower( $value ) )
|
163 |
$output_options[ $key ] = true;
|
164 |
elseif ( 'false' == strtolower( $value ) )
|
165 |
$output_options[ $key ] = false;
|
177 |
|
178 |
return $output;
|
179 |
}
|
180 |
+
|
181 |
// ###################################################################################################################
|
182 |
+
// handle [table-info id=<the_table_id> field="name" /] in widget texts
|
183 |
+
function handle_widget_filter_table_info( $text ) {
|
184 |
+
// pattern to search for in widget text (only our plugin's shortcode!)
|
185 |
+
if ( version_compare( $GLOBALS['wp_version'], '2.8alpha', '>=') ) {
|
186 |
+
$pattern = '(.?)\[(' . preg_quote( $this->shortcode_table_info ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\2\])?(.?)';
|
187 |
+
} else {
|
188 |
+
$pattern = '\[(' . preg_quote( $this->shortcode_table_info ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\1\])?';
|
189 |
+
}
|
190 |
+
// search for it, if found, handle as if it were a shortcode
|
191 |
+
return preg_replace_callback( '/'.$pattern.'/s', 'do_shortcode_tag', $text );
|
192 |
+
}
|
193 |
+
|
194 |
// handle [table id=<the_table_id> /] in widget texts
|
195 |
+
function handle_widget_filter_table( $text ) {
|
196 |
// pattern to search for in widget text (only our plugin's shortcode!)
|
197 |
if ( version_compare( $GLOBALS['wp_version'], '2.8alpha', '>=') ) {
|
198 |
+
$pattern = '(.?)\[(' . preg_quote( $this->shortcode_table ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\2\])?(.?)';
|
199 |
} else {
|
200 |
+
$pattern = '\[(' . preg_quote( $this->shortcode_table ) . ')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\1\])?';
|
201 |
}
|
202 |
// search for it, if found, handle as if it were a shortcode
|
203 |
return preg_replace_callback( '/'.$pattern.'/s', 'do_shortcode_tag', $text );
|
224 |
$cssclasses = implode( ' ', $cssclasses );
|
225 |
|
226 |
// if row_offset or row_count were given, we cut that part from the table and show just that
|
227 |
+
// ATTENTION: MIGHT BE DROPPED IN FUTURE VERSIONS!
|
228 |
if ( null === $output_options['row_count'] )
|
229 |
$table['data'] = array_slice( $table['data'], $output_options['row_offset'] - 1 ); // -1 because we start from 1
|
230 |
else
|
231 |
$table['data'] = array_slice( $table['data'], $output_options['row_offset'] - 1, $output_options['row_count'] ); // -1 because we start from 1
|
232 |
|
233 |
+
// load information about hidden rows and columns
|
234 |
+
$hidden_rows = isset( $table['visibility']['rows'] ) ? array_keys( $table['visibility']['rows'], true ) : array();
|
235 |
+
$hidden_rows = array_merge( $hidden_rows, $output_options['hide_rows'] );
|
236 |
+
$hidden_rows = array_diff( $hidden_rows, $output_options['show_rows'] );
|
237 |
+
sort( $hidden_rows, SORT_NUMERIC );
|
238 |
+
$hidden_columns = isset( $table['visibility']['columns'] ) ? array_keys( $table['visibility']['columns'], true ) : array();
|
239 |
+
$hidden_columns = array_merge( $hidden_columns, $output_options['hide_columns'] );
|
240 |
+
$hidden_columns = array_merge( array_diff( $hidden_columns, $output_options['show_columns'] ) );
|
241 |
+
sort( $hidden_columns, SORT_NUMERIC );
|
242 |
+
|
243 |
+
// remove hidden rows and re-index
|
244 |
+
foreach( $hidden_rows as $row_idx ) {
|
245 |
+
unset( $table['data'][$row_idx] );
|
246 |
+
}
|
247 |
+
$table['data'] = array_merge( $table['data'] );
|
248 |
+
// remove hidden columns and re-index
|
249 |
+
foreach( $table['data'] as $row_idx => $row ) {
|
250 |
+
foreach( $hidden_columns as $col_idx ) {
|
251 |
+
unset( $row[$col_idx] );
|
252 |
+
}
|
253 |
+
$table['data'][$row_idx] = array_merge( $row );
|
254 |
+
}
|
255 |
+
|
256 |
$rows = count( $table['data'] );
|
257 |
$cols = (0 < $rows) ? count( $table['data'][0] ) : 0;
|
258 |
|
266 |
if ( true == $output_options['print_name'] )
|
267 |
$output .= '<h2 class="wp-table-reloaded-table-name">' . $this->safe_output( $table['name'] ) . "</h2>\n";
|
268 |
|
269 |
+
$output .= "<table id=\"{$output_options['html_id']}\" class=\"{$cssclasses}\" cellspacing=\"{$output_options['cellspacing']}\" cellpadding=\"{$output_options['cellpadding']}\" border=\"{$output_options['border']}\">\n";
|
270 |
|
271 |
foreach( $table['data'] as $row_idx => $row ) {
|
272 |
if ( true == $output_options['alternating_row_colors'] )
|
330 |
|
331 |
// ###################################################################################################################
|
332 |
function safe_output( $string ) {
|
333 |
+
// replace any & with & that is not already an encoded entity (from function htmlentities2 in WP 2.8)
|
334 |
+
$string = preg_replace( "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,4};)/", "&", $string );
|
335 |
+
// then we only remove slashes and change line breaks, htmlspecialchars would encode <HTML> tags which we don't want
|
336 |
return nl2br( stripslashes( $string ) );
|
337 |
}
|
338 |
|
339 |
+
// ###################################################################################################################
|
340 |
+
function format_datetime( $last_modified ) {
|
341 |
+
return mysql2date( get_option('date_format'), $last_modified ) . ' ' . mysql2date( get_option('time_format'), $last_modified );
|
342 |
+
}
|
343 |
+
|
344 |
+
// ###################################################################################################################
|
345 |
+
function get_last_editor( $last_editor_id ) {
|
346 |
+
$user = get_userdata( $last_editor_id );
|
347 |
+
return $user->nickname;
|
348 |
+
}
|
349 |
+
|
350 |
// ###################################################################################################################
|
351 |
// enqueue jquery-js-file
|
352 |
function add_head_jquery_js() {
|
374 |
// ###################################################################################################################
|
375 |
// output tablesorter execution js for all tables in wp_footer
|
376 |
function output_tablesorter_js() {
|
377 |
+
if ( isset( $this->options['use_tablesorter_extended'] ) && true == $this->options['use_tablesorter_extended'] )
|
378 |
+
$jsfile = 'jquery.tablesorter.extended.js'; // filename of the tablesorter extended script
|
379 |
+
else
|
380 |
+
$jsfile = 'jquery.tablesorter.min.js'; // filename of the tablesorter script
|
381 |
|
382 |
if ( 0 < count( $this->tablesorter_tables ) && file_exists( WP_TABLE_RELOADED_ABSPATH . 'js/' . $jsfile ) ) {
|
383 |
|
wp-table-reloaded.php
CHANGED
@@ -3,9 +3,13 @@
|
|
3 |
Plugin Name: WP-Table Reloaded
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
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.
|
6 |
-
Version: 1.
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
|
|
|
|
|
|
|
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2009 Tobias Bäthge (email: wordpress@tobias.baethge.com )
|
@@ -25,14 +29,6 @@ Author URI: http://tobias.baethge.com/
|
|
25 |
*/
|
26 |
|
27 |
// folder definitions as constants
|
28 |
-
if ( !defined( 'WP_CONTENT_DIR' ) )
|
29 |
-
define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
|
30 |
-
if ( !defined( 'WP_CONTENT_URL' ) )
|
31 |
-
define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content' );
|
32 |
-
if ( !defined( 'WP_PLUGIN_URL' ) )
|
33 |
-
define( 'WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins' );
|
34 |
-
if ( !defined( 'WP_PLUGIN_DIR' ) )
|
35 |
-
define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins');
|
36 |
if ( !defined( 'WP_TABLE_RELOADED_ABSPATH' ) )
|
37 |
define( 'WP_TABLE_RELOADED_ABSPATH', WP_PLUGIN_DIR . '/' . basename( dirname ( __FILE__ ) ) . '/' );
|
38 |
if ( !defined( 'WP_TABLE_RELOADED_URL' ) )
|
@@ -42,31 +38,31 @@ if ( !defined( 'WP_TABLE_RELOADED_BASENAME' ) )
|
|
42 |
|
43 |
// decide whether admin or frontend
|
44 |
if ( is_admin() ) {
|
45 |
-
// we are in admin mode
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
}
|
53 |
-
}
|
54 |
} else {
|
55 |
-
// we are in frontend mode
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
global $WP_Table_Reloaded_Frontend;
|
65 |
-
parse_str( $table_query, $atts );
|
66 |
-
echo $WP_Table_Reloaded_Frontend->handle_content_shortcode( $atts );
|
67 |
-
}
|
68 |
-
}
|
69 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
}
|
71 |
|
72 |
?>
|
3 |
Plugin Name: WP-Table Reloaded
|
4 |
Plugin URI: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/
|
5 |
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.
|
6 |
+
Version: 1.4
|
7 |
Author: Tobias Bäthge
|
8 |
Author URI: http://tobias.baethge.com/
|
9 |
+
Author eMail: wordpress@tobias.baethge.com
|
10 |
+
Text Domain: wp-table-reloaded
|
11 |
+
Domain Path: /languages
|
12 |
+
Donate URI: http://tobias.baethge.com/donate/
|
13 |
*/
|
14 |
|
15 |
/* Copyright 2009 Tobias Bäthge (email: wordpress@tobias.baethge.com )
|
29 |
*/
|
30 |
|
31 |
// folder definitions as constants
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
if ( !defined( 'WP_TABLE_RELOADED_ABSPATH' ) )
|
33 |
define( 'WP_TABLE_RELOADED_ABSPATH', WP_PLUGIN_DIR . '/' . basename( dirname ( __FILE__ ) ) . '/' );
|
34 |
if ( !defined( 'WP_TABLE_RELOADED_URL' ) )
|
38 |
|
39 |
// decide whether admin or frontend
|
40 |
if ( is_admin() ) {
|
41 |
+
// we are in admin mode, load admin class
|
42 |
+
include_once( WP_TABLE_RELOADED_ABSPATH . 'wp-table-reloaded-admin.php' );
|
43 |
+
$WP_Table_Reloaded_Admin = new WP_Table_Reloaded_Admin();
|
44 |
+
|
45 |
+
// actions to in admin, outside class
|
46 |
+
register_activation_hook( __FILE__, array( &$WP_Table_Reloaded_Admin, 'plugin_activation_hook' ) );
|
47 |
+
register_deactivation_hook( __FILE__, array( &$WP_Table_Reloaded_Admin, 'plugin_deactivation_hook' ) );
|
|
|
|
|
48 |
} else {
|
49 |
+
// we are in frontend mode, load frontend class
|
50 |
+
include_once ( WP_TABLE_RELOADED_ABSPATH . 'wp-table-reloaded-frontend.php' );
|
51 |
+
$WP_Table_Reloaded_Frontend = new WP_Table_Reloaded_Frontend();
|
52 |
+
|
53 |
+
// add template tag function for "table" shortcode to be used anywhere in the template
|
54 |
+
function wp_table_reloaded_print_table( $table_query ) {
|
55 |
+
global $WP_Table_Reloaded_Frontend;
|
56 |
+
parse_str( $table_query, $atts );
|
57 |
+
echo $WP_Table_Reloaded_Frontend->handle_content_shortcode_table( $atts );
|
|
|
|
|
|
|
|
|
|
|
58 |
}
|
59 |
+
// add template tag function for "table-info" shortcode to be used anywhere in the template
|
60 |
+
function wp_table_reloaded_print_table_info( $table_query ) {
|
61 |
+
global $WP_Table_Reloaded_Frontend;
|
62 |
+
parse_str( $table_query, $atts );
|
63 |
+
echo $WP_Table_Reloaded_Frontend->handle_content_shortcode_table_info( $atts );
|
64 |
+
}
|
65 |
+
|
66 |
}
|
67 |
|
68 |
?>
|